*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body{
    width: 100%;
    background-color: #F3F5F9;
    padding-top: 110px;
}

a{
    text-decoration: none;
}

.main-container{
    width: 96%;
    margin-left: 2%;
    margin-top: 0;
    min-width: 0;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .main-container {
        width: 100%;
        margin-left: 0;
        padding: 0 12px;
    }

    .main-container > * {
        max-width: 100%;
        min-width: 0;
    }
}


/* =====================================================
   HEADER
===================================================== */

.header{
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 96%;
    margin-left: 2%;
    padding: 8px 0;
    background: #fff;
    z-index: 100;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    font-family: Arial, Helvetica, sans-serif;
}

.header-left,
.header-middle,
.header-right {
    display: flex;
    align-items: center;
}

.header-left {
    justify-content: flex-start;
}

.header-middle {
    justify-content: center;
    gap: 26px;
}

.header-right {
    justify-content: flex-end;
    gap: 18px;
    padding-right: 18px;
}

.header a {
    text-decoration: none;
    white-space: nowrap;
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.2s ease;
}

.header a:hover{
    color:#0D9488;
}

.header-right .login-btn:hover {
    background-color: #D9F275;
    border-color: #D9F275;
    color: #111111;
}

.logo img,
.univ-logo img{
    width: 150px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin-left: 0;
}

.header-middle .nav-link {
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    padding: 0;
}

.header-right .login-btn {
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    border: 2px solid #111111;
    border-radius: 999px;
    padding: 7px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
}

.header-right .apply-btn {
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    background: #D9F275;
    border: 2px solid #D9F275;
    border-radius: 999px;
    padding: 7px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.header-right .apply-btn:hover {
    background-color: #0D9488;
    border-color: #0D9488;
    color: #ffffff;
    transform: translateY(-1px);
}

.header-right .login-btn:hover {
    background-color: #D9F275;
    border-color: #D9F275;
    color: #111111;
    transform: translateY(-1px);
}


/* =====================================================
   SECOND HEADER
===================================================== */

.second-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 96%;
    margin-left: 2%;
    padding: 8px 0;
    background: #fff;
    z-index: 111;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    font-family: Arial, Helvetica, sans-serif;
}

.second-header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    margin-left: 0;
}

.second-header-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
}

.second-header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    padding-right: 18px;
}

.second-header a {
    text-decoration: none;
    white-space: nowrap;
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.2s ease;
}

.second-header a:hover {
    color: #0D9488;
}

.second-header .nav-link {
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    padding: 0;
}

.second-header .nav-link:hover {
    color: #0D9488;
}

.second-header .login-btn {
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    border: 2px solid #111111;
    border-radius: 999px;
    padding: 7px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
}

.second-header .login-btn:hover {
    background-color: #D9F275;
    border-color: #D9F275;
    color: #111111;
    transform: translateY(-1px);
}

.second-header .apply-btn {
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    background: #D9F275;
    border: 2px solid #D9F275;
    border-radius: 999px;
    padding: 7px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.second-header .apply-btn:hover {
    background-color: #0D9488;
    border-color: #0D9488;
    color: #ffffff;
    transform: translateY(-1px);
}

.univ-logo img{
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
    margin-left: 0;
    display: block;
}


/* =====================================================
   NAVIGATION
===================================================== */

.nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    color: black;
    list-style: none;
}

.right-nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    color: black;
    list-style: none;
}

.nav-item{
    display:inline-block;
    padding:8px 12px;
    color:#4B0082;
    font-size:16px;
    text-decoration:none;
    white-space:nowrap;
}


/* =====================================================
   HOME PAGE
===================================================== */

.first-home-container{
    display:grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    gap: 15px;
    margin-top: 2px;
    background-color: #ffff;
}

.first-box{
    margin-top: 20px;
    padding: 2px;
    align-content: center;
}

.span2{
    color: #0D9488;
}

.first-btn{
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 2%;
}

.h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
}

.h2{
    color: #0D9488;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
}

.p1{
    margin-top: 7%;
    font-weight: 100;
    font-size: 30px;
}

.home-image{
    width: 800px;
    size: cover;
}

.home-image img{
    width: 800px; 
}

