
        .admission-hero {
             background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.8)), url('../img/ge.jfif');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .admission-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            font-size: 2rem;
            color: var(--primary-900);
            margin-bottom: 15px;
            font-weight: 500;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-500), var(--primary-700));
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 800px;
            margin: 25px auto 0;
            line-height: 1.6;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin: 60px 0;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            background: white;
            border-radius: 12px;
            padding: 30px;
           
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
           
        }
        
        .step-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-600);
            margin-right: 25px;
            min-width: 60px;
            height: 60px;
            background: var(--primary-50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-title {
            font-size: 1.5rem;
            color: var(--primary-800);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .step-description {
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .step-features {
            list-style-type: none;
        }
        
        .step-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #4b5563;
        }
        
        .step-feature i {
            color: var(--primary-600);
            margin-right: 10px;
        }
        
        .requirements-section {
            background: var(--primary-50);
            padding: 80px 0;
        }
        
        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .requirement-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
         
            transition: all 0.3s ease;
        }
        
  
        
        .requirement-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-100);
            color: var(--primary-600);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .requirement-title {
            font-size: 1.3rem;
            color: var(--primary-800);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .requirement-list {
            list-style-type: none;
        }
        
        .requirement-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            color: #4b5563;
        }
        
        .requirement-item i {
            color: var(--primary-600);
            margin-right: 10px;
            margin-top: 5px;
        }
        
        .dates-section {
            padding: 80px 0;
        }
        
        .dates-container {
            background: white;
            border-radius: 12px;
            padding: 40px;
           
            margin-top: 50px;
        }
        
        .date-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .date-item:last-child {
            border-bottom: none;
        }
        
        .date-info {
            flex: 2;
        }
        
        .date-title {
            font-size: 1.2rem;
            color: var(--primary-800);
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .date-description {
            color: #4b5563;
        }
        
        .date-time {
            flex: 1;
            text-align: right;
            font-weight: 600;
            color: var(--primary-700);
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            padding: 15px 30px;
            background: white;
            color: var(--primary-700);
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            background: var(--primary-50);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .cta-btn.outline {
            background: transparent;
            border: 2px solid white;
            color: white;
        }
        
        .cta-btn.outline:hover {
            background: white;
            color: var(--primary-700);
        }
        
        .cta-btn i {
            margin-right: 10px;
        }
        
    
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
            }
            
            .process-step {
                flex-direction: column;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .date-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .date-time {
                text-align: left;
                margin-top: 10px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn {
                width: 100%;
                justify-content: center;
            }}