/* === Google Font Import === */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* === Basic Page Reset === */
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
}

/* === Top Navigation Bar === */
.top-nav-bar {
    background-color: darkblue;
    color: white;
    padding: 10px 0;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
}

.nav-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.nav-right li {
    margin-left: 25px;
}

.nav-right a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.nav-left a:hover,
.nav-right a:hover {
    text-decoration: underline;
}

/* === Main Navigation Bar === */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.main-nav .container {
    height: 110px;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100%;
}

.nav-links > li {
    position: relative;
    height: 100%;
}

.nav-links > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 13px;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-links > li:hover > a,
.nav-links > li > a.active {
    color: darkblue;
    border-bottom-color: darkblue;
}

/* === Dropdown Menu Styles === */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-top: 3px solid darkblue;
    z-index: 1000;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    min-width: 300px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #f4f4f4;
    color: darkblue;
}

.dropdown-menu .menu-heading {
    padding: 10px 20px;
    font-weight: bold;
    color: #333;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
    cursor: default;
}

/* === Megamenu Styles (for "Registrations") === */
.megamenu > .dropdown-menu {
    width: 900px;
    max-width: 90vw;
    display: none;
    left: 0; 
    padding: 20px;
    gap: 20px;
}

.megamenu > .dropdown-menu.show {
    display: flex;
}

.megamenu-column {
    flex: 1;
}

.megamenu-column h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: darkblue;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.megamenu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-column li a {
    padding: 8px 0;
    white-space: normal;
}

.megamenu-column li a:hover {
    background: none;
    text-decoration: underline;
}

/* === Hamburger Button Styles === */
.hamburger-button {
    display: none;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.hamburger-button span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger-button.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-button.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-button.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* === NEW: Hero Slider Styles === */
.hero-slider {
    position: relative;
    max-width: 100%; /* Ensure it doesn't exceed viewport width */
    margin: 0 auto; /* Center the slider */
    overflow: hidden; /* Hide parts of images outside the container */
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-height: 500px; /* Limit the height of the slider */
    overflow: hidden;
}

.mySlides {
    display: none; /* Hide slides by default */
    width: 100%;
    position: relative;
}

.mySlides img {
    width: 100%;
    height: 500px; /* Force image height */
    object-fit: cover; /* Cover the area, cropping if necessary */
    vertical-align: middle;
}

/* Text overlay on slides */
.slide-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    color: white;
    font-size: 2em; /* Large text */
    font-weight: bold;
    text-align: center;
    box-sizing: border-box; /* Include padding in width */
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.4);
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background with a little more opacity */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* The dots/indicators */
.slider-dots {
    text-align: center;
    padding: 10px 0;
    background-color: #f2f2f2; /* Light background for dots area */
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active-dot, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* === Example Main Content === */
main {
    padding: 20px;
}


/* === Mobile Responsive Styles === */
@media (max-width: 992px) {

    .container {
        width: 90%;
    }

    /* --- Top Nav Bar (Mobile) --- */
    .top-nav-bar .container {
        flex-direction: column;
        gap: 5px;
    }

    .nav-left {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .nav-left a {
        margin-right: 15px;
    }

    .nav-right ul {
        justify-content: center;
    }

    .nav-right li {
        margin-left: 15px;
        margin-right: 15px;
    }

    /* --- Main Nav Bar (Mobile) --- */
    .main-nav .container {
        justify-content: space-between;
    }

    .hamburger-button {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        height: auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links > li {
        height: auto;
        width: 100%;
    }

    .nav-links > li > a {
        height: auto;
        padding: 15px 20px;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        box-sizing: border-box;
    }
    
    .nav-links > li:last-child > a {
        border-bottom: none;
    }

    /* --- Dropdowns (Mobile) --- */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0;
        background-color: #f9f9f9;
    }

    .dropdown-menu li a {
        padding-left: 30px;
    }
    
    .dropdown-menu .menu-heading {
        padding-left: 30px;
    }

    /* --- Megamenu (Mobile) --- */
    .megamenu > .dropdown-menu {
        position: static;
        width: 100%;
        padding: 0;
        gap: 0;
    }
    
    .megamenu > .dropdown-menu.show {
        display: block;
    }
    
    .megamenu-column {
        width: 100%;
    }
    
    .megamenu-column h4 {
        margin: 0;
        padding: 10px 30px;
        background-color: #f0f0f0;
    }

    .megamenu-column ul {
        background-color: #f9f9f9;
    }
    
    .megamenu-column li a {
        padding: 10px 40px;
        white-space: normal;
    }

    /* --- Hero Slider (Mobile) --- */
    .slideshow-container {
        max-height: 300px; /* Smaller height on mobile */
    }
    .mySlides img {
        height: 300px; /* Match container height */
    }
    .slide-text {
        font-size: 1.2em; /* Smaller text on mobile */
        padding: 10px;
    }
    .prev, .next {
        font-size: 14px;
        padding: 10px;
        margin-top: -15px;
    }
}

/* Basic Page Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4; /* Light grey background */
    color: #333;
}

/* Re-usable container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto; /* Center the content */
}

/* About Us Section */
.about-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between image and text */
}

.about-image {
    flex: 1; /* Takes half the space */
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Soft rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1; /* Takes the other half of the space */
}

.about-text h2 {
    font-size: 2.5em;
    color: darkblue; /* Professional-looking color */
    margin-top: 0;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
}

/* Mission & Vision Cards Section */
.cards-section {
    padding: 60px 0;
}

.cards-section .container {
    display: flex;
    gap: 30px; /* Space between the cards */
}

.card {
    flex: 1; /* Each card takes equal space */
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Lifts the card on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card h3 {
    font-size: 1.8em;
    color: darkblue;
    margin-top: 0;
    margin-bottom: 15px;
}

.card p {
    font-size: 1em;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-section .container,
    .cards-section .container {
        flex-direction: column; /* Stack vertically on small screens */
        gap: 30px;
    }

    .about-text h2 {
        font-size: 2em;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }
}

/* ... (all your existing CSS from previous steps) ... */

/* === NEW: Popular Services Slider === */
.services-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.services-section h2 {
    font-size: 2.5em;
    color: darkblue;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
}

.slider-container {
    width: 100%;
    overflow: hidden; /* This is crucial */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.slider-track {
    display: flex;
    width: calc(300px * 12); /* 300px card width * 12 cards (6 original + 6 duplicate) */
    animation: scroll 40s linear infinite;
}

/* Pause animation on hover */
.slider-track:hover {
    animation-play-state: paused;
}

.service-card {
    width: 280px; /* Card width */
    margin: 0 10px; /* Space between cards */
    padding: 25px;
    background-color: darkblue; /* Blue color as requested */
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevents cards from shrinking */
}

.service-card h4 {
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 10px;
}

.service-card .price {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
    color: #a0a0ff; /* Lighter blue for price */
}

/* === NEW: Keyframes for Auto-Slide === */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* (280px width + 20px margin) * 6 cards = -1800px */
        transform: translateX(calc(-300px * 6));
    }
}


/* === Mobile Responsive Styles === */
@media (max-width: 992px) {

    /* ... (all your existing responsive styles) ... */

    /* --- NEW: Responsive Services Slider --- */
    .services-section h2 {
        font-size: 2em;
    }

    /* Adjust animation for mobile */
    .slider-track {
         width: calc(270px * 12); /* 270px card width * 12 cards */
         animation: scroll-mobile 40s linear infinite;
    }
    
    .service-card {
        width: 250px; /* Slightly smaller cards on mobile */
    }
    
    @keyframes scroll-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            /* (250px width + 20px margin) * 6 cards = -1620px */
            transform: translateX(calc(-270px * 6));
        }
    }
}

/* ==== WHY CHOOSE US (8-POINTS) SECTION STYLES ==== */

.features-section {
    padding: 60px 0;
    background-color: #f9f9f9; /* Light gray background */
    font-family: Arial, sans-serif;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
.features-main-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 15px;
}

.features-sub-title {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

/* Grid for the 8 items */
.features-grid-wrapper {
    display: grid;
    /* This creates a 4-column grid on desktops */
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Individual Feature Card */
.feature-item-card {
    background-color: #ffffff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    /* This is key for the smooth color change */
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Icon Box */
.feature-icon-box {
    margin-bottom: 15px;
}

.feature-icon-box i {
    font-size: 36px;
    /* Default color (dark blue from your footer) */
    color: #0d1b2a; 
    transition: color 0.3s ease;
}

/* Name/Title */
.feature-item-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

/* ==== HOVER EFFECT ==== */
.feature-item-card:hover {
    /* Change background to dark blue on hover */
    background-color: #0d1b2a;
    border-color: #0d1b2a;
    transform: translateY(-5px); /* Adds a slight "lift" effect */
}

.feature-item-card:hover .feature-icon-box i {
    /* Change icon color to white on hover */
    color: #ffffff;
}

.feature-item-card:hover .feature-item-name {
    /* Change text color to white on hover */
    color: #ffffff;
}

/* ==== RESPONSIVE DESIGN ==== */

@media (max-width: 992px) {
    /* On tablets, switch to a 3-column grid */
    .features-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* On smaller tablets, switch to a 2-column grid */
    .features-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    /* On mobile, stack to a 1-column grid */
    .features-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .features-main-title {
        font-size: 30px;
    }
}

/* ==== OUR COUNTS SECTION STYLES ==== */

.counts-section-wrapper {
    /* Using the dark blue from your footer */
    background-color: #0d1b2a; 
    color: #ffffff;
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

.counts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.counts-grid {
    display: grid;
    /* 4-column grid on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.count-item-box {
    text-align: center;
    padding: 20px;
}

.count-item-icon {
    margin-bottom: 20px;
}

.count-item-icon i {
    font-size: 48px;
    color: #41a5f5; /* A bright blue accent color */
}

.counter-number {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.counter-label {
    font-size: 16px;
    font-weight: 500;
    color: #e0e0e0; /* Slightly off-white */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    /* 2-column grid on tablets */
    .counts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    /* 1-column grid on mobile */
    .counts-grid {
        grid-template-columns: 1fr;
    }
}

/* ==== CLIENT REVIEWS SECTION STYLES ==== */

.client-reviews-section {
    padding: 60px 0;
    background-color: #f9f9f9; /* Light gray background */
    font-family: Arial, sans-serif;
}

.client-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-reviews-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 50px;
}

/* The wrapper that hides the overflow and 
  creates the fade-out effect on the sides.
*/
.scrolling-wrapper {
    overflow: hidden;
    position: relative;
    /* This mask fades the edges of the scroller */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* The track that holds all the review cards (10 total) */
.scrolling-track {
    display: flex;
    /* Set the width: (Card Width + Card Margin) * Total Cards
      (330px + 30px) * 10 cards = 3600px 
    */
    width: 3600px;
    
    /* This is the animation */
    animation: scroll-animation 40s linear infinite;
}

/* This pauses the animation on hover */
.scrolling-wrapper:hover .scrolling-track {
    animation-play-state: paused;
}

/* The animation keyframes */
@keyframes scroll-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move left by the width of the *first 5 cards*
          (330px + 30px) * 5 = 1800px 
        */
        transform: translateX(-1800px);
    }
}

/* Individual review card */
.review-card-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    
    /* Fixed width for each card */
    width: 330px; 
    flex-shrink: 0; /* Prevents cards from shrinking */
    
    margin-right: 30px; /* Space between cards */
    position: relative;
}

.review-card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    color: #0d1b2a; /* Dark blue icon */
    opacity: 0.1;
}

.review-content-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.review-author-details {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.review-author-name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0 0 5px 0;
}

.review-author-title {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 768px) {
    /* On mobile, we stack the cards and disable the animation */
    
    .scrolling-wrapper {
        overflow: visible;
        -webkit-mask-image: none;
        mask-image: none;
    }
    
    .scrolling-track {
        animation: none; /* Stop the animation */
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
    
    .review-card-item {
        width: 100%; /* Make cards full-width */
        margin-right: 0;
    }
    
    /* Hide the duplicate cards on mobile */
    .review-card-item:nth-child(n+6) {
        display: none;
    }
}


/* ==== ASSOCIATED WITH SECTION STYLES ==== */

.associated-section {
    padding: 60px 0;
    background-color: #f9f9f9; /* Light gray background */
    font-family: Arial, sans-serif;
}

.associated-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.associated-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 50px;
}

/* The grid that holds all the logos */
.associated-logo-grid {
    display: grid;
    /* 4 columns on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; /* Space between logos */
    align-items: center; /* Vertically centers all logos */
}

/* This is the logo wrapper. 
  It has NO border, NO padding, and NO shadow.
*/
.associated-logo-box {
    text-align: center; /* Horizontally centers the logo */
}

/* The logo image itself */
.associated-logo-box img {
    max-width: 100%;
    height: auto;
    max-height: 70px; /* Adjust as needed for uniform logo size */
    
    /* Grayscale effect */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* ==== HOVER EFFECT ==== */
.associated-logo-box:hover img {
    /* Full color on hover */
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05); /* Slight zoom on hover */
}


/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    /* 3 columns on tablets */
    .associated-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* 2 columns on mobile */
    .associated-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .associated-section-title {
        font-size: 28px;
    }
}


