/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Info Bar */
.top-info {
    background-color: #6b4d2d;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-info .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.quick-links a.btn-small {
    background-color: #4f3828;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    margin-left: 10px;
    font-size: 12px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.quick-links a.btn-small:hover {
    background-color: #002855;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #fff;
    color: #333;
    position: fixed;
    width: 100%;
    top: 40px; /* Updated to account for the top-info bar */
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 15px;
}

.logo-text h3 {
    font-size: 16px;
    font-weight: bold;
    color: #0056b3;
}

.logo-text p {
    font-size: 12px;
    color: #555;
    max-width: 250px;
    line-height: 1.3;
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    color: #333;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:hover {
    color: #0056b3;
}

nav ul li a.active {
    color: #0056b3;
    font-weight: 600;
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #0056b3;
    bottom: 0;
    left: 0;
}

.social-icons a {
    color: #333;
    margin-left: 10px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0056b3;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../images/campus.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 130px; /* Updated to account for header + top-info */
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 10px;
    max-width: 800px;
}

.university-badge {
    margin-bottom: 30px;
}

.university-badge img {
    width: 80px;
    margin-bottom: 10px;
}

.university-badge h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.university-badge p {
    font-size: 14px;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    letter-spacing: 3px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-apply, .btn-programs {
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-apply {
    background-color: #0056b3;
    color: #fff;
    border: 2px solid #0056b3;
}

.btn-programs {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-apply:hover {
    background-color: #004494;
    border-color: #004494;
    transform: translateY(-3px);
}

.btn-programs:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    margin-top: -80px;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.feature-box {
    background-color: #000;
    color: #fff;
    width: 30%;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Add specific styling for campus feature box */
.feature-box.campus {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/campus.jpg');
    background-size: cover;
    background-position: center;
}

.feature-box.scholarship {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/campus.jpg');
    background-size: cover;
    background-position: center;
}

.feature-box.programs {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/campus.jpg');
    background-size: cover;
    background-position: center;
}

.feature-icon {
    font-size: 30px;
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #333;
    margin: 0 auto 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.feature-box p {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.feature-link {
    color: #4a90e2;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #fff;
}

/* About Section */
.about {
    display: flex;
    padding: 100px 5%;
    background-color: #f9f9f9;
}

.about-content {
    flex: 1;
    padding-right: 50px;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #000;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* News Section */
.news {
    padding: 80px 5%;
    background-color: #000;
    color: #fff;
}

.news-header {
    margin-bottom: 50px;
}

.news-header h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.news-header p {
    font-size: 16px;
    opacity: 0.8;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.news-card {
    overflow: hidden;
    border-radius: 10px;
    background-color: #1a1a1a;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card.large {
    grid-column: span 6;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
}

.news-card.medium {
    grid-column: span 3;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
}

.news-card.small {
    grid-column: span 3;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
}

.calendar-card {
    grid-column: span 3;
    grid-row: span 1;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    padding: 20px;
}

.member-card {
    grid-column: span 3;
    grid-row: span 1;
    background-color: #4a90e2;
    color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 12px;
    opacity: 0.8;
    display: block;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.read-more {
    color: #4a90e2;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #fff;
}

.read-more:hover i {
    transform: translateX(5px);
}

.calendar-widget {
    margin-top: 20px;
}

.register-btn {
    background-color: #fff;
    color: #4a90e2;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.register-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.register-btn:hover {
    background-color: #000;
}

.register-btn:hover i {
    transform: translateX(5px);
}

/* Footer Styles */
footer {
    background-color: #00205b;
    color: #fff;
    padding: 60px 0 0;
    position: relative;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

.footer-logo p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-logo .social-icons a {
    color: #fff;
    margin-right: 10px;
    margin-left: 0;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-logo .social-icons a:hover {
    color: #4a90e2;
}

.footer-links h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4a90e2;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: #4a90e2;
    padding-left: 5px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.contact-details li i {
    margin-right: 10px;
    color: #4a90e2;
    margin-top: 3px;
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-links h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-details li {
        justify-content: center;
        text-align: left;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-box {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    
    .about {
        flex-direction: column;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.large,
    .news-card.medium,
    .news-card.small,
    .calendar-card,
    .member-card {
        grid-column: span 1;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero {
        margin-top: 150px;
    }
    
    .hero-overlay {
        padding: 30px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

/* MUST in Numbers Section */
.must-numbers {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
    position: relative;
}

.must-numbers h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #0056b3;
    position: relative;
    display: inline-block;
}

.must-numbers h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0056b3;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.number-item {
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.number-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.number-value {
    font-size: 48px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 10px;
}

.number-label {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .number-value {
        font-size: 36px;
    }
    
    .number-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .numbers-grid {
        grid-template-columns: 1fr;
    }
}

/* Application Page Styles */
.page-banner {
    background-image: linear-gradient(rgba(0, 32, 91, 0.8), rgba(0, 32, 91, 0.8)), url('../images/campus-front.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 130px;
}

.page-banner .banner-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.application-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.application-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.application-intro h2 {
    font-size: 2rem;
    color: #00205b;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.application-intro h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4a90e2;
}

.application-intro p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.application-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.step {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: calc(50% - 20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #4a90e2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-info h3 {
    font-size: 1.1rem;
    color: #00205b;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.application-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.application-form h3 {
    color: #00205b;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.application-form h3:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #4a90e2;
}

.form-section {
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 20px;
}

.form-group {
    flex: 1;
    padding: 0 10px;
    margin-bottom: 20px;
    min-width: 200px;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    outline: none;
    background-color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 0.8rem;
}

.form-group input[type="file"] {
    padding: 10px;
    background-color: #f5f5f5;
    border: 1px dashed #ccc;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.application-fee {
    margin-bottom: 25px;
    padding: 15px 25px;
    background-color: #f0f7ff;
    border-radius: 6px;
    border-left: 4px solid #4a90e2;
}

.application-fee p {
    font-weight: 600;
    color: #00205b;
    font-size: 1.1rem;
}

.btn-submit {
    padding: 14px 35px;
    background: linear-gradient(to right, #25D366, #128C7E);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(to right, #128C7E, #075E54);
}

.btn-submit i {
    font-size: 1.2rem;
}

.form-note {
    margin-top: 15px;
    text-align: center;
}

.form-note p {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #4a90e2;
}

.success-message {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-message i {
    font-size: 5rem;
    color: #4BB543;
    margin-bottom: 20px;
}

.success-message h3 {
    color: #00205b;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.success-message p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.application-id {
    margin: 30px 0;
    padding: 15px;
    background-color: #f0f7ff;
    border-radius: 6px;
    display: inline-block;
}

.application-id p {
    font-weight: 600;
    margin: 0;
}

.application-id span {
    color: #0056b3;
}

/* Responsive adjustments for application form */
@media (max-width: 992px) {
    .step {
        width: 100%;
    }
    
    .application-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 250px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .application-intro h2 {
        font-size: 1.8rem;
    }
    
    .form-group {
        flex: 0 0 100%;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .success-message {
        padding: 30px;
    }
    
    .success-message i {
        font-size: 4rem;
    }
    
    .success-message h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .application-form {
        padding: 20px;
    }
    
    .application-fee {
        padding: 10px 15px;
    }
    
    .btn-submit {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-info-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f7ff;
    color: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.8rem;
}

.contact-card h3 {
    color: #00205b;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-form-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto 60px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    color: #00205b;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.form-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4a90e2;
}

.form-header p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    margin-top: 30px;
}

.map-container-large {
    max-width: 1200px;
    margin: 0 auto;
}

.map-container-large h3 {
    color: #00205b;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.map-container-large iframe {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.departments-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    color: #00205b;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4a90e2;
}

.section-header p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.department-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.department-card h3 {
    color: #00205b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.department-card p {
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.department-card p i {
    color: #4a90e2;
    margin-right: 8px;
}

.btn-details {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #f0f7ff;
    color: #0056b3;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Responsive adjustments for contact page */
@media (max-width: 992px) {
    .contact-form-container {
        padding: 30px;
    }
    
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .map-container-large iframe {
        height: 300px;
    }
} 

/* About Us Page Styles */
.hero-about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.hero-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-about-text h2 {
    font-size: 2.5rem;
    color: #00205b;
    margin-bottom: 20px;
    position: relative;
}

.hero-about-text h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #4a90e2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-about-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background-color: #fff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card, .vision-card {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2, #0056b3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.mission-card h3, .vision-card h3 {
    color: #00205b;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mission-card p, .vision-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.value-item h3 {
    color: #00205b;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-item p {
    color: #555;
    line-height: 1.6;
}

/* Timeline Section */
.history-milestones {
    padding: 80px 0;
    background-color: #fff;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #4a90e2, #25D366);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #4a90e2, #0056b3);
    color: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.timeline-content {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    margin: 0 30px;
    flex: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: #00205b;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
}

/* Leadership Section */
.leadership {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.leader-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.leader-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4a90e2, #0056b3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.leader-card h3 {
    color: #00205b;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.leader-name {
    color: #4a90e2;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.leader-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.leader-description {
    color: #555;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-item h3 {
    color: #00205b;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: #555;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00205b, #0056b3);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-apply {
    background-color: #25D366;
    border-color: #25D366;
}

.cta-buttons .btn-apply:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

.cta-buttons .btn-programs {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.cta-buttons .btn-programs:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .hero-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        z-index: 2;
    }
}

@media (max-width: 768px) {
    .hero-about-text h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-apply,
    .cta-buttons .btn-programs {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-about {
        padding: 60px 0;
    }
    
    .mission-card, .vision-card {
        padding: 30px 20px;
    }
    
    .value-item, .leader-card, .feature-item {
        padding: 25px 20px;
    }
    
    .timeline-content {
        margin-left: 50px;
        padding: 20px;
    }
} 