/* =========================
RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
background:#f7f7f7;
overflow-x:hidden;
color:#111;
}

/* =========================
TOP BAR
========================= */

.top-bar{
background:#06152f;
padding:10px 7%;
display:flex;
justify-content:space-between;
align-items:center;
color:#fff;
font-size:14px;
}

.top-left,
.top-right{
display:flex;
align-items:center;
gap:25px;
}

.top-right i,
.top-left i{
color:#caa25d;
margin-right:8px;
}

/* =========================
NAVBAR
========================= */

.navbar{
background:#fff;
padding:18px 7%;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
backdrop-filter:blur(12px);
}

.logo img{
width:220px;
height:auto;
object-fit:contain;
}

.nav-links{
display:flex;
gap:35px;
}

.nav-links a{
text-decoration:none;
color:#111;
font-weight:600;
font-size:15px;
transition:0.3s;
}

.nav-links a:hover{
color:#caa25d;
}

.nav-btn{
background:#caa25d;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
color:#fff;
transition:0.3s;
}

.nav-btn:hover{
background:#071a35;
transform:translateY(-3px);
}

/* =========================
HERO SECTION
========================= */

.hero{
width:100%;
min-height:100vh;

background:
linear-gradient(rgba(3,14,31,0.50), rgba(3,14,31,0.50)),
url('https://oscarmegadevelopers.com/images/bg_oscarmegadevelopers_mumbai.png');

background-size:cover;
background-position:center;
background-repeat:no-repeat;

display:flex;
align-items:center;
padding:120px 7%;
position:relative;
}

.hero-content{
max-width:760px;
color:#fff;
animation:fadeUp 1.2s ease;
}

.hero-subtitle{
color:#caa25d;
font-weight:600;
letter-spacing:2px;
margin-bottom:20px;
font-size:15px;
}

.hero-title{
font-size:84px;
line-height:1.05;
font-family:'Playfair Display',serif;
margin-bottom:25px;
}

.hero-title span{
color:#caa25d;
}

.hero-text{
font-size:18px;
line-height:1.9;
color:#ddd;
margin-bottom:40px;
max-width:680px;
}

.hero-buttons{
display:flex;
gap:20px;
}

.hero-btn{
background:#caa25d;
padding:16px 34px;
border-radius:6px;
text-decoration:none;
color:#fff;
font-weight:600;
transition:0.3s;
display:inline-flex;
align-items:center;
gap:10px;
}

.hero-btn:hover{
background:#fff;
color:#071a35;
transform:translateY(-3px);
}

.hero-btn-outline{
border:2px solid #fff;
padding:16px 34px;
border-radius:6px;
text-decoration:none;
color:#fff;
font-weight:600;
transition:0.3s;
display:inline-flex;
align-items:center;
gap:10px;
}

.hero-btn-outline:hover{
background:#fff;
color:#071a35;
transform:translateY(-3px);
}

/* =========================
FLOATING BOX
========================= */

.floating-box{
position:absolute;
right:30px;
top:50%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:15px;
}

.float-card{
background:#071a35;
padding:18px;
border-radius:12px;
width:140px;
text-align:center;
color:#fff;
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 5px 25px rgba(0,0,0,0.2);
transition:0.3s;
}

.float-card:hover{
transform:translateX(-5px);
background:#caa25d;
}

.float-card i{
font-size:26px;
margin-bottom:12px;
}

.float-card p{
font-size:13px;
font-weight:600;
line-height:1.5;
}

/* =========================
TRUST SECTION
========================= */

.trust-section{
width:90%;
margin:auto;
margin-top:-70px;
position:relative;
z-index:99;
}

