
      :root {
        --primary-color: #06aeef;
        --secondary-color: #f9efca;
        --accent-color: #fede42;
        --black-color: #000;
        --white-color: #fff;
        --text-color: #8f8f8f;
        --divider-color: #dfe1de;
        --error-color: rgb(230, 87, 87);
        --default-font: "Rubik", sans-serif;
        --body-font: "Inter", sans-serif;
      }
      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        font-family: var(--body-font);
        color: #333;
        background: var(--white-color);
      }

        /* Basic Nav Layout */
nav {
    background:var(--accent-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    margin-left: 25px;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #06aeef; /* Corporate Blue */
}

/* Optional CTA Button Style */
.nav-cta {
    background: #06aeef;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 5px;
}

/* Hamburger Toggle Hidden on Desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #06aeef;
    margin: 3px 0;
    transition: 0.4s;
}

/* --- Mobile Styles (Breakpoints) --- */
@media screen and (max-width: 991px) {
    .menu-toggle {
        display: flex; /* Show hamburger */
    }

    .nav-links {
        position: absolute;
        top: 100%; /* Directly under the nav */
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        display: none; /* Hidden by default */
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        display: flex; /* Shown when toggled */
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
    }
}


      /* HERO */
      /* .hero {
        background: linear-gradient(135deg, #eaf9ff, var(--white-color));
        background-image: url(assets\images\hero-bg.png);
        padding: 140px 20px 100px;
      } */
      .hero {
        position: relative;
        padding: 140px 20px 100px;

        /* Background image */
        background-image: url("../images/hero-bg.png");

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }
      .hero-inner {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
      }
      .hero h1 {
        font-family: var(--default-font);
        font-size: 3rem;
        color: var(--white-color);
      }
      .hero p {
        color: var(--text-color);
        margin: 20px 0;
      }
      .hero-box {
        background: #fff;
        padding: 35px;
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      }
      .btn {
        background: var(--accent-color);
        color: #000;
        padding: 14px 30px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
      }

      /* SECTIONS */
      section {
        padding: 90px 20px;
      }
      .wrap {
        max-width: 1200px;
        margin: auto;
      }
      h2 {
        font-family: var(--default-font);
        text-align: center;
        font-size: 2.2rem;
      }
      .sub {
        text-align: center;
        color: var(--text-color);
        max-width: 700px;
        margin: 15px auto 50px;
      }

      /* GRID */
      .grid {
        display: grid;
        gap: 30px;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      }
      .card {
        background: #fff;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
      }

      /* FAQ */
      .faq-item {
        border-bottom: 1px solid var(--divider-color);
        padding: 18px 0;
      }
      .faq-q {
        cursor: pointer;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
      }
      .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: 0.4s;
      }
      .faq-item.active .faq-a {
        max-height: 200px;
        margin-top: 10px;
        color: var(--text-color);
      }

      /* FORM */
      form input,
      form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 10px;
        border: 1px solid var(--divider-color);
        font-family: var(--body-font);
      }
      form input:focus,
      textarea:focus {
        outline: none;
        border-color: var(--primary-color);
      }
      .error {
        color: var(--error-color);
        font-size: 0.85rem;
      }

      /* FOOTER */
      footer {
        background: #000;
        color: #aaa;
        text-align: center;
        padding: 35px 20px;
      }

      /* FLOATING */
      #topBtn {
        position: fixed;
        bottom: 90px;
        right: 28px;
        background: var(--primary-color);
        color: #fff;
        border: none;
        padding: 14px 16px;
        border-radius: 50%;
        display: none;
      }
      .whatsapp {
        position: fixed;
        bottom: 28px;
        right: 28px;
        background: #25d366;
        color: #fff;
        padding: 15px 18px;
        border-radius: 50%;
        font-size: 22px;
        text-decoration: none;
      }

      /* MOBILE */
      @media (max-width: 900px) {
        .hero-inner {
          grid-template-columns: 1fr;
        }
        .hero h1 {
          font-size: 2.3rem;
        }
      }
      .industry-scroll {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        padding: 20px;
        scroll-snap-type: x mandatory;
      }
      .industry-scroll::-webkit-scrollbar {
        display: none;
      }

      .industry-card {
        min-width: 280px;
        background: #fff;
        border-radius: 18px;
        padding: 25px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        scroll-snap-align: start;
        position: relative;
      }
      .icon {
        font-size: 36px;
        margin-bottom: 10px;
      }
      .industry-card h3 {
        font-family: var(--default-font);
        margin: 10px 0 5px;
      }
      .expand-btn {
        background: none;
        border: none;
        color: var(--primary-color);
        font-weight: 600;
        cursor: pointer;
        padding: 0;
      }
      .industry-detail {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
      }
      .industry-card.active .industry-detail {
        max-height: 400px;
        margin-top: 15px;
      }
      .btn.small {
        margin-top: 15px;
        padding: 10px 20px;
        font-size: 0.9rem;
      }
      .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }

      .why-card {
        background: #fff;
        border-radius: 18px;
        padding: 35px 30px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: 0.35s ease;
      }

      .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 60px rgba(6, 174, 239, 0.25);
      }

      .why-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 20px;
        border-radius: 50%;
        background: var(--secondary-color);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .why-icon svg {
        width: 30px;
        height: 30px;
        fill: var(--primary-color);
      }

      .why-card h3 {
        font-family: var(--default-font);
        margin-bottom: 10px;
      }

      .why-card p {
        color: var(--text-color);
        font-size: 0.95rem;
        line-height: 1.6;
      }
      /* CONTACT INFO */
      .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
        margin-bottom: 40px;
      }

      .contact-info-card {
        background: var(--white-color);
        border-radius: 16px;
        padding: 25px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      }

      .contact-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
      }

      /* FORM */
      .contact-form-card {
        background: var(--white-color);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
      }

      .form-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        margin-bottom: 20px;
      }

      .contact-form-card textarea {
        width: 100%;
        margin-bottom: 20px;
      }

      .captcha-wrap {
        margin-bottom: 20px;
      }
      /* FOOTER */
      .primary-footer {
        background: var(--primary-color);
        color: #ccc;
        padding: 70px 20px 50px;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 40px;
      }

      .footer-col h4 {
        font-family: var(--default-font);
        color: var(--white-color);
        margin-bottom: 15px;
      }

      .footer-col p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #fff;
      }

      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-links li {
        font-size: 0.9rem;
        margin-bottom: 8px;
        color: #fff;
      }

      .footer-logos {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 10px;
        justify-content: center;
      }

      .footer-logos img {
        max-height: 45px;
        background: #fff;
        padding: 6px;
        border-radius: 6px;
      }

      .small-text {
        font-size: 0.8rem;
        margin-top: 10px;
        color: #999;
      }

      /* SECONDARY FOOTER */
      .secondary-footer {
        background: #000;
        color: #999;
        text-align: center;
        padding: 15px 20px;
        font-size: 0.85rem;
        border-top: 1px solid #222;
      }
      /* FOOTER SOCIAL */
      .footer-social {
        display: flex;
        gap: 12px;
        margin-top: 15px;
        justify-content: center;
      }

      .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--accent-color);
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        text-decoration: none;
        transition: 0.3s;
      }
      .footer-social a:hover {
        background: var(--primary-color);
        color: #fff;
      }

      /* FOOTER LINKS */
      .footer-links li a {
        color: #fff;
        text-decoration: none;
      }
      .footer-links li a:hover {
        color: var(--accent-color);
      }

      /* SECONDARY FOOTER LINKS */
      .secondary-footer a {
        color: #bbb;
        text-decoration: none;
      }
      .secondary-footer a:hover {
        color: var(--accent-color);
      }
    /* INNER HERO */