.choose-university{
    border: 1px solid black;
    background-color: #D9F275;
    border-radius: 20px;
    width: 30%;
    padding: 1%;
    text-align: center;
    margin-top: 40px;
}
.success-message {
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
    padding: 15px 20px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.error-message {
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
    padding: 15px 20px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}
.contact{
    border: 1px solid black;
    background-color: #ffff;
    border-radius: 20px;
    width: 20%;
    padding: 1%;
    text-align: center;
    margin-top: 40px;
    font-size: large;  
}


/* =====================================================
   STATISTICS
===================================================== */

.main-statistic{
    display: grid;
    grid-template-columns: 22.5% 22.5% 22.5% 24.5%;
    background-color: #0D9488;
    width: 98%;
    margin-left: 1%;
    border-radius: 20px;
    padding-left: 7%;
    margin-top: 8px;
}

.statistic-boxes{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    height: 110px;
    align-items: center;
}

.p3{
    color: #ffff;
    font-size: large;
}

.f-icons img{
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.f-icons{
    display: flex;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    background-color: #ffff;
    align-items: center;
    justify-content: center;
}


/* =====================================================
   HOW IT WORKS
===================================================== */

.functionality-box{
    width: 99%;
    background-color: #f3f4f6;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 26px;
    margin: 3% auto 6%;
    padding: 24px 28px 30px;
    box-sizing: border-box;
}

.how-it-works{
    margin: 0 0 28px;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.functionality{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 0;
    min-height: 270px;
}

.online-application,
.make-payment,
.application-review,
.procedure-account-creation{
    position: relative;
    padding: 0 22px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.functionality > div + div {
    border-left: 1px solid rgba(15, 23, 42, 0.2);
}

.function-icons {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #0D9488;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.2);
}

.function-icons img{
    width: 24px;
    height: 24px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.numbering{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.25);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.functions {
    width: 100%;
}

.name-function{
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #111827;
}

.p5 {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #111827;
}


/* =====================================================
   READY BOX
===================================================== */

.ready-box{
    display: grid;
    grid-template-columns: 10% 1fr 1fr;
    background-color: #0D9488;
    width: 98%;
    height: 110px;
    margin-left: 1%;
    border-radius: 20px;
    padding-left: 2%;
    margin-top: 3%;
    align-content: center;
    justify-content: center;
}

.apply-for-admission{
    border: 1px solid black;
    background-color: #D9F275;
    border-radius: 10px;
    width: 30%;
    padding: 1%;
    text-align: center;
    margin-right: 2%;
    justify-self: end;
}


/* =====================================================
   FOOTER
===================================================== */

.main-footer{
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    background-color: #0D9488;
    width: 98%;
    margin-left: 1%;
    border-radius: 26px;
    margin-top: 3%;
    padding: 28px 28px 10px;
    box-sizing: border-box;
    color: #0F172A;
}

.main-universe360{
    padding-right: 18px;
}

.univ360{
    display: flex;
    flex-direction: column;
}

.footer-title{
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 14px;
}

.middle-footer{
    font-size: 17px;
    color: #111827;
    line-height: 1.5;
    margin: 0 0 18px;
    max-width: 250px;
}

.social-media-footer{
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.whatsapp-footer a,
.instagram-footer a,
.facebook-footer a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid rgba(17, 24, 39, 0.9);
}

.whatsapp-footer img,
.instagram-footer img,
.facebook-footer img{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.quick-links-footer ul,
.resources-footer ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 14px;
}

.quick-links-footer .nav-item,
.resources-footer .nav-item{
    margin: 0;
}

.quick-links-footer .nav-item a,
.resources-footer .nav-item a{
    font-size: 18px;
    color: #111827;
    text-decoration: none;
    font-weight: 500;
}

.quick-links-footer .nav-item a:hover,
.resources-footer .nav-item a:hover{
    text-decoration: underline;
}

.contact-us-footer{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.contact-item img{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255,255,255,0.2);
    padding: 2px;
}

.contact-item p{
    font-size: 18px;
    color: #111827;
    margin: 0;
    line-height: 1.4;
}

.footer-bottom{
    grid-column: 1 / -1;
    border-top: 1px solid rgba(15, 23, 42, 0.22);
    margin-top: 18px;
    padding-top: 14px;
    text-align: center;
}

.footer-bottom p{
    font-size: 15px;
    color: #111827;
    margin: 0;
}

/* =====================================================
   LANDING PAGE RESPONSIVE LAYOUT
===================================================== */
@media (max-width: 900px) {
    body {
        padding-top: 82px;
        overflow-x: hidden;
    }

    .header,
    .second-header {
        width: 100%;
        margin-left: 0;
        padding: 8px 12px;
    }

    .header-middle,
    .second-header-middle {
        display: none;
    }

    .header-right,
    .second-header-right {
        gap: 8px;
        padding-right: 0;
    }

    .header-right .login-btn,
    .header-right .apply-btn,
    .second-header .login-btn,
    .second-header .apply-btn {
        min-width: 0;
        padding: 6px 12px;
        font-size: 13px;
    }

    .logo img {
        width: 120px;
        height: 64px;
    }

    .first-home-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 18px;
    }

    .first-box {
        margin-top: 0;
    }

    .h1 {
        font-size: 40px;
        line-height: 1.12;
    }

    .p1 {
        margin-top: 24px;
        font-size: 20px;
        line-height: 1.5;
    }

    .home-image {
        width: 100%;
        text-align: center;
    }

    .home-image img {
        width: min(100%, 620px);
        height: auto;
    }

    .first-btn {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 18px;
    }

    .choose-university,
    .contact {
        width: auto;
        min-width: 150px;
        margin-top: 0;
        padding: 10px 16px;
    }

    .main-statistic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        margin-left: 0;
        padding: 8px 18px;
    }

    .statistic-boxes {
        height: 82px;
        grid-template-columns: auto 1fr;
        gap: 10px;
    }

    .functionality-box,
    .ready-box,
    .main-footer {
        width: 100%;
        margin-left: 0;
    }

    .functionality {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 0;
    }

    .online-application,
    .make-payment,
    .application-review,
    .procedure-account-creation {
        min-height: 190px;
        padding: 0 14px;
    }

    .ready-box {
        grid-template-columns: auto 1fr auto;
        height: auto;
        min-height: 110px;
        padding: 18px;
        gap: 14px;
    }

    .apply-for-admission {
        width: auto;
        min-width: 110px;
        margin-right: 0;
        padding: 10px 14px;
    }

    .main-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .header-right .apply-btn,
    .second-header .apply-btn {
        display: none;
    }

    .first-home-container {
        padding: 22px 12px;
    }

    .h1 {
        font-size: 34px;
    }

    .p1 {
        font-size: 18px;
    }

    .main-statistic,
    .functionality,
    .main-footer {
        grid-template-columns: 1fr;
    }

    .functionality > div + div {
        border-left: 0;
        border-top: 1px solid rgba(15, 23, 42, 0.2);
        padding-top: 24px;
    }

    .ready-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ready-box .f-icons,
    .apply-for-admission {
        justify-self: center;
    }

    .apply-for-admission {
        width: 100%;
    }
}


/* =====================================================
   UNIVERSITY PAGE
===================================================== */

.main-university-container{
    width: 100%;
    margin: 0;
    background-color: #F3F5F9;
    margin-bottom: 3%;
    padding: 32px 20px 40px;
    box-sizing: border-box;
}

.university-page-header {
    padding: 0 8px 8px;
    margin-bottom: 24px;
}

.university-page-header h1 {
    margin: 0 0 8px;
    font-size: 36px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 700;
}

.university-page-header p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #334155;
}

.university-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.university-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    padding: 26px 20px 22px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.university-logo-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6px auto 20px;
    border: 2px solid #0f172a;
    background: #0f172a;
}

.dark-logo {
    background: #0f172a;
    border-color: #0f172a;
}

.light-logo {
    background: #f8fafc;
    border-color: #0f172a;
}

.university-logo-wrap img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

.university-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.3;
    color: #111827;
    font-weight: 700;
    min-height: 78px;
}

