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

html{
    scroll-behavior: smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

header{
    width: 100%;
    height: 75px;
    background: #063b2b;
    color: white;

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

    padding: 0 7%;
    position: sticky;
    top: 0;
    z-index: 1000;

    box-sizing: 0 2px 10px rgba(0,0,0,0.15);
}

.logo h2{
    font-size: 28px;
    letter-spacing: 2px;
}

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

nav ul li a{
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover{
    color: #f5c542;
}

#menu-btn{
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.hero{
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;
    padding: 40px 20px;
    background: linear-gradient(
        rgba(0, 45, 32, 0.72),
        rgba(0, 45, 32, 0.72)
    ),
    url("fgfg.jpg");
    background-size: cover;
    background-position: center;
}

.hero-text{
    max-width: 800px;
}

.hero h1{
    font-size: 58px;
    margin-bottom: 20px;
}

.hero p{
    font-size: 21px;
    margin-bottom: 35px;
}

.btn{
    display: inline-block;
    background: #f5c542;
    color: #111;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover{
    background: white;
    transform: translateY(-3px);
}

section{
    padding: 80px;
}

section h2{
    text-align: center;
    font-size: 36px;
    color:#643b2b ;
    margin-bottom: 25px;
}

section h2::after{
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #f5c542;
    margin: 12px auto 0;
}

.about p{
    max-width: 850px;
    margin: auto;
    font-size: 17px;
    color: #555;
}
.about-address{
    font-size: 18px;
    color: #333;
    font-weight: 500;
    line-height: 1.8;
    margin-top: 20px;
    text-align: center;
}
.about h3{
    color: #003366;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.provost-message{
    background: white;
    max-width: 1100px;
    margin: 20px auto;
}
.provost-message h2{
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}
.provost-message p{
    max-width: 900px;
    margin: 0 auto 18px;
    color: #555;
    text-align: center;
}
.provost-title{
    text-align: right;
    margin: 5px 0 0 0;
    max-width: none;
}
.provost-name{
    text-align: right;
    margin-bottom: 5px;
}
.courses{
    background: #f7f9f8;
}


.cards{
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.card{
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card h3{
    color: #063b2b;
    margin-bottom: 15px;
    font-size: 22px;
}

.card p{
    color: #666;
}

.gallery{
    background: white;
}

.images{
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.images img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.4s;
}

.images img:hover{
    transform: scale(1.04);
}

.contact{
    background: #f7f9f8;
}

form{
    max-width: 650px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

form input,
form textarea{
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

form input:focus,
form textarea:focus{
    border-color: #063b2b;
}

form textarea{
    min-height: 150px;
    resize: vertical;
}

form button{
    border: none;
    padding: 15px;
    background: #063b2b;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover{
     background: #f5c542;
     color: #111;
}

footer{
    background:#03271d;
    color:white;
    text-align:center;
    padding:30px 30px;
    margin-top:30px;
    box-sizing: border-box;
}
footerp{
    font-size:15px;
    margin:10px 0;
}
@media (max-width:768px){
    footer{
        padding:30px 24px;
        margin-top:30px;
    }
    footer p{
        font-size:14px;
        line-height:1.6;
    }
}

@media (max-width:900px) {
    header{
        padding: 0 5%;
    }
    nav ul{
        gap: 15px;
    }
    .hero h1{
        font-size: 45px;
    }
    .cards{
        grid-template-columns: repeat(2,1fr);
    }
    .images{
        grid-template-columns: repeat(2,1fr);
    }
}

@media ( max-width:650px){
    header{
       height: 70px;
    }
    #menu-btn{
        display: block;
    }
    nav ul{
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #063b2b;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    nav ul.active{
        display: flex;
    }
    nav ul li{
        padding: 10px;
    }
    .hero{
        min-height: 550px
    }
    .hero h1{
        font-size: 38px;
    }
    .hero p{
        font-size: 17px;
    }
    section h2{
        font-size: 30px;
    }
    .cards{
        grid-template-columns: 1fr;
    }
    .images{
        grid-template-columns: 1fr;
    }
    .images img{
        height: 240px;
    }
}

.contact-info{
    max-width: 650px;
    margin: 0 auto 30px;
    text-align: center;
}

.contact-info p{
    margin: 12px 0;
    color: #555;
    font-size: 17px;
}
.contact-info a{
    color: #063b2b;
    text-decoration: none;
    font-weight: bold;
}
.contact-info a:hover{
    color: #f5c542;
    text-decoration: underline;
}
.provost-signature{
    text-align: right;
    margin-top: 30px;
}
.provost-signature h4{
    margin: 0;
}
.provost-signature p{
    margin:5px 0 0 0;
}
.signature{
    text-align: right;
    margin-top: 30px;
}
.signature h4{
    margin: 0;
    color: #003366;
}
.signature span{
    display: block;
    margin-top: 5px;
    color: #555;
    font-weight: bold;
}