
        :root {
            --bg: #ffffff;
            --bg-alt: #fafafa;
            --fg: #1a1a1a;
            --muted: #666666;
            --accent: #e31837;
            --accent-dark: #b8142d;
            --accent-light: #fff;
            --card: #ffffff;
            --border: #e5e5e5;
            --shadow: rgba(0, 0, 0, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg);
            color: var(--fg);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Background Pattern */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                radial-gradient(ellipse at 10% 10%, rgba(227, 24, 55, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 90% 90%, rgba(227, 24, 55, 0.03) 0%, transparent 50%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Bar */
        .top-bar {
            background: var(--accent);
            color: white;
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .top-bar-left {
            display: flex;
            gap: 25px;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .top-bar-item svg {
            width: 14px;
            height: 14px;
        }

        .top-bar-right {
            display: flex;
            gap: 15px;
        }

        .top-bar-right a {
            color: white;
            text-decoration: none;
            font-size: 0.85rem;
            transition: opacity 0.3s;
        }

        .top-bar-right a:hover {
            opacity: 0.8;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px var(--shadow);
            transition: all 0.3s ease;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.1rem;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: 1px;
        }

        .logo-sub {
            font-size: 0.75rem;
            color: var(--muted);
            letter-spacing: 0.5px;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav a {
            color: var(--fg);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav a:hover {
            color: var(--accent);
        }

        .nav a:hover::after {
            width: 100%;
        }

        .header-cta {
            background: var(--accent);
            color: white !important;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .header-cta:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(227, 24, 55, 0.3);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: var(--fg);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 140px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--bg) 0%, var(--accent-light) 100%);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .hero-bg canvas {
            width: 100%;
            height: 100%;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-block;
            background: var(--accent-light);
            color: var(--accent);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(227, 24, 55, 0.2);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            line-height: 1.15;
            margin-bottom: 20px;
            font-weight: 800;
            color: var(--accent-light);
        }

        .hero h1 span {
            color: var(--accent-light);
        }

        .hero-description {
            color: var(--accent-light);
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 35px;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-light);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--accent-light);
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(227, 24, 55, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--fg);
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--border);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
            margin: 0px auto;
            width: 100%;
        }

        .experiance {
    background-color: #e9e9e9;
    padding: 40px 0;
}

.experiance .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.experiance .exp-box {
    flex: 1;
}

.experiance .exp-box h2 {
    color: #ff0000;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.experiance .exp-box p {
    color: #222;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .experiance .container {
        flex-direction: column;
        gap: 25px;
    }
}



        .hero-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 16/10;
            background: var(--card);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-floating-card {
            position: absolute;
            background: white;
            border-radius: 15px;
            padding: 15px 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            animation: float 3s ease-in-out infinite;
        }

        .hero-floating-card.card-1 {
            top: 20px;
            left: -30px;
            animation-delay: 0s;
        }

        .hero-floating-card.card-2 {
            bottom: 40px;
            right: -30px;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .floating-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

        .floating-icon svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .floating-title {
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 3px;
            color: var(--fg);
        }

        .floating-subtitle {
            font-size: 0.75rem;
            color: var(--muted);
        }


        .program-section {
    background: #f5f5f5;
    padding: 60px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.main-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.mt {
    margin-top: 60px;
}

.program-bar {
    background: #ff1a1a;
    border-radius: 12px;
    padding: 30px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
}

.program-bar .bar-box {
    text-align: center;
    flex: 1;
    position: relative;
}

.program-bar .bar-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #fff;
}

.program-bar h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.program-bar p {
    font-size: 14px;
}

.description {
    text-align: center;
    max-width: 900px;
    margin: auto;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.highlight-box {
    margin-top: 40px;
        background: #fff0f0;
    
    border-radius: 18px;
    padding: 40px;
    display: flex;
    gap: 40px;
}

.program-section > .container{
    background: #fff;
    padding: 50px;
    border: 1px solid red;
    border-radius: 55px;
}

.highlight-box .left,
.highlight-box .right {
    flex: 1;
}

.highlight-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.highlight-box ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #ff1a1a;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}

.highlight-box .right {
    border-left: 2px solid #ff1a1a;
    padding-left: 40px;
}

@media (max-width: 992px) {

    .program-bar {
        flex-direction: column;
        gap: 20px;
    }

    .program-bar .bar-box::after {
        display: none;
    }

    .highlight-box {
        flex-direction: column;
    }

    .highlight-box .right {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid #ff1a1a;
        padding-top: 30px;
    }

}


.learning-section {
    background: #f5f5f5;
    padding: 60px 0;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
      
}

:disabled {
    cursor: not-allowed;
}

.select2-container .select2-selection--single .select2-selection__rendered {
        padding: 10px;
        padding-left: 8px;
    padding-right: 20px;
}

.select2-container .select2-selection--single{
    height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 100%;
}

.select2-container--default .select2-selection--single {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid red;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    white-space: nowrap;
}

.tab-btn.active {
    background: red;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}



        /* Section Styles */
        section {
            position: relative;
            z-index: 1;
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: var(--accent-light);
            color: var(--accent);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--fg);
        }

        .section-description {
            color: var(--muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Courses Section */
        .courses {
            background: var(--bg-alt);
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .course-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .course-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .course-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .course-card:hover .course-image img {
            transform: scale(1.05);
        }

        .course-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .course-content {
            padding: 25px;
        }

        .course-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--fg);
        }

        .course-description {
            color: var(--muted);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--border);
        }

        .course-duration {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.85rem;
            color: var(--muted);
        }

        .course-duration svg {
            width: 16px;
            height: 16px;
            color: var(--accent);
        }

        .course-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s ease;
        }

        .course-link:hover {
            gap: 10px;
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.4s ease;
        }

        .feature-card:hover {
            border-color: var(--accent);
            box-shadow: 0 20px 50px rgba(227, 24, 55, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--accent-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: var(--accent);
        }

        .feature-icon svg {
            width: 32px;
            height: 32px;
            color: var(--accent);
            transition: color 0.3s ease;
        }

        .feature-card:hover .feature-icon svg {
            color: white;
        }

        .feature-card h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--muted);
            font-size: 0.9rem;
        }

        /* Why Choose Section */
        .why-choose {
            background: var(--bg-alt);
        }

        .why-choose-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-choose-image {
            position: relative;
        }

        .why-choose-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--accent);
            color: white;
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(227, 24, 55, 0.3);
        }

        .experience-badge .number {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
        }

        .experience-badge .text {
            font-size: 0.85rem;
        }

        .why-choose-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .why-choose-text h2 span {
            color: var(--accent);
        }

        .why-choose-text p {
            color: var(--muted);
            margin-bottom: 30px;
        }

        .why-choose-list {
            list-style: none;
        }

        .why-choose-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .list-check {
            width: 28px;
            height: 28px;
            background: var(--accent-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .list-check svg {
            width: 14px;
            height: 14px;
            color: var(--accent);
        }

        .list-content h4 {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .list-content p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* Placement Section */
        .placement {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: white;
        }

        .placement .section-badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .placement .section-title {
            color: white;
        }

        .placement .section-description {
            color: rgba(255, 255, 255, 0.8);
        }

        .placement-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .placement-stat {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .placement-stat .number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
            margin-bottom: 5px;
        }

        .placement-stat .label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .placement-companies {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
        }

        .company-logo {
            font-size: 1.3rem;
            font-weight: 700;
            opacity: 0.9;
            letter-spacing: 2px;
            color: white;
        }

        /* Gallery Section */
        .gallery {
            background: var(--bg-alt);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(227, 24, 55, 0.9), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay span {
            color: white;
            font-weight: 600;
        }

        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            color: var(--accent);
        }

        .contact-text h4 {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contact-text p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .contact-text a {
            color: var(--accent);
            text-decoration: none;
        }

        .contact-text a:hover {
            text-decoration: underline;
        }

        /* Contact Form */
        .contact-form {
            background: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            max-width: 450px;
            margin: 0px auto;
        }

        .contact-form h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--fg);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--fg);
            font-size: 0.95rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.1);
            background: white;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--muted);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--accent);
            border: none;
            border-radius: 30px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .submit-btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(227, 24, 55, 0.3);
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr ;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand .logo-main {
            color: white;
            margin-bottom: 15px;
            display: block;
        }

        .footer-brand .logo-sub {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
            display: block;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            max-width: 300px;
        }

        .footer-links h4 {
            font-size: 1rem;
            margin-bottom: 25px;
            font-weight: 600;
            color: white;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        /* Mobile Menu */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: white;
            padding: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav a {
            display: block;
            padding: 15px;
            color: var(--fg);
            text-decoration: none;
            border-bottom: 1px solid var(--border);
            font-weight: 500;
        }

        .mobile-nav a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .courses-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .placement-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .address{
            display: flex;
            gap: 20px;
        }

        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
          
          

          
          .program-section > .container {
    background: #fff;
    padding: 19px;
    border: 1px solid red;
    border-radius: 55px;
}
            .address{
                display: block;
            }

            .nav {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-description {
                margin: 0 auto 30px;
                font-size: 14px;
            }

            .btn-primary {
    background: var(--accent);
    color: white;
    padding: 11px 13px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.tabs {
    display: flex;
    justify-content: start;
    gap: 30px;
    margin-bottom: 40px;
        overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.btn-secondary {
    background: transparent;
    color: var(--fg);
    padding: 6px 13px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

            .hero-stats {
                justify-content: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            /* .hero-visual {
                display: none;
            } */

            .contact-form {
    background: white;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 100%;
}

.form-group label {
    display: none;
}

            .section-title {
                font-size: 2rem;
            }

            .courses-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .why-choose-content {
                grid-template-columns: 1fr;
            }

            .why-choose-image {
                margin-bottom: 40px;
            }

            .experience-badge {
                bottom: -20px;
                right: 20px;
            }

            .placement-stats {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand p {
                margin: 0 auto;
            }

            .footer-bottom {
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
        flex-direction: row;
        gap: 15px;
    }

    .tabs {
    display: flex;
    justify-content: start;
    gap: 30px;
    margin-bottom: 40px;
        overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

    .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

            .placement-stats {
                grid-template-columns: 1fr;
            }
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }


        .book-demo-btn{
           display: grid;
    width: max-content;
    margin: 0 auto;
    margin-top: 50px;
        }

        .review-card {
            display: flex !important;
    flex-direction: column-reverse !important;
    gap: 28px 0px !important;
    background-color: #e9eafa !important;
        }

         .user_profile{
            font-size: 36px !important;
    width: 100px !important;
    height: 100px !important;
    border-bottom-right-radius: 0 !important;
         }

         .review-card h4{
            font-size: 24px;
         }






.accordion {
    max-width: 80%;
    margin: 50px auto;
}

.acc-item {
   border: 2px solid #ff0000;
    border-radius: 40px;
    margin-bottom: 15px;
    overflow: hidden;
}

.acc-header {
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row-reverse;
    justify-content: start;
    font-size: 18px;
}

.acc-header:hover {
    background: #ddd;
}

.accordion span {
       width: 60px;
    height: 60px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 0px;
    font-size: 26px;
    color: white;
}

.acc-body {
    display: none;
    padding: 0 25px 20px 70px;
    color: #555;
}

.footer-links ul{
    display: inline-block;
}
@media screen and (max-width: 768px) {
    .accordion {
        max-width: 100%;
        margin: 30px auto;
    }
  
  .accordion span {
    width: 35px;
    height: 30px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 0px;
    font-size: 21px;
    color: white;
}
  
  .acc-header {
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row-reverse;
    justify-content: start;
    font-size: 16px;
}
}
}