/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Container Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
}
.site-logo {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  transition: max-width 0.3s ease;
  @media (max-width: 600px) {
  .site-logo {
    max-width: 140px;
  }
}
}
.logo img {
  height: 50px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5em;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}
.nav-links li a.active,
.nav-links li a:hover {
  color:#008CDB;
  border-color: #008CDB;
}
.nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px; /* adjust depending on header */
  right: 0;
  background: white;
  width: 100%;
  padding: 1rem;
  z-index: 1100;
}

.nav.nav-active {
  display: flex;
}
/* Burger Menu */
/* Base styles */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1101;
}

.burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Animation for open state */
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive navigation */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  nav {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100vw;
    background: white;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  nav.active .nav-links {
    display: flex;
  }

  .nav-links li {
    margin: 0;
    padding: 1em;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .nav-links li a {
    font-size: 1.1em;
    color: #333;
    text-decoration: none;
  }

  .logo img {
    max-height: 50px;
  }
}
/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 1;
}
.hero-content h1 {
  font-size: 2.8em;
  margin-bottom: 0.5em;
}
.hero-content p {
  font-size: 1.25em;
  margin-bottom: 1.2em;
}
.hero-buttons .btn {
  margin: 0.5em;
}
    .animated-hero {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(120deg, #fff6f6 0%, #f0f4ff 100%);
      box-shadow: 0 8px 32px rgba(80,0,0,0.08);
      border-radius: 0 0 32px 32px;
        }
        .hero-bg-scroll {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
      pointer-events: none;
        }
        .scroll-images {
      display: flex;
      align-items: center;
      height: 100%;
      animation: scroll-bg 30s linear infinite;
      filter: blur(0.5px) brightness(0.93) saturate(1.15);
        }
        .scroll-images img {
      height: 100%;
      min-width: 400px;
      object-fit: cover;
      opacity: 0.7;
      transition: opacity 0.3s, transform 0.7s cubic-bezier(.23,1.02,.52,.98);
      margin-right: 12px;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.13);
      filter: grayscale(0.08) contrast(1.08);
      will-change: transform;
        }
        .scroll-images img:hover {
      opacity: 1;
      transform: scale(1.04) rotate(-2deg);
      filter: grayscale(0) contrast(1.15) brightness(1.05);
      z-index: 2;
        }
        /* Seamless loop: duplicate images in HTML so total width is 2x, animate -50% */
        @keyframes scroll-bg {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
        }
        .hero-overlay {
      position: relative;
      z-index: 2;
      background: linear-gradient(120deg, rgba(0,0,0,0.38) 60%, rgba(80,0,0,0.18) 100%);
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 420px;
      box-shadow: 0 8px 32px rgba(80,0,0,0.08) inset;
      border-radius: 0 0 32px 32px;
      animation: fadeInHero 1.2s cubic-bezier(.23,1.02,.52,.98);
        }
        @keyframes fadeInHero {
      from { opacity: 0; transform: translateY(40px);}
      to   { opacity: 1; transform: translateY(0);}
        }
        .hero-content {
      text-align: center;
      color: #fff;
      padding: 2.5rem 1.2rem;
      position: relative;
      z-index: 3;
      animation: heroContentPop 1.3s cubic-bezier(.23,1.02,.52,.98);
        }
        @keyframes heroContentPop {
      0% { opacity: 0; transform: scale(0.97) translateY(30px);}
      80% { opacity: 1; transform: scale(1.03) translateY(-6px);}
      100% { opacity: 1; transform: scale(1) translateY(0);}
        }
        .hero-content h1 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 1rem;
      text-shadow: 0 4px 18px rgba(0,0,0,0.22), 0 1px 0 #fff2;
      letter-spacing: 1.5px;
      background: linear-gradient(90deg, #fff 60%, #ffe5e5 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
        }
        .hero-content p {
      font-size: 1.35rem;
      margin-bottom: 2rem;
      text-shadow: 0 2px 8px rgba(0,0,0,0.18);
      color: #f8f8f8;
      background: linear-gradient(90deg, #fff 60%, #ffe5e5 100%);
      -webkit-background-clip : text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
        }
        .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 1.2em;
      margin-top: 1.2em;
      flex-wrap: wrap;
      z-index: 4;
        }
        .hero-buttons .btn {
      margin: 0 0.5rem;
      box-shadow: 0 2px 12px rgba(80,0,0,0.08);
      font-size: 1.08em;
      letter-spacing: 0.5px;
      transition: transform 0.18s cubic-bezier(.23,1.02,.52,.98), box-shadow 0.18s;
        }
        .hero-buttons .btn:hover {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 6px 24px rgba(80,0,0,0.13);
        }
        @media (max-width: 700px) {
      .scroll-images img { min-width: 180px; }
      .hero-content h1 { font-size: 1.5rem; }
      .hero-content p { font-size: 1rem; }
      .animated-hero, .hero-overlay { min-height: 260px; border-radius: 0 0 18px 18px; }
      .hero-content { padding: 1.2rem 0.5rem; }
      .hero-buttons { gap: 0.5em; }
        }