.location-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: #111827;
    margin-bottom: 14px;
}

.location-dot {
    font-size: 16px;
    color: #0D9488;
    line-height: 1;
}

.university-card p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    min-height: 52px;
}

.university-card a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: #D9F275;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
}

.university-card a:hover {
    background: #0D9488;
    color: #ffffff;
}


/* =====================================================
   UNIVERSITY HERO
===================================================== */

.search-university-box{
    position: relative;
    width: 100%;
    height: 630px;
    border: none;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('../images/bguni.jpg');

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.your-future-box{
    position: relative;
    z-index: 2;
    width: 90%;
    height: auto;
    margin: 180px auto 0;
    padding: 20px;
    background: transparent;
    border: none;
    text-align: center;
    box-sizing: border-box;
}

.your-future-box h1{
    color: #fff;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 auto 50px;
    text-align: center;
}

.span1{
    display: inline;
    color: #0D9488;
    font-size: inherit;
    font-weight: 700;
    margin: 0;
}

.your-future-box p{
    color: #fff;
    font-size: 30px;
    line-height: 1.5;
    margin: 0 auto 35px;
    max-width: 1100px;
    text-align: center;
}


/* =====================================================
   UNIVERSITY SEARCH
===================================================== */

.placeholder-search-university{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 20px auto 0;
}

.placeholder-search-university input{
    width: 75%;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    outline: none;
    font-size: 16px;
    box-sizing: border-box;
    background-color: transparent;
    color: #ffffff;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.placeholder-search-university input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.placeholder-search-university input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn{
    width: 25%;
    background-color: #0D9488;
    color: #fff;
    border: none;
    padding: 15px 18px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.search-btn:hover {
    background-color: #0a7a70;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.view-univ-btn{
    font-size: 20px;
    margin-top: 5%;
}

.search-university-placeholder{
    width: 70%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-left: 1%;
}

.h4{
    margin-left: 1%;
    font-size: 30px;
}

.p8{
    margin-top: 20px;
    font-size: 20px;
    font-weight: 100;
    margin-left: 1%;
}

.list-of-universities,
.location-university,
.list-of-university-box,
.university-icons,
.s-icons,
.university-specialty,
.university-name-box,
.region,
.apply-for-university,
.view-univ-btn {
    display: none;
}


/* =====================================================
   ADMISSION LAYOUT
===================================================== */

.main-admission-container,
.guardian-application-box,
.upload-application-box {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 25px;
    margin-top: 7%;
}

.main-admission-container,
.upload-page {
    width: 96%;
    margin-top: 8.5%;
}

.guardian-page {
    width: 96%;
    margin: 3% auto;
}

.guardian-application-box {
    margin-top: 8.5%;
}


/* =====================================================
   PAGE INTROS
===================================================== */

.application-intro,
.guardian-intro,
.upload-intro {
    padding: 20px;
}

.application-intro h1,
.guardian-intro h1,
.upload-intro h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.orange-line,
.guardian-orange-line,
.upload-orange-line {
    width: 50px;
    height: 4px;
    margin: 12px 0;
    background-color: #F59E0B;
    border-radius: 4px;
}

.application-intro p,
.guardian-intro p,
.upload-intro p {
    max-width: 300px;
    margin: 0;
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
}


/* =====================================================
   CARD & CONTENT CONTAINERS
===================================================== */

.application-content,
.guardian-content,
.upload-content,
.announcement-section {
    background-color: #fff;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}


/* =====================================================
   PROGRESS STEPS
===================================================== */

.progress-container,
.guardian-progress,
.upload-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.step,
.guardian-step,
.upload-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.step span,
.guardian-step span,
.upload-step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #E2E8F0;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.step p,
.guardian-step p,
.upload-step p {
    font-size: 12px;
    color: #64748B;
    margin: 0;
    text-align: center;
}

.step.active span,
.step.completed span,
.guardian-step.active span,
.guardian-step.completed span,
.upload-step.active span,
.upload-step.completed span {
    background-color: #0D9488;
    color: #fff;
}


/* =====================================================
   FORMS
===================================================== */

.form-container h2,
.guardian-form-container h2 {
    font-size: 18px;
    margin: 0 0 20px;
    color: #0F172A;
}

.upload-form-container h2 {
    font-size: 18px;
    margin: 0 0 15px;
    color: #0F172A;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.personal-form-grid {
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
}

.university-form-grid {
    grid-auto-flow: row;
}

.guardian-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.form-group,
.guardian-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.form-group label,
.guardian-form-group label {
    font-size: 16px;
    color: #334155;
    font-weight: 600;
}

.form-group input,
.form-group select,
.guardian-form-group input {
    width: 100%;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
    background-color: #fff;
    color: #111827;
    outline: none;
    min-height: 65px;
}

.form-group select,
.form-group select option,
.guardian-form-group select,
.guardian-form-group select option,
select,
select option,
#gender,
#gender option,
#gender:focus,
#gender option:checked {
    color: #111827 !important;
    background-color: #fff !important;
    -webkit-text-fill-color: #111827 !important;
}

.form-group input:focus,
.form-group select:focus,
.guardian-form-group input:focus {
    border-color: #0D9488;
}


/* =====================================================
   BUTTONS
===================================================== */

.next-container,
.guardian-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
}

.upload-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 20px;
}