/* ==== FAQ SECTION STYLES ==== */

.faq-wrapper-section {
    padding: 60px 0;
    background-color: #ffffff; /* Clean white background */
    font-family: Arial, sans-serif;
}

.faq-content-container {
    max-width: 900px; /* Optimal width for an FAQ section */
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings and Intro Text */
.faq-main-heading {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 15px;
}

.faq-intro-paragraph {
    text-align: center;
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.faq-sub-heading {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
}

/* Accordion List Wrapper */
.accordion-list {
    border-top: 1px solid #e0e0e0;
}

/* Individual Accordion Item */
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

/* Accordion Button (The clickable header) */
.accordion-toggle-btn {
    width: 100%;
    background-color: #ffffff;
    border: none;
    padding: 20px 15px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease;
}

.accordion-toggle-btn:hover {
    background-color: #f9f9f9;
}

/* Title text and check icon */
.accordion-feature-title {
    display: flex;
    align-items: center;
}

.feature-icon {
    color: #0d1b2a; /* Dark blue icon */
    font-size: 16px;
    margin-right: 12px;
}

/* The Plus/Minus icon on the right */
.toggle-icon {
    font-size: 14px;
    color: #0d1b2a;
    transition: transform 0.3s ease;
}

/* Accordion Content Panel (The hidden part) */
.accordion-content-panel {
    /* Hides the content by default */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content-panel p {
    padding: 0 15px 20px 43px; /* Aligns text with the title */
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ==== STYLES FOR "ACTIVE" (OPEN) STATE ==== */

/* Rotates the plus icon to a minus */
.accordion-toggle-btn.active .toggle-icon {
    transform: rotate(45deg);
    /* Font Awesome's 'fa-plus' rotating 45deg looks like an 'x' 
       If you prefer a minus, you can use JS to change the class */
}

/* Changes the color of the active header */
.accordion-toggle-btn.active .accordion-feature-title {
    color: #0d1b2a;
}

/* This class is added by JS to show the panel */
.accordion-content-panel.active {
    /* The max-height will be set by JS to animate open */
    max-height: 500px; /* Fallback max height */
}


/* ==== GLOBAL FOOTER STYLES ==== */
.site-footer {
    /* Dark Blue Background */
    background-color: #0d1b2a; 
    /* White Text */
    color: #ffffff; 
    padding-top: 50px;
    font-family: Arial, sans-serif;
}

/* ==== MAIN CONTENT AREA (3-COLUMN LAYOUT) ==== */
.footer-main-content {
    display: flex;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px; /* Space between columns */
}

/* ==== COLUMN 1: ABOUT & SOCIAL ==== */
.footer-column-about {
    flex-basis: 100%; /* Full width on small screens */
    max-width: 400px; /* Max width on large screens */
}

.footer-logo-img {
    max-width: 180px; /* Adjust logo size as needed */
    margin-bottom: 20px;
}

.footer-about-text {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0; /* Slightly off-white for text */
    margin-bottom: 25px;
}

.footer-social-wrapper {
    display: flex;
    gap: 15px;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon-link:hover {
    background-color: #ffffff;
    color: #0d1b2a; /* Dark blue on hover */
}

/* ==== COLUMN 2 & 3: LINKS ==== */
.footer-column-links {
    flex-basis: 45%; /* Two columns on small screens */
    flex-grow: 1;
    min-width: 180px; /* Ensures links don't get too squished */
}

.footer-heading {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Adds a small underline to headings */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #415a77; /* A lighter blue accent */
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #e0e0e0; /* Off-white for links */
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links-list a:hover {
    color: #ffffff; /* Bright white on hover */
    padding-left: 5px; /* Slight indent effect */
    text-decoration: underline;
}

/* ==== BOTTOM COPYRIGHT BAR ==== */
.footer-bottom-bar {
    background-color: #000; /* Black for contrast */
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #415a77; /* Lighter blue border */
}

.copyright-text {
    margin: 0;
    font-size: 14px;
    color: #cccccc;
}

.developer-link {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.developer-link:hover {
    text-decoration: underline;
}

/* ==== RESPONSIVE DESIGN (FOR TABLETS/PHONES) ==== */
@media (min-width: 768px) {
    .footer-column-about {
        flex-basis: 30%; /* Takes ~40% width on tablets/desktops */
    }

    .footer-column-links {
        flex-basis: 20%; /* Takes ~25% width */
    }
}

/* ==== FLOATING BUTTONS STYLES ==== */

/* This makes the jump-to-top smooth */
html {
    scroll-behavior: smooth;
}

/* Base styles for both floating buttons */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.floating-top-btn {
    position: fixed;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-whatsapp-btn:hover,
.floating-top-btn:hover {
    transform: translateY(-3px);
}

/* 1. WhatsApp Button (Left Side) */
.floating-whatsapp-btn {
    left: 25px;
    background-color: #25D366; /* WhatsApp Green */
}

/* 2. "Go to Top" Button (Right Side) */
.floating-top-btn {
    right: 25px;
    background-color: #0d1b2a; /* Dark Blue from your footer */
    
    /* Hide the button by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* This class will be added by JavaScript to show the button */
.floating-top-btn.show-button {
    opacity: 1;
    visibility: visible;
}

/* ==== MOBILE VIEW SUPPORT ==== */
/* On smaller screens, make the buttons slightly smaller 
   and position them a bit closer to the edge */
@media (max-width: 768px) {
    .floating-whatsapp-btn {
        width: 65px;
        height: 65px;
        font-size: 50px;
        bottom: 15px;
    }
    .floating-top-btn {
        width: 55px;
        height: 55px;
        font-size: 30px;
        bottom: 15px;
    }
    
    .floating-whatsapp-btn {
        left: 15px;
    }
    
    .floating-top-btn {
        right: 15px;
    }
}

/* ==== GENERAL STYLES & UTILITIES (If not already present) ==== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.about-us-container,
.popular-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==== 1. ABOUT SECTION STYLES ==== */
.about-us-hero-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.about-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text-column {
    flex: 1;
}

.about-section-heading {
    font-size: 38px;
    font-weight: bold;
    color: #0d1b2a; /* Dark blue */
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-main-paragraph,
.about-secondary-paragraph {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.about-call-to-action {
    display: inline-block;
    background-color: #0d1b2a;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.about-call-to-action:hover {
    background-color: #1a2c40; /* Slightly darker blue */
}

.about-image-column {
    flex: 1;
    text-align: center;
}

.about-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==== 2. POPULAR SERVICES SECTION STYLES ==== */
.popular-services-list-section {
    padding: 70px 0;
    background-color: #f0f5f9; /* A soft blue-gray background */
}

.popular-services-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #0d1b2a;
    margin-bottom: 15px;
}

.popular-services-subheading {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.services-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-single-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-single-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon-card {
    font-size: 48px;
    color: #415a77; /* A medium blue accent */
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.service-card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .about-content-wrapper {
        flex-direction: column;
    }
    .about-image-column {
        order: -1; /* Puts image above text on small screens */
        margin-bottom: 30px;
    }
    .about-section-heading {
        font-size: 32px;
    }

    .services-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .popular-services-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about-us-hero-section,
    .popular-services-list-section {
        padding: 50px 0;
    }
    .about-content-wrapper {
        gap: 30px;
    }
    .about-main-paragraph,
    .about-secondary-paragraph,
    .popular-services-subheading {
        font-size: 16px;
    }

    .services-card-grid {
        grid-template-columns: 1fr;
    }
    
    .service-single-card {
        padding: 25px 20px;
    }
}

/* ==== CONTACT PAGE SECTION STYLES ==== */

.contact-page-section {
    padding: 60px 0;
    background-color: #f9f9f9; /* Light gray background */
    font-family: Arial, sans-serif;
    color: #333;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.contact-header-block {
    text-align: center;
    margin-bottom: 50px;
}

.contact-main-title {
    font-size: 38px;
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
}

.contact-sub-title {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content Grid */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Form is slightly wider */
    gap: 50px;
}

/* Column 1: Form */
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-heading {
    font-size: 24px;
    font-weight: 600;
    color: #0d1b2a; /* Dark blue */
    margin-bottom: 25px;
}

.form-input-group {
    margin-bottom: 20px;
}

.form-input-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.form-text-input,
.form-textarea-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Important for 100% width */
    transition: border-color 0.3s ease;
}

.form-text-input:focus,
.form-textarea-input:focus {
    border-color: #0d1b2a;
    outline: none;
    box-shadow: 0 0 5px rgba(13, 27, 42, 0.1);
}

.form-submit-button {
    width: 100%;
    padding: 15px;
    background-color: #0d1b2a;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-submit-button:hover {
    background-color: #1a2c40;
    transform: translateY(-2px);
}

/* Column 2: Details */
.contact-details-wrapper {
    /* No background, feels more integrated */
}

.contact-details-heading {
    font-size: 24px;
    font-weight: 600;
    color: #0d1b2a;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #e6eef8; /* Light blue */
    color: #0d1b2a; /* Dark blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}

.contact-detail-text {
    flex-grow: 1;
}

.contact-detail-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0 0 5px 0;
}

.contact-detail-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-detail-text a {
    color: #0d1b2a;
    text-decoration: none;
    font-weight: 500;
}

.contact-detail-text a:hover {
    text-decoration: underline;
}

/* Map */
.contact-map-wrapper {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .contact-content-grid {
        /* Stack the columns on tablets and phones */
        grid-template-columns: 1fr;
    }
    
    .contact-details-wrapper {
        margin-top: 40px;
    }
}

/* ==== GLOBAL STYLES ==== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
}

.sp-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: -20px auto 30px auto;
}

/* ==== 1. HERO SECTION ==== */
.sp-hero-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.sp-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.sp-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #0d1b2a; /* Dark Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}

.sp-hero-paragraph {
    font-size: 17px;
}

.sp-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==== 2. ELIGIBILITY SECTION ==== */
.sp-eligibility-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.sp-eligibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sp-eligibility-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
}

.sp-eligibility-icon {
    font-size: 40px;
    color: #0d1b2a;
    margin-bottom: 20px;
}

.sp-eligibility-card p {
    font-size: 16px;
    margin: 0;
}

/* ==== 3. DOCUMENTS SECTION (ACCORDION) ==== */
.sp-documents-section {
    padding: 70px 0;
    background-color: #f0f5f9; /* Soft blue-gray */
}

.sp-accordion {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.sp-accordion-item {
    border-bottom: 1px solid #e0e0e0;
}
.sp-accordion-item:last-child {
    border-bottom: none;
}

.sp-accordion-button {
    width: 100%;
    background-color: #ffffff;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease;
}

.sp-accordion-button:hover {
    background-color: #f9f9f9;
}

.sp-accordion-button .toggle-icon {
    font-size: 16px;
    color: #0d1b2a;
    transition: transform 0.3s ease;
}

.sp-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fafafa;
}

.sp-accordion-panel ul {
    list-style-type: circle;
    padding: 20px 25px 20px 50px;
    margin: 0;
}

.sp-accordion-panel li {
    margin-bottom: 10px;
}

/* Active states for accordion */
.sp-accordion-button.active {
    background-color: #f0f0f0;
}
.sp-accordion-button.active .toggle-icon {
    transform: rotate(180deg);
}
.sp-accordion-panel.active {
    max-height: 300px; /* Will be set by JS */
}

/* ==== 4. STEPS SECTION (TIMELINE) ==== */
.sp-steps-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.sp-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* The vertical line */
.sp-timeline::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e6eef8; /* Light blue */
    z-index: 1;
}

.sp-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
}
.sp-timeline-item:last-child {
    margin-bottom: 0;
}

/* The icon circle */
.sp-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0d1b2a; /* Dark Blue */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    border: 3px solid #ffffff;
}

/* The content card */
.sp-timeline-content {
    background-color: #f9f9f9;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.sp-timeline-content h3 {
    font-size: 20px;
    color: #111;
    margin-top: 0;
    margin-bottom: 10px;
}

.sp-timeline-content p {
    margin-bottom: 0;
}

/* ==== 5. BENEFITS SECTION ==== */
.sp-benefits-section {
    padding: 70px 0;
    background-color: #f9f9f9;
}

.sp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sp-benefit-card {
    background-color: #ffffff;
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.sp-benefit-icon {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 15px;
}

.sp-benefit-card h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
}

.sp-benefit-card p {
    font-size: 14px;
    margin-bottom: 0;
}

/* ==== 6. NOTE SECTION ==== */
.sp-note-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.sp-note-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 25px 30px;
    background-color: #fff9e6; /* Light yellow */
    border-left: 5px solid #ffc107; /* Yellow */
    display: flex;
    align-items: center;
    border-radius: 0 5px 5px 0;
}

.sp-note-icon {
    font-size: 28px;
    color: #ffc107;
    margin-right: 20px;
}

.sp-note-box p {
    font-size: 16px;
    color: #5d4a1a;
    margin: 0;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .sp-hero-grid {
        grid-template-columns: 1fr;
    }
    .sp-hero-image {
        order: -1; /* Puts image on top */
        margin-bottom: 30px;
        text-align: center;
    }
    .sp-eligibility-grid {
        grid-template-columns: 1fr;
    }
    .sp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sp-section-title {
        font-size: 30px;
    }
    .sp-hero-title {
        font-size: 34px;
    }
    .sp-timeline-item {
        padding-left: 65px;
    }
    .sp-timeline::after {
        left: 20px;
    }
    .sp-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .sp-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ==== GLOBAL STYLES ==== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base wrapper for each main section */
.service-page-wrapper {
    padding: 80px 0;
}

/* Background colors for separation */
.partnership-section {
    background-color: #ffffff;
}
.company-section {
    background-color: #f9f9f9;
}

/* Reusable Section Title */
.service-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
}
.service-section-title.left-align {
    text-align: left;
}

/* ==== 1. HERO SECTION ==== */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.service-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #0d1b2a; /* Dark Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-hero-paragraph {
    font-size: 17px;
}
.service-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==== 2. INFO GRID (Eligibility / Types) ==== */
.service-info-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}
.service-info-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}
.service-info-card {
    background-color: #f0f5f9; /* Soft blue-gray */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.info-card-icon {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.info-card-list {
    padding-left: 20px;
    margin-bottom: 0;
}

/* ==== 3. DETAILS LAYOUT (Documents) ==== */
.service-details-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f0f5f9;
    padding: 40px;
    border-radius: 8px;
}
.document-list-heading {
    color: #0d1b2a;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.document-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}
.document-list > li {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}
.document-sublist {
    list-style-type: circle;
    padding-left: 30px;
    margin-top: 10px;
    font-weight: normal;
    color: #555;
}

/* ==== 4. TIMELINE (Steps) ==== */
.service-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 20px 0;
}
.service-timeline::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e6eef8;
    z-index: 1;
}
.service-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
}
.service-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0d1b2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    border: 3px solid #f9f9f9;
}
.service-timeline-content {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.service-timeline-content h3 {
    font-size: 20px;
    color: #111;
    margin: 0 0 10px 0;
}
.service-timeline-content p {
    margin: 0;
}
.timeline-sublist {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}
/* Specific style for company timeline */
.company-section .service-timeline-icon {
    border-color: #f9f9f9; /* Match company bg */
}
.company-section .service-timeline-content {
    background-color: #ffffff;
}

/* ==== 5. NOTE BOX ==== */
.service-note-box {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 25px 30px;
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    display: flex;
    align-items: center;
    border-radius: 0 5px 5px 0;
}
.service-note-icon {
    font-size: 28px;
    color: #ffc107;
    margin-right: 20px;
}
.service-note-box p {
    font-size: 16px;
    color: #5d4a1a;
    margin: 0;
}

/* ==== 6. BENEFITS GRID ==== */
.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-benefit-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.service-benefit-card i {
    font-size: 40px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.service-benefit-card h3 {
    font-size: 20px;
    color: #222;
    margin: 0 0 10px 0;
}
.service-benefit-card p {
    font-size: 15px;
    margin: 0;
}
.company-section .service-benefit-card {
    background-color: #ffffff;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .service-hero-grid,
    .service-details-layout {
        grid-template-columns: 1fr;
    }
    .service-hero-image {
        order: -1;
        margin-bottom: 30px;
        text-align: center;
    }
    .service-info-grid.three-column,
    .service-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page-wrapper {
        padding: 60px 0;
    }
    .service-section-title {
        font-size: 30px;
    }
    .service-hero-title {
        font-size: 34px;
    }
    .service-info-grid.three-column,
    .service-benefits-grid {
        grid-template-columns: 1fr;
    }
    .service-details-layout {
        padding: 25px;
    }
    .service-timeline::after {
        left: 20px;
    }
    .service-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .service-timeline-item {
        padding-left: 65px;
    }
}

/* ==== GLOBAL STYLES ==== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base wrapper for each main section */
.service-page-wrapper {
    padding: 80px 0;
}

/* Background colors for separation */
/* You can add a new class for this page if you want a different BG */
.startup-section {
    background-color: #ffffff; 
}
.partnership-section {
    background-color: #ffffff;
}
.company-section {
    background-color: #f9f9f9;
}

/* Reusable Section Title */
.service-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
}
.service-section-title.left-align {
    text-align: left;
}
.service-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: -20px auto 30px auto;
}


