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

body{

font-family:Arial,Helvetica,sans-serif;

background:white;

}

header{

width:100%;

height:95px;
padding:0 60px;

display:flex;

justify-content:space-between;

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



background:#111827;

box-shadow:0 2px 10px rgba(0,0,0,.08);

position:sticky;

top:0;

z-index:999;

}

.logo img{
    height:75px;
    width:auto;
}

nav{

display:flex;

gap:35px;

}

nav a{

text-decoration:none;

color:white;

font-weight:600;

font-size:15px;

transition:.3s;

}

nav a:hover{

color:#f59e0b;

}

.book-btn{

background:#111827;

color:white;

padding:14px 28px;

border-radius:6px;

text-decoration:none;

font-weight:bold;

transition:.3s;

}

.book-btn:hover{

background:#f58220;

}

/* HERO */

.hero{

display:flex;

height:620px;

}

.hero-left{

width:50%;

background:#111827;

color:white;

display:flex;

flex-direction:column;

justify-content:center;

padding:70px;

}

.hero-right{

width:50%;

}

.hero-right img{

width:100%;

height:620px;

object-fit:cover;

display:block;

}

.small-title{

color:#f59e0b;

font-size:13px;

letter-spacing:3px;

margin-bottom:20px;

}

.hero h1{

font-size:58px;

line-height:1.1;

margin-bottom:20px;

}

.hero h2{

color:#f59e0b;

font-size:32px;

margin-bottom:20px;

}

.hero p{

font-size:18px;

line-height:1.8;

color:#d1d5db;

max-width:520px;

margin-bottom:35px;

}

.hero-btn{

display:inline-block;

width:220px;

text-align:center;

padding:18px;

background:#f59e0b;

color:#111;

font-weight:bold;

border-radius:6px;

text-decoration:none;

transition:.3s;

}

.hero-btn:hover{

background:white;

}

.intro{

padding:80px 60px;

text-align:center;

background:white;

}

.sub-title{

color:#f59e0b;

letter-spacing:3px;

font-size:14px;

font-weight:bold;

}

.intro h2{

font-size:42px;

margin:20px 0;

color:#111827;

}

.intro p{

font-size:18px;

color:#666;

max-width:850px;

margin:auto;

line-height:1.8;

}

/* Contact */

.contact-section{
    padding:80px 10%;
    background:#f8f9fb;
}

.contact-section h1{
    text-align:center;
    font-size:48px;
    color:#111827;
}

.contact-section>p{
    text-align:center;
    color:#666;
    margin:15px auto 50px;
    max-width:700px;
}

.contact-grid{
    display:flex;
    gap:60px;
    flex-wrap:wrap;
}

.contact-info{
    flex:1;
    min-width:300px;
}

.contact-info h3{
    color:#0B4F9C;
    margin-top:25px;
}

.contact-info p{
    color:#444;
    font-size:18px;
}

.contact-form{
    flex:1;
    min-width:320px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:16px;
}

.contact-form button{
    background:#111827;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
}

.contact-form button:hover{
    background:#f59e0b;
    color:#111;
}

/* ABOUT PAGE */


.about-hero{

height:350px;

background:#111827;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

color:white;

}


.about-hero h1{

font-size:48px;

margin-bottom:15px;

}


.about-hero p{

font-size:20px;

color:#d1d5db;

}



.about-content{

display:flex;

gap:50px;

padding:80px 10%;

}



.about-text{

width:65%;

}


.about-text h2{

font-size:38px;

color:#111827;

margin-bottom:25px;

}


.about-text p{

font-size:18px;

line-height:1.8;

color:#555;

margin-bottom:20px;

}



.experience-box{

width:35%;

background:#f3f4f6;

padding:35px;

border-radius:10px;

}


.experience-box h3{

color:#0B4F9C;

font-size:28px;

}

#success-message{

display:none;

color:#0B4F9C;

font-size:20px;

font-weight:bold;

line-height:1.6;

}


#error-message{

display:none;

color:red;

font-size:18px;

}


.experience-box li{

margin:15px 0;

color:#444;

}



.mission{

background:#111827;

color:white;

text-align:center;

padding:70px 15%;

}/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width:768px){

header{
    flex-direction:column;
    height:auto;
    padding:15px;
}

.logo img{
    height:70px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin:15px 0;
}

.book-btn{
    width:100%;
    text-align:center;
}

.hero{
    flex-direction:column;
    height:auto;
}

.hero-left,
.hero-right{
    width:100%;
}

.hero-left{
    padding:40px 25px;
}

.hero-right img{
    width:100%;
    height:auto;
}

.hero h1{
    font-size:42px;
}

.hero h2{
    font-size:28px;
}

.hero p{
    font-size:18px;
}

.intro,
.contact-section,
.about-content,
.mission{
    padding:40px 20px;
}

.about-content{
    flex-direction:column;
}

.about-text,
.experience-box{
    width:100%;
}

.contact-grid{
    flex-direction:column;
}

.highlights{
    grid-template-columns:1fr;
}

}


.mission h2{

font-size:40px;

color:#f59e0b;

}


.mission p{

font-size:18px;

line-height:1.8;

}
.highlights{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

padding:70px 10%;

background:#f8f9fb;

text-align:center;

}


.highlight-box{

background:white;

padding:35px 20px;

.back-button{

display:inline-block;

margin-top:25px;

background:#111827;

color:white;

padding:14px 30px;

border-radius:6px;

text-decoration:none;

font-weight:bold;

transition:0.3s;

}


.back-button:hover{

background:#f59e0b;

color:#111;

}