.next-btn,
.back-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
}

.guardian-back-btn,
.guardian-next-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
}

.next-btn,
.guardian-next-btn {
    background-color: #0D9488;
    color: #fff;
}

.back-btn,
.guardian-back-btn {
    background-color: #fff;
    color: #334155;
    border: 1px solid #CBD5E1;
}

.upload-back-btn,
.upload-next-btn {
    display: inline-block;
    padding: 7px 17px;
    border-radius: 10px;
    font-size: 11px;
    text-decoration: none;
}

.upload-back-btn {
    color: #334155;
    background-color: #fff;
    border: 1px solid #94A3B8;
}

.upload-next-btn {
    color: #111827;
    background-color: #D9F275;
    border: 1px solid #D9F275;
}


/* =====================================================
   PROGRAM & ANNOUNCEMENTS
===================================================== */

.program-section {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.program-intro h3 {
    font-size: 20px;
    color: #0F172A;
    margin: 0 0 10px;
}

.program-intro p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 16px;
}

.view-programs {
    background: none;
    border: 1px solid #0D9488;
    color: #0D9488;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
}

.program-card {
    background-color: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.announcement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; 
  height: 48px; 
}

.announcement-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%; 
  object-fit: cover; 
}

.program-card h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.program-card p {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 14px;
}

