        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-color: #1e3a8a;
            --secondary-color: #fbbf24;
            --accent-color: #059669;
            --light-color: #f8fafc;
            --dark-color: #0f172a;
            --text-color: #334155;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        body {
              display: flex;
    flex-direction: column;
    min-height: 100vh;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #f9fafb;
        }

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

        /* Header Styles */
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .logo-icon {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
        }
.logo-text {
    margin-left: 20px; /* Adds additional space */
}
        .logo-text h1 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }

        .logo-text p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.8)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .admission-badge {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Programs Section */
      

        .programs-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .program-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

        .program-card:hover {
            transform: translateY(-10px);
        }

        .program-header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .program-header i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .program-header h3 {
            font-size: 1.5rem;
        }

        .program-body {
            padding: 25px;
        }

        .program-body ul {
            list-style-position: inside;
            margin-bottom: 20px;
        }

        .program-body li {
            margin-bottom: 10px;
            padding-left: 5px;
        }

        .program-footer {
            padding: 0 25px 25px;
        }

        .duration {
            display: inline-block;
            background-color: #e0f2fe;
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 500;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
            z-index: 99;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
        }

        .whatsapp-btn span {
            position: absolute;
            top: -40px;
            background-color: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .whatsapp-btn:hover span {
            opacity: 1;
        }

        /* Admission Info Section */
        .admission-info {
            background-color: var(--light-color);
            padding: 60px 0;
            margin: 40px 0;
        }

        .admission-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .admission-text {
            flex: 1;
            min-width: 300px;
        }

        .admission-text h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .admission-text ul {
            list-style-type: none;
            margin-top: 20px;
        }

        .admission-text li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .admission-text li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        .admission-image {
            flex: 1;
            min-width: 300px;
        }

        .admission-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }

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

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

        .footer-column ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

        .contact-info li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .contact-info i {
            color: var(--secondary-color);
            margin-top: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            font-size: 0.9rem;
            color: #94a3b8;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .programs-container {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: all 0.4s ease;
            }

            nav ul.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }

            nav ul li {
                width: 100%;
                text-align: center;
            }

            nav a {
                display: block;
                padding: 15px;
                width: 100%;
            }

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

            .hero {
                padding: 60px 0;
            }

            .hero h2 {
                font-size: 1.8rem;
            }

            
        }

        @media (max-width: 576px) {
            .logo-text h1 {
                font-size: 1.5rem;
            }
            
            .hero h2 {
                font-size: 1.5rem;
            }
            
            .admission-badge {
                font-size: 1rem;
                padding: 8px 20px;
            }
            
            .whatsapp-btn {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
                font-size: 1.8rem;
            }
        }
