
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #d4ce58;
   // background-image:url("NwBG2.jpg");
   // background: linear-gradient(to right, #e0f7fa, #fff);
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 32px;
    color: #0d47a1;
    margin-bottom: 20px;
}

    
    .blink {
      animation: blink 1s steps(1, end) infinite;
    }

    @keyframes blink {
      0% { opacity: 1; }
      50% { opacity: 0; }
      100% { opacity: 1; }
    }
    

.forecast-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.forecast-box {
    background: rgba(255, 255, 255, 0.18);
    /* transparent white */
    backdrop-filter: blur(12px);
    /* glass blur */
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    width: 300px;
    transition: transform 0.2s ease;
}
}

.forecast-box:hover {
    transform: translateY(-5px);
}

.forecast-box h3 {
    color: #006064;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.forecast-box ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.forecast-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forecast-box ul li img {
    margin-left: 10px;
}

#input-box
 {
  /* Basic styling */
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px; /* Slightly rounded corners */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: #333;
  width: 30%; /* Adjust as needed */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */

  /* Subtle shadow */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Horizontal offset, vertical offset, blur radius, color with transparency */

  /* Focus state */
  transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for focus effects */
}

input[type="text"]:focus {
  outline: none; /* Remove default outline */
  border-color: #007bff; /* Highlight border on focus */
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.2); /* Enhanced shadow on focus */
}



@media (max-width: 768px) {
    .forecast-container {
        flex-direction: column;
        align-items: center;
    }
}


.beautiful-blue-button {
  background-color: #4CAF50; /* A vibrant blue, or choose your preferred shade like #2196F3 */
  color: white; /* Text color for contrast */
  padding: 12px 24px; /* Adjust padding for button size */
  border: none; /* Remove default button border */
  border-radius: 8px; /* Rounded corners for a softer look */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern font */
  font-size: 16px; /* Appropriate font size */
  font-weight: bold; /* Bold text for emphasis */
  cursor: pointer; /* Indicate interactivity on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for hover effects */
}

.beautiful-blue-button:hover {
  background-color: #1976D2; /* Darker blue on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.beautiful-blue-button:active {
  background-color: #0D47A1; /* Even darker blue on click/active state */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduced shadow on active state */
}

footer {
    background-color: #d3d3b7;
    color: #160202;
    padding: 30px 20px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

footer a {
    color: #0077cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #005fa3;
    text-decoration: underline;
}

footer form {
    margin-top: 15px;
}

footer input[type="text"] {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 180px;
    transition: border-color 0.3s;
}

footer input[type="text"]:focus {
    border-color: #0077cc;
    outline: none;
}

footer button {
    padding: 8px 14px;
    background-color: #0077cc;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 8px;
    transition: background-color 0.3s;
}

footer button:hover {
    background-color: #005fa3;
}

footer nav {
    margin-top: 20px;
}

footer nav a {
    margin: 0 10px;
    font-size: 14px;
}

footer em {
    color: #444;
    display: block;
    margin-top: 10px;
    font-style: italic;
}

#back-to-top {
margin-top: 0%;
text-align: right;

}

/* General styling for the main article container */
.article{
    max-width: 800px; /* Optional: Constrain the width for readability */
    margin: 20px auto; /* Center the article on the page with some top/bottom margin */
    padding: 20px; /* Space inside the border */
    font-family: sans-serif; /* A clean, readable font */
    line-height: 1.6; /* Improve readability with increased line height */
    border: 1px solid #b6aeae; /* Add a subtle border */
    background-color: #f9f9f9; /* Light gray background */
}

.cf-ai-cta {
    position: relative;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}
.cf-ai-cta::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  animation: pulseGlow 6s infinite linear;
  pointer-events: none;   /* 🔥 IMPORTANT FIX */
}


@keyframes pulseGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cf-ai-badge {
    display: inline-block;
    background: #ffc107;
    color: #000;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 18px;
}

.cf-ai-cta h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 800;
}

.cf-ai-cta p {
    font-size: 17px;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto 25px;
    color: #e6f1ff;
}

.cf-ai-btn {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #ff512f, #f09819);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(240, 152, 25, 0.6);
    transition: all 0.3s ease;
}

.cf-ai-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(240, 152, 25, 0.8);
}

.cf-ai-note {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.85;
}

.cf-ai-cta * {
  position: relative;
  z-index: 2;
}