.program-card a,
.announcement-header a {
    font-size: 16px;
    color: #0D9488;
    text-decoration: none;
}

.program-card a {
    font-weight: 600;
}

.announcement-section {
    grid-column: 1 / -1;
    margin-top: 30px;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.announcement-header h2 {
    font-size: 18px;
    margin: 0;
}

.announcement-line {
    width: 40px;
    height: 3px;
    background-color: #F59E0B;
    border-radius: 4px;
    margin-top: 8px;
}

.announcement {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #F1F5F9;
}

.announcement:last-child {
    border-bottom: none;
}

.announcement-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.announcement-content h4 {
    font-size: 18px;
    margin: 0 0 4px;
}

.announcement-content p {
    font-size: 16px;
    color: #64748B;
    margin: 0;
}

.announcement .date {
    margin-left: auto;
    font-size: 16px;
    color: #94A3B8;
}


/* =====================================================
   UPLOAD
===================================================== */

.upload-item {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #CBD5E1;
    margin-bottom: 10px;
    padding: 5px 8px;
    box-sizing: border-box;
}

.upload-item > label:first-child {
    font-size: 12px;
    color: #334155;
}

.upload-file-button {
    height: 50px;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px dashed #CBD5E1;
    border-radius: 5px;
    background-color: #fff;
    color: #334155;
    font-size: 10px;
    cursor: pointer;
    box-sizing: border-box;
}

.upload-file-button input {
    display: none;
}

.upload-icon {
    font-size: 16px;
    color: #64748B;
}


/* =====================================================
   UNIVERSITY OF BAMENDA HERO
===================================================== */

.univ-hero {
    position: relative;
    width: 100%;
    height: 690px;
    margin: 0;
    padding: 0;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('../images/image5.jpg');

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}

.hero-text {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin-top: 80px;
    text-align: center;
}

.hero-text h1 {
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 auto 25px;
    text-align: center;
}

.hero-text p {
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto 35px;
    text-align: center;
}

.btn-hero-apply {
    display: inline-block;
    background-color: #D9F275;
    color: #0F172A;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-hero-apply:hover {
    background-color: #0D9488;
    color: #fff;
}


/* =====================================================
   UNIVERSITY ACTION CARDS
===================================================== */

.univ-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 30px 30px;
}

.action-card {
    background-color: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 26px 22px 22px;
    text-align: center;
    min-height: 332px;
    margin-top: 4%;
    align-content: center;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.action-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: #F0FDFA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
}

.action-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #111827;
    line-height: 1.2;
}

.action-card p {
    font-size: 17px;
    color: #334155;
    margin-bottom: 22px;
    line-height: 1.5;
}

.action-card a {
    font-size: 18px;
    color: #0D9488;
    font-weight: 600;
    text-decoration: none;
}

.t-icons img{
    width: 22px;
    height: 22px;
    border-radius: 100%;
    object-fit: cover;
}