/* ==== 1. HERO SECTION ==== */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.service-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #0d1b2a; /* Dark Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-hero-paragraph {
    font-size: 17px;
}
.service-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==== 2. INFO GRID (Eligibility / Types) ==== */
.service-info-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}
.service-info-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}
/* Added this new class for the 4-column layout */
.service-info-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}
.service-info-card {
    background-color: #f0f5f9; /* Soft blue-gray */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.info-card-icon {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.info-card-list {
    padding-left: 20px;
    margin-bottom: 0;
}

/* ==== 3. DETAILS LAYOUT (Documents) ==== */
.service-details-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f0f5f9;
    padding: 40px;
    border-radius: 8px;
}
.document-list-heading {
    color: #0d1b2a;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.document-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}
.document-list > li {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}
.document-sublist {
    list-style-type: circle;
    padding-left: 30px;
    margin-top: 10px;
    font-weight: normal;
    color: #555;
}

/* ==== 4. TIMELINE (Steps) ==== */
.service-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 20px 0;
}
.service-timeline::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e6eef8;
    z-index: 1;
}
.service-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
}
.service-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0d1b2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    border: 3px solid #f9f9f9;
}
.service-timeline-content {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.service-timeline-content h3 {
    font-size: 20px;
    color: #111;
    margin: 0 0 10px 0;
}
.service-timeline-content p {
    margin: 0;
}
.timeline-sublist {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}
/* Specific style for sections with white background */
.startup-section .service-timeline-icon {
    border-color: #ffffff; /* Match startup bg */
}
.startup-section .service-timeline-content {
    background-color: #f9f9f9;
}
.company-section .service-timeline-icon {
    border-color: #f9f9f9; /* Match company bg */
}
.company-section .service-timeline-content {
    background-color: #ffffff;
}


/* ==== 5. NOTE BOX ==== */
.service-note-box {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 25px 30px;
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    display: flex;
    align-items: center;
    border-radius: 0 5px 5px 0;
}
.service-note-icon {
    font-size: 28px;
    color: #ffc107;
    margin-right: 20px;
}
.service-note-box p {
    font-size: 16px;
    color: #5d4a1a;
    margin: 0;
}

/* ==== 6. BENEFITS GRID ==== */
.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-benefit-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.service-benefit-card i {
    font-size: 40px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.service-benefit-card h3 {
    font-size: 20px;
    color: #222;
    margin: 0 0 10px 0;
}
.service-benefit-card p {
    font-size: 15px;
    margin: 0;
}
.startup-section .service-benefit-card {
    background-color: #f9f9f9; /* Light bg for cards on white page */
}
.company-section .service-benefit-card {
    background-color: #ffffff;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .service-hero-grid,
    .service-details-layout {
        grid-template-columns: 1fr;
    }
    .service-hero-image {
        order: -1;
        margin-bottom: 30px;
        text-align: center;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page-wrapper {
        padding: 60px 0;
    }
    .service-section-title {
        font-size: 30px;
    }
    .service-hero-title {
        font-size: 34px;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid {
        grid-template-columns: 1fr;
    }
    .service-details-layout {
        padding: 25px;
    }
    .service-timeline::after {
        left: 20px;
    }
    .service-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .service-timeline-item {
        padding-left: 65px;
    }
}

/* Add this one line to your existing style.css */

.msme-section {
    background-color: #f9f9f9; /* Or #ffffff, your choice */
}

/* ==== GLOBAL STYLES ==== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base wrapper for each main section */
.service-page-wrapper {
    padding: 80px 0;
}

/* Background colors for separation 
  ADD THE NEW LINE FOR .society-section HERE
*/
.society-section {
    background-color: #ffffff; /* New line */
}
.startup-section {
    background-color: #ffffff; 
}
.partnership-section {
    background-color: #ffffff;
}
.company-section {
    background-color: #f9f9f9;
}
.msme-section {
    background-color: #f9f9f9;
}


/* Reusable Section Title */
.service-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
}
.service-section-title.left-align {
    text-align: left;
}
.service-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: -20px auto 30px auto;
}


/* ==== 1. HERO SECTION ==== */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.service-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #0d1b2a; /* Dark Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-hero-paragraph {
    font-size: 17px;
}
.service-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==== 2. INFO GRID (Eligibility / Types) ==== */
.service-info-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}
.service-info-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}
.service-info-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}
.service-info-card {
    background-color: #f0f5f9; /* Soft blue-gray */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.info-card-icon {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.info-card-list {
    padding-left: 20px;
    margin-bottom: 0;
}

