   /* Reset and base styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, #f4f6fc 0%, #e8ecf9 100%);
            position: relative;
        }

        .testimonial-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .testimonial-intro {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonial-heading {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1c1e53;
            margin-bottom: 20px;
            text-align: left;
        }

        .testimonial-subheading {
            font-size: 1.2rem;
            color: #555;
            max-width: 600px;
            margin: 0 auto;
            text-align: justify;
        }

        /* Testimonial Content */
        .testimonial-content {
            display: none;
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }

        .testimonial-content.active {
            display: block;
            animation: fadeIn 0.8s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .testimonial-quote {
            font-size: 1.4rem;
            line-height: 1.6;
            color: #333;
            margin-bottom: 30px;
            position: relative;
            padding-left: 40px;
            font-style: italic;
            text-align: left;
        }

        .testimonial-quote:before {
            content: "“";
            position: absolute;
            left: 0;
            top: -20px;
            font-size: 80px;
            color: #2405f2;
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 3px solid #2405f2;
        }

        .author-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1c1e53;
            margin-bottom: 5px;
        }

        .author-title {
            color: #666;
            font-size: 1rem;
        }

        /* Testimonial Navigation */
        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: #2405f2;
            transform: scale(1.2);
        }

        .testimonial-cta {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 40px 0;
        width: 100%;
        flex-wrap: wrap;
        }
        .cta-button {
        display: inline-block;
        padding: 16px 35px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: center;
        min-width: 220px;
        }

      .consultation-btn {
        background: #2405f2;
        color: white;
        box-shadow: 0 4px 14px rgba(36, 5, 242, 0.4);
        }

        .consultation-btn:hover {
        background: #1c1e53;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(36, 5, 242, 0.5);
        }

        .login-btn {
        background: white;
        color: #2405f2;
        border: 2px solid #2405f2;
        box-shadow: 0 4px 14px rgba(36, 5, 242, 0.2);
        }

        .login-btn:hover {
        background: #2405f2;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(36, 5, 242, 0.4);
        }
        /* Promotional Videos - FIXED */
        .promotional-videos {
            margin-top: 70px;
            padding: 50px 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            }

        .testimonial-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
        }
        .videos-heading {
            text-align: center;
            font-size: 2.2rem;
            color: #1c1e53;
            margin-bottom: 40px;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .video-card {
            background: #f9fafc;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .video-card:hover {
            transform: translateY(-10px);
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .video-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(36, 5, 242, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            background: rgba(36, 5, 242, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-info {
            padding: 20px;
        }

        .video-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1c1e53;
            margin-bottom: 10px;
        }

        .video-desc {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
            text-align: left;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .testimonial-heading {
                font-size: 2.4rem;
            }
            
            .testimonial-quote {
                font-size: 1.2rem;
                padding-left: 30px;
                text-align: left;
            }
            
            .testimonial-quote:before {
                font-size: 60px;
                top: -15px;
            }
        }

        @media (max-width: 768px) {
            .testimonials {
                padding: 70px 0;
            }
            
            .testimonial-heading {
                font-size: 2rem;
            }
            
            .testimonial-content {
                padding: 30px;
            }
            
            .testimonial-quote {
                font-size: 1.1rem;
                padding-left: 25px;
            }
            
            .testimonial-quote:before {
                font-size: 50px;
            }
            
            .author-image {
                width: 60px;
                height: 60px;
            }
            
            .testimonial-cta {
                flex-direction: column;
                align-items: center;
                margin: 40px 0 30px;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
            
            .video-grid {
                grid-template-columns: 1fr;
            }
            
            .promotional-videos {
                margin-top: 50px;
            }
        }

        @media (max-width: 576px) {
            .testimonial-heading {
                font-size: 1.8rem;
            }
            
            .testimonial-subheading {
                font-size: 1rem;
            }
            
            .testimonial-content {
                padding: 20px;
            }
            
            .testimonial-quote {
                font-size: 1rem;
                padding-left: 20px;
            }
            
            .testimonial-quote:before {
                font-size: 40px;
                top: -10px;
            }
            
            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }
            
            .author-image {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .videos-heading {
                font-size: 1.8rem;
            }
            
            .cta-button {
                padding: 14px 25px;
                font-size: 1rem;
            }
        }