
/*** Spinner Start ***/
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Adjust based on your sticky nav height */
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}
.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/about-1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/

 .navbar {
      display: flex;
      align-items: center;
      gap:10px;
      justify-content: space-between;
      padding: 6px 0px;
      color: black;
      position: relative;
    }

    .logo { font-weight: bold; font-size: 18px; }

    .nav-center {
      display: flex;
      gap: 25px;
      justify-content: center;
      flex: 1;
    }

    .nav-item {
      font-weight: 600;
      cursor: pointer;
      position: relative;
      transition: 0.3s;
    }

    .nav-item:hover,
    .nav-item.active {
      border-bottom: 3px solid rgb(1, 95, 201);
    }

    .flyout-wrapper {
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      display: none;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, transform 0.3s ease;
      transform: translateY(-10px);
      z-index: 99;
    }

    .flyout-wrapper.show {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .flyout {
      display: flex;
      margin-top:10px;
      padding: 30px 60px;
      background-color: #f9f9f9;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .flyout-left {
      width: 300px;
      border-right: 1px solid #ddd;
    }

    .flyout-left div {
      padding: 15px;
      cursor: pointer;
    }

    .flyout-left div:hover,
    .flyout-left .active {
      background-color: #fff;
      font-weight: bold;
    }

    .flyout-right {
      flex: 1;
      padding: 15px 30px;
    }

    .flyout-right h3 { margin-top: 0; }

    .flyout-right ul { list-style: none; padding: 0; }

    .flyout-right ul li { margin-bottom: 10px; }

    .flyout-right ul li a {
      text-decoration: none;
      color: #002b5e;
      transition: 0.3s;
    }

    .flyout-right ul li a:hover {
      text-decoration: underline;
    }

    .hamburger {
      display: none;
      font-size: 22px;
      cursor: pointer;
    }

    .mobile-menu-wrapper {
      display: none;
      flex-direction: column;
      width: 100%;
      background: #f9f9f9;
    }

    .menu-page {
      display: none;
      flex-direction: column;
      padding: 10px 0;
      animation: slide 0.3s ease forwards;
      min-height: 100vh;
      background: white;
    }

    .menu-page.active {
      display: flex;
    }

    .menu-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
      border-bottom: 1px solid #eee;
      cursor: pointer;
      background: white;
    }

    .menu-item:hover {
      background-color: #f1f1f1;
    }

    .back-btn {
      padding: 15px 20px;
      font-weight: bold;
      border-bottom: 1px solid #ddd;
      background: #f3f3f3;
      cursor: pointer;
    }

    .menu-link {
      text-decoration: none;
      color: #015fc9;
      padding: 15px 20px;
      display: block;
      border-bottom: 1px solid #eee;
    }

    @keyframes slide {
      from { transform: translateX(100%); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }
    .gst-section {
    padding: 12px 4px;
    margin: 20px;
    color: #222;
  }


  .gst-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .gst-section h3 {
    margin-top: 25px;
    font-size: 30px;
    color: #015fc9;
  }

  .gst-section p {
    line-height: 1.8;
    margin: 12px 0;
  }

  .gst-section ul {
    margin: 10px 0 20px 20px;
    padding-left: 10px;
  }

  .gst-section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
  }

  .gst-section hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #ddd;
  }

  .threshold-section .container {
    padding: 20px 30px;
  }

  .threshold-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  .threshold-section .highlight {
    color: #015fc9;
  }

  .threshold-section p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .table-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  }

  .gst-table {
    width: 100%;
    border-collapse: collapse;
  }

  .gst-table th,
  .gst-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
  }

  .gst-table th {
    background: #fff;
    font-weight: 600;
    color: #000;
  }

  .gst-table .group-heading {
    background: #f7f7f7;
    font-weight: bold;
    font-size: 16px;
    color: #444;
  }

  .gst-table .group-heading td {
    padding: 14px 20px;
    border-bottom: 1px solid #ddd;
  }
 
  .table-wrapper {
  background: #eaf3ff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  }

  .gst-table {
    width: 100%;
    border-collapse: collapse;
  }

  .gst-table th,
  .gst-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
  }

  .gst-table th {
    background: #eaf3ff;
    font-weight: 600;
    color: #000;
  }

  .gst-table .group-heading {
    background: #eaf3ff;
    font-weight: bold;
    font-size: 16px;
    color: #444;
  }

  .gst-table .group-heading td {
    padding: 14px 20px;
    border-bottom: 1px solid #ddd;
  }
  .gst-benefits {
  padding: 30px 30px;
  background: #fff;
}

