:root {
            --sbf-blue: #2B3990;
            --sbf-saffron: #F4A300;
            --sbf-white: #FFFFFF;
            --sbf-gray: #333333;
            --sbf-green: #28a745;
            --section-padding: 80px 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--sbf-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }

        .btn-primary {
            background-color: var(--sbf-blue);
            border-color: var(--sbf-blue);
            border-radius: 8px;
            padding: 12px 30px;
            font-weight: 600;
        }

        .btn-primary:hover {
            background-color: var(--sbf-saffron);
            border-color: var(--sbf-saffron);
        }

        .btn-outline-primary {
            color: var(--sbf-blue);
            border-color: var(--sbf-blue);
            border-radius: 8px;
            padding: 12px 30px;
            font-weight: 600;
        }

        .btn-outline-primary:hover {
            background-color: var(--sbf-blue);
            border-color: var(--sbf-blue);
        }

        .section-padding {
            padding: var(--section-padding);
        }

       /* Enhanced Hero Section */
        .hero-section {
            position: relative;
            color: white;
            padding: 80px 0 80px;
            /* overflow: hidden;
            height: 100vh; */
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--sbf-blue) 0%, #1a2460 100%);
        }

        @media (max-width: 767.98px) {
            .transparent-image{
                animation: none !important;
            }
        }

        /* Background Animation */
        .hero-bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .shape-1 {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
            background: rgba(244, 163, 0, 0.2);
        }

        .shape-2 {
            width: 120px;
            height: 120px;
            top: 70%;
            left: 80%;
            animation-delay: 2s;
            background: rgba(255, 255, 255, 0.15);
        }

        .shape-3 {
            width: 60px;
            height: 60px;
            top: 20%;
            left: 85%;
            animation-delay: 4s;
            background: rgba(244, 163, 0, 0.25);
        }

        .shape-4 {
            width: 100px;
            height: 100px;
            top: 80%;
            left: 15%;
            animation-delay: 6s;
            background: rgba(255, 255, 255, 0.1);
        }

        .shape-5 {
            width: 70px;
            height: 70px;
            top: 60%;
            left: 5%;
            animation-delay: 8s;
            background: rgba(244, 163, 0, 0.2);
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(10px, 15px) rotate(90deg);
            }
            50% {
                transform: translate(20px, 5px) rotate(180deg);
            }
            75% {
                transform: translate(5px, 20px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.2;
            transition: opacity 0.5s ease;
        }

        .video-background iframe {
            width: 100vw;
            height: 56.25vw;
            min-height: 100vh;
            min-width: 177.77vh;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .image-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background-image: url('../images/background-image.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.3;
            transition: opacity 0.5s ease;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(43, 57, 144, 0.9) 0%, rgba(26, 36, 96, 0.85) 100%);
            z-index: 0;
        }

        .hero-text {
            position: relative;
            z-index: 1;
        }

        .hero-highlight {
            color: var(--sbf-saffron);
            font-weight: 700;
        }

        .hero-cta {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .hero-cta:hover::before {
            left: 100%;
        }

        /* Hero Section for Inner Page */
        .inner-hero {
            background: linear-gradient(135deg, var(--sbf-blue) 0%, #1a2460 100%);
            color: white;
            padding: 80px 0 80px;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 767.98px) {
            .inner-hero {
                padding: 40px 0 40px;
            }
        }

        .inner-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/background-image.jpg') no-repeat center center;
            background-size: cover;
            opacity: 0.2;
            z-index: 0;
        }

        .inner-hero-content {
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 20px;
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--sbf-saffron);
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-10px) translateX(-50%);
            }
            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }

        /* Transparent Image Section */
        .transparent-image-container {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .transparent-image {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
            animation: floatImage 6s ease-in-out infinite;
        }

        @keyframes floatImage {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0);
            }
        }

        /* Text Animation */
        .text-reveal {
            opacity: 0;
            transform: translateY(20px);
            animation: textReveal 0.8s forwards;
        }

        .text-reveal-delay-1 {
            animation-delay: 0.2s;
        }

        .text-reveal-delay-2 {
            animation-delay: 0.4s;
        }

        .text-reveal-delay-3 {
            animation-delay: 0.6s;
        }

        @keyframes textReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Styles */
        @media (max-width: 991.98px) {
            .hero-section {
                padding: 120px 0 80px;
                text-align: center;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .transparent-image-container {
                margin-top: 10px;
                height: 400px;
            }
            
            .transparent-image {
                max-height: 100%;
                height: inherit;
            }
        }

        .problem-section {
            background-color: #f8f9fa;
        }

        .philosophy-card {
            border-top: 4px solid var(--sbf-blue);
            border-radius: 10px;
            transition: transform 0.3s;
            height: 100%;
        }

        .philosophy-card:hover {
            transform: translateY(-10px);
        }

        .philosophy-card i {
            font-size: 3rem;
            color: var(--sbf-blue);
            margin-bottom: 20px;
        }

        .target-section {
            background: linear-gradient(rgba(244, 163, 0, 0.05), rgba(244, 163, 0, 0.1));
        }

        .results-section {
            background-color: #f8f9fa;
        }

        .results-section p{
            text-align: center;
        }

        .testimonial-card {
            border-left: 4px solid var(--sbf-saffron);
            padding-left: 20px;
            height: 100%;
            margin: 10px;
        }

        .lead-magnet-section {
            background-color: var(--sbf-blue);
            color: white;
        }

        .program-card {
            border: 1px solid #e9ecef;
            border-radius: 10px;
            transition: all 0.3s;
            height: 100%;
        }

        .program-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .program-card h4 {
            color: var(--sbf-blue);
        }

        .final-cta {
            background: linear-gradient(rgba(43, 57, 144, 0.9), rgba(43, 57, 144, 0.9)), url('../images/background-image.jpg') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 100px 0;
        }

        footer {
            background-color: var(--sbf-gray);
            color: white;
            padding: 60px 0 30px;
        }

        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        footer a:hover {
            color: var(--sbf-saffron);
        }

        .tagline {
            color: var(--sbf-saffron);
            font-weight: 600;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--sbf-blue);
        }

        .nav-link {
            font-weight: 500;
            color: var(--sbf-gray);
        }

        .nav-link:hover {
            color: var(--sbf-blue);
        }

        .saffron-text {
            color: var(--sbf-saffron);
        }

        .blue-text {
            color: var(--sbf-blue);
        }

        .section-title {
            margin-bottom: 50px;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--sbf-saffron);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        @media (max-width: 991.98px) {
            .section-title:after {
                font-size: 1.5rem;
                left: 12% !important;
            }
        }

        .form-control {
            border-radius: 8px;
            padding: 7px 15px;
        }

        .form-control:focus {
            border-color: var(--sbf-blue);
            box-shadow: 0 0 0 0.25rem rgba(43, 57, 144, 0.25);
        }

        /* Testimonial Carousel Styles */
        .testimonial-carousel .carousel-item {
            padding: 20px 0;
        }

        .testimonial-carousel .carousel-control-prev,
        .testimonial-carousel .carousel-control-next {
            width: 40px;
            height: 40px;
            background-color: var(--sbf-blue);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }

        .testimonial-carousel .carousel-control-prev:hover,
        .testimonial-carousel .carousel-control-next:hover {
            background-color: var(--sbf-saffron);
        }

        .testimonial-carousel .carousel-control-prev {
            left: -50px;
        }

        .testimonial-carousel .carousel-control-next {
            right: -50px;
        }

        .testimonial-carousel .carousel-indicators {
            bottom: -50px;
        }

        .testimonial-carousel .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
        }

        .testimonial-carousel .carousel-indicators button.active {
            background-color: var(--sbf-saffron);
        }

        /* Mobile Navigation Styles */
        .navbar-collapse {
            transition: transform 0.3s ease-in-out;
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                width: 280px;
                padding: 20px;
                background-color: white;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                transform: translateX(-100%);
                z-index: 1050;
                overflow-y: auto;
            }

            .navbar-collapse.show {
                transform: translateX(0);
            }

            .navbar-collapse .navbar-nav {
                margin-top: 40px;
            }

            .navbar-collapse .nav-item {
                margin-bottom: 15px;
            }

            .navbar-collapse .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                transition: background-color 0.3s;
            }

            .navbar-collapse .nav-link:hover {
                background-color: rgba(43, 57, 144, 0.1);
            }

            .navbar-toggler {
                z-index: 1060;
                border: none;
                padding: 5px 10px;
            }

            .navbar-toggler:focus {
                box-shadow: none;
            }

            .navbar-backdrop {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 1040;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s, visibility 0.3s;
            }

            .navbar-backdrop.show {
                opacity: 1;
                visibility: visible;
            }

            :root {
                --section-padding: 60px 0;
            }
            
            .hero-section {
                padding: 50px 0 0px;
            }
            
            .testimonial-carousel .carousel-control-prev {
                left: 10px;
            }
            
            .testimonial-carousel .carousel-control-next {
                right: 10px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.6s, transform 0.6s;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.6s, transform 0.6s;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .bounce-in {
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.6s, transform 0.6s;
        }

        .bounce-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        .delay-1 {
            transition-delay: 0.2s;
        }

        .delay-2 {
            transition-delay: 0.4s;
        }

        .delay-3 {
            transition-delay: 0.6s;
        }
        .transformations-section {
            background-color: var(--sbf-white);
            position: relative;
            overflow: hidden;
        }

        .transformations-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232B3990" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,176C1248,192,1344,224,1392,240L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
            background-size: cover;
            z-index: 0;
        }

        .transformations-section p{
            /* text-align: center; */
        }

        .section-title {
            margin-bottom: 50px;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--sbf-saffron);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .transformations-section {
            background-color: var(--sbf-white);
            position: relative;
            overflow: hidden;
        }

        .transformations-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232B3990" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,176C1248,192,1344,224,1392,240L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
            background-size: cover;
            z-index: 0;
        }

        .section-title {
            margin-bottom: 50px;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--sbf-saffron);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Transformation Cards Slider */
        .transformation-slider-container {
            position: relative;
            margin: 40px 0;
        }

        .transformation-slider {
            display: flex;
            overflow-x: hidden;
            scroll-behavior: smooth;
            padding: 20px 0;
            gap: 20px;
        }

        .transformation-card {
            flex: 0 0 calc(33.333% - 14px); /* 3 cards on desktop with gap */
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            background-color: white;
        }

        .transformation-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .transformation-card img {
            width: 100%;
            height: 70%;
            object-fit: cover;
        }

        .transformation-card .card-body {
            padding: 20px;
        }

        .transformation-card h5 {
            color: var(--sbf-blue);
            margin-bottom: 5px;
        }

        .transformation-card .text-muted {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        /* Slider Navigation */
        .slider-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
        }

        .slider-nav button {
            background-color: var(--sbf-blue);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
            margin: 0 10px;
        }

        .slider-nav button:hover {
            background-color: var(--sbf-saffron);
            transform: scale(1.1);
        }

        .slider-nav button:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
            transform: scale(1);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            margin: 0 20px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background-color: var(--sbf-saffron);
            transform: scale(1.2);
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Styles */
        @media (max-width: 991.98px) {
            .transformation-card {
                flex: 0 0 calc(100% - 20px); /* 1 card on mobile with gap */
            }
            
            .transformation-card img {
                height: 450px;
            }
            
            .slider-nav button {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
        .navbar-nav .dropdown-menu {
            border: none;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            margin-top: 1px;
        }

        .dropdown-item {
            padding: 10px 20px;
            color: var(--sbf-gray);
            font-weight: 500;
            transition: all 0.3s;
        }

        .dropdown-item:hover {
            background-color: rgba(43, 57, 144, 0.1);
            color: var(--sbf-blue);
        }

        .navbar-nav .nav-link.dropdown-toggle::after {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .navbar-nav .dropdown:hover .dropdown-menu {
            display: block;
        }

        /* Mobile dropdown styles */
        @media (max-width: 991.98px) {
            .navbar-nav .dropdown-menu {
                box-shadow: none;
                margin-top: 0;
                padding-left: 20px;
                background-color: rgba(43, 57, 144, 0.05);
            }
            
            .dropdown-item {
                padding: 8px 15px;
            }
            
            .navbar-nav .dropdown-toggle::after {
                float: right;
                margin-top: 8px;
            }
        }

        /* Program Overview Section */
        .program-overview {
            background-color: #f8f9fa;
        }

        .feature-card {
            border-top: 4px solid var(--sbf-blue);
            border-radius: 10px;
            transition: transform 0.3s;
            height: 100%;
            padding: 30px 20px;
            text-align: left;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-card i {
            font-size: 3rem;
            color: var(--sbf-blue);
            margin-bottom: 20px;
        }

        /* Who Is This For Section */
        .target-audience {
            background-color: white;
        }

        .audience-card {
            border: 1px solid #e9ecef;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s;
        }

        .audience-card:hover {
            border-color: var(--sbf-blue);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .audience-card i {
            color: var(--sbf-saffron);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Program Structure */
        .program-structure {
            background-color: #f8f9fa;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--sbf-blue);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background-color: white;
            border: 4px solid var(--sbf-saffron);
            border-radius: 50%;
            top: 15px;
            z-index: 1;
        }

        .left {
            left: 0;
        }

        .right {
            left: 50%;
        }

        .left::after {
            right: -13px;
        }

        .right::after {
            left: -13px;
        }

        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        /* Testimonials */
        .testimonials-section {
            background-color: white;
        }

        .testimonial-card {
            border-left: 4px solid var(--sbf-saffron);
            padding-left: 20px;
            height: 100%;
            margin: 10px;
        }

        /* Pricing Section */
        .pricing-section {
            background-color: #f8f9fa;
        }

        .pricing-card {
            border: 1px solid #e9ecef;
            border-radius: 10px;
            transition: all 0.3s;
            height: 100%;
            overflow: hidden;
        }

        .pricing-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .pricing-header {
            background-color: var(--sbf-blue);
            color: white;
            padding: 30px 20px;
            text-align: center;
        }

        .pricing-body {
            padding: 30px 20px;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--sbf-blue);
        }

        .price-period {
            color: #6c757d;
        }

        .pricing-body ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .pricing-body ul li {
            padding: 8px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .pricing-body ul li::before {
            content: "✔";
            left: 0;
            top: 0;
            color: var(--sbf-saffron);
            padding-right: 5px;
        }

        .pricing-body ul li:last-child {
            border-bottom: none;
        }

        .pricing-body ul li i {
            color: var(--sbf-saffron);
            margin-right: 10px;
        }

        /* FAQ Section */
        .faq-section {
            background-color: white;
        }

        .accordion-button {
            font-weight: 600;
            padding: 20px;
        }

        .accordion-button:not(.collapsed) {
            background-color: rgba(43, 57, 144, 0.05);
            color: var(--sbf-blue);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(43, 57, 144, 0.25);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(43, 57, 144, 0.9), rgba(43, 57, 144, 0.9)), url('../images/background-image.jpg') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        /* Footer */
        footer {
            background-color: var(--sbf-gray);
            color: white;
            padding: 60px 0 30px;
        }

        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        footer a:hover {
            color: var(--sbf-saffron);
        }

        .tagline {
            color: var(--sbf-saffron);
            font-weight: 600;
        }

        /* Responsive Adjustments */
        @media (max-width: 767.98px) {
            .timeline::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item::after {
                left: 18px;
            }

            .right {
                left: 0;
            }
        }

        .whats-included {
            background-color: #f8f9fa;
        }

        .included-card {
            border-top: 4px solid var(--sbf-blue);
            border-radius: 10px;
            transition: all 0.3s;
            height: 100%;
            padding: 25px;
            margin-bottom: 25px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .included-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .included-card i {
            font-size: 2.5rem;
            color: var(--sbf-blue);
            margin-bottom: 15px;
        }

        /* Specialized Options */
        .specialized-options {
            background-color: white;
        }

        .option-card {
            border: 1px solid #e9ecef;
            border-radius: 10px;
            transition: all 0.3s;
            height: 100%;
            overflow: hidden;
        }

        .option-card:hover {
            border-color: var(--sbf-blue);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .option-header {
            padding: 20px;
            text-align: left;
            color: white;
        }

        .mens-option .option-header {
            background-color: var(--sbf-blue);
        }

        .womens-option .option-header {
            background-color: var(--sbf-saffron);
        }

        .option-body {
            padding: 20px;
        }

.text-style{
    text-align: justify;
}

@media (max-width: 767px) {
            body, .inner-hero-content, .program-overview, .target-audience, .whats-included, .specialized-options, .testimonials-slider-section, .pricing-section, .cta-section, .feature-card, .audience-card, .included-card, .option-card, .pricing-card, .testimonial-slider-card, .section-title, h1, h2, h3, h4, p, .breadcrumb, .btn, .price, .price-period {
                text-align: left !important;
                /* padding-bottom: 20px; */
            }
            .hero-text p{
                padding-bottom: 0 !important;
            }
            .inner-hero-content h1, .inner-hero-content p, .inner-hero-content .breadcrumb {
                text-align: left !important;
            }
            .feature-card, .audience-card, .included-card, .option-card {
                text-align: left;
            }
            .results-section, p, .section-title, .testimonials-slider-section .section-title, .pricing-section .section-title, p{
                text-align: left !important;
            }

            .pricing-card .price {
                justify-content: flex-start;
            }
            .section-padding p{
                text-align: left !important;
            }
        }

        .btn{
            border-radius: 8px;
            font-size: 16px;
        }
    @media (max-width: 767px) {
        .btn {
            font-size: 16px;
            float: left;
            padding: 10px 20px;
        }
    }

    /* Read More Button */
        .read-more-btn {
            background: transparent;
            border: 2px solid var(--sbf-saffron);
            color: var(--sbf-saffron);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            margin-top: 15px;
            cursor: pointer;
            display: inline-block;
            text-align: center;
            width: fit-content;
        }

        .read-more-btn:hover {
            background: var(--sbf-saffron);
            color: white;
            transform: translateY(-2px);
        }

        /* Modal Styles */
        .detail-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .detail-modal-content {
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 800px;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .detail-modal-header {
            padding: 20px 25px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, var(--sbf-blue) 0%, #1a2460 100%);
            color: white;
            border-radius: 20px 20px 0 0;
        }

        .detail-modal-header h3 {
            margin: 0;
            font-size: 1.5rem;
        }

        .modal-close-btn {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
            transition: transform 0.2s;
            line-height: 1;
        }

        .modal-close-btn:hover {
            transform: scale(1.1);
        }

        .detail-modal-body {
            padding: 25px;
        }

        .modal-image {
            width: 100%;
            max-height: 600px;
            /* object-fit: cover; */
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .modal-author-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .modal-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--sbf-saffron);
        }

        .modal-author-details h4 {
            margin: 0 0 5px 0;
            color: var(--sbf-blue);
        }

        .modal-author-details p {
            margin: 0;
            color: #666;
        }

        .modal-program-badge {
            background: linear-gradient(45deg, var(--sbf-saffron), #ffba08);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 20px;
        }

        .modal-full-description {
            line-height: 1.7;
            color: #333;
            font-size: 1rem;
            margin-top: 15px;
        }

        .modal-full-description p {
            margin-bottom: 15px;
        }