/*---------------------------------New Design------------------*/
.top-header {
    background: transparent;
    padding: 10px 0;
}

/* ADD THIS */
.header-row {
   
    margin: auto;        /* centers content */
    padding: 0 20px;     /* small side gap */
    
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    
}
/* LOGO */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    width: 70%;
    margin-right: 10px;
}

.logo-section h1 {
    color: red;
    font-size: 32px;
    margin: 0;
    text-shadow: 2px 2px 0 #5da9dd;
}

/* RIGHT SIDE */
.right-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* IMPORTANT FIX */
    margin-top:20px;
}

/* TOP RIGHT */
.top-right {
    display: flex;
    align-items: center;
    gap: 180px;
     
}

.bottom-info {
      display: flex;
    gap: 126px;
    margin-top: 8px;
    padding-top: 30px;
}


/* BUTTON */
.admission-btn {
    background: #108cd4;
    color: white;
    padding: 8px 18px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 14px;

}

/* SOCIAL */
.social-icons i {
    font-size: 20px;
    margin-left: 8px;
    cursor: pointer;
}

.fa-youtube { color: red; }
.fa-x-twitter { color: black; }
.fa-instagram { color: #e1306c; }
.fa-facebook { color: #1877f2; }

/* INFO ROW */
.bottom-info {
    display: flex;
    gap:200px;   /* spacing like your image */
    margin-top: 8px;
}

.info {
    text-align: left;
    font-family: times new roman;
    font-size: 14px;
    font-weight: bold;
    color: #20548c;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .header-row {
        flex-direction: column;
        align-items: center;
    }

    .right-section {
        align-items: center;
    }

    .top-right {
      /*  flex-direction: column;*/
        gap: 10px;
    }

    .bottom-info {
      /*  flex-direction: column;*/
        text-align: center;
        gap: 5px;
    }
    .info {
    text-align: left;
    font-family: times new roman;
    font-size: 11px;
    font-weight: bold;
    color: #20548c;
}

    .logo-section {
        justify-content: center;
        margin-bottom: 10px;
    }
}

body {
    margin: 0;
    font-family: Arial;
}

/* NAVBAR */
.main-navbar {
    background: #108cd4;
    position: relative;
    z-index: 1000;
    width:100% !important;
}

/* CONTAINER (CENTERED) */
.nav-container {
    max-width: 100%;
    margin: auto;
    padding: 0 15px;
}

/* MENU */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ITEMS */
.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    padding: 12px 18px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight:bold;
}

/* HOVER */
.nav-menu li:hover {
    background: #0d6fa8;
}

/* ACTIVE */
.nav-menu li.active {
    background: #e0a404;
}

.nav-menu li.active-yellow {
    background: orange;
}

/* ================= FULL WIDTH DROPDOWN ================= */

.full-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    transform: none !important;

    width: max-content;
    background: #fff;

    opacity: 0;
    visibility: hidden;

    z-index: 999999;
    padding: 15px 20px;
    box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.5);
}

/* DROPDOWN LINKS */
.full-dropdown a {
    display: block;
    padding: 8px 0;
    color: #108cd4 !important;
    text-decoration: none;
    font-weight:bold !important;
}


/* SHOW WITH ANIMATION */
.dropdown-full:hover .full-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ================= MOBILE ================= */

.menu-toggle {
    display: none;
    background: #e0a404;
    color: white;
    padding: 10px;
    cursor: pointer;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: black;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid #222;
    }

    .nav-menu li a {
        padding: 12px;
    }

    /* MOBILE DROPDOWN */
    .full-dropdown {
        position: relative;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        background: #111;
        text-align: left;
        padding-left: 15px;
    }

    .full-dropdown a {
        color: white;
    }

    .dropdown-full.active .full-dropdown {
        display: block;
    }
}
