/* PMG UPDATED STYLE.CSS v2 */

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Poppins',sans-serif;background:#fff;color:#222;line-height:1.7}

.container{max-width:1200px;margin:auto;padding:0 24px}
.narrow{max-width:850px;margin:auto}

.navbar{
position:sticky;
top:0;
z-index:1000;
background:#fff;
border-bottom:1px solid #ececec;
box-shadow:0 2px 15px rgba(0,0,0,.04);
}

.nav-wrap{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 0;
}

.logo-wrap{
display:flex;
align-items:center;
gap:14px;
font-weight:700;
font-size:1.05rem;
}

.logo{
    height:72px;
    max-width:320px;
    width:auto;
}

.nav-links{display:flex;gap:28px}

.nav-links a{
text-decoration:none;
color:#222;
font-weight:500;
transition:.3s;
}

.nav-links a:hover{
color:#D4AF37;
}

/* HERO */

.hero{
min-height:58vh;
padding:60px 0 40px;
background:linear-gradient(
135deg,
#1c2129 0%,
#2a313c 50%,
#384250 100%
);
color:#fff;
}

.hero-grid{
display:grid;
grid-template-columns:1.15fr 1fr;
gap:50px;
align-items:center;
}

.gold{
color:#D4AF37;
font-weight:700;
letter-spacing:2px;
}

.hero h1{
font-size:3.1rem;
line-height:1.05;
margin:12px 0 20px;
font-weight:800;
}

.lead{
font-size:1.15rem;
color:#d1d5db;
max-width:650px;
}

.hero-buttons{
margin-top:28px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:#D4AF37;
color:#fff;
padding:14px 28px;
border-radius:12px;
text-decoration:none;
font-weight:600;
}

.btn-outline{
border:2px solid #D4AF37;
color:#fff;
padding:14px 28px;
border-radius:12px;
text-decoration:none;
font-weight:600;
}

.hero-card{
    max-height:420px;
    overflow:hidden;
    border-radius:24px;
}

.hero-card img{
    width:100%;
    height:auto;
    display:block;
}
.ceo-box{
margin-top:12px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(10px);
padding:16px;
border-radius:16px;
border:1px solid rgba(255,255,255,.15);
}

.ceo-box p{color:#D4AF37}

.section{padding:90px 0}
.alt{background:#f8f8f8}

.section-title{
text-align:center;
font-size:2.5rem;
font-weight:800;
margin-bottom:35px;
}

/* PROJECTS */

.project-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}

.project-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 12px 30px rgba(0,0,0,.08);
transition:.35s;
}

.project-card:hover{
transform:translateY(-8px);
}

.project-image{
height:280px;
overflow:hidden;
}

.project-image img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.project-card:hover img{
transform:scale(1.08);
}

.card-body{padding:22px}

/* SERVICES */

.service-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

.service-card{
background:#fff;
padding:30px;
border-radius:18px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.service-card:hover{
border-bottom:4px solid #D4AF37;
}

/* TICKER FIX */

.logo-slider{
width:100%;
overflow:hidden;
position:relative;
margin:25px 0 60px;
}

.logo-track{
display:flex;
align-items:center;
gap:60px;
white-space:nowrap;
width:max-content;
animation:tickerMove 25s linear infinite;
}

.logo-track span{
font-weight:700;
color:#666;
}

@keyframes tickerMove{
0%{transform:translateX(0)}
100%{transform:translateX(-50%)}
}

.contact-box{
max-width:700px;
margin:auto;
text-align:center;
}

footer{
background:#111827;
color:#fff;
padding:60px 0;
text-align:center;
}

@media(max-width:992px){

.hero-grid,
.project-grid,
.service-grid{
grid-template-columns:1fr 1fr;
}

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

.hero h1{
font-size:2.6rem;
}
}

@media(max-width:768px){

.nav-links{display:none}

.project-grid,
.service-grid{
grid-template-columns:1fr;
}

.hero{
padding:40px 0 30px;
}

.hero h1{
font-size:2.2rem;
}

.logo{
height:55px;
max-width:180px;
}

.hero-card img{
max-height:320px;
}
}