/* Buttons */
.btn {
  padding: 0.8em 1.6em;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95em;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-primary {
  background: #7BC043;
  color: white;
  border: none;
}
.btn-primary:hover {
  background: #008CDB;
}
.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn-outline:hover {
  background: white;
  color: #008CDB;
}
.btn-secondary {
  background: #00BFFF;
  color: white;
}
.btn-secondary:hover {
  background: #009acd;
}
/* Footer */
.site-footer {
  background: #1a1a1a;
  color: #eee;
  padding: 3em 1em;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
  max-width: 1100px;
  margin: auto;
}
.footer-column {
  flex: 1;
  min-width: 220px;
}
.footer-column h4 {
  color: #00BFFF;
  margin-bottom: 1em;
}
.footer-column a {
  color: #eee;
  text-decoration: none;
}
.footer-column a:hover {
  text-decoration: underline;
  color: #008CDB;
}
.footer-slogan {
  text-align: center;
  margin-bottom: 2em;
  font-style: italic;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 2em;
  padding-top: 1em;
  font-size: 0.9em;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 999;
}
.whatsapp-button img {
  width: 30px;
  height: 30px;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #008CDB;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 1.2em;
  cursor: pointer;
  display: none;
  z-index: 998;
}

/* Scroll Animation */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    right: 1em;
    top: 70px;
    padding: 1em;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  .nav-links.show {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .highlight-grid {
    flex-direction: column;
  }
  .hero-content h1 {
    font-size: 2em;
  }
}
/* Sections */
.section {
  padding: 3em 1em;
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 1.5em;
      color: #008CDB;;
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
}
.solution-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.solution-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: center;
}

.solution-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.solution-card h4 {
  margin: 1em;
  color: #008CDB;
}
/* CTA Button Row */
.cta-center {
  text-align: center;
  margin-top: 2em;
}

/* Footer */
.site-footer {
  background: #222;
  color: #eee;
  padding: 2em 1em 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
  max-width: 1100px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h4 {
  color: #00BFFF;
  margin-bottom: 0.8em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5em;
}

.footer-column a {
  color: #eee;
}

.footer-column a:hover {
  text-decoration: underline;
}

.social-icons img {
  height: auto;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding: 1em 0;
  font-size: 0.85em;
  margin-top: 2em;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 2em;
    background: white;
    flex-direction: column;
    padding: 1em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }

  .burger {
    display: flex;
  }
}
/* Footer */
.site-footer {
  text-align: center;
  padding: 1.5em;
  background: #333;
  color: white;
  margin-top: 2em;
}
/* About Page Styles */
.about-banner {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

.about-banner .two-column {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-banner-image {
  flex: 0 1 35%;
  min-width: 250px;
  max-width: 400px;
  text-align: center;
  margin: auto;
}

.about-banner-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.about-banner-text {
  flex: 1 1 45%;
}

.about-banner-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #008CDB;
}

.about-banner-text p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #555;
}
.about-section,
.about-values,
.about-expandable,
.about-cta {
  padding: 3em 1em;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-top: 2em;
}