.admission-cta {
        background: linear-gradient(135deg, var(--primary-color) 0%, #0d2a6e 100%);
        color: white;
        padding: 80px 0;
        margin: 60px 0;
    }
    
    .cta-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 50px;
    }
    
    .cta-content {
        flex: 1;
        min-width: 300px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: var(--secondary-color);
    }
    
    .cta-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    
    .cta-features {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .feature {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.05rem;
    }
    
    .feature i {
        color: var(--secondary-color);
        font-size: 1.2rem;
    }
    
    .cta-action {
        flex: 1;
        min-width: 300px;
        display: flex;
        justify-content: center;
    }
    
    .cta-card {
        background-color: white;
        border-radius: 15px;
        padding: 35px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        text-align: center;
        max-width: 400px;
        width: 100%;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2.2rem;
        color: white;
    }
    
    .cta-card h3 {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }
    
    .cta-card p {
        color: var(--text-color);
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: linear-gradient(to right, var(--accent-color), #047857);
        color: white;
        text-decoration: none;
        padding: 18px 35px;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(5, 150, 105, 0.3);
        margin-bottom: 20px;
        width: 100%;
    }
    
    .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
        background: linear-gradient(to right, #047857, var(--accent-color));
    }
    
    .cta-button i {
        transition: transform 0.3s ease;
    }
    
    .cta-button:hover i {
        transform: translateX(5px);
    }
    
    .cta-note {
        font-size: 0.9rem;
        color: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
        font-weight: 500;
    }
      .back-to-home {
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .back-to-home:hover {
            color: var(--secondary-color);
        }

        /* Form Header */
        .form-header {
            background-color: white;
            border-radius: 10px;
            margin: 30px 0;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .form-header h1 {
            color: var(--primary-color);
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .form-header p {
            color: var(--text-color);
            max-width: 800px;
            margin: 0 auto;
        }

        .admission-badge {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Form Container */
        .form-container {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }

        .form-section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px dashed var(--border-color);
        }

        .form-section:last-of-type {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1;
            min-width: 250px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }

        .form-group label.required:after {
            content: ' *';
            color: #e11d48;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: #f8fafc;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
            background-color: white;
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e3a8a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            padding-right: 40px;
        }

        .file-upload {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .file-upload input[type="file"] {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .file-upload-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 15px;
            border: 2px dashed var(--border-color);
            border-radius: 6px;
            background-color: #f8fafc;
            color: var(--text-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .file-upload-label:hover {
            border-color: var(--primary-color);
            background-color: #e0e7ff;
        }

        .file-upload-label i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .file-name {
            margin-top: 8px;
            font-size: 0.9rem;
            color: var(--accent-color);
            font-weight: 500;
        }

        /* Academic Record Table */
        .academic-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .academic-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
        }

        .academic-table td {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .academic-table tr:nth-child(even) {
            background-color: #f8fafc;
        }

        .academic-table tr:hover {
            background-color: #e0e7ff;
        }

        .academic-table input {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 0.9rem;
        }

        .academic-table input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        /* Form Buttons */
        .form-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .btn {
            padding: 14px 30px;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: #1e40af;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(30, 58, 138, 0.3);
        }

        .btn-secondary {
            background-color: #64748b;
            color: white;
        }

        .btn-secondary:hover {
            background-color: #475569;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(100, 116, 139, 0.3);
        }

        .btn-whatsapp {
            background-color: #25D366;
            color: white;
        }

        .btn-whatsapp:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
        }

        /* Form Notes */
        .form-notes {
            background-color: #f0f9ff;
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin-top: 30px;
            border-radius: 0 6px 6px 0;
        }

        .form-notes h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .form-notes ul {
            padding-left: 20px;
        }

        .form-notes li {
            margin-bottom: 8px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .form-header h1 {
                font-size: 1.8rem;
            }
            
            .academic-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            
            .form-group {
                min-width: 100%;
            }
            
            .form-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .logo-text h1 {
                font-size: 1.5rem;
            }
            
            .form-header h1 {
                font-size: 1.5rem;
            }
            
            .form-container {
                padding: 20px;
            }
            
            .admission-badge {
                font-size: 1rem;
                padding: 8px 20px;
            }
        }
    /* Responsive Styles for CTA Section */
    @media (max-width: 768px) {
        .admission-cta {
            padding: 60px 0;
        }
        
        .cta-content h2 {
            font-size: 1.8rem;
        }
        
        .cta-card {
            padding: 25px;
        }
        
        .cta-button {
            padding: 16px 30px;
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 576px) {
        .admission-cta {
            padding: 50px 0;
        }
        
        .cta-content h2 {
            font-size: 1.6rem;
        }
        
        .cta-card {
            padding: 20px;
        }
    }
/* Page Header */
.page-header {
    background: linear-gradient(to right, var(--primary-color), #0d2a6e);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* BS Programs Grid */
.bs-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.bs-program-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.bs-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.bs-program-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 25px;
    text-align: center;
    position: relative;
}

.bs-program-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.bs-program-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.bs-program-degree {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.bs-program-body {
    padding: 25px;
}

.bs-program-desc {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.bs-program-features {
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.bs-program-features h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.bs-program-features h4 i {
    color: var(--accent-color);
}

.bs-program-features ul {
    list-style-type: none;
    padding-left: 0;
}

.bs-program-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
    position: relative;
    padding-left: 20px;
}

.bs-program-features li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.bs-program-features li:last-child {
    border-bottom: none;
}

.bs-program-footer {
    padding: 20px 25px;
    background-color: #f1f5f9;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e2e8f0;
}

.bs-program-duration,
.bs-program-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.bs-program-duration i,
.bs-program-credits i {
    color: var(--accent-color);
}

/* Specializations Section */
.specializations {
    background-color: var(--light-color);
    padding: 60px 0;
    margin: 40px 0;
}

.specializations-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.specialization-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.specialization-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.specialization-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.specialization-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.specialization-card p {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Updated Admission CTA */
.admission-cta .container {
    text-align: center;
    max-width: 800px;
}

.admission-cta h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.admission-cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.admission-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(to right, var(--secondary-color), #f59e0b);
    color: var(--dark-color);
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
    margin-bottom: 20px;
}

.admission-cta .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    background: linear-gradient(to right, #f59e0b, var(--secondary-color));
}

/* Responsive Design for New Elements */
@media (max-width: 992px) {
    .bs-programs-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .specializations-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .bs-programs-grid {
        grid-template-columns: 1fr;
    }
    
    .bs-program-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .specializations-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admission-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.7rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .specializations-container {
        grid-template-columns: 1fr;
    }
    
    .bs-program-footer {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .admission-cta h2 {
        font-size: 1.6rem;
    }
    
    .admission-cta .cta-button {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}
/* Additional CSS for Enhanced Styling */

/* Fix for BS Program Cards */
.bs-program-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.bs-program-link:hover {
    transform: translateY(-5px);
}

.bs-program-subjects {
    padding: 15px 25px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.bs-program-subjects small {
    color: var(--accent-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Enhanced Card Hover Effects */
.bs-program-card:hover .bs-program-header {
    background: linear-gradient(135deg, #1e40af 0%, #0d2a6e 100%);
}

.bs-program-card:hover .bs-program-degree {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Page Header Enhancement */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

/* Program Detail Back Button Enhancement */
.back-button-container {
    margin: 20px 0 40px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.back-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Enhanced Contact Section */
.contact-info li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info li:last-child {
    border-bottom: none;
}

.contact-info li:hover i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Social Media Icons Enhancement */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Enhanced Form Styling */
.form-group select {
    cursor: pointer;
}

.form-group input[type="date"] {
    cursor: pointer;
}

/* Loading Animation for Buttons */
.cta-button.loading {
    position: relative;
    color: transparent;
}

.cta-button.loading:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Program Detail Page Specific Styles */
.program-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

/* Timeline for Program Structure */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    margin: 40px 0;
    position: relative;
}

.timeline-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: calc(50% - 40px);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--accent-color);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
    padding: 60px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Print Styles */
@media print {
    .whatsapp-btn,
    .mobile-menu-btn,
    .cta-button {
        display: none !important;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .program-card,
    .bs-program-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Accessibility Improvements */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    text-decoration: none;
    z-index: 1001;
}

.skip-to-content:focus {
    top: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000AA;
        --secondary-color: #FFAA00;
        --accent-color: #008000;
    }
    
    body {
        background-color: white;
        color: black;
    }
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

.bg-light {
    background-color: var(--light-color);
}

.bg-primary {
    background-color: var(--primary-color);
    color: white;
}

.text-accent {
    color: var(--accent-color);
}

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

.rounded-lg {
    border-radius: 15px;
}

/* Card Hover Animation Enhancement */
.program-card,
.bs-program-card,
.specialization-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0d2a6e;
}

/* Selection Color */
::selection {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Focus Visible Polyfill */
.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

/* Loading States */
.loading-shimmer {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Responsive Table */
.responsive-table {
    overflow-x: auto;
}

.responsive-table table {
    min-width: 600px;
}/* Footer Social Icons Enhancement */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
    border-color: transparent;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.social-icons a:hover::before {
    width: 100%;
    height: 100%;
}

.social-icons a i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icons a:hover i {
    transform: rotate(360deg);
}

/* Specific Icon Colors on Hover */
.social-icons a[title="Facebook"]:hover {
    background-color: #1877f2;
    color: white;
}

.social-icons a[title="Twitter"]:hover {
    background-color: #1da1f2;
    color: white;
}

.social-icons a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.social-icons a[title="YouTube"]:hover {
    background-color: #ff0000;
    color: white;
}

.social-icons a[title="LinkedIn"]:hover {
    background-color: #0a66c2;
    color: white;
}

/* Tooltip for Social Icons */
.social-icons a::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icons a::after {
    content: attr(aria-label);
}

.social-icons a:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.social-icons a::before,
.social-icons a::after {
    pointer-events: none;
}

/* Animated Social Icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.social-icons a {
    animation: float 3s ease-in-out infinite;
}

.social-icons a:nth-child(2) {
    animation-delay: 0.2s;
}

.social-icons a:nth-child(3) {
    animation-delay: 0.4s;
}

.social-icons a:nth-child(4) {
    animation-delay: 0.6s;
}

.social-icons a:nth-child(5) {
    animation-delay: 0.8s;
}

/* Responsive Social Icons */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
    
    .social-icons a {
        width: 36px;
        height: 36px;
    }
    
    .social-icons a i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .social-icons {
        gap: 10px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
    }
    
    .social-icons a i {
        font-size: 0.9rem;
    }
}

/* Social Icons in Light Mode (for other sections if needed) */
.social-icons.light-mode a {
    background-color: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.social-icons.light-mode a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Social Icons Counter (if you want to show follower counts) */
.social-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Social Media Icons Grid Layout */
.social-icons.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.social-icons.grid a {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    font-weight: 500;
    gap: 8px;
}

.social-icons.grid a i {
    font-size: 1.1rem;
}

/* Social Media Share Buttons */
.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}
/* ===== Affiliated Universities Section ===== */
.affiliated-section {
    padding: 80px 0 60px;
    background-color: white;
}

.universities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.university-card {
    background: var(--light-color);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.university-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.university-logo {
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.university-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.university-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.university-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== Principal Section ===== */
.principal-section {
    padding: 80px 0;
    background-color: #f0f9ff;
}

.principal-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.principal-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.principal-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.principal-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    box-shadow: var(--shadow);
}

.principal-badge span {
    font-size: 0.8rem;
}

.principal-badge .year {
    font-size: 1.5rem;
    line-height: 1;
}

.principal-content {
    flex: 1;
    min-width: 300px;
}

.principal-quote {
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.principal-quote:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: Georgia, serif;
    opacity: 0.5;
}

.principal-info h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.principal-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.principal-message {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 25px;
}

.principal-signature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--secondary-color);
}

.signature-name {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.signature-title {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* ===== Campus Gallery Section ===== */
.gallery-section {
    padding: 80px 0;
    background-color: white;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow);
}

.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;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .universities-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .principal-container {
        gap: 30px;
    }
    
    .principal-quote {
        font-size: 1.5rem;
        padding-left: 20px;
    }
    
    .principal-badge {
        width: 80px;
        height: 80px;
        right: -10px;
        bottom: -10px;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .universities-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
}
/* Student Portal Button Styles */
.portal-button-container {
    margin-left: auto;
    margin-right: 20px;
}

.portal-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
    border: 2px solid transparent;
}
.section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 15%;
}

.section-title p {
    color: var(--text-color);
    max-width: 700px;
    margin: 20px auto 0;
}
.portal-btn:hover {
    background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.portal-btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.portal-btn i {
    font-size: 16px;
}.logo {
    margin-right: 40px; /* Creates space between logo and nav */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .portal-button-container {
        margin: 15px 0;
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .portal-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .logo {   

        order: 1;
    }
    
    .mobile-menu-btn {
        order: 2;
    }
    
    nav {
        order: 4;
        width: 100%;
        margin-top: 15px;
    }
}
.programs-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.program-item {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.program-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
}

.program-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.program-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.program-item p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.program-item .duration {
    display: inline-block;
    background-color: #e0f2fe;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive Design for Programs List */
@media (max-width: 768px) {
    .programs-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .program-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .programs-list {
        grid-template-columns: 1fr;
    }
}
/* Add to your style section */
.alert {
    display: none;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-weight: 500;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.alert i {
    margin-right: 10px;
}
.error-message {
    display: none;
    color: #e11d48;
    font-size: 0.875rem;
    margin-top: 5px;
}
.form-control.error {
    border-color: #e11d48;
    background-color: #fff0f0;
}
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}/* ===== Campuses Section Styles ===== */
.campuses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.campuses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.campus-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.campus-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.campus-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.campus-card:hover .campus-image img {
    transform: scale(1.08);
}

.campus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.location-badge {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.location-badge i {
    font-size: 0.8rem;
}

.campus-content {
    padding: 25px;
}

.campus-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.campus-title i {
    font-size: 1.6rem;
    color: var(--accent-color);
}

.campus-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.campus-address i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.campus-divider {
    height: 3px;
    width: 50px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
    margin: 20px 0;
}

.campus-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-tag {
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-tag i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.feature-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.feature-tag:hover i {
    color: var(--secondary-color);
}

.program-offerings {
    margin-bottom: 25px;
}

.program-offerings p {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-offerings p i {
    color: var(--accent-color);
}

.program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.program-tag {
    background: #e0f2fe;
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.program-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.campus-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.campus-cta:hover {
    background: linear-gradient(135deg, #1e40af 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    gap: 18px;
}

.campus-cta i {
    transition: transform 0.3s ease;
}

.campus-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Campuses Section */
@media (max-width: 992px) {
    .campuses-container {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .campus-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .campuses-section {
        padding: 60px 0;
    }
    
    .campuses-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .campus-image {
        height: 200px;
    }
    
    .campus-content {
        padding: 20px;
    }
    
    .campus-title {
        font-size: 1.3rem;
        gap: 8px;
    }
    
    .campus-title i {
        font-size: 1.3rem;
    }
    
    .feature-tag {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
    
    .program-tag {
        font-size: 0.75rem;
    }
    
    .campus-cta {
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .campuses-section {
        padding: 50px 0;
    }
    
    .campuses-container {
        gap: 25px;
    }
    
    .campus-image {
        height: 180px;
    }
    
    .campus-features {
        gap: 8px;
    }
    
    .feature-tag {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    
    .program-offerings p {
        font-size: 0.9rem;
    }
    
    .program-tags {
        gap: 8px;
    }
    
    .program-tag {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .campus-cta {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* Animation for Campus Cards on Scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.campus-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.campus-card:nth-child(1) { animation-delay: 0.1s; }
.campus-card:nth-child(2) { animation-delay: 0.3s; }
.campus-card:nth-child(3) { animation-delay: 0.5s; }