:root {
            --background: hsl(0, 0%, 100%);
            --foreground: hsl(209, 100%, 15%);
            --card: hsl(0, 0%, 100%);
            --card-foreground: hsl(209, 100%, 15%);
            --primary: hsl(209, 100%, 28%);
            --primary-foreground: hsl(0, 0%, 100%);
            --secondary: hsl(209, 50%, 96%);
            --secondary-foreground: hsl(209, 100%, 28%);
            --muted: hsl(210, 40%, 96%);
            --muted-foreground: hsl(209, 30%, 45%);
            --accent: hsl(41, 52%, 55%);
            --accent-foreground: hsl(209, 100%, 15%);
            --border: hsl(209, 30%, 90%);
            --radius: 0.75rem;
        }
        
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            overflow-x: hidden;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in {
            animation: fadeIn 0.6s ease-out forwards;
        }
        
        /* Custom Card Shadow */
        .shadow-card {
            box-shadow: 0 4px 20px -2px rgba(0, 72, 142, 0.08);
        }
        
        .shadow-hover {
            box-shadow: 0 8px 30px -4px rgba(0, 72, 142, 0.15);
        }
        
        /* Hover Effects */
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px -4px rgba(0, 72, 142, 0.15);
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand img {
            height: 64px;
        }
        
        .nav-link {
            color: var(--primary) !important;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--accent) !important;
        }
        
        .helpline-box {
            background-color: var(--primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 0.875rem;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background-image: url('../img/hero-banner.jpg');
            background-size: cover;
            background-position: center;
            padding-top: 100px;
        }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0, 72, 142, 0.7), rgba(0, 72, 142, 0.5), transparent);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            color: white;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .btn-accent {
            background-color: var(--accent);
            color: #fff;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border: none;
        }
        
        .btn-accent:hover {
            background-color: hsl(41, 52%, 45%);
            color: #fff;
        }
        
        .btn-outline-white {
            border: 2px solid white;
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            background: #fff;
            color: #000;
        }
        
        .btn-outline-white:hover {
            background-color: white;
            color: var(--primary);
        }
        
        .application-form {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 8px 30px -4px rgba(0, 72, 142, 0.15);
            margin-top: 2rem;
        }
        
        /* Section Styles */
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--foreground);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .section-title-primary {
            color: var(--primary);
        }
        
        .title-underline {
            width: 6rem;
            height: 4px;
            background-color: var(--primary);
            margin: 0 auto 3rem;
        }
        
        /* Stats Cards */
        .stat-card {
            background-color: var(--card);
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 20px -2px rgba(0, 72, 142, 0.08);
            transition: all 0.3s;
        }
        
        .stat-card:hover {
            box-shadow: 0 8px 30px -4px rgba(0, 72, 142, 0.15);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--foreground);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: var(--muted-foreground);
        }
        
        /* Why SRM Carousel */
        .carousel-item {
            background-color: rgba(225, 240, 255, 0.3);
            border-radius: 1rem;
            overflow: hidden;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(112, 142, 184, 0.3);
            width: 32px;
            border-radius: 6px;
            background-color: var(--primary) !important;
        }
        
        .carousel-indicators button.active {
            width: 32px;
            border-radius: 6px;
            background-color: var(--primary);
        }
        
        /* Rankings Cards */
        .ranking-card {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 2rem;
        }
        
        .ranking-logo {
            width: 64px;
            height: 64px;
            object-fit: contain;
            flex-shrink: 0;
        }
        
        /* Process Steps */
        .process-step {
            width: 192px;
            height: 192px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }
        
        .process-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .process-arrow {
            font-size: 2.5rem;
            color: var(--muted-foreground);
        }
        
        /* Exam Details */
        .exam-icon-wrapper {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, hsl(209, 100%, 28%), hsl(209, 100%, 38%));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        
        .bg-gradient-gold {
            background: linear-gradient(135deg, hsl(41, 52%, 55%), hsl(41, 52%, 65%));
        }
        
        /* Programs Tabs */
        .nav-tabs .nav-link {
            color: var(--foreground);
            border: 1px solid var(--border);
            background-color: var(--background);
        }
        
        .nav-tabs .nav-link.active {
            color: var(--primary);
            background-color: var(--secondary);
            border-color: var(--primary);
        }
        
        .program-card {
            padding: 1rem;
            border-radius: var(--radius);
            background-color: var(--card);
            box-shadow: 0 4px 20px -2px rgba(0, 72, 142, 0.08);
            transition: all 0.3s;
        }
        
        .program-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px -4px rgba(0, 72, 142, 0.15);
        }
        
        .program-card h6 {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.875rem;
        }
        
        /* Recruiters */
        .recruiter-card {
            min-height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            text-align: center;
            font-weight: 600;
            font-size: 0.875rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        footer a:hover {
            color: var(--accent);
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--accent);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.25rem;
                margin-bottom: 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .navbar-brand img {
                height: 48px;
            }
            
            .process-arrow {
                display: none;
            }
            .btn-accent{
                display: none;
            }
            .btn-outline-white{
                display: none;
            }
            .process-step{
                width: 180px;
                height: 170px;
            }
        }
        
        @media (min-width: 992px) {
            .navbar-brand img {
                height: 64px;
            }
        }
        
        /* Form Styles */
        .form-label {
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--foreground);
        }
        
        .form-control, .form-select {
            border-color: var(--border);
            padding: 0.625rem 0.75rem;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: none;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 0.75rem;
            font-size: 1.125rem;
        }
        
        .btn-primary:hover {
            background-color: hsl(209, 100%, 25%);
            border-color: hsl(209, 100%, 25%);
        }
        
        /* Accent Button */
        .accent-badge {
            background-color: var(--accent);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-weight: 700;
            font-size: 1.125rem;
            display: inline-block;
        }
        
        /* Secondary Background */
        .bg-secondary-light {
            background-color: rgba(225, 240, 255, 0.3);
        }