.value-card {
  text-align: center;
  width: 240px;
}

.value-card img {
  width: auto;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1em;
}

.accordion-btn {
  width: 100%;
  padding: 1em;
  text-align: left;
  background: #eee;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1em;
}

.accordion-content {
  display: none;
  padding: 1em;
  background: #f9f9f9;
  border-left: 4px solid #008CDB;
}

.about-cta {
  background: #7BC043;
  color: white;
  text-align: center;
  padding: 3em 1em;
}

.about-cta button {
  background: bla;
  color: #008CDB;
  padding: 1em 2em;
  border: none;
  font-size: 1.1em;
  border-radius: 5px;
  cursor: pointer;
}
.about-page .container {
  width: 90%;
  margin: auto;
  padding: 2em 0;
}

.about-intro p {
  font-size: 1.2em;
  max-width: 800px;
  margin-top: 1em;
}

.about-vision-mission {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1em;
  padding: 2em 0;
  background-color: #f0f0f0;
}

.about-vision-mission .card {
  background: white;
  border: 1px solid #ddd;
  padding: 1.5em;
  border-radius: 6px;
  width: 45%;
  min-width: 280px;
}

.core-values ul {
  list-style-type: disc;
  padding-left: 1.5em;
  font-size: 1.1em;
}
/* Solutions Page Layout */
.solutions-page .container {
  padding: 4em 1em;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.solutions-page h2 {
  font-size: 2.4em;
  color: #008CDB;
  margin-bottom: 2em;
  font-weight: 700;
}

/* Grid Layout */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  align-items: stretch;
}

/* Solution Card Design */
.solution-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e3e3e3;
  border-left: 5px solid #008CDB;
  border-radius: 12px;
  border-radius: 15px;
  padding: 2em 1.5em;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Card Image */
.solution-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.2em;
}

/* Title & Description */
.solution-card h3 {
  color: #7BC043;
  font-size: 1.25em;
  margin: 0.8em 0 0.5em;
}

.solution-card p {
  font-size: 0.96em;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5em;
}

/* Call-to-Action Button */
.solution-card button {
  background-color: #7BC043;
  color: white;
  border: none;
  padding: 0.7em 1.5em;
  border-radius: 30px;
  font-size: 0.95em;
  font-weight: 600;
  cursor: pointer;
  align-self: start;
  transition: background 0.3s ease, transform 0.2s ease;
}

.solution-card button:hover {
  background-color: #7BC043;
  transform: scale(1.05);
}
.solution-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.solution-card.visible {
  opacity: 1;
  transform: translateY(0);
}
/* FEATURE BLOCKS */
.why-solventa-section {
  padding: 4em 1em;
  background: #fefefe;
}

.feature-block {
  display: flex;
  align-items: center;
  position: relative;
  background: white;
  border-radius: 10px;
  padding: 2em;
  margin-bottom: 2em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-block:hover {
  transform: translateY(-6px);
}

.feature-block.alt {
  flex-direction: row-reverse;
}

.feature-block .accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background-color: #008CDB;
}

.feature-block.alt .accent-bar {
  left: auto;
  right: 0;
}

.feature-content {
  display: flex;
  gap: 2em;
  align-items: center;
  z-index: 1;
  width: 100%;
}

.feature-content img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: transform 0.3s ease;
}

.feature-content:hover img {
  transform: scale(1.1);
}

.feature-content .text {
  flex: 1;
}

.feature-content h3 {
  margin: 0 0 0.5em;
  color: #7BC043;
  font-size: 1.3em;
}

.feature-content p {
  margin: 0;
  font-size: 1em;
  line-height: 1.5;
  color: #444;
}

/* WHATSAPP & BACK TO TOP */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  border-radius: 50%;
  padding: 10px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.whatsapp-button img {
  width: 32px;
  height: 32px;
}

