       /* ==========================================================================
           1. Global Root Variables & Reset Styles  
           ========================================================================== */
        :root {
            /* Colors - Dark Blue Faded Theme */
			--color-bg-main: #0a1128;
            --color-bg-gradient: linear-gradient(135deg, #0a1128 0%, #1c2d42 100%);
            --color-bg-card: #ffffff;
            --color-bg-footer: #f8fafc;
            --color-bg-overlay: rgba(255, 255, 255, 0.08);
            --color-text-white: #ffffff;
            --color-text-muted: #cbd5e1;
            --color-text-dark: #0f172a;
            --color-text-subtle: #94a3b8;
            --color-btn-yellow: #f8df97;
            --color-border-dark: #0f172a;
            --color-border-subtle: rgba(255, 255, 255, 0.15);

            /* Fonts */
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

            /* Layout & Spacing */
            --container-max-width: 1280px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
        }

        /* Base Wrapper Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body.page-root {
            font-family: var(--font-main);
            background: var(--color-bg-gradient);
            color: var(--color-text-white);
            min-height: 100vh;
        }

        a {
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        /* Global Shared Fixed Container */
        .site-container {
            width: 90%;
            max-width: var(--container-max-width);
            margin: 0 auto;
        }

        /* ==========================================================================
           2. Header & Navigation Section Styles
           ========================================================================== */
        header {
            width: 100%;
            padding: 20px 0;
            border-bottom: 1px solid var(--color-border-subtle);
            position: relative;
            z-index: 1000;
        }

        header .site-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            color: #ffffff;
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        /* Navigation Links Wrapper */
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        nav ul {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        nav ul li a {
            color: #cbd5e1;
            font-size: 16px;
            font-weight: 600;
            transition: .3s;
        }

        nav ul li a i {
            font-size: 12px;
            margin-left: 6px;
        }

        nav ul li a:hover {
            color: #ffffff;
        }

        .login-btn a {
            color: #ffffff;
			background-color: #007bff;
            font-size: 16px;
            font-weight: 600;
            padding: 10px 28px;
            border-radius: 25px;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .login-btn a:hover {
            background-color: #0056b3;
			transform:scale(1.02);
        }

        /* Mobile Toggle Hamburger Button */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 24px;
            cursor: pointer;
        }

        /* Mega Menu Dropdown Styles */
        .nl-mm-has-dropdown {
            position: relative;
        }

        .nl-mm-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .nl-mm-dropdown {
            position: absolute;
            top: 100%;
            left: -120px; 
            margin-top: 15px;
            width: 780px; 
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            display: flex;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 9999;
            overflow: hidden;
        }

        @media (min-width: 993px) {
            .nl-mm-has-dropdown:hover .nl-mm-dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .nl-mm-has-dropdown:hover .nl-mm-arrow {
                transform: rotate(180deg);
                transition: transform 0.25s ease;
            }
        }

        .nl-mm-col {
            flex: 1;
            padding: 2.25rem 2rem; 
        }

        .nl-mm-col:first-child {
            border-right: 1px solid #e2e8f0;
        }

        .nl-mm-header {
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .nl-mm-title {
            font-size: 1.05rem; 
            font-weight: 700;
            color: #0f172a;
            margin: 0 0 0.35rem 0;
            line-height: 1.2;
        }

        .nl-mm-subtitle {
            font-size: 0.85rem;
            color: #64748b;
            margin: 0;
            font-weight: 400;
        }

        .nl-mm-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .nl-mm-list li a {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0f172a;
            text-decoration: none;
            transition: color 0.2s ease, transform 0.2s ease;
            display: inline-block;
            line-height: 1.3;
        }

        .nl-mm-list li a:hover {
            color: #2563eb;
            transform: translateX(3px);
        }

        /* Responsive Header Styles */
        @media (max-width: 992px) {
            .mobile-toggle {
                display: block;
            }

            .nav-wrapper {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #0a1128;
                border-bottom: 1px solid var(--color-border-subtle);
                padding: 20px 5%;
                display: none;
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }

            .nav-wrapper.active {
                display: flex;
            }

            nav ul {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                width: 100%;
            }

            .login-btn {
                width: 100%;
            }

            .login-btn a {
                display: block;
                text-align: center;
            }

            .nl-mm-has-dropdown {
                width: 100%;
            }

            .nl-mm-dropdown {
                position: static;
                width: 100%;
                flex-direction: column;
                box-shadow: none;
                border: none;
                margin-top: 10px;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                background-color: #111e38;
                border-radius: 8px;
            }

            .nl-mm-has-dropdown.active .nl-mm-dropdown {
                display: flex;
            }

            .nl-mm-has-dropdown.active .nl-mm-arrow {
                transform: rotate(180deg);
            }

            .nl-mm-col {
                padding: 1.25rem 1.5rem;
            }

            .nl-mm-col:first-child {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nl-mm-title {
                color: #ffffff;
            }

            .nl-mm-subtitle {
                color: #94a3b8;
            }

            .nl-mm-header {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nl-mm-list li a {
                color: #cbd5e1;
            }

            .nl-mm-list li a:hover {
                color: #38bdf8;
            }
        }

        /* ==========================================================================
           3. Hero Section Styles
           ========================================================================== */
        .hero-section {
            padding: 4rem 0;
            background: transparent;
        }

        .hero-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2.5rem;
        }

        .hero-content {
            flex: 1;
            max-width: 680px;
        }

        .hero-subtitle {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: #38bdf8;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-title {
            font-size: 3.6rem;
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin: 0 0 1.25rem 0;
            color: #ffffff;
        }

        .hero-description {
            font-size: 1.15rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            margin: 0 0 2.5rem 0;
            max-width: 580px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background-color: var(--color-bg-overlay);
            border-radius: var(--radius-md);
            padding: 1.5rem 1rem;
            border: 1px solid var(--color-border-subtle);
            backdrop-filter: blur(10px);
        }

        .stat-item {
            padding: 0 0.85rem;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-value {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0 0 0.25rem 0;
            color: #ffffff;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--color-text-subtle);
            margin: 0;
        }

        .hero-card-container {
            width: 350px;
            flex-shrink: 0;
        }

        .hero-card {
            background-color: var(--color-bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
            border: 1px solid var(--color-border-subtle);
        }

        .card-body {
            padding: 1.75rem 1.5rem;
            color: var(--color-text-dark);
        }

        .card-info-group:not(:last-child) {
            margin-bottom: 1.25rem;
        }

        .card-label {
            display: block;
            font-size: 0.85rem;
            color: #64748b;
            margin-bottom: 0.2rem;
            font-weight: 500;
        }

        .card-value {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--color-text-dark);
            margin: 0;
        }

        .card-actions {
            background-color: var(--color-bg-footer);
            padding: 1.25rem 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            border-top: 1px solid #e2e8f0;
        }

        .btn {
            width: 100%;
            padding: 0.85rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background-color: var(--color-btn-yellow);
            color: var(--color-text-dark);
            border: 1px solid var(--color-border-dark);
        }

        .btn-primary:hover {
            background-color: #f5d378;
        }

        .btn-outline {
            background-color: #ffffff;
            color: var(--color-text-dark);
            border: 1px solid var(--color-border-dark);
        }

        .btn-outline:hover {
            background-color: #f1f5f9;
        }

        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-card-container {
                width: 100%;
                max-width: 480px;
            }
        }

        @media (max-width: 600px) {
            .hero-section {
                padding: 2.5rem 0;
            }

            .hero-title {
                font-size: 2.3rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem 0;
            }

            .stat-item:nth-child(2) {
                border-right: none;
            }

            .stat-item {
                padding: 0 0.5rem;
            }
        }	

        /* ==========================================================================
           4. Transitions Carousel Section Styles
           ========================================================================== */
        .transitions-section {
            background: transparent;
            padding: 4rem 0;
            width: 100%;
            overflow: hidden;
        }

        .transitions-container {
            text-align: center;
        }

        .transitions-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 2.5rem;
            letter-spacing: -0.02em;
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 10px 0;
            mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, rgba(0,0,0,0) 100%);
        }

        .carousel-track {
            display: flex;
            gap: 1.25rem;
            width: max-content;
            animation: scrollTrack 25s linear infinite;
        }

        .carousel-wrapper:hover .carousel-track {
            animation-play-state: paused;
        }

        @keyframes scrollTrack {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-50% - 0.625rem)); }
        }

        .transition-card {
            width: 170px;
            height: 200px;
            background-color: #ffffff;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 0.75rem;
            flex-shrink: 0;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .transition-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        }

        .avatar-box {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            overflow: hidden;
        }

        .avatar-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .person-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: #0f172a;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }

        .company-logo {
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .company-logo img {
            max-height: 22px;
            max-width: 90px;
            object-fit: contain;
        }

        .text-logo { font-size: 0.85rem; font-weight: 600; color: #334155; }
        .bold-logo { font-weight: 800; letter-spacing: -0.5px; }
        .green-logo { color: #10b981; font-weight: 700; }
        .red-logo { color: #e11d48; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.5px; }

        .icon-logo {
            width: 24px;
            height: 24px;
            background-color: #0ea5e9;
            color: white;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
        }

        @media (max-width: 600px) {
            .transitions-title { font-size: 1.75rem; }
            .transition-card { width: 145px; height: 180px; }
            .avatar-box { width: 60px; height: 60px; }
        }

        /* ==========================================================================
           5. What Will You Learn Section Styles
           ========================================================================== */
        .learn-section {
            background: transparent;
            padding: 4rem 0 5rem 0;
        }

        .learn-title {
            color: var(--color-text-white);
            font-size: 2.75rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3.5rem;
            letter-spacing: -0.02em;
        }

        /* Expandable Grid Wrapper */
        .learn-grid-wrapper {
            position: relative;
            max-height: 380px; /* Limits height to ~1 row of cards initially */
            overflow: hidden;
            transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .learn-grid-wrapper.expanded {
            max-height: 3000px; /* Expanded state allows all cards to show */
        }

        /* Dark Blue Faded Gradient Overlay on Cards */
        .learn-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 280px;
            background: linear-gradient(to bottom, rgba(10, 17, 40, 0) 0%, rgba(10, 17, 40, 0.85) 50%, rgba(10, 17, 40, 1) 100%);
            display: flex;
            justify-content: center;
            align-items: flex-end;
            padding-bottom: 20px;
            z-index: 10;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .learn-grid-wrapper.expanded .learn-overlay {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        /* See Full Curriculum Button Style */
        .btn-see-full {
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            transition: transform 0.2s ease, color 0.2s ease;
        }

        .btn-see-full:hover {
            color: #38bdf8;
            transform: translateY(2px);
        }

        .learn-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .learn-card {
            background-color: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .learn-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .card-content {
            padding: 2.25rem 2rem;
        }

        .week-badge {
            display: block;
            font-size: 0.85rem;
            color: #0284c7;
            font-weight: 600;
            margin-bottom: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .card-heading {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--color-text-dark);
            line-height: 1.3;
            margin: 0 0 1.5rem 0;
        }

        .card-topics {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .card-topics li {
            font-size: 0.95rem;
            color: #475569;
            position: relative;
            padding-left: 1.25rem;
            line-height: 1.4;
        }

        .card-topics li::before {
            content: "•";
            color: #0284c7;
            font-weight: bold;
            font-size: 1.2rem;
            position: absolute;
            left: 0;
            top: -2px;
        }

        .card-footer {
            background-color: #f8fafc;
            padding: 1.25rem 2rem;
            border-top: 1px solid #e2e8f0;
        }

        .case-study-label {
            display: block;
            font-size: 0.8rem;
            color: #64748b;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .brand-logos {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .brand-text {
            font-size: 1.1rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .brand-swiggy { color: #fc8019; }
        .brand-youtube { color: #282828; display: flex; align-items: center; gap: 4px; }
        .brand-amazon { color: #000000; font-weight: 900; }
        .brand-bereal { color: #000000; font-weight: 800; font-size: 1.15rem; }
        .brand-flipkart { color: #2874f0; font-style: italic; font-weight: 800; }
        .brand-spotify { color: #1ed760; font-weight: 700; }

        /* Download Detailed Curriculum Action Button (Shows when expanded) */
        .download-curriculum-container {
            display: flex;
            justify-content: center;
            margin-top: 2.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.4s ease 0.3s;
        }

        .learn-grid-wrapper.expanded + .download-curriculum-container {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .btn-download-curriculum {
            background-color: #ffffff;
            color: var(--color-text-dark);
            font-size: 1.05rem;
            font-weight: 700;
            padding: 0.9rem 1.8rem;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.2s ease;
        }

        .btn-download-curriculum:hover {
            background-color: #f1f5f9;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 992px) {
            .learn-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .learn-title {
                font-size: 2.25rem;
                margin-bottom: 2.5rem;
            }
            .learn-grid-wrapper {
                max-height: 420px;
            }
        }

        @media (max-width: 640px) {
            .learn-section {
                padding: 3.5rem 0;
            }

            .learn-grid {
                grid-template-columns: 1fr;
            }

            .learn-title {
                font-size: 1.85rem;
            }

            .card-content {
                padding: 1.75rem 1.25rem;
            }

            .card-footer {
                padding: 1rem 1.25rem;
            }
        }

        /* ==========================================================================
           6. Get the AI Advantage Section Styles
           ========================================================================== */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2.5rem;
            color: var(--color-text-white);
            letter-spacing: -0.02em;
        }

        /* Main Grid Wrapper */
        .ai-grid {
            display: grid;
            grid-template-columns: 360px 1fr;
            gap: 2rem;
            align-items: center;
        }

        /* Left Side: Tabs Navigation */
        .tabs-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .tab-btn {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            padding: 1.25rem 1.5rem;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .tab-btn.active {
            background-color: #ffffff;
            border-color: #ffffff;
            transform: translateX(4px);
        }

        .tab-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.35rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .tab-btn.active .tab-title {
            color: var(--color-text-dark);
        }

        .tab-desc {
            font-size: 0.825rem;
            color: var(--color-text-muted);
            line-height: 1.35;
        }

        .tab-btn.active .tab-desc {
            color: #475569;
        }

        /* Right Side White Card Box */
        .content-card-wrapper {
            background-color: #ffffff;
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            min-height: 400px;
            color: var(--color-text-dark);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        /* Slide Panels Base */
        .tab-panel {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .tab-panel.active {
            display: grid;
        }

        /* Left Column inside Panel */
        .panel-column-left {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .panel-block:not(:last-child) {
            margin-bottom: 2rem;
        }

        .block-title {
            font-size: 1.65rem;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.25;
            margin-bottom: 0.5rem;
        }

        .block-subtitle {
            font-size: 0.8rem;
            font-weight: 600;
            color: #64748b;
            margin-bottom: 0.8rem;
            text-transform: lowercase;
        }

        /* Logos Styling */
        .logos-row {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .logo-text {
            font-size: 1.15rem;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .logo-meta { color: #0668e1; }
        .logo-google { 
            background: linear-gradient(90deg, #4285f4, #ea4335, #fbbc05, #34a853);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo-lovable { color: #f43f5e; font-weight: 700; }
        .logo-bolt { color: #000000; font-weight: 800; font-style: italic; }
        .logo-n8n { color: #ff6d5a; font-weight: 800; }
        .logo-openai { color: #000000; font-weight: 700; }

        /* Right Column Concepts List */
        .panel-column-right {
            display: flex;
            flex-direction: column;
        }

        .concepts-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 1.25rem;
        }

        .concepts-list {
            list-style-type: disc;
            padding-left: 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        /* Sequential Reveal Items (NextLeap Slide Effect) */
        .concepts-list li {
            font-size: 1.05rem;
            font-weight: 600;
            color: #1e293b;
            line-height: 1.35;
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Reveal state triggered by JS */
        .concepts-list li.revealed {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .ai-grid {
                grid-template-columns: 1fr;
            }

            .tab-btn.active {
                transform: translateY(-2px);
            }

            .tab-panel {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .content-card-wrapper {
                min-height: auto;
                padding: 1.75rem;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.85rem;
            }

            .block-title {
                font-size: 1.35rem;
            }

            .concepts-title {
                font-size: 1.2rem;
            }
        }
		
	/* ==========================================================================
	Live Class Schedule Section Styles
   ========================================================================== */
.schedule-section {
    padding: 4rem 0;
    background: transparent;
}

.schedule-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* Card Container */
.schedule-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

/* Upper Card Header (Slightly Lighter Dark Blue) */
.schedule-card-header {
    background-color: #1a2a40;
    padding: 2.25rem 2rem 1.75rem 2rem;
}

.calendar-icon {
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.calendar-icon i {
    color: #0a1128;
    font-size: 1.25rem;
}

.schedule-day {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Lower Card Body (Darker Blue) */
.schedule-card-body {
    background-color: #111d2e;
    padding: 1.75rem 2rem 2.25rem 2rem;
    flex-grow: 1;
}

.session-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.session-time {
    font-size: 0.925rem;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0;
    font-weight: 500;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .schedule-card-header {
        padding: 1.75rem 1.5rem 1.25rem 1.5rem;
    }

    .schedule-card-body {
        padding: 1.25rem 1.5rem 1.75rem 1.5rem;
    }

    .schedule-day {
        font-size: 1.35rem;
    }
}

/* ==========================================================================
   7. Instructors Carousel Section Styles
   ========================================================================== */
.ins-section {
    padding: 5rem 0;
    background: transparent;
    overflow: hidden;
}

.ins-main-title {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.ins-carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

/* Modified Track style to work with Manual JS Slider */
.ins-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Scoped Card Styles */
.ins-card {
    width: 280px;
    flex-shrink: 0;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 380px;
    box-sizing: border-box;
    cursor: pointer;
}

.ins-linkedin-link {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: #0a66c2;
    font-size: 1.35rem;
    transition: transform 0.2s ease;
}

.ins-linkedin-link:hover {
    transform: scale(1.1);
}

.ins-avatar-box {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    border: 1px solid #e2e8f0;
}

.ins-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ins-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.4rem 0;
}

.ins-role {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
    min-height: 40px;
}

.ins-company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    height: 30px;
}

.ins-history {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: auto 0 0 0;
    line-height: 1.4;
}

/* Section 7 Arrow Navigation Controls */
.ins-nav-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ins-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: #ffffff;
    border: none;
    color: #0f172a;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.ins-nav-btn:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

/* ==========================================================================
   8. Mentors Feedback Section Styles (Unique Prefix: ment-)
   ========================================================================== */
.ment-section {
    padding: 3rem 0;
    overflow: hidden;
}

.ment-title {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
}

/* Carousel Layout */
.ment-carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.ment-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Individual Mentor Card */
.ment-card {
    flex: 0 0 calc(25% - 1.125rem);
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.25rem;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 280px;
    box-sizing: border-box;
}

.ment-linkedin-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: #0a66c2;
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.ment-linkedin-btn:hover {
    transform: scale(1.15);
}

.ment-avatar-box {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 2px solid #f1f5f9;
}

.ment-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ment-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.3rem 0;
}

.ment-role {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
    min-height: 38px;
}

.ment-company-logo {
    display: flex;
    align-items: center;
    margin-top: auto;
    height: 25px;
}

/* Arrow Navigation Buttons */
.ment-nav-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 4rem;
}

.ment-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: #ffffff;
    border: none;
    color: #0f172a;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.ment-nav-btn:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

/* Bottom Call-to-Action Banner */
.ment-cta-banner {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.ment-cta-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ment-cta-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.ment-cta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ment-cta-text h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.ment-cta-text p {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin: 0;
}

.ment-cta-btn {
    background-color: #eab308;
    color: #0f172a;
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: background-color 0.2s, transform 0.2s;
}

.ment-cta-btn:hover {
    background-color: #facc15;
    transform: translateY(-2px);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .ment-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .ment-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .ment-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ment-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .ment-card {
        flex: 0 0 100%;
    }

    .ment-title {
        font-size: 1.75rem;
    }

    .ment-cta-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   9. Placement Support Section Styles 
   ========================================================================== */
/* Placement Support Section Styling */
.placement-support-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: transparent;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Divider Line */
.divider-line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 20px 0 40px 0;
}

/* Header */
.placement-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.placement-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 50px auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 90px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h3 {
  font-size: 20px;
  margin-top: 8px;
  font-weight: 600;
  color: #ffffff;
}

/* Job Title Section */
.job-title-container {
  margin-bottom: 60px;
}

.job-title-container .subtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 10px;
}

.job-title-container .main-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.title-underline {
  width: 350px;
  height: 3px;
  background-color: #ffffff;
  margin: 25px auto 0 auto;
}

/* Salary Cards */
.salary-cards-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
}

.salary-card {
  flex: 1;
  max-width:600px;
  background-color: rgb(0 135 148 / 41%);
  border: 1px solid rgb(10 255 192 / 47%);
  padding: 50px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.54);
  transition: transform 0.3s ease;
}

.salary-card:hover {
  transform: translateY(-5px);
}

.salary-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.salary-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
   .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }	
	
  .placement-header h2 {
    font-size: 1.6rem;
  }

  .job-title-container .main-title {
    font-size: 2.2rem;
  }

  .title-underline {
    width: 200px;
  }

  .salary-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .salary-card {
    width: 100%;
  }

  .salary-amount {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   10. 1500+ Success Stories Section Styles 
   ========================================================================== */
/* Success Stories Section Base */

.succ-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: transparent; /* No background color */
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.succ-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Category Tabs */
.succ-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.succ-tab {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.succ-tab.active,
.succ-tab:hover {
  background-color: #ffffff;
  color: #0b1f1a;
  font-weight: 600;
}

/* Cards Carousel Track */
.succ-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.succ-cards-container {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

/* Individual White Card Styling */
.succ-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 300px;
  background-color: #ffffff;
  color: #1a1a1a;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.succ-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.succ-avatar {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.succ-user-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.succ-linkedin-icon {
  margin-left: auto;
  background-color: #0077b5;
  color: white;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 3px;
}

/* Company Transition Row */
.succ-company-transition {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 12px 0;
  margin-bottom: 16px;
}

.succ-comp {
  display: flex;
  flex-direction: column;
}

.succ-comp p {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 2px 0 0 0;
}

.succ-comp small {
  font-size: 0.7rem;
  color: #666;
}

.succ-comp-logo {
  font-size: 0.8rem;
  font-weight: 800;
}

.text-pink { color: #e91e63; }
.text-orange { color: #ff9800; }
.text-green { color: #2e7d32; }

.succ-arrow {
  font-size: 1.2rem;
  color: #333;
}

.succ-testimonial {
  font-size: 0.82rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 20px;
}

.succ-read-more {
  color: #0077b5;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

/* Controls Bar (Read all button + Arrows) */
.succ-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 60px;
}

.succ-all-stories-btn {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.succ-nav-btns {
  display: flex;
  gap: 10px;
}

.succ-nav-btn {
  background-color: #ffffff;
  color: #000000;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.succ-nav-btn:hover {
  opacity: 0.85;
}

/* Cohort Stats Section */
.cohort-stats-wrapper {
  text-align: center;
  margin-top: 40px;
}

.cohort-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 35px;
}

.cohort-cards-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cohort-card {
  flex: 1;
  background-color: rgb(0 135 148 / 41%);
  border: 1px solid rgb(10 255 192 / 47%);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
}

.cohort-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #ffffff;
}

.cohort-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.succ-bottom-line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-top: 60px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .succ-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .succ-card {
    flex: 0 0 100%;
  }

  .cohort-cards-grid {
    flex-direction: column;
  }

  .succ-controls-bar {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* ==========================================================================
  11. Live Sessions & Scholarship Styles
   ========================================================================== */
.scholarship-section {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto 60px auto; /* Centered with bottom spacing */
}

/* Light Mint/Green Inner Card */
.scholarship-card {
  background-color: #e2f0e7; /* Light greenish background like image */
  color: #1a1a1a;
  border-radius: 12px;
  padding: 40px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.scholarship-content {
  flex: 1;
}

.scholarship-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111111;
}

.scholarship-content p {
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.5;
  max-width: 380px;
}

.scholarship-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.scholarship-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  
}


/* ========================================== */
/* RESPONSIVE MEDIA QUERIES                   */
/* ========================================== */
@media (max-width: 768px) {
  /* Section 1 Mobile Layout */
  .scholarship-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .scholarship-content h2 {
    font-size: 1.5rem;
  }

  .scholarship-content p {
    margin: 0 auto;
  }

  .scholarship-image {
    justify-content: center;
    margin-top: 10px;
  }

  /* Section 2 Mobile Layout */
  .session-heading {
    font-size: 1.4rem;
  }

  .play-btn {
    width: 48px;
    height: 48px;
  }
}

/* ============================================ */
/* SECTION 12: BUILD SKILLS THE NEXTLEAP WAY   */
/* ============================================ */
.nextleap-way-section {
  padding-top: 60px;
  max-width:1220px;
   margin: 0 auto;
  /* background-color color intentionally omitted */
}

/* Features grid at top */
.pl-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 110px;
  text-align: center;
}

.pl-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pl-feature-icon {
  margin-bottom: 12px;
}

.pl-feature-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* Portfolio Slider Outer Wrapper */
.portfolio-slider-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px; /* space for bottom right arrows */
  max-width: 1200px;
  margin:0 auto;
}

/* Horizontal scrollable track */
.portfolio-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  padding: 10px 0;
}

.portfolio-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Portfolio Card Design */
.portfolio-card {
  flex: 0 0 calc(25% - 15px); /* Show 4 cards on desktop */
  min-width: 250px;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-card-content {
  padding: 20px;
}

.portfolio-card .profile-img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
}

.portfolio-card .profile-name {
  color: #111111;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Footer link area in card */
.portfolio-footer {
  background-color: #f1f5f4;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #111111;
  font-weight: 600;
  font-size: 0.95rem;
  border-top: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
}

.portfolio-footer:hover {
  background-color: #e2e8f0;
}

.portfolio-footer .arrow {
  font-size: 1.2rem;
}

/* Navigation Controls (Bottom Right) */
.slider-arrows {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background-color: #ffffff;
  color: #111111;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.slider-arrow:hover {
  background-color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .portfolio-card {
    flex: 0 0 calc(33.333% - 14px); /* 3 cards on tablet */
  }
}

@media (max-width: 768px) {
  .pl-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .portfolio-card {
    flex: 0 0 calc(50% - 10px); /* 2 cards on mobile-landscape */
  }
}

@media (max-width: 480px) {
  .portfolio-card {
    flex: 0 0 85%; /* 1 full card + preview of next on mobile */
  }

  .slider-arrows {
    position: relative;
    justify-content: center;
    margin-top: 20px;
  }

  .portfolio-slider-container {
    padding-bottom: 0;
  }
}

/* ==========================================
   Tools You Will Learn Section Styles
   ========================================== */

.tools-section {
  width: 100%;
  padding: 60px 0 20px 0;
  background: transparent; 
}

.tools-heading {
  text-align: center;
  font-size: 2.25rem; /* ~36px */
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 48px;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

/* 5 Column Layout for Desktop */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 24px;
  justify-items: center;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform 0.25s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
}

.tool-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 16px; /* Smooth rounded squircle */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.tool-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tool-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

/* Subtle Line Divider at the bottom */
.tools-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin-top: 56px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 768px) {
  .tools-heading {
    font-size: 1.75rem;
    margin-bottom: 36px;
  }
  
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 16px;
  }

  .tool-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    padding: 12px;
  }

  .tool-name {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }
  
  .tools-divider {
    margin-top: 40px;
  }
}
/* ==========================================
   certificate-section Styles
   ========================================== */

/* Container Layout */
.certificate-section {
  width: 100%;
  padding: 60px 20px;
  background-color: transparent; 
  box-sizing: border-box;
}

.certificate-container {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Image Styling */
.certificate-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.certificate-image img {
  width: 100%;
  max-width: 450px; /* Responsive size control */
  height: auto;
  border-radius: 8px; /* Optional soft corners */
  object-fit: contain;
}

/* Right Content Styling */
.certificate-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.certificate-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  color: inherit; 
}

.certificate-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  color: inherit;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
  .certificate-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .certificate-content h2 {
    font-size: 28px;
  }

  .certificate-content p {
    font-size: 16px;
  }

  .certificate-image img {
    max-width: 100%;
  }
}

/*============================================ 
 SECTION 15: Program Timeline-section -->
 ============================================*/

/* Container setup */
    .timeline-section {
      width: 100%;
      max-width: 1220px;
      margin: 40px auto;
      padding: 0 20px;
      background: transparent;
    }

    .timeline-heading {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 700;
      color: #ffff;
      margin-bottom: 30px;
    }

    /* Table Container */
    .table-container {
      width: 100%;
      overflow-x: auto;
      background: #ffffff;
      border-radius: 12px;
      padding: 24px;
	  margin-bottom: 75px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .timeline-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 12px 14px;
      min-width: 700px;
    }

    .timeline-table th {
      padding: 12px 16px;
      text-align: left;
      font-size: 1rem;
      font-weight: 700;
      color: #1a1a1a;
    }

    .timeline-table th.week-head {
      background-color: #e5be6b;
      border-radius: 6px;
      width: 15%;
    }

    .timeline-table td {
      vertical-align: top;
      padding: 0;
    }

    .week-label {
      font-weight: 700;
      font-size: 0.95rem;
      color: #1a1a1a;
      padding: 12px 8px;
    }

    /* Event Card Box Styling */
    .event-card {
      padding: 12px 16px;
      border-radius: 6px;
      margin-bottom: 10px;
      font-size: 0.88rem;
    }

    .event-card:last-child {
      margin-bottom: 0;
    }

    /* Light Green Cards */
    .bg-green {
      background-color: #eef5f2;
    }

    /* Golden Yellow Cards */
    .bg-gold {
      background-color: #f7e6b8;
    }

    .event-title {
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .event-time {
      font-size: 0.78rem;
      color: #555555;
      font-weight: 500;
    }

    /* Responsive Queries */
    @media (max-width: 768px) {
      .timeline-section {
        padding: 0 10px;
      }
      .table-container {
        padding: 12px;
      }
      .timeline-heading {
        font-size: 1.75rem;
      }
    }
	
/*============================================ 
 SECTION 16: Frequently Asked Questions-section -->
 ============================================*/	
 .faq-section {
      width: 100%;
      max-width: 1220px;
      margin: 40px auto;
      padding: 0 20px;
      background: transparent;
    }

    /* Top Divider Line */
    .top-divider {
      width: 100%;
      height: 1px;
      background-color: #e2e8f0;
      border: none;
      margin-bottom: 40px;
    }

    .faq-heading {
      font-size: 2.2rem;
      font-weight: 700;
      color: #ffff;
      margin-bottom: 30px;
      text-align: left;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
	  color: #ffff;
    }

    /* Accordion Item Style */
    .faq-item {
      border-bottom: 1px solid #e2e8f0;
      padding: 16px 0;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .faq-question-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .faq-question {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1rem;
      font-weight: 600;
      color: #ffff;
      line-height: 1.5;
    }

    /* Bullet indicator matching original layout */
    .faq-bullet {
      width: 6px;
      height: 6px;
      background-color: #ffff;
      border-radius: 1px;
      flex-shrink: 0;
    }

    .faq-icon {
      width: 18px;
      height: 18px;
      color: #ffff;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      font-size: 0.95rem;
      color: #afb1b4;
      line-height: 1.6;
      padding-left: 18px;
    }

    /* Open State */
    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      padding-top: 12px;
      padding-bottom: 4px;
    }

    /* Bottom Divider Line */
    .bottom-divider {
      width: 100%;
      height: 1px;
      background-color: #e2e8f0;
      border: none;
      margin-top: 50px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .faq-section {
        padding: 0 16px;
      }
      .faq-heading {
        font-size: 1.75rem;
        margin-bottom: 24px;
      }
      .faq-question {
        font-size: 0.92rem;
      }
      .faq-answer {
        font-size: 0.88rem;
      }
    }
 /*=========================================================
 SECTION 17: Still have questions or need more information?
 ============================================================*/
 
.cb-cta-wrapper {
  width: 100%;
  padding: 40px 20px;
  background-color: transparent; 
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Inner Card (Blue Design) */
.cb-cta-card {
  position: relative;
  background-color: #0b3c5d; 
  width: 100%;
  max-width: 1200px;
  border-radius: 16px;
  padding: 60px 30px 100px 30px; 
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Heading */
.cb-cta-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

/* Subtitle */
.cb-cta-subtitle {
  color: #d0e4ff;
  font-size: 1.05rem;
  margin: 0 0 28px 0;
  font-weight: 400;
}

/* Button */
.cb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #fce3a1; 
  color: #0f2a4a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.cb-cta-btn:hover {
  background-color: #f7d277;
  transform: translateY(-2px);
}

.cb-btn-icon {
  width: 18px;
  height: 18px;
}

/* Bottom Geometric Blue Patterns */
.cb-cta-bottom-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0.85;
}

.cb-shape {
  background-color: #1d6fa5; /
  bottom: 0;
  flex: 1;
  margin: 0 2px;
}

/* Dynamic Shapes to match design */
.cb-shape-1 {
  height: 45px;
  border-top-right-radius: 12px;
}

.cb-shape-2 {
  height: 35px;
  border-top-left-radius: 20px;
  background-color: #3282b8;
}

.cb-shape-3 {
  height: 25px;
  border-radius: 50% 50% 0 0;
}

.cb-shape-4 {
  height: 40px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%); /* Triangle Shape */
  background-color: #429ad8;
}

.cb-shape-5 {
  height: 50px;
  border-top-left-radius: 15px;
}

/* Responsive Styles for Mobile/Tablets */
@media (max-width: 768px) {
  .cb-cta-card {
    padding: 40px 20px 80px 20px;
  }

  .cb-cta-title {
    font-size: 1.5rem;
  }

  .cb-cta-subtitle {
    font-size: 0.95rem;
  }

  .cb-cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .cb-cta-title {
    font-size: 1.3rem;
  }
  
  .cb-cta-bottom-pattern {
    height: 35px;
  }
}

/* ===========================================================
   SECTION 18: Experience the award-winning learning experience
   =========================================================== */
 
.aw-section-wrapper {
  width: 100%;
  background-color: transparent;
  padding: 60px 20px 0 20px; /* Bottom padding ko divider ke liye zero kiya */
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 1200px Main Container */
.aw-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Heading */
.aw-section-title {
  text-align: center;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 40px 0;
  line-height: 1.3;
}

/* Cards Grid Layout */
.aw-cards-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* Individual Card */
.aw-card-item {
  flex: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Card Banner Boxes */
.aw-card-banner {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aw-card-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.aw-banner-purple {
  background: radial-gradient(circle at center, #3c1a60 0%, #d6b7ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.aw-banner-blue {
  background: radial-gradient(circle at center, #0f4c81 0%, #7db3e5 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* img Tag Styling */
.aw-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

/* Card Content */
.aw-card-content {
  text-align: center;
  margin-top: 18px;
}

.aw-card-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.aw-card-subtitle {
  color: #cbd5e1;
  font-size: 0.92rem;
  margin: 0;
  font-weight: 400;
}

/* Container Divider Line */
.aw-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15); /* Subtle border line */
  margin-top: 50px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .aw-section-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .aw-card-banner {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .aw-cards-grid {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  .aw-card-item {
    width: 100%;
    max-width: 480px;
  }

  .aw-section-title {
    font-size: 1.45rem;
  }

  .aw-card-banner {
    height: 220px;
  }

  .aw-divider {
    margin-top: 35px;
  }
}

@media (max-width: 480px) {
  .aw-section-wrapper {
    padding: 40px 15px 0 15px;
  }

  .aw-card-banner {
    height: 190px;
    padding: 15px;
  }

  .aw-card-title {
    font-size: 1.05rem;
  }

  .aw-card-subtitle {
    font-size: 0.85rem;
  }
}

/* ===========================================================
   SECTION 19: Join our rapidly growing learning network
   =========================================================== */

/* Container Box */
.ls-hero-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px; 
  min-height: 615px; 
  padding: 80px 20px;
  overflow: hidden;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #ffffff;
  margin: 0 auto;
}

/* Background Image Overlay Layer */
.ls-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.85;
}

.ls-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.85;
}

/* Main Content Layer */
.ls-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 64px;
  justify-content: center;
  align-items: center;
  min-height: 455px;
  padding: 0;
  box-sizing: border-box;
}

/* Heading */
.ls-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: center;
}

/* Stats Section Grid Layout */
.ls-stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1050px; /* Fixed width ki jagah max-width diya */
}

.ls-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Numbers Styling */
.ls-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

/* Labels Styling */
.ls-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.95;
}

/* ===========================================================
   RESPONSIVE MEDIA QUERIES (Mobile & Tablet)
   =========================================================== */

/* Laptop / Small Desktop (1024px to 1200px) */
@media (max-width: 1200px) {
  .ls-stats-grid {
    gap: 100px;
  }
}

/* Tablet Layout (768px to 992px) */
@media (max-width: 992px) {
  .ls-hero-wrapper {
    min-height: auto;
    padding: 60px 20px;
  }

  .ls-container {
    gap: 48px;
    min-height: auto;
  }

  .ls-heading {
    font-size: 2rem;
  }

  .ls-stats-grid {
    gap: 60px;
  }

  .ls-number {
    font-size: 2.8rem;
  }

  .ls-label {
    font-size: 1rem;
  }
}

/* Mobile Layout (Up to 600px) */
@media (max-width: 600px) {
  .ls-hero-wrapper {
    padding: 48px 16px;
  }

  .ls-container {
    gap: 40px;
  }

  .ls-heading {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .ls-stats-grid {
    flex-direction: column;
    gap: 32px;
  }

  .ls-number {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }

  .ls-label {
    font-size: 0.95rem;
  }
}
  
/* ============================================ -->
 SECTION 20: Edonce Product Manager Fellowship - section
   ============================================ */
  
/* Wrapper CSS */
.nl-info-wrapper {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #ffffff;
  margin-top: 55px;
}

/* Outer Card Container - Background Completely Transparent */
.nl-info-card {
  max-width: 1200px;
  width: 100%;
  background-color: transparent; /* No background color */
  padding: 0;
  box-sizing: border-box;
}

/* Titles and Text */
.nl-card-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 24px 0;
  color: #ffffff;
}

.nl-card-description,
.nl-card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px 0;
}

.nl-section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 32px 0 16px 0;
}

/* Read More Hidden Box Animation */
.nl-hidden-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease;
}

.nl-hidden-text.nl-show {
  max-height: 5000px; /* Big height to accommodate the table and extra text */
  opacity: 1;
  transition: max-height 0.8s ease-in-out, opacity 0.4s ease;
}

/* Table Section Styling */
.nl-table-section {
  margin-top: 40px;
  margin-bottom: 30px;
}

.nl-table-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.nl-table-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* Responsive Table Wrapper */
.nl-table-container {
  width: 100%;
  overflow-x: auto;
}

.nl-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nl-comparison-table th,
.nl-comparison-table td {
  padding: 20px;
  vertical-align: top;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Table Header (Top row white background with dark text) */
.nl-comparison-table thead tr {
  background-color: #ffffff;
}

.nl-comparison-table th {
  color: #333333;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Table Row Cells */
.nl-feature-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

.nl-comparison-table ul {
  margin: 0;
  padding-left: 18px;
}

.nl-comparison-table li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.nl-comparison-table li:last-child {
  margin-bottom: 0;
}

/* Extra Content Area */
.nl-extra-content {
  margin-top: 30px;
}

/* Read More Button Styles */
.nl-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.nl-read-more-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
}

.nl-arrow-icon {
  transition: transform 0.3s ease;
}

.nl-arrow-icon.nl-rotate {
  transform: rotate(180deg);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nl-card-title {
    font-size: 1.4rem;
  }

  .nl-table-title {
    font-size: 1.4rem;
  }

  .nl-comparison-table th,
  .nl-comparison-table td {
    padding: 12px;
  }

  .nl-comparison-table li {
    font-size: 0.85rem;
  }
}
/*===============================================
     foooter - styles
=================================================*/
/* Base Footer Wrapper */
.ed-ft-wrapper {
  background-color: #111111;
  color: #a1a1a1;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 60px 20px 40px 20px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* Inner Centered Container - Max 1200px */
.ed-ft-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Logo Section */
.ed-ft-logo-row {
  margin-bottom: 40px;
}

.ed-ft-logo {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
}

/* 4-Column Grid System */
.ed-ft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Column Headings */
.ed-ft-heading {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

/* Lists and Links */
.ed-ft-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ed-ft-list li {
  margin-bottom: 10px;
}

.ed-ft-list a {
  color: #a1a1a1;
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.5;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.ed-ft-list a:hover {
  color: #ffffff;
}

/* Social Media Icons */
.ed-ft-social-list svg {
  width: 15px;
  height: 15px;
  margin-right: 8px;
}

/* SEO Description Paragraphs */
.ed-ft-description {
  border-top: 1px solid #222222;
  padding-top: 30px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.ed-ft-description p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #888888;
  margin: 0 0 16px 0;
}

.ed-ft-description strong {
  color: #aaaaaa;
  font-weight: 600;
}

/* Footer Bottom / Copyright */
.ed-ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.ed-ft-copyright {
  font-size: 0.8rem;
  color: #777777;
  margin: 0;
}

/* Base Desktop Sticky Actions Container */
.ed-ft-sticky-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 9999;
}

/* Button Base Styles */
.ed-ft-btn-callback {
  background-color: #f3e5ab;
  color: #222222;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.ed-ft-btn-callback svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ed-ft-btn-whatsapp {
  background-color: #4cd964;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.ed-ft-btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ed-ft-btn-callback:hover,
.ed-ft-btn-whatsapp:hover {
  transform: translateY(-2px);
}

/* ===========================================================
   TABLET RESPONSIVE (577px to 992px)
   =========================================================== */
@media (max-width: 992px) and (min-width: 577px) {
  .ed-ft-sticky-actions {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .ed-ft-btn-callback,
  .ed-ft-btn-whatsapp {
    padding: 9px 14px;
    font-size: 0.8rem;
    border-radius: 6px;
  }
}

/* ===========================================================
   MOBILE RESPONSIVE (Up to 576px)
   =========================================================== */
@media (max-width: 576px) {
  /* Footer text buttons ke piche na chhupe isliye bottom padding */
  .ed-ft-wrapper {
    padding-bottom: 90px !important;
  }

  /* Bottom Sticky Bar Layout */
  .ed-ft-sticky-actions {
    bottom: 12px;
    left: 12px;
    right: 12px;
    gap: 8px;
    width: calc(100% - 24px);
    box-sizing: border-box;
  }

  /* Equal 50-50 Width for Both Buttons */
  .ed-ft-btn-callback,
  .ed-ft-btn-whatsapp {
    flex: 1 1 50%;
    width: 50%;
    padding: 12px 8px;
    font-size: 0.78rem;
    border-radius: 8px;
    box-sizing: border-box;
    text-align: center;
  }

  .ed-ft-btn-callback svg,
  .ed-ft-btn-whatsapp svg {
    width: 15px;
    height: 15px;
  }
}