.gst-benefits h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.gst-benefits .highlight {
  color: black;
}

.gst-benefits .subtitle {
  color: #555;
  font-size: 17px;
  line-height: 1.6;
}

.benefit-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.card11{
  background-color: white;
  border-radius: 12px;
  flex: 1 1 300px;
  padding: 30px 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.card {
  background-color: #f0f7ff;
  border-radius: 12px;
  flex: 1 1 300px;
  padding: 10px 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}


.card img {
  width: 50px;
  margin-bottom: 15px;
}

.card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
}

.card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.card:hover {
  background-color: #e2f0ff;
  transform: translateY(-5px);
}

  .gst-types-section .container {
    padding: 20px 30px;
  }

  .gst-types-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  .gst-types-section .highlight {
    color: #015fc9;
  }

  .gst-types-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .type-card {
    background: #fff;
    padding: 24px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
  }

  .type-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1c1c45;
  }

  .type-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
  }

  .type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }
   .gst-docs-section {
    padding: 0px 20px;
}

  .gst-docs-section .container {
    max-width: 1200px;
    margin: auto;
  }

  .gst-docs-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  .gst-docs-section .highlight {
    color: #015fc9;;
  }

  .gst-docs-section p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .table-scroll-wrapper {
    max-height: 400px;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    background: #eaf3ff;
  }

  .gst-docs-table {
    width: 100%;
    border-collapse: collapse;
  }

  .gst-docs-table th,
  .gst-docs-table td {
    padding: 18px 20px;
    font-size: 15px;
    vertical-align: top;
    text-align: left;
    border-bottom: 1px solid #dee5f1;
  }

  .gst-docs-table th {
    background: #e0efff;
    font-weight: bold;
    color: #000;
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .gst-docs-table td ol {
    margin: 0;
    padding-left: 18px;
  }

  .gst-docs-table td ol li {
    margin-bottom: 4px;
  }
   .gst-fees-section {
    padding: 30px 20px;
  }

  .gst-fees-section .container {
    max-width: 1200px;
    margin: auto;
  }

  .gst-fees-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  .gst-fees-section .highlight {
    color: #015fc9;
  }

  .gst-fees-section p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .fees-table-scroll {
    overflow-x: auto;
    border-radius: 10px;
    background: #f4f9ff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
  }

  .fees-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
  }

  .fees-table th,
  .fees-table td {
    padding: 18px 20px;
    font-size: 15px;
    border-bottom: 1px solid #dbe7f5;
    text-align: left;
  }

  .fees-table th {
    background: #e0f0ff;
    color: #111;
    font-weight: 600;
  }

  .fees-table td del {
    color: #999;
    margin-right: 5px;
  }

  .fees-table .offer-price {
    color: #28a745;
    font-weight: 600;
  }

  .note {
    margin-top: 20px;
    background: #fff7e5;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: 6px;
  }

  .note p {
    margin: 0;
    font-size: 14.5px;
    color: #5a5400;
  }
   .gst-process-section {
    padding: 0px 20px;
  }

  .gst-process-section .container {
    max-width: 1200px;
    margin: auto;
  }

  .gst-process-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
  }

  .gst-process-section .highlight {
    color: #015fc9;
  }

  .gst-process-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
  }

  .process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .step {
    text-align: center;
    flex: 1;
    min-width: 160px;
    padding: 10px;
  }

  .step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: #eaeef5;
  }

  .blue { background-color: #d0e6ff; }
  .yellow { background-color: #fff3cd; }
  .red { background-color: #f8d7da; }
  .green { background-color: #d4edda; }

  .step h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 8px 0 5px;
    color: #111;
  }

  .step p {
    font-size: 14px;
    color: #555;
  }

  .arrow {
    font-size: 24px;
    color: black;
    margin: 0 10px;
  }

  .detailed-steps h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
  }

  .detailed-steps ol {
    padding-left: 20px;
    color: #333;
  }

  .detailed-steps li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
  }
i{
    font-style: normal;
}
.gstin-section .container,
  .gst-certificate-section .container,
  .gst-penalties-section .container,
  .gst-faq-section .container {
    max-width: 1200px;
    margin: auto;
  }
   .gstin-section,
  .gst-certificate-section,
  .gst-penalties-section,
  .gst-faq-section {
    padding: 20px 30px;
  }
  .section-heading {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #222;
  }
  .section-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  .highlight {
    color: #015fc9;
  }
  .gstin-point,
  .certificate-point,
  .penalty-item {
    margin-top: 10px;
    font-size: 15px;
    color: #333;
  }
  .gst-faq-section .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }
  .gst-faq-section .faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
  }
    .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .faq-answer.open {
    max-height: 500px; /* enough for content */
  }

  .faq-question::after {
    content: '▼';
    position: absolute;
    right: 0;
    font-size: 14px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .faq-question.active::after {
    transform: rotate(-180deg);
  }
    .gst-due-dates {
    background-color: #f7fbff;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  .gst-due-dates .container {
    max-width: 1100px;
    margin: 0 auto;
  }
  .due-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
  }
  .due-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  .due-item {
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid #dce9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }
  .due-title {
    font-size: 20px;
    font-weight: 600;
    color: #015fc9;;
    margin-bottom: 10px;
  }
  .due-desc {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
  }
  .due-desc ul {
    margin: 10px 0 0 20px;
    padding-left: 0;
  }
  .due-desc li {
    font-size: 15px;
    color: #333;
    list-style: disc;
  }.gst-refund-section {
  background-color: #f9fcff;
  padding: 60px 20px;
}

.gst-refund-section .container {
  max-width: 1200px;
  margin: auto;
}

.gst-refund-section h2 {
    font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  color: #007bff;
}

.gst-refund-section .highlight {
  color: black;
}

.refund-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.refund-step {
  background: #ffffff;
  padding: 25px;
  border-left: 5px solid #007bff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.refund-step h4 {
  margin-top: 0;
  color: #007bff;
}

.reconciliation-box {
  background: #e9f4ff;
  border-left: 5px solid #007bff;
  padding: 30px;
  border-radius: 10px;
}

.reconciliation-box h3 {
  margin-top: 0;
  color: #333;
  margin-bottom: 15px;
}

.reconciliation-box ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.reconciliation-box li {
  margin-bottom: 10px;
  color: #444;
}
.gst-consequences-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.gst-consequences-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-heading .highlight {
  color: #015fc9;
}
#detailed-process{
  display: none;
}