.t-icons{
    display: flex;
    border-radius: 100%;
    width: 46px;
    height: 46px;
    background-color: #0D9488;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 8px 18px rgba(13, 148, 136, 0.18);
}


/* =====================================================
   REGISTRATION PAYMENT
===================================================== */

.momo-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
    margin-top: 2%;
}

.momo-logo img{
    width: 80px;
    height: 50px;
    size: cover;
}

.momo-logo{
    width: 80px;
    height: 50px;
    border-radius: 6px;
    border: 1px solid black;
    size: cover;
    background-image: url('../images/momo-logo.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.form-group{
    margin-top: 3%;
}

.name-reg{
    height: 100%;
}

.form-group input {
    width: 100%;
    height: 24px;
    padding: 23px 8px;
    font-size: 20px;
    border: 1px solid rgba(0, 0, 0, 0.326);
}

.fee-due{
    margin-top: 1%;
}

.form-group select {
    height: 20px;
    padding: 24px 8px;
}


/* =====================================================
   TUITION PAYMENT
===================================================== */

.pay-now-btn {
    color: #111827;
    background-color: #D9F275;
    border: 1px solid black;
    width: 30%;
    padding: 12px;
    margin-left: 40%;
    margin-top: 1%;
}

.fee-row{
    border: 1px solid rgba(0, 0, 0, 0.289); 
    margin-top: 12%;
    padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.fees-row{
    border: 1px solid rgba(0, 0, 0, 0.289); 
    margin-top: 1%;
    padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.pay-note{
    margin-left: 5px;
    margin-top: 5%;
    font-size: 16px;
    font-weight: 100;
}


.mainslider-box{
    width: 100%;
    margin-left: 0;
    border-radius: 30px;
    margin-top: 5%;
}


.carousel-box{
    width: 98%;
    overflow: hidden;
    height: 140px;
    margin-left: 1%;
    margin-top: 3%;
    margin-bottom: 2%;
}

.carousel-content{
    display: flex;
    width: max-content;
    gap: 20px;
    height: 160px;
    animation: slideLeft 50s linear infinite;
}

.carousel-box:hover .carousel-content{
    animation-play-state: paused;
}



.carousel-box-inverse{
    width: 98%;
    overflow: hidden;
    height: 160px;
    margin-left: 1%;
    margin-bottom: 2%;
    margin-top: 1%;
}

.carousel-content-inverse{
    display: flex;
    width: max-content;
    gap: 20px;
    height: 100%;
    animation: slideRight 50s linear infinite;
}

.carousel-box-inverse:hover .carousel-content-inverse{
    animation-play-state: paused;
}



.univ-logo-slider{
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    text-align: center;
    border-radius: 20px;
    padding: 20px 0;
   background-color:white;
}

.univ-logo-slider a{
    display: block;
    width: 100%;
    height: 100%;
}

.univ-logo-slider img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin-bottom: 2%;
}


@keyframes slideLeft{

    from{
        transform: translateX(0);
    }

    to{
        transform: translateX(-50%);
    }

}


/* =====================================================
   SECOND SLIDER ANIMATION
   RIGHT
===================================================== */

@keyframes slideRight{

    from{
        transform: translateX(-50%);
    }

    to{
        transform: translateX(0);
    }

}



.verify-page {
    width: 92%;
    margin: 20px auto;
    background: white;
    border: 1px solid #ddd;
}

.verify-container {
    display: grid;
    grid-template-columns: 28% 72%;
}

.verify-intro {
    padding: 55px 30px;
    border-right: 1px solid #ddd;
}

.verify-intro h1 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.green-line {
    width: 60px;
    height: 4px;
    background: orange;
    margin-bottom: 25px;
}

.verify-intro p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.verify-content {
    padding: 35px;
}

.progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.progress-step {
    text-align: center;
}

.progress-step span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #aaa;
    color: white;
    margin: auto;
    font-weight: bold;
}

.progress-step.active span {
    background: #0D9488;
}

.progress-step p {
    font-size: 12px;
    margin-top: 7px;
}

.progress-line {
    width: 100px;
    height: 1px;
    background: #ccc;
    margin: 0 10px;
}

.payment-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.verification-box,
.receipt-box {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 25px;
    background: white;
}

.verification-box h2,
.receipt-box h2 {
    margin-top: 0;
    font-size: 22px;
}

.description {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}



.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 7px;
}