/* ==== 3. DETAILS LAYOUT (Documents) ==== */
.service-details-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f0f5f9;
    padding: 40px;
    border-radius: 8px;
}
.document-list-heading {
    color: #0d1b2a;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.document-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}
.document-list > li {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}
.document-sublist {
    list-style-type: circle;
    padding-left: 30px;
    margin-top: 10px;
    font-weight: normal;
    color: #555;
}

/* ==== 4. TIMELINE (Steps) ==== */
.service-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 20px 0;
}
.service-timeline::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e6eef8;
    z-index: 1;
}
.service-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
}
.service-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0d1b2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    border: 3px solid #f9f9f9;
}
.service-timeline-content {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.service-timeline-content h3 {
    font-size: 20px;
    color: #111;
    margin: 0 0 10px 0;
}
.service-timeline-content p {
    margin: 0;
}
.timeline-sublist {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}
/* Specific style for sections with white background */
.society-section .service-timeline-icon {
    border-color: #ffffff; /* Match bg */
}
.society-section .service-timeline-content {
    background-color: #f9f9f9;
}
.startup-section .service-timeline-icon {
    border-color: #ffffff; /* Match bg */
}
.startup-section .service-timeline-content {
    background-color: #f9f9f9;
}
.partnership-section .service-timeline-icon {
    border-color: #ffffff; /* Match bg */
}
.partnership-section .service-timeline-content {
    background-color: #f9f9f9;
}
.company-section .service-timeline-icon {
    border-color: #f9f9f9; /* Match bg */
}
.company-section .service-timeline-content {
    background-color: #ffffff;
}
.msme-section .service-timeline-icon {
    border-color: #f9f9f9; /* Match bg */
}
.msme-section .service-timeline-content {
    background-color: #ffffff;
}


/* ==== 5. NOTE BOX ==== */
.service-note-box {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 25px 30px;
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    display: flex;
    align-items: center;
    border-radius: 0 5px 5px 0;
}
.service-note-icon {
    font-size: 28px;
    color: #ffc107;
    margin-right: 20px;
}
.service-note-box p {
    font-size: 16px;
    color: #5d4a1a;
    margin: 0;
}

/* ==== 6. BENEFITS GRID ==== */
.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-benefit-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.service-benefit-card i {
    font-size: 40px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.service-benefit-card h3 {
    font-size: 20px;
    color: #222;
    margin: 0 0 10px 0;
}
.service-benefit-card p {
    font-size: 15px;
    margin: 0;
}
/* Card background styles for different section backgrounds */
.society-section .service-benefit-card {
    background-color: #f9f9f9;
}
.startup-section .service-benefit-card {
    background-color: #f9f9f9;
}
.partnership-section .service-benefit-card {
    background-color: #f9f9f9;
}
.company-section .service-benefit-card {
    background-color: #ffffff;
}
.msme-section .service-benefit-card {
    background-color: #ffffff;
}


/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .service-hero-grid,
    .service-details-layout {
        grid-template-columns: 1fr;
    }
    .service-hero-image {
        order: -1;
        margin-bottom: 30px;
        text-align: center;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page-wrapper {
        padding: 60px 0;
    }
    .service-section-title {
        font-size: 30px;
    }
    .service-hero-title {
        font-size: 34px;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid {
        grid-template-columns: 1fr;
    }
    .service-details-layout {
        padding: 25px;
    }
    .service-timeline::after {
        left: 20px;
    }
    .service-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .service-timeline-item {
        padding-left: 65px;
    }
}

/* ==== GLOBAL STYLES ==== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base wrapper for each main section */
.service-page-wrapper {
    padding: 80px 0;
}

/* Background colors for separation 
  ADD THE NEW LINE FOR .llp-section HERE
*/
.llp-section {
    background-color: #f9f9f9; /* New line */
}
.society-section {
    background-color: #ffffff;
}
.startup-section {
    background-color: #ffffff; 
}
.partnership-section {
    background-color: #ffffff;
}
.company-section {
    background-color: #f9f9f9;
}
.msme-section {
    background-color: #f9f9f9;
}


/* Reusable Section Title */
.service-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
}
.service-section-title.left-align {
    text-align: left;
}
.service-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: -20px auto 30px auto;
}


/* ==== 1. HERO SECTION ==== */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.service-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #0d1b2a; /* Dark Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-hero-paragraph {
    font-size: 17px;
}
.service-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==== 2. INFO GRID (Eligibility / Types) ==== */
.service-info-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}
.service-info-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}
.service-info-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}
.service-info-card {
    background-color: #f0f5f9; /* Soft blue-gray */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.info-card-icon {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.info-card-list {
    padding-left: 20px;
    margin-bottom: 0;
}

/* ==== 3. DETAILS LAYOUT (Documents) ==== */
.service-details-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f0f5f9;
    padding: 40px;
    border-radius: 8px;
}
.document-list-heading {
    color: #0d1b2a;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.document-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}
.document-list > li {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}
.document-sublist {
    list-style-type: circle;
    padding-left: 30px;
    margin-top: 10px;
    font-weight: normal;
    color: #555;
}

/* Specific styles for sections with light backgrounds */
.llp-section .service-info-card,
.llp-section .service-details-layout {
    background-color: #ffffff; /* Make cards white on light bg */
}
.company-section .service-info-card,
.company-section .service-details-layout {
    background-color: #ffffff;
}
.msme-section .service-info-card,
.msme-section .service-details-layout {
    background-color: #ffffff;
}
/* Specific styles for sections with dark backgrounds */
.society-section .service-info-card,
.society-section .service-details-layout {
    background-color: #f0f5f9;
}
.startup-section .service-info-card,
.startup-section .service-details-layout {
    background-color: #f0f5f9;
}
.partnership-section .service-info-card,
.partnership-section .service-details-layout {
    background-color: #f0f5f9;
}


/* ==== 4. TIMELINE (Steps) ==== */
.service-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 20px 0;
}
.service-timeline::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e6eef8;
    z-index: 1;
}
.service-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
}
.service-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0d1b2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    border: 3px solid #f9f9f9;
}
.service-timeline-content {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.service-timeline-content h3 {
    font-size: 20px;
    color: #111;
    margin: 0 0 10px 0;
}
.service-timeline-content p {
    margin: 0;
}
.timeline-sublist {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}
/* Specific style for sections with white background */
.society-section .service-timeline-icon,
.startup-section .service-timeline-icon,
.partnership-section .service-timeline-icon {
    border-color: #ffffff; /* Match bg */
}
.society-section .service-timeline-content,
.startup-section .service-timeline-content,
.partnership-section .service-timeline-content {
    background-color: #f9f9f9;
}
/* Specific style for sections with light bg */
.llp-section .service-timeline-icon,
.company-section .service-timeline-icon,
.msme-section .service-timeline-icon {
    border-color: #f9f9f9; /* Match bg */
}
.llp-section .service-timeline-content,
.company-section .service-timeline-content,
.msme-section .service-timeline-content {
    background-color: #ffffff;
}


/* ==== 5. NOTE BOX ==== */
.service-note-box {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 25px 30px;
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    display: flex;
    align-items: center;
    border-radius: 0 5px 5px 0;
}
.service-note-icon {
    font-size: 28px;
    color: #ffc107;
    margin-right: 20px;
}
.service-note-box p {
    font-size: 16px;
    color: #5d4a1a;
    margin: 0;
}

/* ==== 6. BENEFITS GRID ==== */
.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-benefit-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.service-benefit-card i {
    font-size: 40px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.service-benefit-card h3 {
    font-size: 20px;
    color: #222;
    margin: 0 0 10px 0;
}
.service-benefit-card p {
    font-size: 15px;
    margin: 0;
}
/* Card background styles for different section backgrounds */
.llp-section .service-benefit-card,
.company-section .service-benefit-card,
.msme-section .service-benefit-card {
    background-color: #ffffff;
}
.society-section .service-benefit-card,
.startup-section .service-benefit-card,
.partnership-section .service-benefit-card {
    background-color: #f9f9f9;
}


/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .service-hero-grid,
    .service-details-layout {
        grid-template-columns: 1fr;
    }
    .service-hero-image {
        order: -1;
        margin-bottom: 30px;
        text-align: center;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page-wrapper {
        padding: 60px 0;
    }
    .service-section-title {
        font-size: 30px;
    }
    .service-hero-title {
        font-size: 34px;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid {
        grid-template-columns: 1fr;
    }
    .service-details-layout {
        padding: 25px;
    }
    .service-timeline::after {
        left: 20px;
    }
    .service-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .service-timeline-item {
        padding-left: 65px;
    }
}

/* ==== GLOBAL STYLES ==== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base wrapper for each main section */
.service-page-wrapper {
    padding: 80px 0;
}

/* Background colors for separation 
  ADD THE NEW LINE FOR .fssai-section HERE
*/
.fssai-section {
    background-color: #ffffff; /* New line */
}
.llp-section {
    background-color: #f9f9f9;
}
.society-section {
    background-color: #ffffff;
}
.startup-section {
    background-color: #ffffff; 
}
.partnership-section {
    background-color: #ffffff;
}
.company-section {
    background-color: #f9f9f9;
}
.msme-section {
    background-color: #f9f9f9;
}


/* Reusable Section Title */
.service-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
}
.service-section-title.left-align {
    text-align: left;
}
.service-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: -20px auto 30px auto;
}


/* ==== 1. HERO SECTION ==== */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.service-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #0d1b2a; /* Dark Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-hero-paragraph {
    font-size: 17px;
}
.service-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==== 2. INFO GRID (Eligibility / Types) ==== */
.service-info-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}
.service-info-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}
.service-info-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}
.service-info-card {
    background-color: #f0f5f9; /* Soft blue-gray */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.info-card-icon {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.info-card-list {
    padding-left: 20px;
    margin-bottom: 0;
}
.service-info-card h3 {
    font-size: 20px;
    color: #0d1b2a;
    margin-top: 0;
}