.section-text {
  font-size: 18px;
  color: #444;
}

.consequence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.consequence-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: 0.3s ease-in-out;
}

.consequence-card:hover {
  box-shadow: 0 0 25px rgba(0,0,0,0.1);
}

.consequence-card h4 {
  color: #333;
  font-size: 20px;
  margin-bottom: 10px;
}

.consequence-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.gst-cancellation-reasons-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.gst-cancellation-reasons-section .section-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.gst-cancellation-reasons-section .highlight {
  color: #015fc9;
}

.gst-cancellation-reasons-section .section-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.reason-list {
  list-style: disc;
  padding-left: 20px;
  color: #333;
  line-height: 1.8;
}

 .eligibility-section {
    padding: 0px 20px;
  }

  .eligibility-section .container {
    max-width: 1100px;
    margin: auto;
  }

  .eligibility-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
  }

  .eligibility-section p.description {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
  }

  .eligibility-section ul {
    list-style: none;
    padding-left: 0;
  }

  .eligibility-section li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .eligibility-section li i {
    font-size: 23px;
    color: #007bff;
    margin-right: 15px;
    margin-top: 3px;
  }

  .eligibility-section li strong {
    display: block;
    font-size: 18px;
    color: #222;
    margin-bottom: 4px;
  }

  .eligibility-section li span {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
  .fssai-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.fssai-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.fssai-section ol {
  padding-left: 20px;
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.6;
}

.fssai-section p {
  font-size: 16px;
  line-height: 1.6;
}
.gst-role-section {
  background: #f8f9fb;
  padding: 60px 0;
}

.gst-role-section h2 {
    font-size: 36px;
    font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
}

.gst-role-section .subtitle {
  text-align: center;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.role-grid {
  display: grid;
  padding-left: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.role-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
h3{
  font-size: 20px !important;
}
.role-item i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 15px;
}

.role-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.role-item p {
  font-size: 0.95rem;
  color: #666;
}

.role-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.1);
}
 .nic-section {
    padding: 30px 20px;
    background-color: #f9fbff;
  }

  .nic-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .nic-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
  }

  .nic-section .highlight {
    color: #015fc9;
  }

  .nic-section .description {
    font-size: 16px;
    margin-bottom: 40px;
    color: #333;
  }

  .nic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .nic-card {
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .nic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.15);
  }

  .nic-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #015fc9;
  }

  .nic-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
  }
  .difference-section {
  padding: 30px 20px;
}
.difference-section h2{
    font-size: 40px;
    font-weight: 800;
}

