
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2563eb;
            --secondary: #1e40af;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #64748b;
            --success: #10b981;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: #f8fafc;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
            color: var(--gray);
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
        }

        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(rgba(30, 41, 59, 0.8),
                    rgba(30, 41, 59, 0.8)),
                url('../image/banner.png') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }

      
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        #aboutBalajiAcademyText {
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 800;
            color: transparent;
            -webkit-text-stroke: 1px white;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            display: inline-block;
            white-space: nowrap;
            overflow: hidden;
            animation: ts 10s steps(200) infinite alternate-reverse;
            padding: 0 10px;
        }
        
        @keyframes ts {
            from {
                width: 0ch;
                border-bottom: 2px dotted #05ff05;
                color: transparent;
                -webkit-text-stroke: 1px white;
            }
            to {
                width: 21ch;
                border-bottom: 3px dashed #05ff05;
                background: linear-gradient(to left, rgb(199, 114, 3), #ff5005);
                background-clip: text;
                -webkit-background-clip: text;
                color: transparent;
                -webkit-text-stroke: 0px white;
            }
        }
        
     
        
        /* Media query for very small screens */
        @media (max-width: 480px) {
            #aboutBalajiAcademyText {
                white-space: normal;
                display: block;
                animation: none;
                width: auto !important;
                border-bottom: 3px dashed #05ff05;
                background: linear-gradient(to left, rgb(199, 114, 3), #ff5005);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-stroke: 0px white;
                padding: 10px;
            }
        }
        
        /* Media query for medium screens */
        @media (max-width: 768px) {
            #aboutBalajiAcademyText {
                font-size: clamp(1.8rem, 6vw, 3rem);
            }
        }
        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-top: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Mission Section */
        .mission {
            background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
            position: relative;
            overflow: hidden;
        }

        .mission:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/cubes.png');
            opacity: 0.05;
            z-index: 1;
        }

        .mission-content {
            position: relative;
            z-index: 2;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .value-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .value-card p {
            color: var(--gray);
        }

        /* Stats Section */
        .stats {
            background: var(--primary);
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item {
            padding: 30px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }

        .stat-text {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Courses Section */
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .course-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .course-card:hover {
            transform: translateY(-10px);
        }

        .course-icon {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg,
                    var(--primary) 0%,
                    var(--secondary) 100%);
            font-size: 3rem;
            color: white;
        }

        .course-content {
            padding: 25px;
        }

        .course-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .course-content ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .course-content li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
        }

        .course-content li:last-child {
            border-bottom: none;
        }

        .course-content li i {
            color: var(--success);
            margin-right: 10px;
        }

        /* USP Section */
        .usp {
            background: #f1f5f9;
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .usp-item {
            display: flex;
            gap: 20px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .usp-icon {
            font-size: 2.5rem;
            color: var(--primary);
            flex-shrink: 0;
        }

        .usp-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        .usp-content p {
            color: var(--gray);
        }


        /* Leadership Section Styles */
        .leadership-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .leadership-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #4f46e5;
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .leadership-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .leader-card {
            width: 100%;
            max-width: 500px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            margin-bottom: 40px;
        }

        .leader-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
        }

        .leader-image-container {
            height: 350px;
            overflow: hidden;
            position: relative;
        }

        .leader-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .leader-card:hover .leader-image {
            transform: scale(1.05);
        }

        .leader-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
        }

        .leader-title {
            font-size: 1.2rem;
            color: white;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .leader-name {
            font-size: 2rem;
            color: white;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .leader-content {
            padding: 30px;
            position: relative;
        }

        .leader-quote {
            font-size: 1.1rem;
            color: #475569;
            line-height: 1.8;
            font-style: italic;
            position: relative;
            padding-left: 30px;
            margin-bottom: 25px;
        }

        .leader-quote:before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 4rem;
            color: #e2e8f0;
            font-family: Georgia, serif;
            line-height: 1;
            z-index: 0;
        }

        .leader-vision {
            font-size: 1rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .leader-signature {
            width: 120px;
            opacity: 0.8;
            margin-top: 20px;
        }

        /* Decorative Elements */
        .decorative-circle {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(79, 70, 229, 0.05);
            z-index: 0;
        }

        .circle-1 {
            top: -150px;
            right: -150px;
        }

        .circle-2 {
            bottom: -100px;
            left: -100px;
            width: 200px;
            height: 200px;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .leadership-grid {
                flex-direction: column;
                align-items: center;
            }
            
            .leader-card {
                max-width: 600px;
            }
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            
            .leader-name {
                font-size: 1.8rem;
            }
            
            .leader-image-container {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .leader-content {
                padding: 20px;
            }
            
            .leader-quote {
                font-size: 1rem;
                padding-left: 20px;
            }
            
            .leader-quote:before {
                font-size: 3rem;
                top: -5px;
            }
        }



        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .team-member {
            text-align: center;
        }

        .member-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 5px solid #e0f2fe;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-member h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: var(--secondary);
        }

        .team-member p {
            color: var(--gray);
            margin-bottom: 15px;
        }

        .quote {
            font-style: italic;
            color: var(--dark);
            position: relative;
            padding: 20px;
            background: #f8fafc;
            border-radius: 10px;
        }

        .quote:before {
            content: '';
            position: absolute;
            top: -20px;
            left: 10px;
            font-size: 4rem;
            color: #dbeafe;
            font-family: serif;
            line-height: 1;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
        }

        .testimonial {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .testimonial-content {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--dark);
            position: relative;
        }

        .testimonial-content:before {
            content: '
 '';
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 4rem;
            color: #dbeafe;
            font-family: serif;
            line-height: 1;
        }

        .client {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .client-photo {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #dbeafe;
        }

        .client-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-info h4 {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .client-info p {
            color: var(--gray);
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover:after {
            opacity: 1;
        }

        /* Contact Section */
        .contact {
            background: var(--dark);
            color: white;
        }

        .contact .section-title {
            color: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 50px;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-start;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: var(--accent);
            margin-top: 5px;
        }

        .contact-text {
            color: #cbd5e1;
        }

        .contact-text a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-text a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #334155;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .map {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fadeIn {
            animation: fadeInUp 0.8s ease forwards;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }
        }
