:root{
  --primary:#073279;
  --accent:#2b61ff;
  --muted:#6c757d;
  --hero-pad:120px;
}

/* Global */
*{box-sizing:border-box}
body{
  font-family: "Poppins", sans-serif;
  color:#0b2238;
  margin:0;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  background:#fff;
}

/* Header */
li.nav-item {
    /* font-size: 18px; */
    font-size: 16px;
    margin-right: 10px;
}
a.nav-link {
    /* font-size: 18px; */
    font-size: 16px;
    margin-right: 10px;
}
a.btn.btn-primary.btn-styl {
    height: 29px;
    width: 81px;
    padding: 1px;
}

a.btn.btn-primary.btn-styl.nav-link {
    background: #073279f5;
    color: #fff;
}

.site-header{
  width:100%;
  transition:all .25s ease;
  z-index:999;
  /* background:transparent; */
  background-color: #F2F2F2;
  position:relative;
  /* padding:20px 0; */
}
.site-header.scrolled{
  background: #f2f2f2;
  /* box-shadow:0 6px 18px rgba(10,20,40,.06); */
  box-shadow: 0px 4px 24px 0px #0000001F;
  position:fixed;
  top:0;
  left:0;
  right:0;
}

.site-header1 {
    background-color: #fff; /* another pages->white color of header*/
}

/* Sticky Header */

/* .header-area {
    background: #fff;
    padding: 15px 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
} */


/* Hero */
.btn:hover {
    color: #fff;
    background-color: #073279f5 !important;
    border-color: #073279f5 !important;
}

.hero-section{
  background-image: url('../images/hero-bg.png');
  background-repeat:no-repeat;
  background-position: left center;
  background-size: cover;
  min-height: calc(var(--hero-pad) + 200px);
  display:flex;
  align-items:center;
  /* padding: 155px 0; */
  padding: 188px 0;
  background-color: #F2F2F2;
}

.hero-title{
  font-family:Poppins, sans-serif;
  font-weight:600;
  font-size:64px;
  line-height:78px;
  color:var(--primary);
  margin:0 auto;
  max-width:980px;
  text-align:center;
}

.hero-sub{
  font-family:Poppins, sans-serif;
  font-weight:400;
  font-size:20px;
  line-height:1.4;
  color: #4E4646;
  margin-top:18px;
  text-align:center;
  max-width:660px;
  margin-left:auto;
  margin-right:auto;
}

/* CTA button style for hero */
.hero-cta .hero-btn{
  /* width:187px;  */
  height:48px;
  font-weight:400;
  background:var(--primary);
  border-color:var(--primary);
  margin-bottom: 10px;
  transition:transform .18s ease;
}

.hero-cta .hero-btn:hover{transform:translateY(-6px); box-shadow:0 12px 28px rgba(10,20,40,.06);}

.hero-cta .wh{width:187px;}
.hero-cta .wh1{width:294px;}

/* Partner section */
.partner-section .section-title{
  font-family:Poppins, sans-serif;
  font-weight:600;
  font-size:59px;
  line-height:70px;
  color:var(--primary);
  margin-bottom:6px;
}
.partner-section .medium{
  font-family:Poppins, sans-serif;
  font-weight:500;
  font-size:22px;
  line-height:28px;
  color:#2b3b63;
}

/* Section Base */
.partner-section {
  background: #ffffff;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* Flex Layout */
.partner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Left Text */
.section-title {
  margin-bottom: 15px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 64px;
  /* line-height: 24px; */
  letter-spacing: 0.26px;
  /* text-align: center; */
  vertical-align: middle;
  color: #073279;
}
.servic-txt{
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.7px;
  text-align: center;
  vertical-align: middle;
  color: #6A6A6A;
}

/* Features Grid */
.feature-card {
        background: #fff;
        border-radius: 12px;
        padding: 15px 20px;
        box-shadow: 0px 4px 24px 0px #0000001F;
        font-size: 22px;
        font-weight: 500;
        position: relative;
        min-height: 93px;
        display: flex;
        align-items: center;
        color: #4E4646;
      /* padding: 14px 18px; */
      /* display: flex;
      align-items: center;
      gap: 12px; */
      }

    /* Blue dot outside left edge */
    .feature-card::before {
        content: "";
        position: absolute;
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        background: #0A2973;
        border-radius: 50%;
    }

    @media (max-width: 768px) {
        .feature-card {
            min-height: auto;
            padding: 12px 15px;
        }
        .feature-card::before {
            left: -8px;
            width: 14px;
            height: 14px;
        }
    }
/* .features {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 20px 30px;
}

.feature-box {
  background: #ffffff;
  /* box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
  box-shadow: 0px 4px 24px 0px #0000001F;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-text {
  font-size: 16px;
  font-weight: 500;
  color: #4E4646;
}

.dot {
  width: 14px;
  height: 14px;
  background: #073279;
  border-radius: 50%;
  flex-shrink: 0;
} */

/* Right Image */
.partner-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .partner-content {
    flex-direction: column;
    text-align: center;
  }
  .features {
    grid-template-columns: 1fr;
  }
}

