        /* General Styles */
        :root {
            --color-red: #DC2626;
            /* A vibrant red */
            --color-navy-blue: #0a2e5b;
            /* A standard navy blue */
            --color-white: #FFFFFF;
            --color-light-gray: #f8f8f8;
            --color-dark-gray: #333333;
            --font-primary: 'Inter', sans-serif;
        }

        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: var(--color-white);
            color: var(--color-dark-gray);
            scroll-behavior: smooth;
            overflow-x: hidden;
            /* Prevent horizontal scroll from animations */
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            /* For containing animations */
        }

        h1,
        h2,
        h3,
        h4 {
            color: var(--color-navy-blue);
            font-weight: 700;
        }

        h1 {
            font-size: 3.5em;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.8em;
            margin-bottom: 40px;
            text-align: center;
        }

        h3 {
            font-size: 2em;
            margin-bottom: 20px;
        }

        h4 {
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        p {
            line-height: 1.8;
            font-size: 18px;
            margin-bottom: 20px;
        }

        a {
            text-decoration: none;
            color: var(--color-red);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--color-navy-blue);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--color-red);
            color: var(--color-white);
        }

        .btn-primary:hover {
            background-color: var(--color-white);
            color: var(--color-red);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background-color: var(--color-white);
            color: var(--color-navy-blue);
            border: 2px solid var(--color-navy-blue);
        }

        .btn-secondary:hover {
            background-color: var(--color-red);
            color: var(--color-white);
            border-color: var(--color-red);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* Navigation Bar */

        /* Basic Reset */
        .ham-nav,
        .ham-mobile-menu {
            position: sticky;
            top: 0;
            z-index: 9999;
        }

        .ham-container {
            min-height: 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background: var(--color-white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 1000;
        }

        .ham-logo {
            font-size: 1.6rem;
            font-weight: bold;
            color: #1b1b3a;
            text-decoration: none;
        }

        .ham-logo span {
            color: var(--color-red);
            text-transform: uppercase;
            font-size: 30px;
        }

        .ham-nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .ham-nav-links li a {
            text-decoration: none;
            font-size: 20px;
            color: #1b1b3a;
            font-weight: 500;
            transition: color 0.3s;
        }

        .ham-nav-links li a:hover {
            color: #c4001d;
        }

        /* Hamburger */
        .ham-hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .ham-bar {
            width: 25px;
            height: 3px;
            background-color: #1b1b3a;
            transition: all 0.3s ease;
        }

        /* Mobile Menu */
        .ham-mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background-color: white;
            padding: 2rem 1.5rem;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            z-index: 999;
            transition: right 0.4s ease;
        }

        .ham-mobile-menu.open {
            right: 0;
        }

        .ham-mobile-menu a {
            color: #1b1b3a;
            font-size: 1.2rem;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 0.5rem;
        }

        .ham-close-menu {
            align-self: flex-end;
            font-size: 2rem;
            color: #c4001d;
            cursor: pointer;
            margin-bottom: 1.5rem;
        }

        /* Responsive */
        @media screen and (max-width: 991px) {
            .ham-nav-links {
                display: none;
            }

            .ham-hamburger {
                display: flex;
            }
        }

        /* Extra small devices (phones, <576px) */
        @media (max-width: 575.98px) {
            h1 {
                font-size: 2rem !important;
            }

            h2 {
                font-size: 1.5rem !important;
            }

            h3 {
                font-size: 1.25rem !important;
            }

            p {
                font-size: 1rem !important;
            }
        }

        /* Small devices (landscape phones, 576px–767px) */
        @media (min-width: 576px) and (max-width: 767.98px) {
            h1 {
                font-size: 2.25rem !important;
            }

            h2 {
                font-size: 1.75rem !important;
            }

            h3 {
                font-size: 1.375rem !important;
            }

            p {
                font-size: 1.05rem !important;
            }
        }

        /* Medium devices (tablets, 768px–991px) */
        @media (min-width: 768px) and (max-width: 991.98px) {
            h1 {
                font-size: 2.5rem !important;
            }

            h2 {
                font-size: 2rem !important;
            }

            h3 {
                font-size: 1.5rem !important;
            }

            p {
                font-size: 1.1rem !important;
            }
        }

        /* Large devices (desktops, ≥992px) */
        @media (min-width: 992px) {
            h1 {
                font-size: 4.5rem !important;
            }

            h2 {
                font-size: 2.25rem !important;
            }

            h3 {
                font-size: 1.75rem !important;
            }

            p {
                font-size: 1.125rem !important;
            }
        }
        h2{
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        h2::before{
            content: "";
            position: absolute;
            width: 100px;
            height: 3px;
            background: var(--color-red);
            bottom: -3px;

        }


        /* Hero Section */
        #hero {
            color: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 90vh;
            text-align: center;
            padding-top: 80px;
            /* Offset for fixed nav */
            overflow: hidden;
            /* For background animations */
            position: relative;
            background-image: url(../img/accountancy.jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            box-shadow: inset 0 0 0 100rem #686868bd;
        }

        .hero-content {
            max-width: 1000px;
            position: relative;
            z-index: 10;
            display: flex;
            justify-content: end;
            align-items: center;
            flex-direction: column;
        }

        .hero-content h1 {
            font-size: 4.5em;
            margin-bottom: 25px;
            line-height: 1.1;
            color: var(--color-white);
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
        }

        .hero-content h1 span {
            color: var(--color-red);
        }

        .hero-content p {
            font-size: 1.4em;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons .btn {
            margin: 0 15px;
        }

        /* Animated Background for Hero */
        .hero-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .hero-bg-shapes div {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            animation: moveShape 15s infinite alternate;
        }

        .hero-bg-shapes div:nth-child(1) {
            width: 150px;
            height: 150px;
            left: 10%;
            top: 20%;
            animation-delay: 0s;
        }

        .hero-bg-shapes div:nth-child(2) {
            width: 100px;
            height: 100px;
            left: 70%;
            top: 10%;
            animation-delay: 2s;
        }

        .hero-bg-shapes div:nth-child(3) {
            width: 200px;
            height: 200px;
            left: 80%;
            top: 60%;
            animation-delay: 4s;
        }

        .hero-bg-shapes div:nth-child(4) {
            width: 120px;
            height: 120px;
            left: 20%;
            top: 80%;
            animation-delay: 6s;
        }

        .hero-bg-shapes div:nth-child(5) {
            width: 180px;
            height: 180px;
            left: 50%;
            top: 40%;
            animation-delay: 8s;
        }

        @keyframes moveShape {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.05;
            }

            50% {
                transform: translate(50px, -50px) scale(1.1);
                opacity: 0.1;
            }

            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.05;
            }
        }


        /* About Us Section */
        #about {
            background-color: var(--color-white);
            text-align: center;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-content .about-text {
            align-items: start;
            display: flex;
            justify-content: center;
            flex-direction: column;
        }

        .about-content p {
            text-align: start;
        }

        .about-text,
        .about-image {
            flex: 1 1 45%;
            /* Allows items to wrap and take about half width */
            min-width: 300px;
            /* Minimum width before wrapping */
            padding: 20px;
        }

        .about-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        /* Why Choose Us */
        #why-choose-us {
            background-color: var(--color-light-gray);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-item {
            background-color: var(--color-white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .feature-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .feature-item i {
            font-size: 50px;
            color: var(--color-red);
            margin-bottom: 20px;
        }

        .feature-item h3 {
            color: var(--color-navy-blue);
            font-size: 1.5em;
            margin-top: 0;
        }

        /* Courses Offered (Overview) */
        #courses-overview {
            background-color: var(--color-white);
        }

        .course-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .course-card {
            background-color: var(--color-navy-blue);
            color: var(--color-white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            flex: 1 1 calc(33.333% - 25px);
            /* Three columns */
            min-width: 280px;
            transition: 0.3s ease-in;
        }

        .course-card:hover {
            transform: translateY(-8px);
            background-color: var(--color-red);
        }

        .course-card h3 {
            color: var(--color-white);
            margin-bottom: 15px;
        }

        /* Course Details Sections (11th/12th, B.Com, Subjects) */
        .course-detail-section {
            background-color: var(--color-light-gray);
            padding: 80px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .course-detail-section:nth-of-type(odd) {
            background-color: var(--color-white);
        }

        .course-detail-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
        }

        .course-detail-section:nth-child(even) .course-detail-content {
            flex-direction: row-reverse;
            /* Alternate image/text position */
        }

        .course-detail-text,
        .course-detail-image {
            flex: 1 1 45%;
            min-width: 300px;
        }

        .course-detail-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .course-detail-text ul {
            list-style: none;
            padding: 0;
        }

        .course-detail-text ul li {
            margin-bottom: 10px;
            font-size: 1.1em;
            display: flex;
            align-items: center;
        }

        .course-detail-text ul li::before {
            content: '✓';
            color: var(--color-red);
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2em;
        }

        /* Methodology Section */
        #methodology {
            background-color: var(--color-navy-blue);
            color: var(--color-white);
            text-align: center;
        }

        #methodology h2 {
            color: var(--color-white);
        }

        .method-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .method-step {
            background-color: var(--color-red);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            flex: 1 1 calc(25% - 30px);
            min-width: 220px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .method-step:hover {
            background-color: #d11a1a;
            /* Darker red */
            transform: translateY(-5px);
        }

        .method-step .icon {
            font-size: 3em;
            margin-bottom: 15px;
            color: var(--color-white);
        }

        .method-step h3 {
            color: var(--color-white);
            margin-top: 0;
            font-size: 1.4em;
        }

        /* Faculty Section */
        #faculty {
            background-color: var(--color-white);
            text-align: center;
        }

        .faculty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faculty-card {
            background-color: var(--color-light-gray);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .faculty-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .faculty-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 4px solid var(--color-red);
        }

        .faculty-card h3 {
            margin-bottom: 5px;
            font-size: 1.6em;
            color: var(--color-navy-blue);
        }

        .faculty-card p {
            font-style: italic;
            color: var(--color-dark-gray);
            font-size: 0.95em;
        }

        /* Testimonials Section */
        #testimonials {
            background-color: var(--color-navy-blue);
            color: var(--color-white);
            text-align: center;
        }

        #testimonials h2 {
            color: var(--color-white);
        }

        .testimonial-carousel {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            padding: 30px;
            /* Padding for content inside */
            background-color: var(--color-white);
            color: var(--color-dark-gray);
        }

        .testimonial-slide {
            display: none;
            /* Hidden by default */
            padding: 20px;
            text-align: center;
        }

        .testimonial-slide.active {
            display: block;
        }

        .testimonial-slide p {
            font-style: italic;
            font-size: 1.3em;
            margin-bottom: 20px;
            color: var(--color-dark-gray);
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 1.1em;
            color: var(--color-navy-blue);
        }

        .carousel-dots {
            text-align: center;
            margin-top: 20px;
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .dot.active {
            background-color: var(--color-white);
            transform: scale(1.2);
        }

        /* Success Stories / Alumni */
        #success-stories {
            background-color: var(--color-white);
            text-align: center;
        }

        .story-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .story-card {
            background-color: var(--color-light-gray);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .story-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .story-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid var(--color-navy-blue);
        }

        .story-card h4 {
            color: var(--color-red);
            margin-bottom: 5px;
        }

        .story-card p {
            font-size: 0.95em;
            color: var(--color-dark-gray);
        }

        /* FAQs Section */
        #faq {
            background-color: var(--color-light-gray);
            text-align: center;
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        .faq-item {
            background-color: var(--color-white);
            margin-bottom: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            /* Ensures content is clipped before expansion */
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            font-size: 1.2em;
            font-weight: 600;
            color: var(--color-navy-blue);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgba(0, 0, 128, 0.05);
        }

        .faq-question .icon {
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            color: var(--color-dark-gray);
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: none !important;
            /* Adjust based on max content height */
            padding: 15px 25px 20px;
        }

        .faq-item.active .faq-question .icon {
            transform: rotate(180deg);
        }

        /* ===== Enrollment CTA Section Styling ===== */
        #enrollment-cta {
            background: var(--color-red);
            color: white;
            padding: 100px 20px;
            text-align: center;
            overflow: hidden;
            position: relative;
        }

        #enrollment-cta .container {
            max-width: 900px;
            margin: 0 auto;
            animation: slideUp 1s ease-out forwards;
            transform: translateY(50px);
            opacity: 0;
        }

        #enrollment-cta.animated .container {
            transform: translateY(0);
            opacity: 1;
        }

        #enrollment-cta h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        #enrollment-cta p {
            font-size: 1.2rem;
            color: #f1f1f1;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        /* Button Style */
        #enrollment-cta .btn {
            background-color: #ffffff;
            color: var(--color-red);
            padding: 15px 35px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        #enrollment-cta .btn:hover {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            #enrollment-cta h2 {
                font-size: 2.2rem;
            }

            #enrollment-cta p {
                font-size: 1rem;
            }

            #enrollment-cta .btn {
                padding: 12px 25px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            #enrollment-cta {
                padding: 80px 15px;
            }

            #enrollment-cta h2 {
                font-size: 1.8rem;
            }

            #enrollment-cta p {
                font-size: 0.95rem;
            }

            #enrollment-cta .btn {
                width: 100%;
            }
        }

        /* Slide-up Animation */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Call to Action Section */
        #cta {
            background: linear-gradient(135deg, var(--color-red), #990000);
            color: var(--color-white);
            text-align: center;
        }

        #cta h2 {
            color: var(--color-white);
            font-size: 3em;
            margin-bottom: 30px;
        }

        #cta p {
            font-size: 1.3em;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Contact Us Section */

        #contact {
            background-color: var(--color-white);
            padding: 100px 20px;
            color: var(--color-navy-blue);
            /* Navy Blue */
        }

        #contact .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        #contact h2 {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 60px;
            color: var(--color-navy-blue);
        }

        .contact-content {
            width: 100%;
            max-width: 700px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }

        .contact-form,
        .contact-info {
            flex: 1 1 500px;
            background-color: var(--color-light-gray);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .contact-form:hover,
        .contact-info:hover {
            transform: translateY(-5px);
        }

        .contact-form h3,
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--color-red);
            /* Red */
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 500;
            color: #333;
            background-color: var(--color-white);
            outline: none;
            transition: border 0.3s;
            display: flex;
            align-items: center;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--color-red);
        }

        /* FontAwesome Icons */
        .form-group i {
            position: absolute;
            left: 15px;
            top: 41px;
            color: var(--color-red);
            font-size: 1rem;
        }

        /* Button Styling */
        .btn.btn-primary {
            background-color: var(--color-red);
            color: var(--color-white);
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn.btn-primary:hover {
            background-color: var(--color-navy-blue);
            color: var(--color-white);
        }

        /* Contact Info */
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-info-item .icon {
            font-size: 1.3rem;
            color: var(--color-red);
            margin-right: 15px;
            min-width: 25px;
        }

        .contact-info-item p {
            margin: 0;
            color: var(--color-dark-gray);
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #contact h2 {
                font-size: 2.2rem;
            }

            .contact-content {
                flex-direction: column;
            }

            .contact-form,
            .contact-info {
                padding: 30px;
            }
        }


        /* Footer */
        footer {
            background: var(--color-navy-blue);
            color: var(--color-white);
            padding: 50px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            align-items: start;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 30px;
            text-align: left;
        }

        .footer-content .footer-col {
            min-width: 200px;
            max-width: 300px;
        }

        .footer-col h3 {
            color: var(--color-white);
            margin-bottom: 20px;
            font-size: 1.2em;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            color: var(--color-white);
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: var(--color-white);
            font-weight: 500;
        }

        .footer-col ul li a:hover {
            color: var(--color-red);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            color: var(--color-white);
            font-size: 1.8em;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-links a:hover {
            color: var(--color-red);
            transform: scale(1.1);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            font-size: 0.9em;
            color: rgba(255, 255, 255, 0.7);
        }

        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--color-red);
            color: var(--color-white);
            padding: 10px 15px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: none;
            z-index: 9999;
        }
        .whatsapp {
            width: 50px;
            height: 50px;
            position: fixed;
            bottom: 140px;
            right: 20px;
            background-color: var(--color-red);
            color: var(--color-white);
            padding: 10px 15px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            /* display: none; */
            z-index: 9999;
        }
        .call {
            width: 50px;
            height: 50px;
            position: fixed;
            bottom: 80px;
            right: 20px;
            background-color: var(--color-red);
            color: var(--color-white);
            padding: 10px 15px;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        /* Animations */
        /* Common initial states for animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Specific animation types and delays */
        .fade-in {
            transition-delay: 0s;
        }

        .slide-up {
            transition-delay: 0.1s;
        }

        .zoom-in {
            transform: scale(0.9);
            transition-delay: 0.2s;
        }

        .zoom-in.animated {
            transform: scale(1);
        }

        .delay-1 {
            transition-delay: 0.1s;
        }

        .delay-2 {
            transition-delay: 0.2s;
        }

        .delay-3 {
            transition-delay: 0.3s;
        }

        .delay-4 {
            transition-delay: 0.4s;
        }

        .delay-5 {
            transition-delay: 0.5s;
        }

        .delay-6 {
            transition-delay: 0.6s;
        }

        .delay-7 {
            transition-delay: 0.7s;
        }

        .delay-8 {
            transition-delay: 0.8s;
        }

        .delay-9 {
            transition-delay: 0.9s;
        }

        .delay-10 {
            transition-delay: 1.0s;
        }


        /* Media Queries for Responsiveness */
        @media (max-width: 992px) {
            h1 {
                font-size: 3em;
            }

            h2 {
                font-size: 2.2em;
            }

            h3 {
                font-size: 1.7em;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .about-content,
            .course-detail-content,
            .contact-content {
                flex-direction: column;
                text-align: center;
            }

            .about-image,
            .course-detail-image {
                order: -1;
                /* Image appears above text on small screens */
            }

            .course-card {
                flex: 1 1 calc(50% - 25px);
                /* Two columns on tablets */
            }

            .method-step {
                flex: 1 1 calc(50% - 30px);
                /* Two columns on tablets */
            }

            .footer-content {
                grid-template-columns: 1fr;
                /* Single column on small screens */
                text-align: center;
            }

            .footer-col {
                margin-bottom: 30px;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }

            h1 {
                font-size: 2.5em;
            }

            h2 {
                font-size: 2em;
            }

            h3 {
                font-size: 1.5em;
            }

            p {
                font-size: 0.95em;
            }

            .hero-content h1 {
                font-size: 3.5em;
            }

            .hero-content p {
                font-size: 1.2em;
            }

            .btn {
                padding: 12px 25px;
                font-size: 0.9em;
            }

            .hero-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            .hero-buttons .btn {
                margin: 0;
            }

            .course-card {
                flex: 1 1 100%;
                /* Single column on mobile */
            }

            .method-step {
                flex: 1 1 100%;
            }

            .faculty-grid,
            .story-grid,
            .features-grid {
                grid-template-columns: 1fr;
                /* Single column on mobile */
            }

            .contact-form,
            .contact-info {
                flex: 1 1 100%;
            }
        }
        .whatsapp-link,.phone-link{
            position: relative;
        }
        
         .popup-animation{
            position: absolute;
            right: 50px;
            top: 10px;
            font-size: 16px;
            font-weight: 600;
            padding: 6px 15px;
            border-radius: 20px;
            text-wrap: nowrap;
            background: var(--color-red);
            color: var(--color-gradient-end);
            box-shadow: -2px 2px 8px var(--color-dark-gray);
            animation: slideup 4s ease-in infinite;
        }
        @keyframes slideup{
            0%{
                transform: translateY(0);
                opacity: 0;
            }
            25%, 75%{
                transform: translateY(-10px);
                opacity: 1;
            }
            100%{
                transform: translateY(-40px);
                opacity: 0;
            }
        }
        