.difference-section .highlight {
  color: #015fc9;
}

.difference-section .subtitle {
margin-top: 20px;
  font-size: 16px;
  color: #555;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table .row {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #eee;
}

.comparison-table .row:last-child {
  border-bottom: none;
}

.comparison-table .heading {
  background-color: #015fc9;
  color: white;
  font-weight: bold;
}

.comparison-table .col {
  flex: 1;
  padding: 15px;
  border-right: 1px solid #eee;
  text-align: center;
  font-size: 15px;
}

.comparison-table .col:last-child {
  border-right: none;
}
.compliance-section {
  background: #f9fbff;
  padding: 60px 0;
}

.compliance-section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.compliance-section .highlight {
  color: #015fc9;
}

.compliance-section .subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.compliance-card {
  background: #ffffff;
  border: 1px solid #e0e6f1;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.compliance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.compliance-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #003366;
}

.compliance-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
 .ecom-section {
    background-color: #f9f9f9;
    padding: 40px 30px;
  }

  .ecom-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .ecom-heading {
    font-size: 36px;
   font-weight: 800;
    margin-bottom: 30px;
  }
  .checklist{
    display: flex;
    gap: 30px;
  }

  .checklist,
  .role-section {
    margin-bottom: 40px;
  }

  .checklist ul,
  .role-section ul {
    list-style: none;
    padding-left: 0;
  }

  .checklist li,
  .role-section li {
    padding: 10px 15px;
    margin-bottom: 10px;
    background: #ffffff;
    border-left: 4px solid #015fc9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  

  .role-section li::before {
    content: "➡";
    color: #015fc9;
    margin-right: 10px;
  }
  .btn.btn-primary{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* Make all columns flex and ensure full height */
.service .row > div {
  display: flex;
}

.service-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #eee; /* optional for visual clarity */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* optional */
}

/* Ensure content fills the available space */
.service-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content-inner {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ensures button stays at bottom */
}
/* Equal height for all feature columns */
.feature .row > div {
  display: flex;
}

/* Stretch the feature-item to full height */
.feature-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff; /* optional for clarity */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* optional enhancement */
}

/* Make sure content stays aligned and spaced */
.feature-item p {
  flex-grow: 1;
}
    .main-form-section{
      height: 500px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
#form-section {
      background: white;
      width: 600px;
      margin: 70px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .form-step {
      display: none;
    }

    .form-step.active {
      display: block;
    }

    .form-step input, .form-step select {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .buttons {
      text-align: right;
    }

    button {
      padding: 10px 20px;
      background: #0077ff;
      color: white;
      border: none;
      border-radius: 10px !important; 
      cursor: pointer;
    }

    #page-content {
      display: none;
    }
    .hero-section-main {
      padding: 30px;
      color: #1c1c1c;
       font-family: 'Inter', sans-serif;
    }
   .hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  background: #f0f8ff;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 500px;
}

.carousel {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
}