/* ==== 3. DETAILS LAYOUT (Documents) ==== */
.service-details-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f0f5f9;
    padding: 40px;
    border-radius: 8px;
}
.document-list-heading {
    color: #0d1b2a;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.document-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}
.document-list > li {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}
.document-sublist {
    list-style-type: circle;
    padding-left: 30px;
    margin-top: 10px;
    font-weight: normal;
    color: #555;
}

/* Specific styles for sections with light backgrounds */
.llp-section .service-info-card,
.llp-section .service-details-layout,
.company-section .service-info-card,
.company-section .service-details-layout,
.msme-section .service-info-card,
.msme-section .service-details-layout {
    background-color: #ffffff; /* Make cards white on light bg */
}
/* Specific styles for sections with dark backgrounds */
.fssai-section .service-info-card,
.fssai-section .service-details-layout,
.society-section .service-info-card,
.society-section .service-details-layout,
.startup-section .service-info-card,
.startup-section .service-details-layout,
.partnership-section .service-info-card,
.partnership-section .service-details-layout {
    background-color: #f0f5f9;
}


/* ==== 4. TIMELINE (Steps) ==== */
.service-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 20px 0;
}
.service-timeline::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e6eef8;
    z-index: 1;
}
.service-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
}
.service-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0d1b2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    border: 3px solid #f9f9f9;
}
.service-timeline-content {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.service-timeline-content h3 {
    font-size: 20px;
    color: #111;
    margin: 0 0 10px 0;
}
.service-timeline-content p {
    margin: 0;
}
.timeline-sublist {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}
/* Specific style for sections with white background */
.fssai-section .service-timeline-icon,
.society-section .service-timeline-icon,
.startup-section .service-timeline-icon,
.partnership-section .service-timeline-icon {
    border-color: #ffffff; /* Match bg */
}
.fssai-section .service-timeline-content,
.society-section .service-timeline-content,
.startup-section .service-timeline-content,
.partnership-section .service-timeline-content {
    background-color: #f9f9f9;
}
/* Specific style for sections with light bg */
.llp-section .service-timeline-icon,
.company-section .service-timeline-icon,
.msme-section .service-timeline-icon {
    border-color: #f9f9f9; /* Match bg */
}
.llp-section .service-timeline-content,
.company-section .service-timeline-content,
.msme-section .service-timeline-content {
    background-color: #ffffff;
}


/* ==== 5. NOTE BOX ==== */
.service-note-box {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 25px 30px;
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    display: flex;
    align-items: center;
    border-radius: 0 5px 5px 0;
}
.service-note-icon {
    font-size: 28px;
    color: #ffc107;
    margin-right: 20px;
}
.service-note-box p {
    font-size: 16px;
    color: #5d4a1a;
    margin: 0;
}

/* ==== 6. BENEFITS GRID ==== */
.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-benefit-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.service-benefit-card i {
    font-size: 40px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.service-benefit-card h3 {
    font-size: 20px;
    color: #222;
    margin: 0 0 10px 0;
}
.service-benefit-card p {
    font-size: 15px;
    margin: 0;
}
/* Card background styles for different section backgrounds */
.llp-section .service-benefit-card,
.company-section .service-benefit-card,
.msme-section .service-benefit-card {
    background-color: #ffffff;
}
.fssai-section .service-benefit-card,
.society-section .service-benefit-card,
.startup-section .service-benefit-card,
.partnership-section .service-benefit-card {
    background-color: #f9f9f9;
}


/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .service-hero-grid,
    .service-details-layout {
        grid-template-columns: 1fr;
    }
    .service-hero-image {
        order: -1;
        margin-bottom: 30px;
        text-align: center;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page-wrapper {
        padding: 60px 0;
    }
    .service-section-title {
        font-size: 30px;
    }
    .service-hero-title {
        font-size: 34px;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid {
        grid-template-columns: 1fr;
    }
    .service-details-layout {
        padding: 25px;
    }
    .service-timeline::after {
        left: 20px;
    }
    .service-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .service-timeline-item {
        padding-left: 65px;
    }
}

/* ==== GLOBAL STYLES ==== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base wrapper for each main section */
.service-page-wrapper {
    padding: 80px 0;
}

/* Background colors for separation 
  ADD THE NEW LINE FOR .gst-section HERE
*/
.gst-section {
    background-color: #f9f9f9; /* New line */
}
.fssai-section {
    background-color: #ffffff;
}
.llp-section {
    background-color: #f9f9f9;
}
.society-section {
    background-color: #ffffff;
}
.startup-section {
    background-color: #ffffff; 
}
.partnership-section {
    background-color: #ffffff;
}
.company-section {
    background-color: #f9f9f9;
}
.msme-section {
    background-color: #f9f9f9;
}


/* Reusable Section Title */
.service-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
}
.service-section-title.left-align {
    text-align: left;
}
.service-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: -20px auto 30px auto;
}


/* ==== 1. HERO SECTION ==== */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.service-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #0d1b2a; /* Dark Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-hero-paragraph {
    font-size: 17px;
}
.service-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==== 2. INFO GRID (Eligibility / Types) ==== */
.service-info-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}
.service-info-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}
.service-info-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}
.service-info-card {
    background-color: #f0f5f9; /* Soft blue-gray */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.info-card-icon {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.info-card-list {
    padding-left: 20px;
    margin-bottom: 0;
}
.service-info-card h3 {
    font-size: 20px;
    color: #0d1b2a;
    margin-top: 0;
}