#backToTop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #008CDB;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  font-size: 18px;
  z-index: 998;
}

/* Testimonials Page */
.testimonials-page .container {
  padding: 2em 0;
  max-width: 900px;
  margin: auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
  margin-top: 2em;
}

.testimonial-card {
  background-color: #e0f0ff;
  padding: 1.2em;
  border-left: 4px solid #008CDB;
  border-radius: 6px;
  font-style: italic;
}

.testimonial-card .author {
  margin-top: 1em;
  font-style: normal;
  font-weight: bold;
  color: #7BC043;
}

/* Valued Clients */
.clients-heading {
  margin-top: 3em;
  text-align: center;
  color:#008CDB;
  font-size: 1.5em;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(91.5px, 1fr));
  gap: 1.5em;
  margin-top: 1em;
  align-items: center;
  text-align: center;
}

.clients-logo {
  background-color: #f0f0f0;
  padding: 2em;
  border-radius: 6px;
  font-size: 0.9em;
  color: #777;
}
/* Contact Page */
.contact-page .container {
  padding: 2em 0;
  max-width: 800px;
  margin: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 2em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.8em;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 1em;
}

.contact-form button {
  background: #008CDB;
  color: white;
  padding: 0.9em;
  border: none;
  cursor: pointer;
  font-size: 1em;
  border-radius: 5px;
}

.contact-form button:hover {
  background: #7BC043;
}

.contact-details {
  background: #f9f9f9;
  padding: 1.5em;
  border-radius: 6px;
  line-height: 1.6;
}

.contact-details a {
  color: #0077cc;
  text-decoration: none;
}

.cta-buttons {
  margin-top: 1.5em;
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

.cta-buttons button {
  background-color: #00BFFF;
  color: white;
  padding: 0.7em 1.5em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cta-buttons button:hover {
  background-color: #009acd;
}
/* Resources Page */
.resources-page 
    body {
      font-family: 'ubuntu';
      background: #f6f8fa;
      color: #222;
      margin: 0;
      padding: 0;
    }
    .site-header {
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      padding: 1rem 0;
      font-weight: 0.5;
      font-family: serif;
    }
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    .logo img {
      height: 48px;
      vertical-align: middle;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
      margin: 0;
      padding: 0;
      align-items: center;
    }
    nav a {
      text-decoration: none;
      color: #222;
      font-weight: 600;
      transition: color 0.2s;
    }
    nav a.active, nav a:hover {
      color: #7BC043;
    }
    .section-title {
      font-family: 'ubuntu';
      font-size: 2.2rem;
      margin: 2rem 0 1.5rem;
      color: #008CDB;
      text-align: center;
      letter-spacing: 1px;
    }
    section {
      margin-bottom: 2.5rem;
    }
    .download-section, .blog-section, .careers-section {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      padding: 2rem;
      margin-bottom: 2rem;
    }
    section h3 {
      font-size: 1.3rem;
      color: #008CDB;
      margin-bottom: 1rem;
      font-family: 'ubuntu';
    }
    section ul {
      padding-left: 1.2rem;
    }
    section ul li {
      margin-bottom: 0.8rem;
      font-size: 1.05rem;
      line-height: 1.6;
    }
    section ul li a {
      color: #222;
      text-decoration: none;
      transition: color 0.2s;
    }
    section ul li a:hover {
      color: #008CDB;
      text-decoration: underline;
    }
    .careers-section ul li {
      font-weight: 500;
    }
    .careers-section p {
      margin: 0.7rem 0;
    }
    .site-footer {
      background: #222;
      color: #fff;
      padding: 2.5rem 0 1rem;
      margin-top: 3rem;
    }
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: space-between;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    .footer-column {
      flex: 1 1 220px;
      min-width: 220px;
    }
    .footer-column h4 {
      color: #298c4d;
      margin-bottom: 0.7rem;
      font-size: 1.1rem;
      font-family: 'Montserrat', sans-serif;
    }
    .footer-column ul {
      list-style: none;
      padding: 0;
    }
    .footer-column ul li {
      margin-bottom: 0.5rem;
    }
    .footer-column a {
      color: #fff;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-column a:hover {
      color: #25d366;
    }
    .footer-slogan {
      text-align: center;
      margin-bottom: 1.2rem;
      font-size: 1.1rem;
      color: #25d366;
      font-family: 'Montserrat', sans-serif;
    }
    .footer-bottom {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.95rem;
      color: #aaa;
    }
    .social-icons a {
      margin-right: 2px;
      display: inline-block;
      transition: transform 0.5s;
    }
    .social-icons a:hover {
      transform: scale(1.55);
    }
    .social-icons img {
      width : auto;
      height: 24px;
      filter: grayscale(1) brightness(2);
    }
    @media (max-width: 800px) {
      .footer-container {
        flex-direction: column;
        gap: 1.5rem;
      }
      nav ul {
        flex-direction: column;
        gap: 1rem;
      }
    }
    @media (max-width: 600px) {
      .container {
        padding: 0 0.5rem;
      }
      .download-section, .blog-section, .careers-section {
        padding: 1rem;
      }
    }
/* ============================= */
/* MOBILE OPTIMIZATION */
/* ============================= */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 1em;
    margin-top: 1em;
  }

  .hero-content h2 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
  }

  .highlights {
    flex-direction: column;
    align-items: center;
  }

  .solutions-grid,
  .testimonial-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    gap: 0.8em;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .about-vision-mission .card {
    width: 100%;
  }

  .resources-page ul {
    font-size: 0.95em;
  }
}
button {
  padding: 0.9em 1.7em;
  font-size: 1.1em;
}
/* 404 Page */
.not-found-page {
  text-align: center;
  padding: 5em 1em;
}

