/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #334155;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* --- ================================== --- */
/* --- !!! MOBILE-FIRST HERO DESIGN !!! --- */
/* --- ================================== --- */

/* By default (on mobile), the separate header is hidden to match your design */
.header {
    display: none;
}

/* The hero section takes up the entire screen */
.hero {
    height: 100vh;
    width: 100%;
    padding: 40px 20px;
    
    /* YOUR BACKGROUND IMAGE */
    background-image: url('college-bg.png'); /* Use your wavy blue background */
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    justify-content: center; /* This centers the content vertically */
    align-items: center;
    text-align: center;
}

/* The logo inside the hero is NOT used in this design */
.logo-section {
    display: none;
}

/* Main title content */
.hero-content {
    width: 100%;
}
.hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    font-weight: 800;
    color: #002244;
    line-height: 1.25;
    margin-bottom: 15px;
}
.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: #003972;
    font-weight: 500;
}

/* Buttons at the bottom */
.hero-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}
.cta-button {
    width: 90%;
    max-width: 320px;
    text-decoration: none;
    padding: 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid;
    box-shadow: 0 5px 20px rgba(0, 57, 114, 0.1);
}
.cta-button.primary {
    background-color: #003972;
    border-color: #003972;
    color: #fff;
}
.cta-button.secondary {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: #003972;
}
.cta-button:hover {
    transform: scale(1.05);
}

/* --- ======================================= --- */
/* --- !!! DESKTOP STYLES (for larger screens) !!! --- */
/* --- ======================================= --- */
@media (min-width: 269px) {
    body {
        padding-top: 90px; /* Make space for the fixed header */
    }
    .header {
        display: flex; /* Show the header bar on desktop */
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        justify-content: space-between;
        padding: 15px 5%;
        background: #FFFFFF;
        border-bottom: 1px solid #e2e8f0;
        height: 90px; /* Give the header a fixed height */
    }
    .logo-section {
        display: block; /* Show the logo section inside the header */
    }
    .logo-banner {
        /* !!! THIS IS THE FIX FOR THE LOGO SIZE !!! */
        height: 100%; /* Make the logo fit the header's height */
        max-height: 55px; /* Set a max height to be safe */
        width: auto; /* Allow width to adjust automatically */
    }
    .hero {
        height: calc(100vh - 90px); /* Hero takes up remaining screen height */
        justify-content: center;
        align-items: flex-start; /* Align content to the left */
        text-align: center;
        padding: 40px 5%;
    }
    .hero-content {
        max-width: 600px;
    }
    .hero-buttons {
        flex-direction: row; /* Buttons side-by-side */
        justify-content: flex-start; /* Align buttons left */
        width: auto;
    }
    .cta-button {
        width: auto;
        padding: 14px 32px;
    }
}

/* --- INFO & POLICY SECTION --- */
.info-section {
    background-color: #FFFFFF;
    padding: 80px 5%;
}
.policy-container { max-width: 900px; margin: 0 auto; text-align: left; }
.policy-main-title { font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 50px; color: #1E293B; }
.policy-item { margin-bottom: 40px; }
.policy-item h3 { font-size: 22px; font-weight: 600; color: #1E293B; margin-bottom: 15px; border-left: 3px solid #003972; padding-left: 15px; }
.policy-item h4 { font-size: 18px; font-weight: 600; color: #334155; margin-top: 20px; margin-bottom: 10px; }
.policy-item p, .policy-item li { font-size: 16px; line-height: 1.8; color: #475569; margin-bottom: 10px; }
.policy-item ul, .policy-item ol { padding-left: 25px; }
.policy-item strong { font-weight: 700; color: #002244; }

/* --- CONTACT SECTION --- */
.contact-section { padding: 80px 5%; background-color: #F1F5F9; }
.contact-container { max-width: 900px; margin: 0 auto; text-align: center; }
.contact-heading { font-size: 32px; font-weight: 700; color: #1E293B; margin-bottom: 40px; }
.contact-details { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.contact-item { background: #FFFFFF; border: 1px solid #e2e8f0; border-radius: 12px; padding: 25px 30px; display: flex; align-items: center; gap: 20px; flex: 1; min-width: 280px; transition: all 0.3s ease; }
.contact-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 57, 114, 0.1); }
.contact-icon { color: #003972; background-color: #E0F2FE; border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-text span { display: block; color: #64748b; font-size: 14px; margin-bottom: 2px; }
.contact-text a { color: #1E293B; font-size: 16px; font-weight: 600; text-decoration: none; }
.contact-text a:hover { color: #003972; }

/* --- FOOTER --- */
.footer { background-color: #002244; padding: 25px 10px; text-align: center; }
.footer-text { color: #c9dae9; font-size: 11px; }
.footer-textt { color: #c9dae9; font-size: 14px; font-weight: bold; }
/* --- Final Responsive Polish --- */
@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
    }
}