/* ==== 3. DETAILS LAYOUT (Documents) ==== */
.service-details-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f0f5f9;
    padding: 40px;
    border-radius: 8px;
}
.document-list-heading {
    color: #0d1b2a;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.document-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}
.document-list > li {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}
.document-sublist {
    list-style-type: circle;
    padding-left: 30px;
    margin-top: 10px;
    font-weight: normal;
    color: #555;
}

/* Specific styles for sections with light backgrounds */
.gst-section .service-info-card,
.gst-section .service-details-layout,
.llp-section .service-info-card,
.llp-section .service-details-layout,
.company-section .service-info-card,
.company-section .service-details-layout,
.msme-section .service-info-card,
.msme-section .service-details-layout {
    background-color: #ffffff; /* Make cards white on light bg */
}
/* Specific styles for sections with dark backgrounds */
.fssai-section .service-info-card,
.fssai-section .service-details-layout,
.society-section .service-info-card,
.society-section .service-details-layout,
.startup-section .service-info-card,
.startup-section .service-details-layout,
.partnership-section .service-info-card,
.partnership-section .service-details-layout {
    background-color: #f0f5f9;
}


/* ==== 4. TIMELINE (Steps) ==== */
.service-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 20px 0;
}
.service-timeline::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e6eef8;
    z-index: 1;
}
.service-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
}
.service-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0d1b2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    border: 3px solid #f9f9f9;
}
.service-timeline-content {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.service-timeline-content h3 {
    font-size: 20px;
    color: #111;
    margin: 0 0 10px 0;
}
.service-timeline-content p {
    margin: 0;
}
.timeline-sublist {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}
/* Specific style for sections with white background */
.fssai-section .service-timeline-icon,
.society-section .service-timeline-icon,
.startup-section .service-timeline-icon,
.partnership-section .service-timeline-icon {
    border-color: #ffffff; /* Match bg */
}
.fssai-section .service-timeline-content,
.society-section .service-timeline-content,
.startup-section .service-timeline-content,
.partnership-section .service-timeline-content {
    background-color: #f9f9f9;
}
/* Specific style for sections with light bg */
.gst-section .service-timeline-icon,
.llp-section .service-timeline-icon,
.company-section .service-timeline-icon,
.msme-section .service-timeline-icon {
    border-color: #f9f9f9; /* Match bg */
}
.gst-section .service-timeline-content,
.llp-section .service-timeline-content,
.company-section .service-timeline-content,
.msme-section .service-timeline-content {
    background-color: #ffffff;
}


/* ==== 5. NOTE BOX ==== */
.service-note-box {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 25px 30px;
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    display: flex;
    align-items: center;
    border-radius: 0 5px 5px 0;
}
.service-note-icon {
    font-size: 28px;
    color: #ffc107;
    margin-right: 20px;
}
.service-note-box p {
    font-size: 16px;
    color: #5d4a1a;
    margin: 0;
}

/* ==== 6. BENEFITS GRID ==== */
.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-benefit-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.service-benefit-card i {
    font-size: 40px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.service-benefit-card h3 {
    font-size: 20px;
    color: #222;
    margin: 0 0 10px 0;
}
.service-benefit-card p {
    font-size: 15px;
    margin: 0;
}
/* Card background styles for different section backgrounds */
.gst-section .service-benefit-card,
.llp-section .service-benefit-card,
.company-section .service-benefit-card,
.msme-section .service-benefit-card {
    background-color: #ffffff;
}
.fssai-section .service-benefit-card,
.society-section .service-benefit-card,
.startup-section .service-benefit-card,
.partnership-section .service-benefit-card {
    background-color: #f9f9f9;
}


/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .service-hero-grid,
    .service-details-layout {
        grid-template-columns: 1fr;
    }
    .service-hero-image {
        order: -1;
        margin-bottom: 30px;
        text-align: center;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page-wrapper {
        padding: 60px 0;
    }
    .service-section-title {
        font-size: 30px;
    }
    .service-hero-title {
        font-size: 34px;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid {
        grid-template-columns: 1fr;
    }
    .service-details-layout {
        padding: 25px;
    }
    .service-timeline::after {
        left: 20px;
    }
    .service-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .service-timeline-item {
        padding-left: 65px;
    }
}


/* --- Main Hero Section Wrapper --- */
.gst-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    box-sizing: border-box;
}

/* --- 1. Left Content Block --- */
.gst-content-block {
    flex-basis: 35%;
    padding-right: 20px;
}

.gst-main-heading {
    font-size: 48px;
    font-weight: 900;
    margin: 0;
    /* Gradient text effect from the image */
    background: linear-gradient(90deg, #f7b733, #e17e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.gst-subheading {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 5px 0 20px 0;
}

.gst-price-info {
    font-size: 18px;
    color: #444;
    margin: 15px 0;
}

.gst-price-info strong {
    color: #2c3e50;
    font-weight: 700;
}

.gst-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* --- 2. Middle Image Block --- */
.gst-image-block {
    flex-basis: 30%;
    text-align: center;
}

.gst-image-block img {
    max-width: 100%;
    height: auto;
}

/* --- 3. Right Form Block --- */
.gst-form-container {
    flex-basis: 28%;
    background-color: #f35e28; /* Bright orange-red */
    color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.form-header p {
    margin: 5px 0 0;
    font-size: 15px;
    opacity: 0.9;
}

.gst-lead-form {
    display: flex;
    flex-direction: column;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* Important for padding to work correctly */
}

.form-input::placeholder {
    color: #999;
}

.form-submit-btn {
    background-color: #3b3a9e; /* Dark blue/purple */
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #2c2b7c; /* Darker shade on hover */
}

/* --- Responsive Media Query --- */
@media (max-width: 900px) {
    .gst-hero-section {
        flex-direction: column;
        text-align: center;
    }

    .gst-content-block,
    .gst-image-block,
    .gst-form-container {
        flex-basis: 100%;
        width: 90%;
        max-width: 450px;
        margin-bottom: 30px;
        padding-right: 0;
    }

    .gst-image-block {
        order: -1; /* Moves the image to the top on mobile */
    }
}

/* ==== GLOBAL STYLES ==== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base wrapper for each main section */
.service-page-wrapper {
    padding: 80px 0;
}

/* Background colors for separation 
  NEW .tan-section rule added
*/
.tan-section {
    background-color: #f9f9f9; /* New line */
}
.pan-section {
    background-color: #ffffff;
}
.gst-section {
    background-color: #f9f9f9;
}
.fssai-section {
    background-color: #ffffff;
}
.llp-section {
    background-color: #f9f9f9;
}
.society-section {
    background-color: #ffffff;
}
.startup-section {
    background-color: #ffffff; 
}
.partnership-section {
    background-color: #ffffff;
}
.company-section {
    background-color: #f9f9f9;
}
.msme-section {
    background-color: #f9f9f9;
}


/* Reusable Section Title */
.service-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
}
.service-section-title.left-align {
    text-align: left;
}
.service-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: -20px auto 30px auto;
}


/* ==== 1. HERO SECTION ==== */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.service-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #0d1b2a; /* Dark Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-hero-paragraph {
    font-size: 17px;
}
.service-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==== 2. INFO GRID (Eligibility / Types) ==== */
.service-info-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}
.service-info-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}
.service-info-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}
.service-info-card {
    background-color: #fcfcfc; /* Soft blue-gray */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ffffff;
}
.info-card-icon {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.info-card-list {
    padding-left: 20px;
    margin-bottom: 0;
}
.service-info-card h3 {
    font-size: 20px;
    color: #0d1b2a;
    margin-top: 0;
}

/* ==== 3. DETAILS LAYOUT (Documents) ==== */
.service-details-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #fefefe;
    padding: 40px;
    border-radius: 8px;
}
.document-list-heading {
    color: #0d1b2a;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.document-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}
.document-list > li {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}
.document-sublist {
    list-style-type: circle;
    padding-left: 30px;
    margin-top: 10px;
    font-weight: normal;
    color: #555;
}

/* Specific styles for sections with light backgrounds 
   NEW .tan-section rule added
*/
.tan-section .service-info-card,
.tan-section .service-details-layout,
.pan-section .service-info-card,
.pan-section .service-details-layout,
.gst-section .service-info-card,
.gst-section .service-details-layout,
.llp-section .service-info-card,
.llp-section .service-details-layout,
.company-section .service-info-card,
.company-section .service-details-layout,
.msme-section .service-info-card,
.msme-section .service-details-layout {
    background-color: #ffffff; /* Make cards white on light bg */
}
/* Specific styles for sections with dark backgrounds */
.fssai-section .service-info-card,
.fssai-section .service-details-layout,
.society-section .service-info-card,
.society-section .service-details-layout,
.startup-section .service-info-card,
.startup-section .service-details-layout,
.partnership-section .service-info-card,
.partnership-section .service-details-layout {
    background-color: #f0f5f9;
}


/* ==== 4. TIMELINE (Steps) ==== */
.service-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 20px 0;
}
.service-timeline::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e6eef8;
    z-index: 1;
}
.service-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
}
.service-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0d1b2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    border: 3px solid #f9f9f9;
}
.service-timeline-content {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.service-timeline-content h3 {
    font-size: 20px;
    color: #111;
    margin: 0 0 10px 0;
}
.service-timeline-content p {
    margin: 0;
}
.timeline-sublist {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}
/* Specific style for sections with white background 
   NEW .tan-section rule added
*/
.tan-section .service-timeline-icon,
.pan-section .service-timeline-icon,
.fssai-section .service-timeline-icon,
.society-section .service-timeline-icon,
.startup-section .service-timeline-icon,
.partnership-section .service-timeline-icon {
    border-color: #ffffff; /* Match bg */
}
.tan-section .service-timeline-content,
.pan-section .service-timeline-content,
.fssai-section .service-timeline-content,
.society-section .service-timeline-content,
.startup-section .service-timeline-content,
.partnership-section .service-timeline-content {
    background-color: #f9f9f9;
}
/* Specific style for sections with light bg */
.gst-section .service-timeline-icon,
.llp-section .service-timeline-icon,
.company-section .service-timeline-icon,
.msme-section .service-timeline-icon {
    border-color: #f9f9f9; /* Match bg */
}
.gst-section .service-timeline-content,
.llp-section .service-timeline-content,
.company-section .service-timeline-content,
.msme-section .service-timeline-content {
    background-color: #ffffff;
}


/* ==== 5. NOTE BOX ==== */
.service-note-box {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 25px 30px;
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    display: flex;
    align-items: center;
    border-radius: 0 5px 5px 0;
}
.service-note-icon {
    font-size: 28px;
    color: #ffc107;
    margin-right: 20px;
}
.service-note-box p {
    font-size: 16px;
    color: #5d4a1a;
    margin: 0;
}

/* ==== 6. BENEFITS GRID ==== */
.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-benefits-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}

.service-benefit-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.service-benefit-card i {
    font-size: 40px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.service-benefit-card h3 {
    font-size: 20px;
    color: #222;
    margin: 0 0 10px 0;
}
.service-benefit-card p {
    font-size: 15px;
    margin: 0;
}
/* Card background styles for different section backgrounds 
   NEW .tan-section rule added
*/
.tan-section .service-benefit-card,
.pan-section .service-benefit-card,
.gst-section .service-benefit-card,
.llp-section .service-benefit-card,
.company-section .service-benefit-card,
.msme-section .service-benefit-card {
    background-color: #ffffff;
}
.fssai-section .service-benefit-card,
.society-section .service-benefit-card,
.startup-section .service-benefit-card,
.partnership-section .service-benefit-card {
    background-color: #ffffff;
}


/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .service-hero-grid,
    .service-details-layout {
        grid-template-columns: 1fr;
    }
    .service-hero-image {
        order: -1;
        margin-bottom: 30px;
        text-align: center;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid,
    .service-benefits-grid.four-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page-wrapper {
        padding: 60px 0;
    }
    .service-section-title {
        font-size: 30px;
    }
    .service-hero-title {
        font-size: 34px;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid,
    .service-benefits-grid.four-column {
        grid-template-columns: 1fr;
    }
    .service-details-layout {
        padding: 25px;
    }
    .service-timeline::after {
        left: 20px;
    }
    .service-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .service-timeline-item {
        padding-left: 65px;
    }
}

/* ==== GLOBAL STYLES ==== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base wrapper for each main section */
.service-page-wrapper {
    padding: 80px 0;
}

/* Background colors for separation 
  NEW .nwc-section rule added
*/
.nwc-section {
    background-color: #ffffff; /* New line */
}
.toc-section {
    background-color: #ffffff;
}
.tan-section {
    background-color: #f9f9f9;
}
.pan-section {
    background-color: #ffffff;
}
.gst-section {
    background-color: #f9f9f9;
}
.fssai-section {
    background-color: #ffffff;
}
.llp-section {
    background-color: #f9f9f9;
}
.society-section {
    background-color: #ffffff;
}
.startup-section {
    background-color: #ffffff; 
}
.partnership-section {
    background-color: #ffffff;
}
.company-section {
    background-color: #f9f9f9;
}
.msme-section {
    background-color: #f9f9f9;
}


/* Reusable Section Title */
.service-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
}
.service-section-title.left-align {
    text-align: left;
}
.service-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: -20px auto 30px auto;
}


/* ==== 1. HERO SECTION ==== */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.service-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #0d1b2a; /* Dark Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-hero-paragraph {
    font-size: 17px;
}
.service-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==== 2. INFO GRID (Eligibility / Types) ==== */
.service-info-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}
.service-info-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}
.service-info-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}
.service-info-card {
    background-color: #f0f5f9; /* Soft blue-gray */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.info-card-icon {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.info-card-list {
    padding-left: 20px;
    margin-bottom: 0;
}
.service-info-card h3 {
    font-size: 20px;
    color: #0d1b2a;
    margin-top: 0;
}

