:root{
  --green-700: #1b3354;
  --green-500: #395689;
  --green-300: #395689;
  --muted: #6b7280;
  --card-bg: #ffffff;
  --max-width: 1200px;
  --radius: 12px;
}
*{box-sizing:border-box}
body,html{margin:0;padding:0;font-family:"Poppins", sans-serif;color:#123;line-height:1.5}
img{max-width:100%;display:block}




/* Floating CTA Bubble */
.hero-cta-bubble {
  position: absolute;
  right: 36px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--green-700);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(3,50,30,0.12);
  font-weight: 600;
  z-index: 3;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p.subtitle {
    font-size: 15px;
  }

  .hero-image {
    justify-content: center;
  }

  .cta-row {
    justify-content: center;
  }
}



/* Product Sectio */
.product-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.product-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.product-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-info {
  max-width: 500px;
}

.product-heading {
  font-size: 2.5rem;
  color: var(--green-700);
  margin-bottom: 20px;
}

.product-description {
  font-size: 1.1rem;
  color: var(--green-500);
  line-height: 1.6;
  margin-bottom: 25px;
}

.product-btn {
  padding: 12px 30px;
  background-color: var(--green-700);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-btn:hover {
  background-color: var(--green-500);
}



/* STATS SECTION */
.stats-section {
  background: linear-gradient(135deg, #e7f1f7, #cddde8);
  color: #1b3354;
  padding: 70px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.stats-header h2 {
  font-family: "Merriweather", serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats-header .stats-subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 36px;
  color: #1b3354;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-number {
  font-family: "Merriweather", serif;
  font-size: 48px;
  font-weight: 700;
  position: relative;
  padding: 0;
  color: #1b3354;
}

.circled-stat {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px dashed #0e4a36;
  background: rgba(14, 59, 74, 0.05);
  font-style: italic;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 160px;
  color: #1b3354;
}

/* Subtle hover animation */
.stat-card:hover .stat-number {
  transform: scale(1.05);
  transition: transform 0.25s ease;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-number {
    font-size: 42px;
  }

  .circled-stat {
    padding: 10px 18px;
  }

  .stats-header h2 {
    font-size: 28px;
  }

  .stat-label {
    font-size: 13px;
    max-width: 140px;
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* STATS */
.stats{
  margin:56px auto;
  max-width:var(--max-width);
  padding:24px 20px;
  display:flex;
  gap:18px;
  justify-content:space-between;
  align-items:center;
  /* Updated gradient from green to blue-based */
  background:linear-gradient(180deg,rgba(57,86,137,0.06),rgba(57,86,137,0.02)); 
  border-radius:14px;
  /* Updated box shadow to use a darker blue for subtlety */
  box-shadow:0 8px 30px rgba(27,51,84,0.04); 
}
.stat{text-align:center;flex:1;padding:14px;}
.stat .num{
  font-size:20px;
  font-weight:700;
  /* Using the darkest blue */
  color:var(--green-700);
}
.stat .txt{color:var(--muted);font-size:13px;margin-top:6px;}

/* FEATURES */


/* TESTIMONIAL */
.testimonials{max-width:var(--max-width);margin:56px auto;padding:20px;}
.test-card{
  background:#fff;
  border-radius:16px;
  padding:26px;
  display:flex;
  gap:18px;
  align-items:center;
  /* Adjusted box shadow to a subtle blue */
  box-shadow:0 18px 48px rgba(27,51,84,0.06);
}
.avatar{
  width:64px;
  height:64px;
  border-radius:50%;
  /* Updated background to a very light blue */
  background:#e8f0f8; 
  display:flex;
  align-items:center;
  justify-content:center;
  /* Using the darkest blue */
  color:var(--green-700);
  font-weight:700;
}

/* CONTACT CTA */
#contact-cta{max-width:var(--max-width);margin:40px auto;padding:20px;}
.contact-box{
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:space-between;
  /* Updated gradient from green/white to light blue/white */
  background:linear-gradient(90deg,#f5f9ff,#fff);
  padding:22px;
  border-radius:12px;
  /* Adjusted shadow to a subtle blue */
  box-shadow:0 12px 40px rgba(27,51,84,0.04);
}
.contact-box h3{margin:0 0 6px 0;}
.contact-box p{margin:0;color:var(--muted);}
/* FOOTER */
.footer {
    /* Updated background to the primary dark blue */
    background: #0f172a; 
    color: #d0d9e8; /* Light text color for contrast */
    padding: 48px 20px 20px; /* Adjusted padding to accommodate bottom bar */
    margin-top: 60px;
    font-size: 15px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 40px; /* Separator for bottom bar */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex-grow: 1;
    min-width: 150px; /* Ensures minimum width for columns */
}

.brand-info {
    flex-basis: 30%; /* Gives the brand info column more space */
}

.footer-logo {
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
}

.col-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Link Styling */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer li {
    margin-bottom: 8px;
}

.footer a {
    color: #a5bdd9; /* Light blue link color */
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer a {
  position: relative;
  text-decoration: none;
}

.footer a:hover::after {
  animation: snakeMove 1s linear infinite;
}

@keyframes snakeMove {
  from { background-position-x: 0; }
  to { background-position-x: 40px; }
}


.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 8px;

  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='40' height='8' viewBox='0 0 40 8'>\
<path d='M0 4 Q5 0 10 4 T20 4 T30 4 T40 4' fill='none' stroke='%23ff8c00' stroke-width='2'/>\
</svg>");
  background-repeat: repeat-x;
  background-size: 40px 8px;

  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease, opacity 0.25s ease;
}




.footer a:hover {
  color: var(--accent-orange);
}

.footer a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.value-title {
    font-weight: 600;
    color: var(--accent-orange); /* Highlighted value title */
    margin: 15px 0 5px 0;
}

.small {
    font-size: 13px;
    color: #b2d9c6; /* Slightly lighter text for body copy */
    margin: 0;
}

/* Subscribe CTA Styling */
.subscribe-title {
    color: var(--accent-orange); /* Highlight the CTA title */
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.subscribe-form input[type="email"] {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.subscribe-form input[type="email"]::placeholder {
    color: #a5bdd9;
}

.cta-button {
    background: var(--accent-orange);
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}
.cta-button:hover {
    background: #e57e00; /* Slightly darker orange on hover */
}

/* Social Links */
.social-links {
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: var(--accent-orange);
    font-size: 14px;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: #b2d9c6;
}

.contact-item .icon {
    margin-right: 5px;
}

.footer-copyright {
    color: #b2d9c6;
    margin-top: 10px;
}

.wasaldev-link {
    font-weight: 600;
    color: var(--accent-orange) !important; /* Force orange for emphasis */
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-col {
        min-width: 100%;
        flex-basis: auto;
    }
    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-contact-info {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
}
/* CTA Section Layout - ORANGE THEME */
#contact-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--accent-orange), #ff955a);
  border-top: none;
  border-radius: 15px;
}

/* White card on orange background */
.contact-box {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 45px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Text */
.contact-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2d45;
  margin-bottom: 10px;
}

.contact-text p {
  font-size: 16px;
  color: #4b5567;
  max-width: 480px;
}

/* Buttons container */
.cta-buttons-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Button Base */
.btn-whatsapp,
.btn-email {
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  transition: all 0.25s ease;
}

/* WhatsApp / Primary Button */
.btn-whatsapp {
  background-color: var(--blue-700);
  color: #ffffff;
  border: 2px solid var(--blue-700);
  box-shadow: 0 6px 18px rgba(13, 37, 71, 0.25);
}

.btn-whatsapp:hover {
  background-color: #0b1f3a;
  border-color: #0b1f3a;
  transform: translateY(-2px);
}

/* Email Button (Outline Orange) */
.btn-email {
  background-color: #ffffff;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

.btn-email:hover {
  background-color: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 800px) {
  .contact-box {
    flex-direction: column;
    text-align: center;
    padding: 35px 28px;
  }

  .contact-text p {
    margin: 0 auto;
  }

  .cta-buttons-group {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .contact-text h3 {
    font-size: 24px;
  }

  .btn-whatsapp,
  .btn-email {
    width: 100%;
    justify-content: center;
  }
}

/* MEDIA QUERIES */
@media (max-width:980px){.why-grid,.feature-grid{grid-template-columns:repeat(2,1fr);}.hero h1{font-size:36px}.hero-banner{height:420px}}
@media (max-width:700px){
  /* .nav .container{padding:12px;} */
  /* .nav-links{display:none;flex-direction:column;gap:12px;background:rgba(255,255,255,0.95);position:absolute;top:100%;right:0;width:200px;padding:12px;border-radius:8px;box-shadow:0 4px 16px rgba(0,0,0,0.1);} */
  /* .nav-links.active{display:flex;} */
  .hero-banner{height:360px}
  .hero-content{position:relative;top:0;left:0;padding:20px;background:linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.0));}
  .why-grid,.feature-grid{grid-template-columns:1fr}
  .stats{flex-direction:column;gap:12px;align-items:stretch}
  .footer .container{flex-direction:column;gap:18px}
}