.inner-hero{
  background:linear-gradient(135deg,var(--secondary-color),var(--white-color));
  padding:120px 20px 80px;
  text-align:center;
}
.inner-hero h1{
  font-size:2.4rem;
}

/* ABOUT */
.about-section{
  padding:70px 20px;
}
.wrap.narrow{
  max-width:900px;
}
.about-section p{
  font-size:1.05rem;
  line-height:1.8;
  margin-bottom:20px;
}

/* SERVICES */
.services-section{
  background:#f8f9fa;
  padding:70px 20px;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}
.service-card{
  background:#fff;
  padding:20px;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* CEO */
.ceo-section{
  padding:0px;
}
.ceo-grid{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:50px;
  align-items:center;
}
.ceo-image img{
  max-width:100%;
  border-radius:20px;
}
.designation{
  color:var(--text-color);
  margin-bottom:15px;
}

/* CTA */
.about-cta{
  background:var(--secondary-color);
  color:#000;
  text-align:center;
  padding:70px 20px;
}
.about-cta .btn-dark{
  background:#000;
  color:#fff;
  margin-top:20px;
}
.service-card{
  background:#fff;
  padding:30px 20px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:.3s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.service-icon{
  width:64px;
  height:64px;
  margin:0 auto 15px;
  border-radius:50%;
  background:var(--accent-color);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
}

.service-card h4{
  font-size:1rem;
  line-height:1.4;
}

/* SERVICE PAGE */
.service-section{
  padding:70px 20px;
}

.service-section h2{
  margin-bottom:20px;
}

.service-section p{
  font-size:1.05rem;
  line-height:1.8;
  margin-bottom:20px;
}

/* FEATURES */
.service-features{
  background:#f8f9fa;
  padding:70px 20px;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.feature-card{
  background:#fff;
  padding:20px;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  font-weight:500;
}

/* CTA */
.service-cta{
  background:var(--secondary-color);
  color:#000;
  text-align:center;
  padding:70px 20px;
}

.service-cta .btn-dark{
  background:#000;
  color:#fff;
  margin-top:20px;
}

.small-link{
  margin-top:15px;
  font-size:.9rem;
}

.service-intro-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  margin-top:30px;
}

.intro-card{
  background:#fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.intro-icon{
  width:52px;
  height:52px;
  background:var(--accent-color);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:15px;
}

.feature-card{
  background:#fff;
  padding:30px 20px;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  text-align:center;
  font-weight:500;
}

.feature-icon{
  display:flex;
  width:56px;
  height:56px;
  margin:0 auto 12px;
  border-radius:50%;
  background:var(--accent-color);
  align-items:center;
  justify-content:center;
  font-size:26px;
}
img.logo {
    max-height: 50px;
}