:root {
            /* Amrita Brand Colors */
            --amrita-maroon: #751021;
            --amrita-maroon-rgb: 117, 16, 33;
            --amrita-gold: #ECC94B;
            --amrita-gold-rgb: 236, 201, 75;
            --light-gray: #F5F5F5;
            --dark-text: #2D0611;
            --border-color: #E5E5E5;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .top-bar {
            background-color: rgba(245, 245, 245, 0.5);
            border-bottom: 1px solid var(--border-color);
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar a {
            color: var(--dark-text);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: var(--amrita-maroon);
        }

        .btn-download {
            background-color: var(--amrita-maroon);
            color: white;
            border: none;
            padding: 6px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .btn-download:hover {
            background-color: rgba(117, 16, 33, 0.9);
            transform: translateY(-1px);
        }

        .main-nav {
            background-color: white;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .main-nav .navbar-brand img {
            height: 60px;
        }

        .main-nav .nav-link {
            color: var(--dark-text);
            font-weight: 500;
            margin: 0 12px;
            transition: color 0.3s;
        }

        .main-nav .nav-link:hover {
            color: var(--amrita-maroon);
        }

        .btn-apply {
            background-color: var(--amrita-maroon);
            color: white;
            border: none;
            padding: 8px 24px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-apply:hover {
            background-color: rgba(117, 16, 33, 0.9);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

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

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(117, 16, 33, 0.95), rgba(117, 16, 33, 0.85), rgba(117, 16, 33, 0.75));
        }

        .hero-content {
            position: relative;
            z-index: 10;
            padding: 80px 0;
            width: 100%;
        }

        .admission-badge {
            display: inline-block;
            background-color: var(--amrita-gold);
            color: var(--dark-text);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.2;
            color: white;
            margin-bottom: 24px;
        }

        .hero-title .accent {
            color: var(--amrita-gold);
        }

        .hero-subtitle {
            font-size: 1.75rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            margin-bottom: 32px;
        }

        .btn-hero-primary {
            background-color: var(--amrita-gold);
            color: var(--dark-text);
            border: none;
            padding: 16px 40px;
            font-size: 1.125rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .btn-hero-primary:hover {
            background-color: rgba(236, 201, 75, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-hero-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 16px 40px;
            font-size: 1.125rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .btn-hero-secondary:hover {
            background-color: white;
            color: var(--amrita-maroon);
        }

        .application-form {
            background-color: white;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            padding: 40px;
            border-top: 4px solid var(--amrita-gold);
        }

        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--dark-text);
        }

        .form-control,
        .form-select {
            border: 1px solid var(--border-color);
            padding: 10px 16px;
            border-radius: 6px;
            margin-bottom: 20px;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--amrita-maroon);
            box-shadow: none;
        }

        .btn-submit {
            background-color: var(--amrita-maroon);
            color: white;
            border: none;
            padding: 16px;
            width: 100%;
            font-size: 1.125rem;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background-color: rgba(117, 16, 33, 0.9);
        }

        /* Highlights Section */
        .highlights-section {
            background-color: var(--light-gray);
            padding: 80px 0;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
        }

        .section-title .text-primary {
            color: var(--amrita-maroon) !important;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #666;
            text-align: center;
            margin-bottom: 60px;
        }

        .highlight-card {
            background-color: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            height: 100%;
        }

        .highlight-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transform: translateY(-8px);
        }

        .highlight-icon {
            background-color: rgba(117, 16, 33, 0.1);
            width: 64px;
            height: 64px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: background-color 0.3s;
        }

        .highlight-card:hover .highlight-icon {
            background-color: rgba(117, 16, 33, 0.2);
        }

        .highlight-icon svg {
            width: 32px;
            height: 32px;
            color: var(--amrita-maroon);
        }

        /* Rankings Section */
        .rankings-section {
            background-color: white;
            padding: 80px 0;
        }

        .badge-section {
            background-color: var(--amrita-gold);
            color: var(--dark-text);
            padding: 8px 20px;
            border-radius: 20px;
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .ranking-card {
            background-color: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 2px solid var(--border-color);
            transition: all 0.3s;
            text-align: center;
        }

        .ranking-card:hover {
            border-color: var(--amrita-maroon);
            transform: scale(1.05);
        }

        .ranking-card img {
            height: 128px;
            width: auto;
            object-fit: contain;
            margin-bottom: 16px;
        }

        /* Programs Section */
        .programs-section {
            background-color: var(--light-gray);
            padding: 80px 0;
        }

        .program-card {
            background-color: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            cursor: pointer;
            height: 100%;
        }

        .program-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transform: translateY(-4px);
        }

        .program-icon {
            background: linear-gradient(135deg, var(--amrita-maroon), rgba(117, 16, 33, 0.8));
            width: 56px;
            height: 56px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            transition: transform 0.3s;
        }

        .program-card:hover .program-icon {
            transform: scale(1.1);
        }

        .program-icon svg {
            width: 28px;
            height: 28px;
            color: white;
        }

        .program-code {
            background-color: rgba(236, 201, 75, 0.2);
            color: var(--dark-text);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        /* AEEE Section */
        .aeee-section {
            background-color: white;
            padding: 80px 0;
        }

        .aeee-feature-card {
            background-color: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .aeee-feature-card svg {
            width: 40px;
            height: 40px;
            color: var(--amrita-maroon);
            margin: 0 auto 12px;
        }

        .dates-container {
            background: linear-gradient(135deg, rgba(117, 16, 33, 0.05), rgba(236, 201, 75, 0.05));
            border-radius: 16px;
            padding: 48px;
            border: 2px solid rgba(117, 16, 33, 0.2);
        }

        .table-dates {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .table-dates thead {
            background-color: var(--amrita-maroon);
        }

        .table-dates thead th {
            color: #000;
            font-weight: 700;
            padding: 16px;
        }

        .table-dates tbody tr:hover {
            background-color: rgba(245, 245, 245, 0.5);
        }

        /* Scholarships Section */
        .scholarships-section {
            background-color: var(--light-gray);
            padding: 80px 0;
        }

        .scholarship-highlight {
            background-color: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .scholarship-highlight.border-primary {
            border-left: 4px solid var(--amrita-maroon);
        }

        .scholarship-highlight.border-accent {
            border-left: 4px solid var(--amrita-gold);
        }

        .scholarship-highlight svg {
            width: 48px;
            height: 48px;
            margin: 0 auto 12px;
        }

        .scholarship-number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .scholarship-content-card {
            background-color: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(117, 16, 33, 0.2);
        }

        .scholarship-icon-box {
            background-color: rgba(117, 16, 33, 0.1);
            padding: 16px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scholarship-icon-box svg {
            width: 40px;
            height: 40px;
            color: var(--amrita-maroon);
        }

        .features-box {
            background-color: rgba(236, 201, 75, 0.05);
            border-radius: 12px;
            padding: 24px;
            border-left: 4px solid var(--amrita-gold);
        }

        /* Admission Process Section */
        .admission-process-section {
            background-color: white;
            padding: 80px 0;
        }

        .timeline-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
            background-color: rgba(117, 16, 33, 0.2);
            transform: translateY(-50%);
        }

        .step-circle {
            width: 96px;
            height: 96px;
            background-color: var(--amrita-maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 4px solid white;
            position: relative;
            z-index: 10;
            margin: 0 auto 32px;
        }

        .step-circle svg {
            width: 40px;
            height: 40px;
            color: white;
        }

        .step-number {
            position: absolute;
            bottom: -24px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--amrita-gold);
            color: var(--dark-text);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            border: 2px solid white;
        }

        .step-card {
            background-color: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .step-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transform: translateY(-8px);
        }

        /* Mobile Timeline */
        .mobile-timeline {
            position: relative;
        }

        .mobile-step {
            position: relative;
            padding-left: 80px;
            margin-bottom: 24px;
        }

        .mobile-step-line {
            position: absolute;
            left: 32px;
            top: 64px;
            bottom: 0;
            width: 4px;
            background-color: rgba(117, 16, 33, 0.2);
        }

        .mobile-step-circle {
            position: absolute;
            left: 0;
            top: 0;
            width: 64px;
            height: 64px;
            background-color: var(--amrita-maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .mobile-step-circle svg {
            width: 32px;
            height: 32px;
            color: white;
        }

        .mobile-step-number {
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--amrita-gold);
            color: var(--dark-text);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
        }

        /* Placements Section */
        .placements-section {
            background-color: var(--light-gray);
            padding: 80px 0;
        }

        .placement-stats {
            background: linear-gradient(135deg, var(--amrita-maroon), rgba(117, 16, 33, 0.9));
            border-radius: 24px;
            padding: 48px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

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

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--amrita-gold);
            margin-bottom: 8px;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }

        .recruiters-card {
            background-color: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
        }

        .recruiters-card img {
            width: 100%;
            height: auto;
        }

        /* International Section */
        .international-section {
            background-color: white;
            padding: 80px 0;
        }

        .international-banner {
            background-color: white;
            border-radius: 24px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
            overflow: hidden;
            margin-bottom: 60px;
        }

        .international-banner img {
            width: 100%;
            height: auto;
        }

        .benefit-card {
            background-color: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            height: 100%;
        }

        .benefit-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .benefit-icon {
            background-color: rgba(117, 16, 33, 0.1);
            width: 56px;
            height: 56px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            transition: background-color 0.3s;
        }

        .benefit-card:hover .benefit-icon {
            background-color: rgba(117, 16, 33, 0.2);
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            color: var(--amrita-maroon);
        }

        .collaboration-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--amrita-maroon), var(--amrita-gold));
            color: white;
            border-radius: 16px;
            padding: 40px;
        }

        .collaboration-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        /* Footer */
        .footer {
            background-color: var(--amrita-maroon);
            color: white;
            padding:0 0  24px 0;
        }

        .footer h3 {
            color: var(--amrita-gold);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer h4 {
            font-weight: 700;
            font-size: 1.125rem;
            margin-bottom: 16px;
        }

        .footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: var(--amrita-gold);
        }

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

        .footer ul li {
            margin-bottom: 8px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            transition: background-color 0.3s;
        }

        .social-icon:hover {
            background-color: var(--amrita-gold);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 32px;
            
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-in {
            animation: fadeIn 0.6s ease-out;
        }

        .animate-slide-in-right {
            animation: slideInRight 0.6s ease-out;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3rem;
            }

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

            .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.25rem;
            }

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

            .application-form {
                padding: 24px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .collaboration-number {
                font-size: 3rem;
            }
            .btn-hero-primary,
            .btn-hero-secondary{
                display: none !important;
            }
            .hero-content{
                padding-top: 20px;
            }
            .dates-container{
                padding: 18px;
            }
            h3{
                font-size: 20px;
            }
            .scholarships-content-header{
                flex-direction: column;
            }
            .recruiters-card{
                padding: 10px;
            }
        }