/* ==== 3. DETAILS LAYOUT (Documents) ==== */
.service-details-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f0f5f9;
    padding: 40px;
    border-radius: 8px;
}
.document-list-heading {
    color: #0d1b2a;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.document-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}
.document-list > li {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}
.document-sublist {
    list-style-type: circle;
    padding-left: 30px;
    margin-top: 10px;
    font-weight: normal;
    color: #555;
}

/* Specific styles for sections with light backgrounds 
   NEW .nwc-section rule added
*/
.nwc-section .service-info-card,
.nwc-section .service-details-layout,
.toc-section .service-info-card,
.toc-section .service-details-layout,
.tan-section .service-info-card,
.tan-section .service-details-layout,
.pan-section .service-info-card,
.pan-section .service-details-layout,
.gst-section .service-info-card,
.gst-section .service-details-layout,
.llp-section .service-info-card,
.llp-section .service-details-layout,
.company-section .service-info-card,
.company-section .service-details-layout,
.msme-section .service-info-card,
.msme-section .service-details-layout {
    background-color: #ffffff; /* Make cards white on light bg */
}
/* Specific styles for sections with white backgrounds */
.fssai-section .service-info-card,
.fssai-section .service-details-layout,
.society-section .service-info-card,
.society-section .service-details-layout,
.startup-section .service-info-card,
.startup-section .service-details-layout,
.partnership-section .service-info-card,
.partnership-section .service-details-layout {
    background-color: #f0f5f9;
}


/* ==== 4. TIMELINE (Steps) ==== */
.service-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 20px 0;
}
.service-timeline::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e6eef8;
    z-index: 1;
}
.service-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
}
.service-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0d1b2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    border: 3px solid #f9f9f9;
}
.service-timeline-content {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.service-timeline-content h3 {
    font-size: 20px;
    color: #111;
    margin: 0 0 10px 0;
}
.service-timeline-content p {
    margin: 0;
}
.timeline-sublist {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}
/* Specific style for sections with white background 
   NEW .nwc-section rule added
*/
.nwc-section .service-timeline-icon,
.toc-section .service-timeline-icon,
.tan-section .service-timeline-icon,
.pan-section .service-timeline-icon,
.fssai-section .service-timeline-icon,
.society-section .service-timeline-icon,
.startup-section .service-timeline-icon,
.partnership-section .service-timeline-icon {
    border-color: #ffffff; /* Match bg */
}
.nwc-section .service-timeline-content,
.toc-section .service-timeline-content,
.tan-section .service-timeline-content,
.pan-section .service-timeline-content,
.fssai-section .service-timeline-content,
.society-section .service-timeline-content,
.startup-section .service-timeline-content,
.partnership-section .service-timeline-content {
    background-color: #f9f9f9;
}
/* Specific style for sections with light bg */
.gst-section .service-timeline-icon,
.llp-section .service-timeline-icon,
.company-section .service-timeline-icon,
.msme-section .service-timeline-icon {
    border-color: #f9f9f9; /* Match bg */
}
.gst-section .service-timeline-content,
.llp-section .service-timeline-content,
.company-section .service-timeline-content,
.msme-section .service-timeline-content {
    background-color: #ffffff;
}


/* ==== 5. NOTE BOX ==== */
.service-note-box {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 25px 30px;
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    display: flex;
    align-items: center;
    border-radius: 0 5px 5px 0;
}
.service-note-icon {
    font-size: 28px;
    color: #ffc107;
    margin-right: 20px;
}
.service-note-box p {
    font-size: 16px;
    color: #5d4a1a;
    margin: 0;
}

/* ==== 6. BENEFITS GRID ==== */
.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-benefits-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}

.service-benefit-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.service-benefit-card i {
    font-size: 40px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.service-benefit-card h3 {
    font-size: 20px;
    color: #222;
    margin: 0 0 10px 0;
}
.service-benefit-card p {
    font-size: 15px;
    margin: 0;
}
/* Card background styles for different section backgrounds 
   NEW .nwc-section rule added
*/
.nwc-section .service-benefit-card,
.toc-section .service-benefit-card,
.tan-section .service-benefit-card,
.pan-section .service-benefit-card,
.gst-section .service-benefit-card,
.llp-section .service-benefit-card,
.company-section .service-benefit-card,
.msme-section .service-benefit-card {
    background-color: #ffffff;
}
.fssai-section .service-benefit-card,
.society-section .service-benefit-card,
.startup-section .service-benefit-card,
.partnership-section .service-benefit-card {
    background-color: #f9f9f9;
}


/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .service-hero-grid,
    .service-details-layout {
        grid-template-columns: 1fr;
    }
    .service-hero-image {
        order: -1;
        margin-bottom: 30px;
        text-align: center;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid,
    .service-benefits-grid.four-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page-wrapper {
        padding: 60px 0;
    }
    .service-section-title {
        font-size: 30px;
    }
    .service-hero-title {
        font-size: 34px;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid,
    .service-benefits-grid.four-column {
        grid-template-columns: 1fr;
    }
    .service-details-layout {
        padding: 25px;
    }
    .service-timeline::after {
        left: 20px;
    }
    .service-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .service-timeline-item {
        padding-left: 65px;
    }
}

/* ==== GLOBAL STYLES ==== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base wrapper for each main section */
.service-page-wrapper {
    padding: 80px 0;
}

/* Background colors for separation 
  NEW .bookkeeping-section rule added
*/
.bookkeeping-section {
    background-color: #f9f9f9; /* New line */
}
.nwc-section {
    background-color: #ffffff;
}
.toc-section {
    background-color: #ffffff;
}
.tan-section {
    background-color: #f9f9f9;
}
.pan-section {
    background-color: #ffffff;
}
.gst-section {
    background-color: #f9f9f9;
}
.fssai-section {
    background-color: #ffffff;
}
.llp-section {
    background-color: #f9f9f9;
}
.society-section {
    background-color: #ffffff;
}
.startup-section {
    background-color: #ffffff; 
}
.partnership-section {
    background-color: #ffffff;
}
.company-section {
    background-color: #f9f9f9;
}
.msme-section {
    background-color: #f9f9f9;
}


/* Reusable Section Title */
.service-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
}
.service-section-title.left-align {
    text-align: left;
}
.service-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: -20px auto 30px auto;
}


/* ==== 1. HERO SECTION ==== */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.service-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #0d1b2a; /* Dark Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-hero-paragraph {
    font-size: 17px;
}
.service-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==== 2. INFO GRID (Eligibility / Types) ==== */
.service-info-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}
.service-info-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}
.service-info-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}
.service-info-card {
    background-color: #f0f5f9; /* Soft blue-gray */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.info-card-icon {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.info-card-list {
    padding-left: 20px;
    margin-bottom: 0;
}
.service-info-card h3 {
    font-size: 20px;
    color: #0d1b2a;
    margin-top: 0;
}

/* ==== 3. DETAILS LAYOUT (Documents) ==== */
.service-details-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f0f5f9;
    padding: 40px;
    border-radius: 8px;
}
.document-list-heading {
    color: #0d1b2a;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.document-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}
.document-list > li {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}
.document-sublist {
    list-style-type: circle;
    padding-left: 30px;
    margin-top: 10px;
    font-weight: normal;
    color: #555;
}

/* Specific styles for sections with light backgrounds 
   NEW .bookkeeping-section rule added
*/
.bookkeeping-section .service-info-card,
.bookkeeping-section .service-details-layout,
.nwc-section .service-info-card,
.nwc-section .service-details-layout,
.toc-section .service-info-card,
.toc-section .service-details-layout,
.tan-section .service-info-card,
.tan-section .service-details-layout,
.pan-section .service-info-card,
.pan-section .service-details-layout,
.gst-section .service-info-card,
.gst-section .service-details-layout,
.llp-section .service-info-card,
.llp-section .service-details-layout,
.company-section .service-info-card,
.company-section .service-details-layout,
.msme-section .service-info-card,
.msme-section .service-details-layout {
    background-color: #ffffff; /* Make cards white on light bg */
}
/* Specific styles for sections with white backgrounds */
.fssai-section .service-info-card,
.fssai-section .service-details-layout,
.society-section .service-info-card,
.society-section .service-details-layout,
.startup-section .service-info-card,
.startup-section .service-details-layout,
.partnership-section .service-info-card,
.partnership-section .service-details-layout {
    background-color: #f0f5f9;
}


/* ==== 4. TIMELINE (Steps) ==== */
.service-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 20px 0;
}
.service-timeline::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e6eef8;
    z-index: 1;
}
.service-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
}
.service-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0d1b2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    border: 3px solid #f9f9f9;
}
.service-timeline-content {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.service-timeline-content h3 {
    font-size: 20px;
    color: #111;
    margin: 0 0 10px 0;
}
.service-timeline-content p {
    margin: 0;
}
.timeline-sublist {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}
/* Specific style for sections with white background 
   NEW .bookkeeping-section rule added
*/
.bookkeeping-section .service-timeline-icon,
.nwc-section .service-timeline-icon,
.toc-section .service-timeline-icon,
.tan-section .service-timeline-icon,
.pan-section .service-timeline-icon,
.fssai-section .service-timeline-icon,
.society-section .service-timeline-icon,
.startup-section .service-timeline-icon,
.partnership-section .service-timeline-icon {
    border-color: #ffffff; /* Match bg */
}
.bookkeeping-section .service-timeline-content,
.nwc-section .service-timeline-content,
.toc-section .service-timeline-content,
.tan-section .service-timeline-content,
.pan-section .service-timeline-content,
.fssai-section .service-timeline-content,
.society-section .service-timeline-content,
.startup-section .service-timeline-content,
.partnership-section .service-timeline-content {
    background-color: #f9f9f9;
}
/* Specific style for sections with light bg */
.gst-section .service-timeline-icon,
.llp-section .service-timeline-icon,
.company-section .service-timeline-icon,
.msme-section .service-timeline-icon {
    border-color: #f9f9f9; /* Match bg */
}
.gst-section .service-timeline-content,
.llp-section .service-timeline-content,
.company-section .service-timeline-content,
.msme-section .service-timeline-content {
    background-color: #ffffff;
}


/* ==== 5. NOTE BOX ==== */
.service-note-box {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 25px 30px;
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    display: flex;
    align-items: center;
    border-radius: 0 5px 5px 0;
}
.service-note-icon {
    font-size: 28px;
    color: #ffc107;
    margin-right: 20px;
}
.service-note-box p {
    font-size: 16px;
    color: #5d4a1a;
    margin: 0;
}

/* ==== 6. BENEFITS GRID ==== */
.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-benefits-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}