/* Features list */
.features-list .dot{
  display:inline-block;
  width:10px;
  height:10px;
  background:var(--primary);
  border-radius:50%;
}

/* work experience + progress + quality */
.py-work{
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.work-prog {
    font-family: Poppins;
    font-weight: 600;
    /* font-style: SemiBold; */
    font-size: 85px;
    line-height: 90%;
    text-align: center;
    text-transform: uppercase;
    color: #073279;
    margin-bottom: 15px;
}
.work-txt{font-family: Poppins;
    font-weight: 600;
    /* font-style: SemiBold; */
    font-size: 21px;
    line-height: 120%;
    text-align: center;
    color: #4E4646;
}

/* service cards */
.service-card{
  background:#fff;
  border-radius:12px;
  /* border:1px solid rgba(11,34,57,.06); */
  box-shadow: 0px 4px 24px 0px #0000001F;
  min-height:220px;
  transition:transform .18s ease;
  border-color: #E2F1FF;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:0 12px 28px rgba(10,20,40,.06); }
.service-icon{width:100px; height:auto;margin:0 auto;}
/* .ico{width: 146px; height: auto;}
.ico{width: 146px; height: auto;}
.ico{width: 146px; height: auto;}
.ico{width: 146px; height: auto;} */

.heading{
    font-family: Poppins;
    font-weight: 600;
    /* font-style: SemiBold; */
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #1B2C58;
}

.text-mute{
    color:#777777;
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    vertical-align: middle;
}

/* Base Section Styling */
.special-offers {
  background: #2563eb; /* Blue background */
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Pattern Effect */
.special-offers::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* background: url('images/pattern-lines.svg') no-repeat center/cover; */
  opacity: 0.2;
}

/* Heading Typography */
.offers-title {
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0.88px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

/* Subtext Typography */
.offers-subtext {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 24px;
  line-height: 50px;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* Buttons */
.offers-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.offer-btn {
  background: #fff;
  color: #2563eb;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.4px;
  padding: 16px 28px;
  /* border-radius: 4px; */
  text-decoration: none;
  transition: all 0.3s ease;
}

.offer-btn:hover {
  /* background: #f4f4f4; */
  background-color: #073289;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .offers-title {
    font-size: 40px;
  }
  .offers-subtext {
    font-size: 17px;
    line-height: 30px;
    gap: 20px;
  }
}

.service-bg-img{
  background-image: url('../images/Layer_1.png');
  background-repeat:no-repeat;
  background-position: left center;
  background-size: cover;
  min-height: calc(var(--hero-pad) + 200px);
  display:flex;
  align-items:center;
  padding: 60px 0;
}

   /* Why choose  */
    .container1 {
        display: flex;
        justify-content: center;
        /* gap: 40px; */
        padding: 60px 60px;
        flex-wrap: wrap;
    }
    .left-section {
        max-width: 400px;
         /* max-width: 450px; */
         margin-top: 152px;
    }
    .left-section h2 {
        font-weight: 700;
        font-size: 48px;
        color: #0A2D5C;
        margin-bottom: 20px;
    }
    .left-section p {
        font-family: Poppins;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #777777;
        margin-bottom: 20px;
    }
    .left-section button {
        width: 221px;
        height: 47px;
        opacity: 1;
        border-radius: 5px;
        background-color: #0A2D5C;
        color: white;
        /* padding: 14px 28px; */
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 500;
        font-size: 16px;
    }
    .right-section {
        display: flex;
        gap: 20px;
    }
    .column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .pd{padding: 115px 10px;}
    .box {
        background: #fff;
        border-radius: 15px;
        /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); */
        box-shadow: 0px 4px 24px 0px #0000001F;
        padding: 40px 25px;
        text-align: center;
        max-width: 300px;
        transition:transform .18s ease;
    }

    .box:hover{transform:translateY(-6px); box-shadow:0 12px 28px rgba(10,20,40,.06);}

    .box h3 {
        font-weight: 500;
        font-size: 26px;
        line-height: 120%;
        color: #073279;
        margin-bottom: 10px;
    }
    .box p {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #777777;
        margin: 0;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .right-section {
            flex-wrap: wrap;
            justify-content: center;
        }
    }
    @media (max-width: 768px) {
        .right-section {
            flex-direction: column;
            align-items: center;
        }
        .box {
            max-width: 100%;
        }
    }

/* why choose info cards */
.info-card{
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(10,20,40,.05);
  text-align:center;
  height:100%;
}


.start-button{transition:transform .18s ease;}
.start-button:hover{transform:translateY(-6px); box-shadow:0 12px 28px rgba(10,20,40,.06);}

.slider-st{
font-family: Poppins;
    font-weight: 600;
    /* font-style: SemiBold; */
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 0px;
    text-align: center;
    color: #073279;
}
.faq-section1 {
  padding: 40px 45px;
  background: #fff;
  max-width: 1300px;
  margin: auto;
  border-radius: 25px;
  box-shadow: 0px 4px 24px 0px #0000001F;

}
/* faq / newsletter / footer */
/* .faq .section-title,
.services .section-title{ font-size:64px; color:var(--primary); font-weight:600; margin-bottom:1rem; } */
.faq-section {
  padding: 20px 10px;
  background: #fff;
  max-width: 1300px;
  margin: auto;
  border-radius: 25px;
  box-shadow: 0px 4px 24px 0px #0000001F;

}

.faq-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  text-align: center;
  color: #0b2c65;
  margin-bottom: 65px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  color: #4E4646;
}

.faq-toggle {
  width: 42.24px;
  height: 42.24px;
  border: 2.11px solid #000000;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-toggle .line {
  position: absolute;
  background-color: #EA5455;
  transition: all 0.3s ease;
}

.faq-toggle .minus {
  width: 16px;
  height: 2px;
}

.faq-toggle .plus-vertical {
  width: 2px;
  height: 16px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-toggle .plus-horizontal {
  width: 16px;
  height: 2px;
  transition: transform 0.3s ease;
}

.faq-answer {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 2%;
  color: #838383;
  margin-top: 10px;
  /* display: none; */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
    /* display: block; */
}

.faq-item.active .faq-toggle .plus-vertical {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .faq-toggle .plus-horizontal {
  transform: rotate(180deg);
}







/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 40px;
    line-height: 48px;
  }
  .faq-question span {
    font-size: 20px;
  }
  .faq-answer {
    font-size: 18px;
    line-height: 28px;
  }
}

/* .newsletter-card{
  background:#fff;
  box-shadow:0 8px 28px rgba(10,20,40,.06);
} */


/* trusted */
.trusted-by {
  overflow: hidden;
}

.slider {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.logos {
  display: flex;
  animation: slidein 20s linear infinite;
}

.logos img {
  flex: 0 0 20%; /* 100% / 5 = 20% */
  max-width: 20%;
  height: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

@keyframes slidein {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .logos img {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .logos img {
    flex: 0 0 50%;
    max-width: 80%;
  }

  .slider-st{font-size: 40px;}
  .mb-5 {margin-bottom: 1rem !important;}
}

/* trusted end */
.newsletter{padding: 85px 160px;}
.newsletter-container.ig {
overflow: inherit;}

.newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 4px 24px 0px #0000001F;
    padding: 30px 35px 13px 35px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

/* Image overlaps outside the box */
.newsletter-img {
    position: relative;
}
.newsletter-img img {
    max-width: 400px;
    height: auto;
    position: relative;
    top: -70px;
}

/* Text content */
.newsletter-content {
    flex: 1;
    min-width: 260px;
}

.newsletter-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 45px;
    /* font-size: 48px; */
    line-height: 40px;
    color: #073279;
    margin: 0 0 50px 0;
}

/* Form styling */
.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    border: none;
    outline: none;
    background: #f5f5f5;
    border-radius: 33px;
}

.newsletter-form button {
    width: 212px;
    height: 48px;
    background: #073279;
    color: #fff;
    border: none;
    border-radius: 52px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #0b4a9b;
}

/* Tablet */
@media (max-width: 991.98px) {
    section {
        padding: 60px 40px;
    }
    .newsletter-content h2 {
        font-size: 36px;
        line-height: 40px;
    }
    .newsletter-img img {
        max-width: 250px;
        top: -30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
  .newsletter{padding: 60px 40px;}
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-img img {
        max-width: 200px;
        top: -20px;
    }
    .newsletter-content h2 {
        font-size: 28px;
        line-height: 32px;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    .newsletter-form button {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* Extra small */
@media (max-width: 480px) {
    .newsletter-content h2 {
        font-size: 24px;
    }
    .newsletter-img img {
        max-width: 180px;
        top: -10px;
    }
}


/* Footer */
.footer-topp {
    border-bottom: 1px solid #4E4646;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
 .footer-section {
    /* background: #f3f5f8; */
    padding: 40px 0 0;
    font-family: 'Poppins', sans-serif;
    background: #EAEDF1;
    border-top: 1px solid #ddd;
  }

  /* Quick Links */
  /* .footer-title { */
 .footer-heading {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #073279;
    /* border-bottom: 1px solid #ddd; */
    display: inline-block;
    padding-bottom: 4px;
  }

  /* .footer-links-top ul li a {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 140%;
    color: #252525;
    text-decoration: none;
    transition: color 0.3s;
  } */

    .footer-links-top ul li a:hover {
    color: #073279;
    }

    .footer-links-top ul li a:hover::after {
    width: 100%;
    }

  /* Follow On */
  .follow-title {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #252525;
  }
  /* Social Icons */
 .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.32px solid #252525;
    color: #073279;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}
  .social-icons a:hover {
    /* background: #252525; */
    background: #073279;
    color: #fff;
  }

  /* Products */
 .products-title {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    color: #073279;
    padding-bottom: 12px;
    border-bottom: 1px solid #4E4646;
}
  .product-heading {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
    color: #252525;
  }

  /* Bottom */
  .copyright {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #252525;
  }
  .footer-links a {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #252525;
    text-decoration: none;
  }
  .footer-links a:hover {
    color: #073279;
  }

  /* Quick Links Hover Animation */
.footer-links-top ul li a {
  position: relative;
  display: inline-block;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 140%;
  color: #252525;
  text-decoration: none;
  transition: color 0.3s;
}

 .footer-links-top ul li a:hover {
    color: #073279;
    }

.footer-links-top ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #073279;
  transition: width 0.3s ease-in-out;
}

/* Product List Hover */
.product-list li {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 41px;
  color: #555;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-list li:hover {
  color: #073279;
  padding-left: 8px;
}
.footer-bottom {
  border-top: 1px solid #4E4646;
  padding-top: 15px;
  margin-top: 20px;
}







  /* .footer-section {
      background-color: #EAEDF1; border-bottom: 1px solid #ccc;
  } */

  /* ===== Footer Styling ===== */
/* .main-footer {
    background: #f9fafb;
    color: #111827;
    font-family: 'Segoe UI', sans-serif;
    padding: 40px 0 20px;
    border-top: 1px solid #e5e7eb;
}

.footer-top {
    border-bottom: 1px solid #d1d5db;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.footer-links-top ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 10px 0 0 0;
}
.footer-links-top a {
    color: #374151;
    font-size: 14px;
    text-decoration: none;
}
.footer-links-top a:hover {
    color: #1d4ed8;
}
.footer-follow span {
    margin-right: 10px;
    font-size: 14px;
    color: #374151;
}
.footer-follow a {
    margin-right: 10px;
    font-size: 14px;
    color: #374151;
}
.footer-follow a:hover {
    color: #1d4ed8;
}

.footer-products h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 20px;
}
.footer-products h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}
.footer-products ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.footer-products li {
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid #d1d5db;
    margin-top: 25px;
    padding-top: 15px;
    font-size: 13px;
    color: #6b7280;
}
.footer-bottom a {
    color: #374151;
    text-decoration: none;
    margin-left: 8px;
}
.footer-bottom a:hover {
    color: #1d4ed8;
} */

  /* .menu-footer
  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
    padding-top: 20px;
  }
footer {
        background:#EAEDF1;;
        padding: 40px 20px;
        max-width: 1300px;
        margin: auto;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        border-bottom: 1px solid #ccc;
        padding-bottom: 20px;
        gap: 20px;
    }

    .footer-heading {
        font-weight: 600;
        font-size: 20px;
        line-height: 140%;
        color: #073279;
    }

    .footer-links {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    .footer-links a {
        font-weight: 500;
        font-size: 18px;
        line-height: 140%;
        color: #252525;
        text-decoration: none;
    }

    .social-icons {
        display: flex;
        gap: 15px;
    }

    .social-icons a {
        display: inline-flex;
        width: 35px;
        height: 35px;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        border: 1px solid #ccc;
        color: #252525;
        text-decoration: none;
        font-size: 16px;
    }

    /* Products Section
    .footer-products {
        margin-top: 30px;
    }
    .txt-footer
    {
      font-family: Poppins;
      font-weight: 400;
      font-style: Regular;
      font-size: 16px;
      line-height: 22px;
      color: #4E4646;
    }

    .txt-foot{
      font-family: Poppins;
      font-weight: 500;
      font-style: Medium;
      font-size: 18px;
      line-height: 140%;
      vertical-align: middle;
    }
    .mr-foot{margin-left: 30px;} */

    /* .products-heading {
        font-weight: 600;
        font-size: 20px;
        line-height: 140%;
        color: #073279;
        border-bottom: 1px solid #ccc;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 41px;
    }

    .product-column h4 {
        font-weight: 500;
        font-size: 18px;
        line-height: 140%;
        color: #252525;
        margin-bottom: 10px;
    }

    .product-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .product-column ul li {
        font-weight: 400;
        font-size: 16px;
        line-height: 41px;
        color: #252525;
    } */

    /* @media (max-width: 768px) {
        .footer-links {
            gap: 15px;
        }
        .footer-top {
            flex-direction: column;
            align-items: flex-start;
        }
    }*/










    /* =========================
   Responsive Fixes
   ========================= */

/* Mobile First - Default styles for small screens */
/* img {
  max-width: 100%;
  height: auto;
} */

/* Text adjustments */
/* h1, h2, h3, h4, h5 {
  word-break: break-word;
} */

/* =========================
   Tablet (≥576px)
   ========================= */
/* @media (min-width: 576px) {
  .hero-section {
    text-align: left;
  }
  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
} */

/* =========================
   Medium Devices (≥768px)
   ========================= */
/* @media (min-width: 768px) {
  .partner-section {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .counters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .why-choose {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .newsletter {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
} */

/* =========================
   Large Devices (≥992px)
   ========================= */
/* @media (min-width: 992px) {
  .hero-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0;
  }
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .counters {
    grid-template-columns: repeat(4, 1fr);
  }
  .why-choose {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
} */

/* =========================
   Extra Large Devices (≥1200px)
   ========================= */
/* @media (min-width: 1200px) {
  .hero-section {
    padding: 6rem 0;
  }
  .partner-section img {
    max-width: 500px;
  }
} */



/* =========================
   For screens ≤ 1200px
   ========================= */
/* @media (max-width: 1200px) {
  .hero-section {
    padding: 4rem 0;
  }
  .partner-section img {
    max-width: 450px;
  }
} */

/* =========================
   For screens ≤ 992px
   ========================= */
/* @media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }
  .hero-section img {
    max-width: 400px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
} */

/* =========================
   For screens ≤ 768px
   ========================= */
/* @media (max-width: 768px) {
  .partner-section {
    flex-direction: column;
    text-align: center;
  }
  .partner-section img {
    max-width: 350px;
  }
  .counters {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter {
    flex-direction: column;
    text-align: center;
  }
} */

/* =========================
   For screens ≤ 576px
   ========================= */
/* @media (max-width: 576px) {
  .hero-section img {
    max-width: 300px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .counters {
    grid-template-columns: 1fr;
  }
  .why-choose {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
} */



/* ======================================================================
                gst-services
                Breadcrumb
==========================================================================*/
    .breadcrumb-text {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 20px;
        line-height: 140%;
        color: #2F2828;
    }

.top-margin{margin-top: -30px; padding-bottom: 40px;}
/* .servc-txt{width: 89%;} */

.ques-section{background-color: #f7f7f7;}
.gst-section {
      background: #fff;
      padding: 50px;
      border-radius: 16px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      margin-bottom: 30px;
    }

    .gst-section h2 {
      font-weight: 400;
      font-size: 28px;
      line-height: 120%;
      margin-bottom: 16px;
      color: #4E4646;
    }

    .gst-section p {
      font-weight: 400;
      font-size: 16px;
      line-height: 32px;
      margin-bottom: 16px;
      color: #4E4646;
    }

    .gst-section ul {
      margin: 0;
      padding-left: 20px;
      margin-bottom: 16px;
      color: #4E4646;
    }

    .gst-section ul li {
      font-size: 16px;
      line-height: 32px;
      margin-bottom: 6px;
      color:#776F6F
    }

    .gst-section b {
      font-weight: 700;
      font-size: 16px;
      line-height: 32px;
    }

    /* for Read more */
    .read-more-link {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;   /* Medium */
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        vertical-align: middle;
        color: #4E4646;
        text-decoration: none;
        display: inline-block;
    }

    .read-more-link:hover {
        color: #000;
    }

    /* ==================================================== */

    /* gst-registration page */
    .gst-header {
        padding: 60px 20px;
        background: #fff;
    }
    .gst-title {
        font-weight: 600;
        font-size: 64px;
        line-height: 70px;
        margin-bottom: 10px;
        color: #073279;
    }
    .gst-subtitle {
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        /* max-width: 700px; */
        max-width: 540px;
        margin: 0 auto 10px;
    }
    .gst-breadcrumb {
        font-size: 14px;
        color: #82828A;
    }

    .gst-main {
        padding: 50px 20px;
    }
    .gst-left {
        flex: 0 0 70%;
        padding-right: 30px;
    }
    .gst-right {
        flex: 0 0 30%;
        background: #F9F9F9;
        padding: 25px;
        border-radius: 12px;
    }

    .gst-heading {
        color: #073279;
        font-weight: 500;
        font-size: 28px;
        line-height: 70px;
        margin-top: 30px;
    }
    .gst-text {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        display: block;
        margin-bottom: 15px;
    }
    .gst-list {
        padding-left: 20px;
        list-style-type: none;
    }
    .gst-list li {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 8px;
    }

    .gst-text ul { margin: 0 0 1rem 1.25rem; }
    .gst-text li { line-height: 1.6; }

    .related-heading {
        font-weight: 600;
        font-size: 30px;
        line-height: 28.79px;
        color: #F77100;
        margin: 50px 0px;
    }
    .related-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .related-list li {
        padding-top: 20px;
    }
    .related-list li a{
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        color: #82828A;
        margin-bottom: 15px;
        padding-left: 30px;
        position: relative;
        text-decoration: none;

    }
    .related-list li a::before {
        content: "›";
        position: absolute;
        left: 0;
        color: #073279;
        font-size: 24px;
        font-weight: bold;
    }
    .related-list li a.active {
        background: #073279;
        color: #fff;
        content: "›";
        padding: 8px 12px 8px 25px;
        border-left: 3px solid #F77100;
        /* border-radius: 6px; */
    }

   .active-service-box {
        background: #073279;
        color: #fff;
        font-weight: bold;
        padding: 10px 15px;
        border-left: 5px solid #F77100;
        margin-top: 10px;
    }

    .active-service-box a {
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .active-service-box .arrow {
        margin-right: 8px;
        font-size: 16px;
        font-weight: bold;
    }

    /* =================================================================
    Bottom Sticky Navigation on detail page
    ================================================================= */
    .gst-bottom-nav {
        position: sticky;
        bottom: 0;
        width: 100%;
        background: #073279;
        display: flex;
        justify-content: center;
        align-items: center;
        /* padding: 12px 0; */
         border-radius: 8px 8px 0 0;
        z-index: 100;
        flex-wrap: wrap;
    }
    .gst-bottom-nav .nav-item {
        color: #fff;
        padding: 10px 15px;
        margin: 5px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
        border-radius: 6px;
    }

    .gst-bottom-nav .nav-item:hover {
    background: #2b61ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .gst-bottom-nav .nav-item::after {
        content: "➝";
        margin-left: 10px;
        font-size: 16px;
        color: #fff;
    }

    .gst-bottom-nav .nav-item.active::after {
        content: "➝";
        margin-left: 10px;
        font-size: 16px;
        color: #073279;
    }
    .gst-bottom-nav .nav-item:last-child::after {
        content: "";
    }

    .gst-bottom-nav .nav-item.active {
    background: #fff;
    color: #073279;
    font-weight: bold;
    }

/* ================================================================== */
    /* gst-services-details-page  */
/* ================================================================== */
.card {
    background: #fff;
    border-radius: 15px;
}

.card h2 {
    font-weight: 600;
    color: #2c3e50;
}

.card p {
    font-size: 16px;
    line-height: 1.7;
}

.list-group-item {
    border: none;
    background: #f9f9f9;
    margin-bottom: 6px;
    border-radius: 8px;
}

/* for back button */
 .back-btn{
  /* width:187px;  */
  height:48px;
  font-weight:400;
  background:var(--primary);
  border-color:var(--primary);
  margin-bottom: 10px;
}






/* FAQ */


/* ======================================================================== */









.overview-content{
  background:#fff;
  border-radius:12px;
  padding:32px;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
}
.overview-content h2{ font-size: 32px; font-weight:700; margin:0 0 16px; }
.overview-content h3{ font-size: 24px; font-weight:700; margin:24px 0 12px; }
.overview-content p{ margin:0 0 16px; line-height:1.8; color:#333; }
.overview-content ul{ margin:0 0 16px 24px; }
.overview-content li{ margin-bottom:10px; font-weight:600; }





/* ================================================================
                header sticky code
================================================================ */

.site-header.is-sticky,
.site-header1.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1050;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: background .2s ease, box-shadow .2s ease, padding .2s ease;
}

.site-header.is-sticky .navbar,
.site-header1.is-sticky .navbar {
    padding-top: .25rem;
    padding-bottom: .25rem;
}

/* ================================================================
              end header sticky code
================================================================ */




/* ====================================================================================
Logo Slider ====== ensure images don't stretch and are centered
==================================================================================== */

/* .mySwiper { padding: 10px 0; }
.swiper-slide { display: flex; align-items: center; justify-content: center; }
.swiper-slide img { max-height: 60px; width: auto; object-fit: contain; display:block; margin:0 auto; }

.certificate-slider img {
  width: 100%;
  border-radius: 8px;
}

.slick-prev:before, .slick-next:before {
  color: black;
}

.slick-prev:before, .slick-next:before {
    color: #000 !important;
} */



/* By default text visible */
.logo-text {
  font-size: 14px;
  margin-top: 8px;
  color: #333;
  display: block;
}


/* .slick-slide {
    margin-left: 50px !important;
} */
/* Arrows */
.slick-prev, .slick-next {
    z-index: 10;
    width: 45px;
    height: 45px;
}

.slick-prev:before, .slick-next:before {
    font-size: 40px;
    color: #073279 !important;
    /* color: #ff6600 !important */
    opacity: 1;
}

.slick-prev {
    left: -50px;
}
.slick-next {
    right: -50px;
}

/* Dots */
.slick-dots {
    bottom: -35px;
}

.slick-dots li button:before {
    font-size: 14px;
    color: #aaa;
    opacity: 1;
}
.slick-dots li.slick-active button:before {
    color: #073279 !important;
}

/* only show 5 dots  */
.certificate-slider .slick-dots li:nth-child(n+6) {
    display: none !important;
}


/* =======================================
        Signup Page User
======================================= */

       .signup-wrapper {
        display: flex;
        min-height: 100vh;
        flex-wrap: wrap;
    }

    /* Left Section */
    .signup-left {
        background-color: #022B69;
        color: #FEF1E5;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px;
        text-align: center;
    }

    .signup-left h1 {
        font-size: 35px;
        font-weight: 500;
        color: #FEF1E5;
    }

    .signup-left p {
        color: #FEF1E5;
        font-size: 14px;
        max-width: 400px;
        margin-top: 20px;
    }

    .signup-left img {
        width: 80%;
        max-width: 400px;
        margin-top: 30px;
    }

    /* Right Section */
    .signup-right {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        padding: 50px;
    }

    .signup-form-container {
        width: 100%;
        max-width: 480px;
    }

    .signup-form-container h2 {
        font-size: 35px;
        font-weight: 500;
        color: #1A2A42;
        margin-bottom: 30px;
    }
    .clr{color:#878787;}
    .lin{color:#4E4646;}
    .btn-toggle {
        font-size: 18px;
        font-weight: 500;
        border: 1px solid #D3D3D3;
        background-color: #F4F4F4;
        color: #000;
    }

    .btn-active {
        background-color: #F77100;
        color: #fff;
        border: none;
    }

    /* Custom Input for Signup */
    .signup-input {
        width: 100%;
        font-size: 16px;
        font-weight: 400;
        border: 1px solid #D3D3D3;
        background: #FCFCFC;
        /* color: #DDDDDD; */
        color: #6e6060;
        padding: 14px;
        border-radius: 4px;
    }

    .form-text {
        font-size: 16px;
        color: #878787;
    }

    .google-btn {
        border: 1px solid #D3D3D3;
        background: #D3D3D3;
        font-size: 18px;
        font-weight: 500;
        color: #1A2A42;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 12px;
    }

    .google-btn img {
        width: 24px;
    }
    .signbtn{color: #F77100;text-decoration: none;}
    /* a{text-decoration: none;} */

/* ==========================================
    Signin Page User
========================================== */

.signin-wrapper {
            display: flex;
            min-height: 100vh;
            flex-wrap: wrap;
        }

        /* Left Section */
        .signin-left {
            background-color: #022B69;
            color: #FEF1E5;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 50px;
            text-align: center;
        }

        .signin-left h1 {
            font-size: 35px;
            font-weight: 500;
            color: #FEF1E5;
        }

        .signin-left p {
            color: #FEF1E5;
            font-size: 14px;
            max-width: 400px;
            margin-top: 20px;
        }

        .signin-left img {
            width: 80%;
            max-width: 400px;
            margin-top: 30px;
        }

        /* Right Section */
        .signin-right {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #fff;
            padding: 50px;
        }

        .signin-form-container {
            width: 100%;
            max-width: 480px;
        }

        .signin-form-container h2 {
            font-size: 35px;
            font-weight: 500;
            color: #1A2A42;
            margin-bottom: 30px;
        }

        .btn-toggle {
            font-size: 18px;
            font-weight: 500;
            border: 1px solid #D3D3D3;
            background-color: #F4F4F4;
            color: #000;
        }

        .btn-active {
            background-color: #F77100;
            color: #fff;
            border: none;
        }

        /* Custom Input Fields */
        .signin-input {
            width: 100%;
            font-size: 16px;
            font-weight: 400;
            border: 1px solid #D3D3D3;
            background: #FCFCFC;
            color: #555;
            padding: 14px;
            border-radius: 4px;
        }

        .form-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            margin-top: 10px;
        }

        .form-bottom a {
            color: #F77100;
            text-decoration: none;
        }

        .btn-submit {
            background-color: #022B69;
            color: #fff;
            font-size: 18px;
            font-weight: 500;
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 4px;
            margin-top: 20px;
        }
        .google-btn {
            border: 1px solid #D3D3D3;
            background: #D3D3D3;
            font-size: 18px;
            font-weight: 500;
            color: #1A2A42;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            padding: 12px;
        }

        .google-btn img {
            width: 24px;
        }
        .google-login p {
            margin-top: 12px;
            font-size: 14px;
        }
        .google-login a {
            color: #f27c00;
            text-decoration: none;
        }

        .signup-row {
            margin-right: 0 !important;
            margin-left: 0 !important;
        }
        .signup-boxs{padding-top: 90px;}
        .signup-left {
            background-color: #022B69;
            color: #fff;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .colr{background-color: #F77100;}
        .signup-left h1 {
            font-size: 38px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .signup-left p {
            font-size: 15px;
            color: #E6E6E6;
            margin-bottom: 35px;
            line-height: 1.6;
            max-width: 450px;
        }
        .signup-left img {
            width: 100%;
            max-width: 420px;
        }

        .signup-right {
            padding: 70px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .signup-right h2 {
            font-size: 28px;
            color: #1A2A42;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .signup-toggle {
            display: flex;
            justify-content: center;
            width: 100%;
            max-width: 460px;
            /* gap: 10px; */
            margin-bottom: 25px;
        }
        .signup-toggle button {
            flex: 1;
            border: 1px solid #ddd;
            /* background: #f4f4f4; */
            font-weight: 500;
            border-radius: 6px;
            padding: 10px;
        }
        .signup-toggle .active {
            background: #F77100;
            color: #fff;
            border-color: #F77100;
        }

        .signup-form {
            width: 100%;
            max-width: 460px;
        }

        .form-control {
            border-radius: 6px;
            height: 46px;
        }

        .btn-orange {
            background: #F77100;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            height: 48px;
            transition: 0.3s;
        }
        .btn-orange:hover {
            background: #e56600;
        }

        .google-btn {
            border: 1px solid #ddd;
            background: #fff;
            border-radius: 6px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            margin-top: 15px;
        }
        .google-btn img {
            width: 20px;
            height: 20px;
        }

        .signin-link {
            text-align: center;
            margin-top: 15px;
        }
        .signin-link a {
            color: #F77100;
            text-decoration: none;
            font-weight: 500;
        }

        @media (max-width: 991px) {
            .signup-left {
                text-align: center;
                align-items: center;
                padding: 50px 20px;
            }
            .signup-right {
                padding: 40px 25px;
            }
            .signup-left p {
                max-width: 100%;
            }
        }



/* Scoped signup (fc-signup prefix to avoid conflicts) */
/* .fc-signup { display:flex; min-height:100vh; }
.fc-signup__left{ flex:1; background:#022B69; color:#FEF1E5; padding:50px; display:flex; align-items:center; justify-content:center; }
.fc-signup__right{ flex:1; padding:50px; display:flex; flex-direction:column; align-items:center; }

.fc-signup__title { font-size:32px; margin-bottom:18px; color:#1A2A42; }

.fc-signup__toggle{ display:flex; gap:8px; margin-bottom:20px; width:100%; max-width:480px; }
.fc-signup__btn{ flex:1; padding:10px 14px; border-radius:6px; border:1px solid #ddd; background:#f4f4f4; cursor:pointer; font-weight:600; }
.fc-signup__btn.is-active{ background:#F77100; color:#fff; border-color:transparent; }

.fc-signup__form{ width:100%; max-width:480px; display:none; }
.fc-signup__form.is-visible{ display:block; }

.fc-signup__input { width:100%; padding:12px; margin-bottom:12px; border:1px solid #D3D3D3; border-radius:6px; font-size:14px; }

.fc-signup__submit { width:100%; padding:12px; background:#F77100; color:#fff; border:none; border-radius:6px; cursor:pointer; font-weight:700; } */
/* =================================================================================================== */


/* login otp design */
.otp-input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.otp-input {
    width: 45px;
    height: 50px;
    font-size: 22px;
    text-align: center;
    border: 2px solid #ced4da;
    border-radius: 8px;
}

.otp-input:focus {
    border-color: #0d6efd;
}

.shake {
    animation: shake 0.3s linear;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}