.form-group input {
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #aaa;
    border-radius: 5px;
}



.fee-options {
    display: flex;
    gap: 10px;
    align-items: center;
}

.fee-options input {
    display: none;
}

.fee-options label {
    border: 1px solid #aaa;
    padding: 9px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0;
    font-size: 13px;
}

.fee-options input:checked + label {
    background: #0d94892e;
    border-color: #0D9488;
    color: #0D9488;
}



.matricule-field {
    display: none;
}

.verify-page:has(#tuition:checked) .matricule-field {
    display: block;
}



.verify-btn {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 5px;
    background:#0D9488;
    color:white;
    font-weight: bold;
    cursor: pointer;
}


.verify-info {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
    background: #f4faef;
    border: 1px solid #d5e8c9;
    border-radius: 7px;
}

.verify-info p {
    font-size: 12px;
    margin: 3px 0;
}


.receipt-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.receipt-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e4f5d9;
    color: #0D9488;
}

.success-icon {
    width: 55px;
    height: 55px;
    margin: 20px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e3f5d8;
    color: #0D9488;
    font-size: 32px;
    font-weight: bold;
}

.receipt-box h3 {
    text-align: center;
    color: #0D9488;
}

.success-text {
    text-align: center;
    color: #555;
    font-size: 13px;
}

.receipt-details {
    margin-top: 25px;
}

.receipt-details div {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.receipt-details span {
    color: #555;
}

.receipt-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.receipt-buttons button {
    flex: 1;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
}

.back-btn {
    background: white;
    border: 1px solid #0D9488;
    color: #0D9488;
}

.print-btn {
    background: #0D9488;
    border: none;
    color: white;
    font-weight: bold;
}



@media print {

    .verify-intro,
    .verification-box,
    .progress,
    .back-btn,
    .print-btn {
        display: none;
    }

    .verify-container {
        display: block;
    }

    .verify-content {
        padding: 0;
    }

    .payment-area {
        display: block;
    }

    .receipt-box {
        border: none;
        width: 100%;
    }

}



.contact-page {
    width: 100%;
    min-height: 100vh;
    background: #f3f4f6;
    padding: 36px 0 60px;
    font-family: Arial, sans-serif;
    color: #111827;
}

.contact-hero {
    text-align: center;
    margin-bottom: 28px;
}

.contact-hero h1 {
    font-size: 52px;
    margin: 0 0 12px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.04em;
}

.contact-hero h1 span {
    color: #D9F275;
}

.contact-hero p {
    color: #4b5563;
    font-size: 20px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 700px;
    font-weight: 400;
}

.contact-box {
    width: 86%;
    max-width: 1180px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    display: grid;
    grid-template-columns: 46% 54%;
    padding: 36px 34px 28px;
    box-sizing: border-box;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.contact-info {
    padding: 0 36px 0 8px;
    border-right: 1px solid #e5e7eb;
}

.contact-info h2,
.contact-form h2 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: #111827;
}

.green-line {
    width: 60px;
    height: 4px;
    background: #D9F275;
    margin: 14px 0 18px;
    border-radius: 999px;
}

.contact-intro,
.form-intro {
    color: #374151;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 26px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 24px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: #edf7d3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(183, 214, 46, 0.15);
}

.contact-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #111827;
}

.contact-item p {
    margin: 0;
    color: #111827;
    font-size: 18px;
    line-height: 1.55;
}

.contact-form {
    padding-left: 38px;
}

.form-intro {
    margin-bottom: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.input-box {
    height: 52px;
    border: 1px solid #dfe3e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    margin-bottom: 18px;
    box-sizing: border-box;
    background: #ffffff;
}

.input-box input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: #111827;
    background: transparent;
}

.input-box input::placeholder,
.textarea-box textarea::placeholder {
    color: #9ca3af;
}

.textarea-box {
    min-height: 150px;
    border: 1px solid #dfe3e8;
    border-radius: 12px;
    padding: 15px 16px;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    background: #ffffff;
}

.textarea-box textarea {
    width: 100%;
    height: 118px;
    border: none;
    outline: none;
    resize: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #111827;
    background: transparent;
}

.contact-form button {
    margin-top: 22px;
    background: #D9F275;
    border: none;
    border-radius: 12px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 18px rgba(183, 214, 46, 0.22);
}

.contact-form button:hover {
    background: #cfe85a;
    transform: translateY(-1px);
}