.service-benefit-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.service-benefit-card i {
    font-size: 40px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.service-benefit-card h3 {
    font-size: 20px;
    color: #222;
    margin: 0 0 10px 0;
}
.service-benefit-card p {
    font-size: 15px;
    margin: 0;
}
/* Card background styles for different section backgrounds 
   NEW .bookkeeping-section rule added
*/
.bookkeeping-section .service-benefit-card,
.nwc-section .service-benefit-card,
.toc-section .service-benefit-card,
.tan-section .service-benefit-card,
.pan-section .service-benefit-card,
.gst-section .service-benefit-card,
.llp-section .service-benefit-card,
.company-section .service-benefit-card,
.msme-section .service-benefit-card {
    background-color: #ffffff;
}
.fssai-section .service-benefit-card,
.society-section .service-benefit-card,
.startup-section .service-benefit-card,
.partnership-section .service-benefit-card {
    background-color: #f9f9f9;
}


/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .service-hero-grid,
    .service-details-layout {
        grid-template-columns: 1fr;
    }
    .service-hero-image {
        order: -1;
        margin-bottom: 30px;
        text-align: center;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid,
    .service-benefits-grid.four-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page-wrapper {
        padding: 60px 0;
    }
    .service-section-title {
        font-size: 30px;
    }
    .service-hero-title {
        font-size: 34px;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid,
    .service-benefits-grid.four-column {
        grid-template-columns: 1fr;
    }
    .service-details-layout {
        padding: 25px;
    }
    .service-timeline::after {
        left: 20px;
    }
    .service-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .service-timeline-item {
        padding-left: 65px;
    }
}

/* ==== GLOBAL STYLES ==== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.6;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base wrapper for each main section */
.service-page-wrapper {
    padding: 80px 0;
}

/* Background colors for separation 
  NEW .mis-section rule added
*/
.mis-section {
    background-color: #ffffff; /* New line */
}
.accounts-section {
    background-color: #ffffff;
}
.nwc-section {
    background-color: #ffffff;
}
.toc-section {
    background-color: #ffffff;
}
.tan-section {
    background-color: #f9f9f9;
}
.pan-section {
    background-color: #ffffff;
}
.gst-section {
    background-color: #f9f9f9;
}
.fssai-section {
    background-color: #ffffff;
}
.llp-section {
    background-color: #f9f9f9;
}
.society-section {
    background-color: #ffffff;
}
.startup-section {
    background-color: #ffffff; 
}
.partnership-section {
    background-color: #ffffff;
}
.company-section {
    background-color: #f9f9f9;
}
.msme-section {
    background-color: #f9f9f9;
}


/* Reusable Section Title */
.service-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
}
.service-section-title.left-align {
    text-align: left;
}
.service-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: -20px auto 30px auto;
}


/* ==== 1. HERO SECTION ==== */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.service-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #0d1b2a; /* Dark Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-hero-paragraph {
    font-size: 17px;
}
.service-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==== 2. INFO GRID (Eligibility / Types) ==== */
.service-info-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}
.service-info-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}
.service-info-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}
.service-info-card {
    background-color: #f0f5f9; /* Soft blue-gray */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.info-card-icon {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.info-card-list {
    padding-left: 20px;
    margin-bottom: 0;
}
.service-info-card h3 {
    font-size: 20px;
    color: #0d1b2a;
    margin-top: 0;
}

/* ==== 3. DETAILS LAYOUT (Documents) ==== */
.service-details-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f0f5f9;
    padding: 40px;
    border-radius: 8px;
}
.document-list-heading {
    color: #0d1b2a;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.document-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}
.document-list > li {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}
.document-sublist {
    list-style-type: circle;
    padding-left: 30px;
    margin-top: 10px;
    font-weight: normal;
    color: #555;
}

/* Specific styles for sections with light backgrounds 
   NEW .mis-section rule added
*/
.mis-section .service-info-card,
.mis-section .service-details-layout,
.accounts-section .service-info-card,
.accounts-section .service-details-layout,
.nwc-section .service-info-card,
.nwc-section .service-details-layout,
.toc-section .service-info-card,
.toc-section .service-details-layout,
.tan-section .service-info-card,
.tan-section .service-details-layout,
.pan-section .service-info-card,
.pan-section .service-details-layout,
.gst-section .service-info-card,
.gst-section .service-details-layout,
.llp-section .service-info-card,
.llp-section .service-details-layout,
.company-section .service-info-card,
.company-section .service-details-layout,
.msme-section .service-info-card,
.msme-section .service-details-layout {
    background-color: #ffffff; /* Make cards white on light bg */
}
/* Specific styles for sections with white backgrounds */
.fssai-section .service-info-card,
.fssai-section .service-details-layout,
.society-section .service-info-card,
.society-section .service-details-layout,
.startup-section .service-info-card,
.startup-section .service-details-layout,
.partnership-section .service-info-card,
.partnership-section .service-details-layout {
    background-color: #f0f5f9;
}


/* ==== 4. TIMELINE (Steps) ==== */
.service-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 20px 0;
}
.service-timeline::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e6eef8;
    z-index: 1;
}
.service-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 70px;
}
.service-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0d1b2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    border: 3px solid #f9f9f9;
}
.service-timeline-content {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.service-timeline-content h3 {
    font-size: 20px;
    color: #111;
    margin: 0 0 10px 0;
}
.service-timeline-content p {
    margin: 0;
}
.timeline-sublist {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}
/* Specific style for sections with white background 
   NEW .mis-section rule added
*/
.mis-section .service-timeline-icon,
.accounts-section .service-timeline-icon,
.nwc-section .service-timeline-icon,
.toc-section .service-timeline-icon,
.tan-section .service-timeline-icon,
.pan-section .service-timeline-icon,
.fssai-section .service-timeline-icon,
.society-section .service-timeline-icon,
.startup-section .service-timeline-icon,
.partnership-section .service-timeline-icon {
    border-color: #ffffff; /* Match bg */
}
.mis-section .service-timeline-content,
.accounts-section .service-timeline-content,
.nwc-section .service-timeline-content,
.toc-section .service-timeline-content,
.tan-section .service-timeline-content,
.pan-section .service-timeline-content,
.fssai-section .service-timeline-content,
.society-section .service-timeline-content,
.startup-section .service-timeline-content,
.partnership-section .service-timeline-content {
    background-color: #f9f9f9;
}
/* Specific style for sections with light bg */
.gst-section .service-timeline-icon,
.llp-section .service-timeline-icon,
.company-section .service-timeline-icon,
.msme-section .service-timeline-icon {
    border-color: #f9f9f9; /* Match bg */
}
.gst-section .service-timeline-content,
.llp-section .service-timeline-content,
.company-section .service-timeline-content,
.msme-section .service-timeline-content {
    background-color: #ffffff;
}


/* ==== 5. NOTE BOX ==== */
.service-note-box {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 25px 30px;
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    display: flex;
    align-items: center;
    border-radius: 0 5px 5px 0;
}
.service-note-icon {
    font-size: 28px;
    color: #ffc107;
    margin-right: 20px;
}
.service-note-box p {
    font-size: 16px;
    color: #5d4a1a;
    margin: 0;
}

/* ==== 6. BENEFITS GRID ==== */
.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-benefits-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}

.service-benefit-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.service-benefit-card i {
    font-size: 40px;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.service-benefit-card h3 {
    font-size: 20px;
    color: #222;
    margin: 0 0 10px 0;
}
.service-benefit-card p {
    font-size: 15px;
    margin: 0;
}
/* Card background styles for different section backgrounds 
   NEW .mis-section rule added
*/
.mis-section .service-benefit-card,
.accounts-section .service-benefit-card,
.nwc-section .service-benefit-card,
.toc-section .service-benefit-card,
.tan-section .service-benefit-card,
.pan-section .service-benefit-card,
.gst-section .service-benefit-card,
.llp-section .service-benefit-card,
.company-section .service-benefit-card,
.msme-section .service-benefit-card {
    background-color: #ffffff;
}
.fssai-section .service-benefit-card,
.society-section .service-benefit-card,
.startup-section .service-benefit-card,
.partnership-section .service-benefit-card {
    background-color: #f9f9f9;
}


/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
    .service-hero-grid,
    .service-details-layout {
        grid-template-columns: 1fr;
    }
    .service-hero-image {
        order: -1;
        margin-bottom: 30px;
        text-align: center;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid,
    .service-benefits-grid.four-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page-wrapper {
        padding: 60px 0;
    }
    .service-section-title {
        font-size: 30px;
    }
    .service-hero-title {
        font-size: 34px;
    }
    .service-info-grid.three-column,
    .service-info-grid.four-column,
    .service-benefits-grid,
    .service-benefits-grid.four-column {
        grid-template-columns: 1fr;
    }
    .service-details-layout {
        padding: 25px;
    }
    .service-timeline::after {
        left: 20px;
    }
    .service-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .service-timeline-item {
        padding-left: 65px;
    }
}

/* ==== 7. NEW TABLE STYLES ==== */
.service-table-wrapper {
    overflow-x: auto; /* Makes table responsive */
    margin: 0 auto;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.content-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.content-table th,
.content-table td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
}
.content-table th {
    background-color: #f0f5f9;
    color: #0d1b2a;
    font-weight: 600;
}
.content-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.content-table tbody tr:hover {
    background-color: #f1f1f1;
}
/* Specific styles for sections with light bg */
.tds-section .content-table th {
    background-color: #f0f5f9;
}
.tds-section .content-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
/* Specific styles for sections with light bg */
.gst-returns-section .content-table th,
.din-section .content-table th,
.dsc-section .content-table th,
.trademark-section .content-table th,
.esi-section .content-table th,
.pf-section .content-table th,
.financial-section .content-table th,
.mis-section .content-table th,
.accounts-section .content-table th,
.nwc-section .content-table th,
.toc-section .content-table th,
.tan-section .content-table th,
.pan-section .content-table th,
.gst-section .content-table th,
.llp-section .content-table th,
.company-section .content-table th,
.msme-section .content-table th {
    background-color: #ffffff;
}
.gst-returns-section .content-table tbody tr:nth-child(even),
.din-section .content-table tbody tr:nth-child(even),
.dsc-section .content-table tbody tr:nth-child(even),
.trademark-section .content-table tbody tr:nth-child(even),
.esi-section .content-table tbody tr:nth-child(even),
.pf-section .content-table tbody tr:nth-child(even),
.financial-section .content-table tbody tr:nth-child(even),
.mis-section .content-table tbody tr:nth-child(even),
.accounts-section .content-table tbody tr:nth-child(even),
.nwc-section .content-table tbody tr:nth-child(even),
.toc-section .content-table tbody tr:nth-child(even),
.tan-section .content-table tbody tr:nth-child(even),
.pan-section .content-table tbody tr:nth-child(even),
.gst-section .content-table tbody tr:nth-child(even),
.llp-section .content-table tbody tr:nth-child(even),
.company-section .content-table tbody tr:nth-child(even),
.msme-section .content-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

