/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Montserrat',sans-serif;
color:#111;
background:#fff;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

/* TOP BAR */

.top-bar{
background:#06152f;
color:#fff;
padding:10px 7%;
display:flex;
justify-content:space-between;
}

.top-right{
display:flex;
gap:25px;
}

/* NAVBAR */

.navbar{
background:#fff;
padding:18px 7%;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 4px 20px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:999;
}

.logo img{
width:220px;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
text-decoration:none;
font-weight:600;
color:#111;
}

.nav-links a:hover,
.active{
color:#caa25d;
}

.nav-btn,
.hero-btn{
background:#caa25d;
padding:14px 28px;
color:#fff;
text-decoration:none;
border-radius:6px;
font-weight:600;
display:inline-block;
}

/* HERO */

.hero{
height:90vh;
display:flex;
align-items:center;
padding:0 7%;

background:
linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.40)),
url('images/aboutus_oscarmegadevelopers.jpg');

background-size:cover;
background-position:center;
}

.hero-content{
max-width:750px;
color:#fff;
}

.hero-content h4{
color:#caa25d;
margin-bottom:20px;
letter-spacing:2px;
}

.hero-content h1{
font-size:75px;
font-family:'Playfair Display',serif;
margin-bottom:20px;
}

.hero-content span{
color:#caa25d;
}

.hero-content p{
font-size:18px;
line-height:1.8;
margin-bottom:35px;
}

/* ABOUT COMPANY */

.about-company{
padding:70px 7%;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-text h5{
color:#caa25d;
letter-spacing:2px;
margin-bottom:15px;
}

.about-text h2{
font-size:52px;
font-family:'Playfair Display',serif;
color:#071a35;
margin-bottom:25px;
}

.about-text p{
line-height:2;
color:#666;
margin-bottom:20px;
}

.about-image img{
border-radius:20px;
}

/* SECTION TITLE */

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-title span{
color:#caa25d;
letter-spacing:2px;
font-weight:700;
}

.section-title h2{
font-size:52px;
font-family:'Playfair Display',serif;
color:#071a35;
margin:15px 0;
}

.section-title p{
max-width:850px;
margin:auto;
line-height:1.9;
color:#666;
}

/* WHO WE ARE */

.who-we-are{
padding:60px 7%;
background:#f8f8f8;
}

.who-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.who-card{
background:#fff;
padding:40px;
border-radius:15px;
box-shadow:0 5px 25px rgba(0,0,0,.06);
}

/* VISION MISSION */

.vision-mission{
padding:60px 7%;
background:#071a35;
color:#fff;
}

.vm-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.vision-box,
.mission-box{
background:rgba(255,255,255,.08);
padding:40px;
border-radius:15px;
}

/* DIRECTORS */

.directors{
padding:60px 7%;
}

.director-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.director-card{
background:#fff;
padding:40px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.director-card img{
width:220px;
height:220px;
border-radius:50%;
object-fit:cover;
margin:0 auto 25px;
}

.director-card span{
color:#caa25d;
font-weight:600;
display:block;
margin:10px 0 20px;
}
/* CORE VALUES */
.core-values{
padding:60px 7%;
background:#fff;
}

.values-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.value-card{
position:relative;
padding:45px 35px;
border-radius:18px;
background:#fff;
box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.value-number{
position:absolute;
top:10px;
right:20px;
font-size:75px;
font-weight:800;
color:rgba(202,162,93,.10);
}

.value-icon{
width:90px;
height:90px;
background:#071a35;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:25px;
}

.value-icon i{
font-size:34px;
color:#caa25d;
}

.gold-line{
width:60px;
height:3px;
background:#caa25d;
margin-bottom:20px;
}

/* WHY CHOOSE */

.why-choose{
padding:50px 7%;
background:#f8f8f8;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.why-card{
background:#fff;
padding:40px;
border-radius:15px;
box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.why-icon{
font-size:42px;
margin-bottom:20px;
}

/* COMMITMENT */

.commitment{
padding:60px 7%;
text-align:center;
}

.commitment p{
max-width:900px;
margin:auto;
line-height:2;
color:#666;
}

/* CTA */

.cta{
padding:120px 7%;
text-align:center;
color:#fff;

background:
linear-gradient(rgba(3,14,31,.50),rgba(3,14,31,.50)),
url('images/aboutus_footer_bg44.jpg');

background-size:cover;
background-position:center;
}

.cta h2{
font-size:55px;
font-family:'Playfair Display',serif;
margin-bottom:25px;
}

.cta p{
max-width:800px;
margin:auto;
margin-bottom:35px;
line-height:1.9;
}

/* FOOTER */

.footer{
background:
linear-gradient(rgba(7,26,53,.90),rgba(7,26,53,.90)),
url('images/aboutus_oscarmega_4');

background-size:cover;
background-position:center;

color:#fff;
padding:80px 7% 30px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
}

.footer a{
color:#ddd;
text-decoration:none;
line-height:2;
}

.footer-bottom{
text-align:center;
padding-top:30px;
margin-top:40px;
border-top:1px solid rgba(255,255,255,.1);
color:#aaa;
}

/* RESPONSIVE */

@media(max-width:991px){

.about-grid,
.vm-grid,
.director-grid,
.values-grid,
.why-grid,
.who-grid,
.footer-grid{
grid-template-columns:1fr;
}

.nav-links{
display:none;
}

.hero-content h1{
font-size:48px;
}

.section-title h2,
.about-text h2,
.cta h2{
font-size:38px;
}

}

.container{
width:100%;
max-width:1300px;
margin:auto;
}