.slide {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide.active {
  opacity: 1;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  background: black;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots .dot.active {
  background: #015fc9;
}

    .hero-text {
      padding: 40px;
      flex: 1;
    }

    .hero-text h1 {
      font-size: 36px;
      margin-bottom: 15px;
    }

    .hero-text p {
      color: gray;
      font-size: 16px;
    }
    .products {
      margin: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .cardd-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
    .cardd-link .cardd {
      height: 180px;
      background: #f2f1f6;
      padding: 20px;
      border-radius: 20px;
      color: #1c1c1c;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.3s ease;
    }
    .cardd:hover {
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    }
    .cardd-title {
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }
    .cardd p {
      color: #666;
      font-size: 14px;
    }
    .cta {
      margin-top: auto;
      color: #015fc9 ;
      font-weight: 600;
      text-decoration: none;
    }
    .page-layout {
            display: flex;
            align-items: flex-start;
        }

        .main-content {
          width: 100%;
          max-width: 100%;
            flex: 1;
        }

        .tab-nav.sticky-tabs {
          height: 530px;
          justify-content: center;
            width: 200px;
            position: sticky;
            top: 70px;
            margin-left: 10px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .tab-nav.sticky-tabs a {
            display: block;
            padding: 10px 15px;
            background: #f5f5f5;
            border-radius: 5px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .tab-nav.sticky-tabs a.active,
        .tab-nav.sticky-tabs a.hover {
          background: #015fc9;
          font-weight: 800;
          color: white;
        }
         .nav-bar {
      box-shadow: 0px 6px 13px 2px #dcdcdc;
      position: sticky;
      top: 0px;
      left: 0px;
      z-index: 1000;
    }

    .container1.hero {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 30px 5%;
      background: linear-gradient(145deg, #f7fbff, #e2edff);
      position: relative;
      overflow: hidden;
      gap: 40px;
    }

    .container1.hero::before {
      content: "";
      position: absolute;
      top: -80px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(183, 218, 255, 0.4) 0%, transparent 70%);
      animation: float 8s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-20px);
      }
    }

    .content {
      flex: 1 1 60%;
      z-index: 2;
    }

    .form-box1 {
      height: 420px !important;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(12px);
      margin-top: 20px;
      padding: 20px;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      max-width: 340px;
      z-index: 2;
      animation: slideFade 1s ease forwards;
    }

    .content h1 {
      font-size: 35px;
      font-weight: 700;
      margin-bottom: 20px;
      animation: slideFade 0.7s ease forwards;
    }

    .content p {
      font-size: 16px;
      margin-bottom: 25px;
      line-height: 1.6;
      animation: slideFade 0.9s ease forwards;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 25px;
      animation: slideFade 1s ease forwards;
    }

    .feature-list li img {
      width: 64px;
      height: 64px;
      flex-shrink: 0;
      border-radius: 10px;
      background: #fff;
      padding: 6px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .feature-list li div {
      max-width: 650px;
    }

    .feature-list li strong {
      display: block;
      color: #393939;
      font-size: 17px;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .feature-list li p {
      margin: 0;
      color: #444;
      font-size: 15px;
      line-height: 1.5;
    }

    .form-box1 h3 {
      margin-bottom: 20px;
      font-size: 20px;
    }

    .form-box1 input {
      width: 100%;
      padding: 10px 14px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 15px;
    }

    .form-box1 button {
      width: 100%;
      background: #007bff;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .form-box1 button:hover {
      background: #005dc1;
    }

    .content>div {
      font-size: 14px;
      color: gray;
      margin-bottom: 10px;
    }

    @keyframes slideFade {
      from {
        transform: translateY(20px);
        opacity: 0;
      }

      to {
        transform: translateY(0px);
        opacity: 1;
      }
    }

    .tab-nav11 {
      display: none;
    }

    .tab-nav1 a {
      font-weight: 600;
      color: #222;
      padding-bottom: 5px;
    }

    .tab-nav1 a.active {
      border-bottom: 2px solid #007bff;
      color: #015fc9;
    }

    .flexx {
      width: 750px;
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(2, 2fr);
    }
  .floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.call-button {
  display: none;
  background-color: #007bff; /* Blue for Call */
}

.whatsapp-button{
   display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 15px 15px;
  border-radius: 50%;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
     background-color: #25D366; /* WhatsApp green */
}
.whatsapp-button img{
  width: 25px;
  height: 25px;
}

.whatsapp-button:hover,
.call-button:hover {
  opacity: 0.9;
}
.fssai-icons{
  display: flex; 
  justify-content: center; 
  gap: 30px; 
  flex-wrap: wrap;
  align-items: center;
}
.fssai-icon7 img{
  width: 80px;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark transparent layer */
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}
    .login-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -3px 0 15px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  padding: 20px;
}

.login-drawer.open {
  right: 0;
}

.drawer-content {
    margin: 40px 5px;
  display: flex;
  flex-direction: column;
}

.drawer-content input {
  margin-bottom: 10px;
  padding: 8px;
  font-size: 14px;
}

.drawer-content button {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.close-btn {
  font-size: 20px;
  cursor: pointer;
  text-align: right;
}

.result-box {
  margin-top: 15px;
  font-size: 14px;
}
 @media (max-width: 768px) {
     .login-drawer {
  width: 300px;
     }
 }

    @media (max-width: 768px) {
      .fssai-icons{
  gap: 20px; 
}
.fssai-icon4{
  margin-top: -70px;
}
.fssai-icon7{
  margin-top: -60px;
}
.fssai-icon7 img{
  width: 50px;
}
      .call-button {
   display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}
       .flexx {
      width: auto;
      grid-template-columns: repeat(1, 1fr);
    }

      .container1 {
        flex-direction: column;
      }

      .form-box1 {
        position: static;
        top: unset;
      }

      .tab-nav11 {
        display: block;
        position: sticky;
        top: 65px;
        z-index: 9999;
      }

      .tab-nav1 {
        display: flex;
        gap: 20px;
        padding: 20px;
        background: #e9f2ff;
        border-radius: 10px 10px 0 0;
        overflow-x: auto;
      }

      .tab-nav1 {
        flex-wrap: nowrap;
        overflow-x: auto;
      }
    }
  @media (max-width: 600px) {
    #detailed-process{
  display: block;
}
    .section-heading{
      font-size: 22px;
    }
    .process-flow{
      display: none;
    }
    .gstin-section, .gst-certificate-section, .gst-penalties-section, .gst-faq-section {
    padding: 20px 20px;
  }
    .tab-nav.sticky-tabs{
      display: none;
    }
    #form-section{
      margin:20px;
    }
    .products {
      margin: 30px 0px 0 0;
      grid-template-columns: repeat(2,1fr);
    }
    .cardd-link .cardd {
      height: 145px;
      padding: 10px;
    }
    .cta{
      font-size: 12px;
    }
    .cardd-title {
      font-weight: 600;
      font-size: 0.70rem;
      margin-bottom: 10px;
    }
    .cardd p {
      color: #666;
      font-size: 10px;
    }
    .hero-text {
      display: none;
    }
    .ecom-heading {
      font-size: 22px;
    }

    .checklist li,
    .role-section li {
      font-size: 14px;
    }
  }
/* Responsive Table */
@media (max-width: 768px) {
  .comparison-table .row {
    flex-direction: column;
  }

  .comparison-table .col {
    border-right: none;
    border-bottom: 1px solid #eee;
    text-align: left;
  }

  .comparison-table .col:last-child {
    border-bottom: none;
  }

  .comparison-table .heading {
    display: none; /* Hide table heading for mobile */
  }
}

@media (max-width: 768px) {
  .refund-steps {
    grid-template-columns: 1fr;
  }
}



    @media (max-width: 768px) {
        .navbar {
      gap:4px;
        }
         .process-flow {
      flex-direction: column;
      gap: 20px;
    }
    .arrow {
      display: none;
    }
    .step-icon {
      width: 60px;
      height: 60px;
      font-size: 24px;
    }
         .gst-fees-section h2 {
      font-size: 26px;
    }

    .fees-table th,
    .fees-table td {
      font-size: 14px;
      padding: 14px 15px;
    }
          .gst-docs-section h2 {
      font-size: 26px;
    }

    .gst-docs-table th,
    .gst-docs-table td {
      padding: 14px 15px;
      font-size: 14px;
    }
          .gst-types-section h2 {
      font-size: 26px;
    }
    .type-card h3 {
      font-size: 17px;
    }
          .turnover-section h2 {
      font-size: 26px;
    }

    .gst-table th,
    .gst-table td {
      font-size: 14px;
      padding: 12px 15px;
    }

    .gst-table .group-heading td {
      font-size: 15px;
    }
         .threshold-section h2 {
      font-size: 26px;
    }

    .gst-table th,
    .gst-table td {
      font-size: 14px;
      padding: 12px 15px;
    }

    .gst-table .group-heading td {
      font-size: 15px;
    }
         .gst-section .container {
      padding: 25px 20px;
    }

    .gst-section h2 {
      font-size: 24px;
    }

    .gst-section h3 {
      font-size: 18px;
    }
    h1{
      font-size: 22px !important;
    }
    h2{
      font-size: 20px !important;
    }
    .container p{
      font-size: 15px !important;
    }
      .nav-center { display: none; }
      .flyout-wrapper { display: none !important; }
      .hamburger { display: block; }
      .mobile-menu-wrapper { display: flex; }
    }
body,h1,h2,h3,h4,h5,h6,section,div,html,p,span{
 font-family: "Open Sans", serif !important;
}