.trust-container{
background:#fff;
border-radius:18px;
padding:40px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.trust-box{
display:flex;
align-items:center;
gap:20px;
padding:20px;
border-right:1px solid #eee;
}

.trust-box:last-child{
border-right:none;
}

.trust-icon{
width:70px;
height:70px;
background:#071a35;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
color:#caa25d;
font-size:28px;
flex-shrink:0;
}

.trust-content h3{
font-size:22px;
color:#071a35;
margin-bottom:8px;
}

.trust-content p{
font-size:14px;
color:#666;
line-height:1.7;
}

/* =========================
ABOUT SECTION
========================= */

.about-section{
padding:100px 7%;
background:#fff;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.about-image{
position:relative;
}

.about-image img{
width:100%;
border-radius:18px;
object-fit:cover;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.experience-box{
position:absolute;
bottom:30px;
left:30px;
background:#071a35;
padding:30px;
border-radius:14px;
color:#fff;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.experience-box h2{
font-size:52px;
color:#caa25d;
margin-bottom:5px;
}

.experience-box p{
font-size:15px;
line-height:1.6;
}

.about-text{
font-size:16px;
line-height:1.9;
color:#666;
margin-bottom:25px;
}

.about-features{
display:flex;
flex-direction:column;
gap:22px;
margin-top:35px;
margin-bottom:40px;
}

.feature-box{
display:flex;
gap:20px;
align-items:flex-start;
}

.feature-box i{
width:65px;
height:65px;
background:#071a35;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
color:#caa25d;
flex-shrink:0;
}

.feature-box h4{
font-size:20px;
margin-bottom:8px;
color:#071a35;
}

.feature-box p{
font-size:15px;
line-height:1.7;
color:#666;
}

.about-btn{
display:inline-flex;
align-items:center;
gap:10px;
background:#caa25d;
padding:16px 34px;
border-radius:6px;
text-decoration:none;
color:#fff;
font-weight:600;
transition:0.3s;
}

.about-btn:hover{
background:#071a35;
transform:translateY(-3px);
}

/* =========================
MAIN SECTION
========================= */

.main-section{
padding:90px 7%;
display:grid;
grid-template-columns:1.1fr 1fr;
gap:45px;
}

.section-small{
color:#caa25d;
font-weight:700;
margin-bottom:10px;
letter-spacing:1px;
}

.section-title{
font-size:52px;
font-family:'Playfair Display',serif;
margin-bottom:40px;
color:#071a35;
}

/* =========================
EXPERTISE
========================= */

.expertise-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.expertise-card{
background:#fff;
padding:30px 20px;
border-radius:12px;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.expertise-card:hover{
transform:translateY(-10px);
}

.expertise-card i{
font-size:42px;
color:#071a35;
margin-bottom:20px;
}

.expertise-card h4{
font-size:17px;
margin-bottom:12px;
color:#071a35;
}

.expertise-card p{
font-size:14px;
line-height:1.7;
color:#666;
}

/* =========================
PROJECTS
========================= */

.project-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.project-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 5px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.project-card:hover{
transform:translateY(-8px);
}

.project-card img{
width:100%;
height:220px;
object-fit:cover;
}

.project-content{
padding:22px;
}

.project-status{
display:inline-block;
background:#caa25d;
color:#fff;
padding:6px 14px;
border-radius:30px;
font-size:12px;
font-weight:600;
margin-bottom:15px;
}

.project-content h3{
font-size:21px;
margin-bottom:12px;
color:#071a35;
}

.project-content p{
font-size:14px;
line-height:1.7;
color:#666;
margin-bottom:20px;
}

.project-btn{
text-decoration:none;
color:#071a35;
font-weight:700;
}

/* =========================
BOTTOM CTA
========================= */

.bottom-strip{
background:#071a35;
padding:35px 7%;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:25px;
}

.bottom-left h3{
color:#fff;
font-size:32px;
margin-bottom:10px;
}

.bottom-left p{
color:#ddd;
}

.bottom-btn{
background:#caa25d;
padding:16px 34px;
border-radius:6px;
text-decoration:none;
font-weight:600;
color:#fff;
transition:0.3s;
}

.bottom-btn:hover{
background:#fff;
color:#071a35;
transform:translateY(-3px);
}

/* =========================
QUALITY STRIP
========================= */

.quality-strip{
background:#031021;
padding:35px 7%;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.quality-box{
display:flex;
align-items:center;
gap:18px;
color:#fff;
}

.quality-box i{
font-size:34px;
color:#caa25d;
}

.quality-box h4{
margin-bottom:6px;
font-size:18px;
}

.quality-box p{
font-size:14px;
color:#ccc;
}

/* =========================
FOOTER
========================= */

.footer-credit{
background:#020b18;
text-align:center;
padding:18px;
font-size:14px;
color:#999;
}

.footer-credit span{
color:#caa25d;
font-weight:600;
}

/* =========================
ANIMATION
========================= */

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

.hero-title{
font-size:64px;
}

.main-section{
grid-template-columns:1fr;
}

.project-grid{
grid-template-columns:1fr;
}

}

@media(max-width:991px){

.nav-links{
display:none;
}

.hero{
padding-top:120px;
padding-bottom:100px;
}

.hero-title{
font-size:52px;
}

.trust-container,
.expertise-grid,
.quality-strip{
grid-template-columns:1fr;
}

.about-container{
grid-template-columns:1fr;
}

.trust-box{
border-right:none;
border-bottom:1px solid #eee;
}

.trust-box:last-child{
border-bottom:none;
}

.floating-box{
display:none;
}

}

@media(max-width:768px){

.top-bar{
flex-direction:column;
gap:12px;
}

.top-left,
.top-right{
flex-direction:column;
gap:10px;
}

.hero-title{
font-size:38px;
line-height:1.2;
}

.hero-buttons{
flex-direction:column;
}

.section-title{
font-size:38px;
}

.bottom-strip{
flex-direction:column;
align-items:flex-start;
}

.logo img{
width:170px;
}

.experience-box{
position:relative;
left:0;
bottom:0;
margin-top:20px;
width:100%;
}

}