.not-found-page h2 {
  font-size: 2.5em;
  color: maroon;
  margin-bottom: 0.5em;
}

.not-found-page p {
  font-size: 1.2em;
  margin-bottom: 2em;
}
.logo img {
  height: 89px;
  width: auto;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* FOOTER */
.site-footer {
  background-color: #1a1a1a;
  color: #eee;
  padding: 3em 1em 1.5em;
  font-size: 0.95em;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 2em;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h4 {
  color: #00BFFF;
  margin-bottom: 1em;
  font-size: 1.1em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5em;
}

.footer-column a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
}

.footer-column a:hover {
  text-decoration: underline;
      color: #008CDB;
  color: #00BFFF;
}

.footer-slogan {
  text-align: center;
  color: #ccc;
  margin-bottom: 1.5em;
  font-style: italic;
  font-size: 1em;
}

.social-icons img {
  height: 34px;
  margin-right: 20px;
  filter: brightness(1.2) invert(0);
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1em;
  margin-top: 2em;
  font-size: 0.85em;
  color: #bbb;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .feature-block,
  .feature-block.alt {
    flex-direction: column;
    text-align: center;
  }

  .feature-block .accent-bar,
  .feature-block.alt .accent-bar {
    display: none;
  }

  .feature-content {
    flex-direction: column;
    gap: 1em;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 2em;
  }
}
.who-we-are {
  background: #f9f9f9;
  padding: 3em 1em;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.who-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.who-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.who-text {
  flex: 1;
  min-width: 300px;
}

.who-text h2 {
  font-size: 2em;
  color: #008CDB;
  margin-bottom: 0.6em;
}

.who-text p {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}

.badge {
  background: #fff;
  border-left: 5px solid #008CDB;
  padding: 1em 1.2em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 200px;
}

.badge h3 {
  margin: 0;
  color: #222;
  font-size: 1.4em;
}

.badge p {
  margin: 0.4em 0 0;
  font-size: 0.95em;
  color: #555;
}

@media (max-width: 768px) {
  .two-column {
    flex-direction: column-reverse;
  }

  .badges {
    flex-direction: column;
  }
}
/* WhatsApp Floating Button */
.whatsapp-button {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 1000;
      background: #25d366;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: box-shadow 0.2s;
    }
    .whatsapp-button img {
      width: 32px;
      height: 32px;
    }
    #backToTop {
      position: fixed;
      bottom: 100px;
      right: 36px;
      background: rgb(0, 140, 219)f;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      font-size: 1.5rem;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
      display: none;
      z-index: 1000;
      transition: background 0.2s;
    }
    #backToTop:hover {
      background: maroon;
    }
