:root{
--navy:#03285d;
--gold:#e6b12b;
--green:#2f5a32;
--light:#faf8f4;
}

body{
font-family:'Poppins',sans-serif;
background:#fff;
color:#222;
}

.custom-navbar{
background:var(--navy);
padding:15px 0;
}

.navbar-brand img{
height:70px;
}

.nav-link{
color:#fff !important;
font-weight:500;
margin:0 15px;
}

.nav-link.active{
border-bottom:3px solid var(--gold);
}

.custom-btn{
background:#f4b21f;
padding:12px 22px;
font-weight:600;
border:none;
border-radius:10px;
}

.hero-section{
padding:50px 0;
}

.profile-image{
width:350px;
height:350px;
object-fit:cover;
border-radius:50%;
border:8px solid #e8dfcb;
}

.hero-name{
font-family:'Playfair Display',serif;
font-size:68px;
color:var(--navy);
margin-top:20px;
}

.hero-subtitle{
color:var(--green);
font-weight:500;
font-size:24px;
line-height:1.8;
}

.gold-divider{
width:120px;
height:4px;
background:var(--gold);
margin:20px auto;
border-radius:50px;
}

.intro-content p{
font-size:18px;
line-height:1.9;
margin-bottom:22px;
}

.mission-text{
font-family:'Playfair Display',serif;
color:var(--green);
font-weight:700;
line-height:1.5;
}

.services-section{
padding:50px 0;
}

.service-card{
background:#fff;
border:1px solid #ececec;
border-radius:18px;
padding:35px 25px;
text-align:center;
height:100%;
transition:.3s;
}

.service-card:hover{
transform:translateY(-8px);
}

.service-icon{
width:90px;
height:90px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto auto 20px;
font-size:34px;
}

.green{
background:#eef5ea;
color:#2d6a35;
}

.orange{
background:#fff2e5;
color:#f06d00;
}

.blue{
background:#eef5ff;
color:#0060d9;
}

.purple{
background:#f5efff;
color:#6d30d8;
}

.content-section{
padding:25px 0;
}

.content-box{
display:flex;
gap:25px;
}

.icon-col{
font-size:38px;
color:var(--green);
}

.university-section{
padding:30px 0;
}

.university-card{
border:1px solid #ece5d8;
border-radius:15px;
padding:25px;
}

.uni-logo{
max-width:100%;
max-height:100px;
}

.cta-section{
padding:50px 0;
}

.cta-box{
background:#f7f0e7;
padding:40px;
border-radius:18px;
}

.cta-box h2{
font-family:'Playfair Display',serif;
color:var(--navy);
font-weight:700;
}

.email{
font-weight:600;
color:var(--green);
}

.cta-btn{
background:#0d5d2c;
color:#fff;
padding:14px 25px;
border-radius:12px;
}

.footer{
background:var(--navy);
color:#fff;
padding:20px;
text-align:center;
font-weight:500;
}

@media(max-width:991px){

.hero-name{
font-size:48px;
}

.profile-image{
width:280px;
height:280px;
}

.content-box{
flex-direction:column;
}

}