*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#000;
color:#fff;
overflow-x:hidden;
min-height:100vh;
}

/* =========================
BACKGROUND VIDEO
========================= */

#bg-video{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.65);
z-index:-1;
}

/* =========================
NAVBAR
========================= */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 8%;
}

.logo{
font-size:28px;
font-weight:700;
color:#ff6b00;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
color:white;
text-decoration:none;
transition:.3s;
}

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

/* =========================
HOME PAGE
========================= */
.hero{
    height:calc(100vh - 90px);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero-content{
    max-width:900px;
    width:100%;
    margin:auto;
}

.tagline{
    display:inline-block;
    background:#ff6b00;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:70px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    max-width:750px;
    margin:0 auto 35px;
    font-size:20px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}
/* =========================
COMMON PAGE HEADER
========================= */

.page-header{
text-align:center;
padding:80px 20px 50px;
}

.page-header h1{
font-size:55px;
margin-bottom:15px;
}

.page-header p{
color:#cfcfcf;
font-size:18px;
}

.page-container{
width:90%;
max-width:1200px;
margin:auto;
padding-bottom:80px;
}

/* =========================
SERVICES PAGE
========================= */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.service-card{
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.12);
border-radius:15px;
padding:25px;
transition:.3s;
}

.service-card:hover{
transform:translateY(-5px);
border-color:#ff6b00;
}

.service-card h2,
.service-card h3{
    color:#ff6b00;
    margin-bottom:12px;
}

/* =========================
COVERAGE PAGE
========================= */

.coverage-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.coverage-card{
background:#111;
border:1px solid #222;
border-radius:12px;
padding:25px;
text-align:center;
font-weight:600;
transition:.3s;
}

.coverage-card:hover{
border-color:#ff6b00;
transform:translateY(-5px);
}

/* =========================
CAMPAIGN LIBRARY
========================= */

.campaign-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.campaign-card{
background:#111;
border:1px solid #222;
border-radius:15px;
overflow:hidden;
transition:.3s;
}

.campaign-card:hover{
border-color:#ff6b00;
transform:translateY(-5px);
}

.campaign-card img{
width:100%;
height:220px;
object-fit:cover;
}

.card-content{
padding:20px;
}

.card-content h3{
margin-bottom:10px;
}

.campaign-date{
color:#999;
margin-bottom:15px;
}

.download-btn{
width:100%;
background:#ff6b00;
color:white;
border:none;
padding:14px;
border-radius:8px;
cursor:pointer;
font-weight:600;
}

.download-btn:hover{
    background:#ff7d1f;
}

/* =========================
CONTACT PAGE
========================= */

.contact-form{
max-width:700px;
margin:auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
width:100%;
padding:15px;
margin-bottom:15px;
border:none;
border-radius:8px;
background:#111;
color:white;
}

.contact-form textarea{
resize:none;
}

.contact-form button{
background:#ff6b00;
color:white;
border:none;
padding:15px 30px;
border-radius:30px;
cursor:pointer;
font-weight:600;
}

.contact-form button:hover{
    background:#ff7d1f;
}

/* =========================
OTP MODAL
========================= */

.modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.8);
justify-content:center;
align-items:center;
}

.modal-content{
background:#111;
width:90%;
max-width:450px;
padding:30px;
border-radius:15px;
border:1px solid #333;
}

.modal-content h2{
margin-bottom:20px;
}

.modal-content input{
width:100%;
padding:14px;
margin-bottom:15px;
background:#1d1d1d;
border:none;
border-radius:8px;
color:white;
}

.modal-content button{
width:100%;
background:#ff6b00;
color:white;
border:none;
padding:14px;
border-radius:8px;
cursor:pointer;
}

/* =========================
FOOTER
========================= */

.footer{
margin-top:60px;
text-align:center;
padding:30px;
border-top:1px solid #222;
color:#999;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

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

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

.nav-links{
    display:none;
}

.hero-buttons{
    flex-direction:column;
}

.page-header h1{
    font-size:38px;
}

.page-header p{
    font-size:16px;
}

}