.footer-slogan {
  text-align: center;
  color: #ccc;
  margin-top: 1.5em;
  font-style: italic;
}
/* Page transition animation */
body.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

body.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}
/* Combined Solutions + Highlights */
.solutions-highlights {
  background: url('images/school.jpg') center/cover no-repeat;
  padding: 5em 1em;
  position: relative;
}

.combined-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
  align-items: flex-start;
}

/* Floating Cards */
.floating-cards {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex: 3;
  gap: 2em;
  position: relative;
}

.solution-card.stagger {
  background: white;
  border-left: 5px solid rgb(0, 140, 219);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 1.5em;
  transition: 0.3s ease;
  width: 100%;
  max-width: 380px;
  position: relative;
}
.solution-card.stagger:hover {
  transform: translateY(-5px);
}
.card-1 { margin-left: 0; }
.card-2 { margin-left: 120px; }
.card-3 { margin-left: 0px; }

.solution-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1em;
}
.solution-card h3 {
  color: rgb(0, 140, 219);
  margin-bottom: 0.5em;
}
.solution-card p {
  font-size: 0.9em;
  color: #444;
}

/* Highlights Stack */
.highlights-stack {
  flex: 2.5;
  display: flex;
  flex-direction: column-reverse;
  gap: 2.5em;
  align-items: auto-fit;
  justify-content: space-evenly;
}

/* Enhanced Highlight Block */
.highlight-block {
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border-left: 5px solid rgb(0, 140, 219);
  border-radius: 12px;
  padding: 2em 1.5em;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Add a subtle floating animation on hover */
.highlight-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.highlight-block img {
  width: auto-fit;
  height: 86px;
  margin-bottom: 1.2em;
  transition: transform 0.3s ease;
}
.highlight-block:hover img {
  transform: scale(1.08);
}

/* Title Styling */
.highlight-block h4 {
  color: rgb(0, 140, 219);
  font-size: 1.4em;
  margin-bottom: 0.3em;
  font-weight: 700;
}

/* Text */
.highlight-block p {
  color: #555;
  font-size: 1em;
  font-weight: 500;
  margin-top: 0.2em;
  letter-spacing: 0.3px;
}
/* Responsive */
@media (max-width: 900px) {
  .combined-layout {
    flex-direction: column;
    align-items: center;
  }
  .floating-cards {
    margin-bottom: 2em;
  }
  .card-1, .card-2, .card-3 {
    margin-left: 0;
  }
}
.solution-card[data-animate],
.highlight-block[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
.solution-card[data-animate].animated,
.highlight-block[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}
.smart-solution-card {
  background: white;
  border-left: 5px solid #008CDB;
  border-radius: 12px;
  padding: 1.5em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
smart-solution-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
/* ===== Careers Section ===== */
.careers-section {
  background: #f8faff;
  padding: 80px 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.careers-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.careers-section h3 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: 700;
}

.careers-section h3 i {
  margin-right: 10px;
}

.careers-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.career-opening {
  background: #ffffff;
  border-left: 5px solid #007bff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 25px 30px;
  margin: 40px 0;
  text-align: left;
}

.career-opening h4 {
  font-size: 1.3rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 15px;
}

.career-opening p {
  color: #444;
  line-height: 1.6;
}

.career-opening a.btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.career-opening a.btn:hover {
  background: #0056b3;
}

.career-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 20px;
  text-align: left;
}

.career-list li {
  font-size: 1rem;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  border-bottom: 1px solid #eee;
}

.career-list li i {
  font-size: 1.1rem;
}

.careers-section a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.careers-section a:hover {
  text-decoration: underline;
}
