*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Cairo',sans-serif;
scroll-behavior:smooth;
}

body{
background:#05070d;
color:#fff;
overflow-x:hidden;
}

.container{
width:92%;
max-width:1500px;
margin:auto;
}

/* HERO */

.hero{
position:relative;
min-height:100vh;
background:
linear-gradient(to left, rgba(5,7,13,0.75), rgba(5,7,13,0.92)),
url('../assets/images/hero-bg.jpg');
background-size:cover;
background-position:center;
overflow:hidden;
}

/* HEADER */

header{
position:relative;
z-index:10;
padding:22px 0;
border-bottom:1px solid rgba(255,255,255,0.05);
background:rgba(0,0,0,0.35);
backdrop-filter:blur(12px);
}

.header-content{
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
}

/* LOGO */

.logo img{
width:170px;
display:block;
}

/* NAV */

nav ul{
display:flex;
align-items:center;
gap:28px;
list-style:none;
flex-wrap:nowrap;
}
nav ul li a{
color:#fff;
text-decoration:none;
font-size:16px;
font-weight:700;
position:relative;
transition:0.3s;
white-space:nowrap;
}

nav ul li a:hover,
nav ul li a.active{
color:#d4af37;
}

nav ul li a::after{
content:"";
position:absolute;
right:0;
bottom:-10px;
width:0;
height:2px;
background:#d4af37;
transition:0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after{
width:100%;
}

/* LEFT SIDE */

.header-left{
display:flex;
align-items:center;
gap:25px;
}

.phone{
display:flex;
align-items:center;
gap:12px;
}

.phone i{
color:#d4af37;
font-size:22px;
}

.phone span{
display:block;
font-size:20px;
font-weight:700;
}

.phone p{
font-size:14px;
color:#d1d5db;
}

.project-btn{
background:#d4af37;
color:#000;
padding:15px 28px;
border-radius:12px;
font-weight:800;
text-decoration:none;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
transition:0.3s;

white-space:nowrap;
min-width:180px;
}

.project-btn:hover{
background:#fff;
transform:translateY(-4px);
}

/* HERO CONTENT */

.hero-content{
position:relative;
z-index:5;
padding-top:120px;
padding-bottom:220px;
display:flex;
align-items:center;
min-height:85vh;
}

.hero-text{
max-width:750px;
}

.hero-logo{
width:230px;
margin-bottom:30px;
}

.hero-text h1{
font-size:92px;
line-height:1.2;
font-weight:900;
margin-bottom:25px;
}

.hero-text h1 span{
color:#d4af37;
}

.hero-text p{
font-size:28px;
line-height:2;
color:#e5e7eb;
margin-bottom:45px;
max-width:700px;
}

/* BUTTONS */

.hero-buttons{
display:flex;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.main-btn{
background:#d4af37;
color:#000;
padding:18px 38px;
border-radius:14px;
font-size:20px;
font-weight:800;
text-decoration:none;
display:flex;
align-items:center;
gap:12px;
transition:0.3s;
}

.main-btn:hover{
transform:translateY(-5px);
background:#fff;
}

.second-btn{
border:2px solid rgba(212,175,55,0.8);
color:#fff;
padding:18px 38px;
border-radius:14px;
font-size:20px;
font-weight:800;
text-decoration:none;
transition:0.3s;
}

.second-btn:hover{
background:#d4af37;
color:#000;
transform:translateY(-5px);
}

/* SOCIAL */

.social-fixed{
position:absolute;
top:44%;
left:35px;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:18px;
z-index:10;
}
.social-fixed a{
width:52px;
height:52px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(0,0,0,0.5);
border:1px solid rgba(212,175,55,0.4);
color:#d4af37;
font-size:22px;
transition:0.3s;
text-decoration:none;
}

.social-fixed a:hover{
background:#d4af37;
color:#000;
transform:translateY(-5px);
}

/* STATS */

.stats{
position:absolute;
bottom:35px;
left:50%;
transform:translateX(-50%);
width:92%;
max-width:1450px;
background:rgba(0,0,0,0.45);
backdrop-filter:blur(14px);
border:1px solid rgba(212,175,55,0.15);
border-radius:28px;
display:grid;
grid-template-columns:repeat(4,1fr);
overflow:hidden;
z-index:5;
}

.stat-box{
padding:40px 30px;
text-align:center;
border-left:1px solid rgba(255,255,255,0.05);
}

.stat-box:last-child{
border-left:none;
}

.stat-box i{
font-size:42px;
color:#d4af37;
margin-bottom:20px;
}

.stat-box h3{
font-size:44px;
font-weight:900;
margin-bottom:12px;
color:#d4af37;
}

.stat-box p{
font-size:20px;
color:#f3f4f6;
}

/* RESPONSIVE */

@media(max-width:1200px){

.hero-text h1{
font-size:72px;
}

}

@media(max-width:992px){

nav{
display:none;
}

.header-left{
display:none;
}

.hero-content{
padding-top:80px;
text-align:center;
justify-content:center;
}

.hero-text h1{
font-size:56px;
}

.hero-text p{
font-size:22px;
}

.hero-buttons{
justify-content:center;
}

.stats{
grid-template-columns:repeat(2,1fr);
position:relative;
margin-top:40px;
bottom:auto;
left:auto;
transform:none;
}

.social-fixed{
display:none;
}

}

@media(max-width:600px){

.hero-logo{
width:170px;
}

.hero-text h1{
font-size:40px;
}

.hero-text p{
font-size:18px;
line-height:1.9;
}

.stats{
grid-template-columns:1fr;
}

.main-btn,
.second-btn{
width:100%;
justify-content:center;
}

}
/* SERVICES SECTION */

.services{
padding:40px 0 140px;
background:#05070d;
position:relative;
overflow:hidden;
margin-top:-40px;
}

.services::before{
content:"";
position:absolute;
top:-200px;
left:-200px;
width:500px;
height:500px;
background:rgba(212,175,55,0.05);
filter:blur(120px);
border-radius:50%;
}

.section-title{
text-align:center;
max-width:850px;
margin:auto;
margin-bottom:80px;
position:relative;
z-index:2;
}

.section-title span{
display:inline-block;
color:#d4af37;
font-size:20px;
font-weight:800;
margin-bottom:18px;
}

.section-title h2{
font-size:58px;
font-weight:900;
line-height:1.4;
margin-bottom:25px;
}

.section-title p{
font-size:22px;
line-height:2;
color:#cbd5e1;
}

/* SERVICES GRID */

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
position:relative;
z-index:2;
}

/* SERVICE CARD */

.service-card{
background:linear-gradient(
145deg,
rgba(255,255,255,0.04),
rgba(255,255,255,0.02)
);

border:1px solid rgba(255,255,255,0.05);

padding:45px 35px;

border-radius:28px;

transition:0.4s;

position:relative;

overflow:hidden;

backdrop-filter:blur(12px);
}

.service-card::before{
content:"";
position:absolute;
top:-100px;
right:-100px;
width:220px;
height:220px;
background:rgba(212,175,55,0.08);
border-radius:50%;
transition:0.5s;
}

.service-card:hover::before{
transform:scale(1.3);
}

.service-card:hover{
transform:translateY(-12px);
border-color:rgba(212,175,55,0.4);
box-shadow:0 20px 50px rgba(0,0,0,0.45);
}

/* ICON */

.service-icon{
width:90px;
height:90px;
border-radius:24px;
background:rgba(212,175,55,0.12);
display:flex;
align-items:center;
justify-content:center;
margin-bottom:30px;
}

.service-icon i{
font-size:38px;
color:#d4af37;
}

/* TEXT */

.service-card h3{
font-size:30px;
font-weight:800;
margin-bottom:20px;
}

.service-card p{
font-size:19px;
line-height:2;
color:#d1d5db;
}

/* RESPONSIVE */

@media(max-width:1100px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

.section-title h2{
font-size:46px;
}

}

@media(max-width:768px){

.services{
padding:100px 0;
}

.services-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:36px;
}

.section-title p{
font-size:18px;
}

.service-card{
padding:35px 25px;
}

}
/* JAWWAL PARTNER SECTION */

.partner-section{
padding:10px 0 140px;
background:#05070d;
position:relative;
overflow:hidden;
margin-top:-40px;
}

.partner-section::before{
content:"";
position:absolute;
top:-200px;
right:-200px;
width:500px;
height:500px;
background:rgba(120,190,32,0.08);
filter:blur(120px);
border-radius:50%;
}

/* PARTNER BOX */

.partner-box{
background:linear-gradient(
145deg,
rgba(255,255,255,0.04),
rgba(255,255,255,0.02)
);

border:1px solid rgba(255,255,255,0.06);

border-radius:36px;

padding:70px;

display:flex;
align-items:center;
justify-content:space-between;
gap:60px;

position:relative;

overflow:hidden;

backdrop-filter:blur(16px);

transition:0.4s;
}

.partner-box:hover{
transform:translateY(-10px);
border-color:rgba(120,190,32,0.35);
box-shadow:0 25px 60px rgba(0,0,0,0.45);
}

/* CONTENT */

.partner-content{
flex:1;
}

.partner-tag{
display:inline-block;
padding:12px 24px;
background:rgba(120,190,32,0.12);
border:1px solid rgba(120,190,32,0.35);
border-radius:50px;
color:#78BE20;
font-size:18px;
font-weight:800;
margin-bottom:25px;
}

.partner-content h2{
font-size:58px;
font-weight:900;
line-height:1.4;
margin-bottom:25px;
}

.partner-content p{
font-size:22px;
line-height:2;
color:#d1d5db;
margin-bottom:40px;
max-width:750px;
}

/* FEATURES */

.partner-features{
display:flex;
flex-direction:column;
gap:22px;
}

.feature{
display:flex;
align-items:center;
gap:16px;
font-size:22px;
font-weight:700;
}

.feature i{
color:#78BE20;
font-size:24px;
}

/* LOGO */

.partner-logo{
width:320px;
height:320px;
border-radius:30px;
background:rgba(255,255,255,0.03);
display:flex;
align-items:center;
justify-content:center;
padding:35px;
border:1px solid rgba(255,255,255,0.06);
position:relative;
overflow:hidden;
}

.partner-logo::before{
content:"";
position:absolute;
width:220px;
height:220px;
background:rgba(120,190,32,0.08);
filter:blur(80px);
border-radius:50%;
}

.partner-logo img{
width:100%;
position:relative;
z-index:2;
object-fit:contain;
filter:drop-shadow(0 10px 30px rgba(0,0,0,0.45));
}

/* RESPONSIVE */

@media(max-width:1100px){

.partner-box{
flex-direction:column;
text-align:center;
padding:50px 35px;
}

.partner-content p{
margin:auto;
margin-bottom:40px;
}

.partner-features{
align-items:center;
}

.partner-content h2{
font-size:44px;
}

}

@media(max-width:700px){

.partner-content h2{
font-size:34px;
}

.partner-content p{
font-size:18px;
}

.partner-logo{
width:240px;
height:240px;
}

.feature{
font-size:18px;
}

}
/* PORTFOLIO SECTION */

.portfolio-section{
padding:0 0 140px;
background:#05070d;
position:relative;
overflow:hidden;
margin-top:-60px;
}

.portfolio-section::before{
content:"";
position:absolute;
bottom:-200px;
left:-200px;
width:500px;
height:500px;
background:rgba(212,175,55,0.05);
filter:blur(120px);
border-radius:50%;
}

/* GRID */

.portfolio-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
position:relative;
z-index:2;
}

/* ITEM */

.portfolio-item{
position:relative;
overflow:hidden;
border-radius:32px;
height:420px;
cursor:pointer;
border:1px solid rgba(255,255,255,0.06);
transition:0.4s;
}

.portfolio-item:hover{
transform:translateY(-12px);
box-shadow:0 25px 60px rgba(0,0,0,0.45);
}

/* IMAGE */

.portfolio-item img{
width:100%;
height:100%;
object-fit:cover;
transition:0.6s;
}

.portfolio-item:hover img{
transform:scale(1.08);
}

/* OVERLAY */

.portfolio-overlay{
position:absolute;
inset:0;
background:linear-gradient(
to top,
rgba(5,7,13,0.95),
rgba(5,7,13,0.2)
);

display:flex;
flex-direction:column;
justify-content:flex-end;

padding:40px;

transition:0.4s;
}

.portfolio-item:hover .portfolio-overlay{
background:linear-gradient(
to top,
rgba(5,7,13,0.98),
rgba(5,7,13,0.1)
);
}

/* TEXT */

.portfolio-overlay span{
display:inline-block;
color:#d4af37;
font-size:18px;
font-weight:800;
margin-bottom:14px;
}

.portfolio-overlay h3{
font-size:34px;
font-weight:900;
line-height:1.5;
max-width:500px;
}

/* RESPONSIVE */

@media(max-width:992px){

.portfolio-grid{
grid-template-columns:1fr;
}

.portfolio-item{
height:360px;
}

}

@media(max-width:600px){

.portfolio-section{
padding:100px 0;
}

.portfolio-item{
height:300px;
}

.portfolio-overlay{
padding:28px;
}

.portfolio-overlay h3{
font-size:26px;
}

}
/* WHY SECTION */

.why-section{
padding:20px 0 140px;
background:#05070d;
position:relative;
overflow:hidden;
margin-top:-70px;
}

.why-section::before{
content:"";
position:absolute;
top:-150px;
right:-150px;
width:450px;
height:450px;
background:rgba(212,175,55,0.05);
filter:blur(120px);
border-radius:50%;
}

/* GRID */

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
position:relative;
z-index:2;
}

/* CARD */

.why-card{
background:linear-gradient(
145deg,
rgba(255,255,255,0.04),
rgba(255,255,255,0.02)
);

border:1px solid rgba(255,255,255,0.06);

border-radius:30px;

padding:45px 30px;

text-align:center;

transition:0.4s;

position:relative;

overflow:hidden;

backdrop-filter:blur(14px);
}

.why-card::before{
content:"";
position:absolute;
top:-80px;
left:-80px;
width:180px;
height:180px;
background:rgba(212,175,55,0.08);
border-radius:50%;
transition:0.5s;
}

.why-card:hover::before{
transform:scale(1.4);
}

.why-card:hover{
transform:translateY(-10px);
border-color:rgba(212,175,55,0.4);
box-shadow:0 20px 50px rgba(0,0,0,0.45);
}

/* ICON */

.why-icon{
width:90px;
height:90px;
margin:auto;
margin-bottom:28px;
border-radius:26px;
background:rgba(212,175,55,0.12);
display:flex;
align-items:center;
justify-content:center;
}

.why-icon i{
font-size:38px;
color:#d4af37;
}

/* TEXT */

.why-card h3{
font-size:28px;
font-weight:800;
margin-bottom:18px;
}

.why-card p{
font-size:18px;
line-height:2;
color:#d1d5db;
}

/* RESPONSIVE */

@media(max-width:1100px){

.why-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:700px){

.why-section{
padding:80px 0 120px;
}

.why-grid{
grid-template-columns:1fr;
}

.why-card{
padding:35px 25px;
}

}
/* CONTACT SECTION */

.contact-section{
padding:40px 0 140px;
background:#05070d;
position:relative;
overflow:hidden;
margin-top:-60px;
}

.contact-section::before{
content:"";
position:absolute;
bottom:-180px;
left:-180px;
width:500px;
height:500px;
background:rgba(212,175,55,0.05);
filter:blur(120px);
border-radius:50%;
}

/* BOX */

.contact-box{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;

background:linear-gradient(
145deg,
rgba(255,255,255,0.04),
rgba(255,255,255,0.02)
);

border:1px solid rgba(255,255,255,0.06);

border-radius:40px;

padding:70px;

position:relative;

overflow:hidden;

backdrop-filter:blur(16px);

z-index:2;
}

/* LEFT */

.contact-info{
display:flex;
flex-direction:column;
justify-content:center;
}

.contact-tag{
display:inline-block;
padding:12px 24px;
background:rgba(212,175,55,0.12);
border:1px solid rgba(212,175,55,0.35);
border-radius:50px;
color:#d4af37;
font-size:18px;
font-weight:800;
margin-bottom:24px;
width:max-content;
}

.contact-info h2{
font-size:58px;
font-weight:900;
line-height:1.4;
margin-bottom:24px;
}

.contact-info p{
font-size:22px;
line-height:2;
color:#d1d5db;
margin-bottom:45px;
max-width:650px;
}

/* ITEMS */

.contact-item{
display:flex;
align-items:center;
gap:18px;
margin-bottom:30px;
}

.contact-item i{
width:65px;
height:65px;
border-radius:20px;
background:rgba(212,175,55,0.12);
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:#d4af37;
}

.contact-item h3{
font-size:22px;
margin-bottom:6px;
}

.contact-item span{
font-size:18px;
color:#d1d5db;
}

/* FORM */

.contact-form{
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.05);
border-radius:32px;
padding:45px;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:22px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:20px 24px;
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.06);
border-radius:18px;
outline:none;
font-size:18px;
color:#fff;
transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:#d4af37;
}

.contact-form textarea{
height:170px;
resize:none;
}

.contact-form button{
background:#d4af37;
color:#000;
border:none;
padding:20px;
border-radius:18px;
font-size:20px;
font-weight:800;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
gap:12px;
transition:0.3s;
}

.contact-form button:hover{
background:#fff;
transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:1100px){

.contact-box{
grid-template-columns:1fr;
padding:50px 35px;
}

.contact-info h2{
font-size:44px;
}

}

@media(max-width:700px){

.contact-section{
padding:20px 0 100px;
}

.contact-info h2{
font-size:34px;
}

.contact-info p{
font-size:18px;
}

.contact-form{
padding:30px 22px;
}

.contact-form input,
.contact-form textarea{
font-size:16px;
}

}
/* FOOTER */

.footer{
background:#04060b;
padding:40px 0 30px;
position:relative;
overflow:hidden;
border-top:1px solid rgba(212,175,55,0.08);
margin-top:-50px;
}

.footer::before{
content:"";
position:absolute;
top:-180px;
right:-180px;
width:450px;
height:450px;
background:rgba(212,175,55,0.04);
filter:blur(120px);
border-radius:50%;
}

/* GRID */

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:50px;
position:relative;
z-index:2;
}

/* LOGO */

.footer-logo{
width:170px;
margin-bottom:25px;
}

.footer-col p{
font-size:18px;
line-height:2;
color:#cbd5e1;
max-width:400px;
}

/* TITLES */

.footer-col h3{
font-size:24px;
margin-bottom:25px;
color:#d4af37;
}

/* LINKS */

.footer-col ul{
list-style:none;
display:flex;
flex-direction:column;
gap:16px;
}

.footer-col ul li{
font-size:18px;
color:#d1d5db;
}

.footer-col ul li a{
text-decoration:none;
color:#d1d5db;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#d4af37;
padding-right:6px;
}

/* SOCIAL */

.footer-social{
display:flex;
align-items:center;
gap:16px;
flex-wrap:wrap;
}

.footer-social a{
width:52px;
height:52px;
border-radius:50%;
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.06);
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
color:#d4af37;
transition:0.3s;
text-decoration:none;
}

.footer-social a:hover{
background:#d4af37;
color:#000;
transform:translateY(-5px);
}

/* COPYRIGHT */

.footer-bottom{
margin-top:70px;
padding-top:30px;
border-top:1px solid rgba(255,255,255,0.06);
text-align:center;
position:relative;
z-index:2;
}

.footer-bottom p{
font-size:16px;
color:#94a3b8;
letter-spacing:1px;
}

/* RESPONSIVE */

@media(max-width:1100px){

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:700px){

.footer{
padding:70px 0 25px;
}

.footer-grid{
grid-template-columns:1fr;
gap:40px;
}

.footer-col{
text-align:center;
}

.footer-logo{
margin:auto;
margin-bottom:25px;
}

.footer-col p{
margin:auto;
}

.footer-social{
justify-content:center;
}

.footer-bottom{
margin-top:50px;
}

}
/* ==========================================
ABOUT PAGE
========================================== */

.about-hero{
min-height:65vh !important;
padding-bottom:80px !important;
}

.about-main-section{
padding:120px 0;
background:#05070d;
}

.about-content{
max-width:1100px;
margin:auto;
text-align:center;
}

.about-content p{
font-size:24px;
line-height:2.2;
color:#d1d5db;
margin-bottom:35px;
}

/* VISION */

.vision-section{
padding:0 0 120px;
background:#05070d;
}

.vision-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
}

.vision-card{
background:linear-gradient(
145deg,
rgba(255,255,255,0.04),
rgba(255,255,255,0.02)
);
border:1px solid rgba(255,255,255,0.05);
border-radius:30px;
padding:50px;
text-align:center;
transition:.4s;
}

.vision-card:hover{
transform:translateY(-10px);
border-color:rgba(212,175,55,.4);
}

.vision-card h3{
font-size:36px;
margin-bottom:20px;
}

.vision-card p{
font-size:20px;
line-height:2;
color:#d1d5db;
}

/* CHAIRMAN */

.chairman-section{
padding:20px 0 140px;
background:#05070d;
}

.chairman-box{
display:grid;
grid-template-columns:420px 1fr;
gap:60px;
align-items:center;
}

.chairman-image img{
width:100%;
border-radius:35px;
border:2px solid rgba(212,175,55,.2);
}

.chairman-content h2{
font-size:52px;
margin-bottom:30px;
}

.chairman-content p{
font-size:21px;
line-height:2.2;
color:#d1d5db;
margin-bottom:25px;
}

.chairman-signature{
margin-top:40px;
}

.chairman-signature h3{
font-size:34px;
color:#d4af37;
margin-bottom:10px;
}

.chairman-signature span{
font-size:20px;
line-height:1.8;
color:#d1d5db;
}

.chairman-quote{
margin-top:35px;
padding:25px;
border-right:4px solid #d4af37;
background:rgba(255,255,255,.03);
font-size:24px;
font-weight:700;
border-radius:15px;
}

/* TIMELINE */

.timeline-section{
padding:0 0 140px;
background:#05070d;
}

.timeline{
max-width:1000px;
margin:auto;
position:relative;
}

.timeline::before{
content:"";
position:absolute;
top:0;
bottom:0;
right:50%;
width:3px;
background:#d4af37;
transform:translateX(50%);
}

.timeline-item{
position:relative;
margin-bottom:60px;
}

.timeline-item .year{
width:120px;
height:120px;
background:#d4af37;
color:#000;
font-size:28px;
font-weight:900;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
position:relative;
z-index:2;
}

.timeline-item .content{
margin-top:25px;
background:rgba(255,255,255,.03);
padding:35px;
border-radius:25px;
text-align:center;
}

.timeline-item .content h3{
font-size:32px;
margin-bottom:15px;
}

.timeline-item .content p{
font-size:19px;
line-height:2;
color:#d1d5db;
}

/* CTA */

.about-cta{
padding:0 0 120px;
background:#05070d;
}

.cta-box{
background:linear-gradient(
145deg,
rgba(212,175,55,.15),
rgba(255,255,255,.03)
);

padding:80px;
border-radius:40px;
text-align:center;
border:1px solid rgba(212,175,55,.25);
}

.cta-box h2{
font-size:52px;
margin-bottom:25px;
}

.cta-box p{
font-size:24px;
color:#d1d5db;
margin-bottom:40px;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* RESPONSIVE */

@media(max-width:992px){

.vision-grid{
grid-template-columns:1fr;
}

.chairman-box{
grid-template-columns:1fr;
text-align:center;
}

.timeline::before{
display:none;
}

.about-content p{
font-size:20px;
}

.chairman-content h2,
.cta-box h2{
font-size:38px;
}

}

@media(max-width:600px){

.about-main-section{
padding:80px 0;
}

.about-content p{
font-size:18px;
}

.vision-card{
padding:35px 25px;
}

.chairman-content p{
font-size:18px;
}

.chairman-quote{
font-size:18px;
}

.cta-box{
padding:45px 25px;
}

.cta-box h2{
font-size:30px;
}

.cta-box p{
font-size:18px;
}

}
/* =====================================================
SERVICES PAGE
===================================================== */

.services-hero{
min-height:85vh;
}

.services-page{
padding:40px 0 120px;
background:#05070d;
}

.services-page .services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

/* =====================================================
OFFERS
===================================================== */

.offers-section{
padding:20px 0 140px;
background:#05070d;
position:relative;
}

.offers-section::before{
content:"";
position:absolute;
top:-150px;
left:-150px;
width:450px;
height:450px;
background:rgba(212,175,55,0.05);
filter:blur(120px);
border-radius:50%;
}

.offers-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
position:relative;
z-index:2;
}

.offer-card{

background:linear-gradient(
145deg,
rgba(255,255,255,0.05),
rgba(255,255,255,0.02)
);

border:1px solid rgba(255,255,255,0.06);

border-radius:30px;

padding:45px 35px;

text-align:center;

transition:0.4s;

backdrop-filter:blur(14px);
}

.offer-card:hover{
transform:translateY(-12px);
border-color:rgba(212,175,55,0.4);
box-shadow:0 25px 60px rgba(0,0,0,0.45);
}

.offer-card h3{
font-size:30px;
margin-bottom:18px;
font-weight:900;
color:#d4af37;
}

.offer-card p{
font-size:18px;
line-height:2;
color:#d1d5db;
margin-bottom:25px;
}

.offer-card .main-btn{
justify-content:center;
width:100%;
}

/* =====================================================
RESULTS
===================================================== */

.results-section{
padding:20px 0 120px;
background:#05070d;
}

.results-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.result-card{

background:linear-gradient(
145deg,
rgba(255,255,255,0.04),
rgba(255,255,255,0.02)
);

border:1px solid rgba(255,255,255,0.06);

border-radius:30px;

padding:45px 25px;

text-align:center;

transition:0.4s;
}

.result-card:hover{
transform:translateY(-10px);
border-color:rgba(212,175,55,0.35);
}

.result-card i{
font-size:42px;
color:#d4af37;
margin-bottom:20px;
}

.result-card h3{
font-size:52px;
font-weight:900;
color:#d4af37;
margin-bottom:10px;
}

.result-card p{
font-size:18px;
color:#d1d5db;
}

/* =====================================================
WHY EYAS
===================================================== */

.why-eyas-section{
padding:20px 0 120px;
background:#05070d;
}

/* =====================================================
CTA
===================================================== */

.services-cta{
padding:30px 0 140px;
background:#05070d;
}

.services-cta .cta-box{

background:linear-gradient(
145deg,
rgba(255,255,255,0.05),
rgba(255,255,255,0.02)
);

border:1px solid rgba(212,175,55,0.15);

border-radius:40px;

padding:80px;

text-align:center;

backdrop-filter:blur(16px);
}

.services-cta h2{
font-size:58px;
font-weight:900;
margin-bottom:25px;
}

.services-cta p{
font-size:24px;
line-height:2;
color:#d1d5db;
margin-bottom:40px;
}

.services-cta .cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:1200px){

.offers-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:992px){

.services-page .services-grid{
grid-template-columns:repeat(2,1fr);
}

.results-grid{
grid-template-columns:repeat(2,1fr);
}

.services-cta h2{
font-size:42px;
}

}

@media(max-width:768px){

.services-page .services-grid{
grid-template-columns:1fr;
}

.offers-grid{
grid-template-columns:1fr;
}

.results-grid{
grid-template-columns:1fr;
}

.services-cta .cta-box{
padding:50px 25px;
}

.services-cta h2{
font-size:34px;
}

.services-cta p{
font-size:18px;
}

}

@media(max-width:600px){

.offer-card{
padding:35px 25px;
}

.result-card h3{
font-size:40px;
}

}
/* ==========================================
CONTACT PAGE
========================================== */

/* CONTACT CARDS */

.contact-departments{
padding:20px 0 120px;
background:#05070d;
}

.contact-departments .why-card{
min-height:260px;
display:flex;
flex-direction:column;
justify-content:center;
}

.contact-departments .why-card p{
word-break:break-word;
font-size:18px;
}

/* FORM SELECT */

.contact-form select{
width:100%;
padding:20px 24px;
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.06);
border-radius:18px;
outline:none;
font-size:18px;
color:#fff;
transition:.3s;
appearance:none;
cursor:pointer;
}

.contact-form select:focus{
border-color:#d4af37;
}

.contact-form option{
background:#05070d;
color:#fff;
}

/* MAP SECTION */

.map-section{
padding:20px 0 120px;
background:#05070d;
}

.map-box{

background:linear-gradient(
145deg,
rgba(255,255,255,0.04),
rgba(255,255,255,0.02)
);

border:1px solid rgba(255,255,255,0.06);

border-radius:35px;

padding:40px;

backdrop-filter:blur(16px);
}

.map-box iframe{
width:100%;
height:500px;
border:none;
border-radius:25px;
overflow:hidden;
}

/* SOCIAL CTA */

.social-contact{
padding:0 0 120px;
background:#05070d;
}

.social-contact .cta-box{
background:linear-gradient(
145deg,
rgba(255,255,255,0.05),
rgba(255,255,255,0.02)
);

border:1px solid rgba(212,175,55,0.15);
}

/* CONTACT INFO HOVER */

.contact-item{
transition:.3s;
}

.contact-item:hover{
transform:translateX(-8px);
}

.contact-item:hover i{
background:#d4af37;
color:#000;
}

/* EMAIL BOXES */

.why-card h3{
word-break:break-word;
}

.why-card p{
overflow-wrap:anywhere;
}

/* RESPONSIVE */

@media(max-width:992px){

.map-box{
padding:25px;
}

.map-box iframe{
height:400px;
}

}

@media(max-width:768px){

.contact-form select{
font-size:16px;
}

.map-box iframe{
height:320px;
}

}

@media(max-width:600px){

.map-box{
padding:15px;
}

.map-box iframe{
height:280px;
}

}
/* ===================================
CAMPAIGNS PAGE
=================================== */

.campaign-hero{
position:relative;
overflow:hidden;
}

.campaign-stats,
.campaign-categories,
.campaigns-showcase,
.campaign-process,
.campaign-results,
.why-campaigns,
.campaign-cta{
padding:120px 0;
background:#05070d;
}

/* STATS */

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:60px;
}

.stat-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.06);
border-radius:30px;
padding:40px;
text-align:center;
backdrop-filter:blur(12px);
transition:.4s;
}

.stat-card:hover{
transform:translateY(-10px);
border-color:#d4af37;
}

.stat-card h3{
font-size:48px;
color:#d4af37;
margin-bottom:10px;
}

.stat-card p{
color:#ccc;
}

/* FILTER */

.categories-filter{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-top:50px;
}

.categories-filter button{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:14px 28px;
border-radius:50px;
color:#fff;
cursor:pointer;
transition:.3s;
font-family:'Cairo',sans-serif;
}

.categories-filter button:hover,
.categories-filter button.active{
background:#d4af37;
color:#000;
}

/* CAMPAIGNS */

.campaigns-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
margin-top:70px;
}

.campaign-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.06);
border-radius:30px;
overflow:hidden;
transition:.4s;
}

.campaign-card:hover{
transform:translateY(-10px);
border-color:#d4af37;
}

.campaign-image{
position:relative;
height:260px;
overflow:hidden;
}

.campaign-image img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

.campaign-card:hover img{
transform:scale(1.08);
}

.campaign-category{
position:absolute;
top:20px;
right:20px;
background:#d4af37;
color:#000;
padding:8px 18px;
border-radius:50px;
font-size:14px;
font-weight:700;
}

.campaign-content{
padding:30px;
}

.campaign-content h3{
font-size:24px;
margin-bottom:15px;
}

.campaign-content p{
color:#bdbdbd;
line-height:1.9;
margin-bottom:20px;
}

.campaign-meta{
display:flex;
justify-content:space-between;
margin-bottom:25px;
color:#aaa;
font-size:14px;
}

.campaign-btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 25px;
border-radius:50px;
background:#d4af37;
color:#000;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.campaign-btn:hover{
transform:translateX(-5px);
}

/* PROCESS */

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
margin-top:70px;
}

.process-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.06);
padding:35px;
border-radius:30px;
text-align:center;
transition:.4s;
}

.process-card:hover{
border-color:#d4af37;
transform:translateY(-10px);
}

.step-number{
width:70px;
height:70px;
background:#d4af37;
color:#000;
font-weight:800;
font-size:22px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin:0 auto 20px;
}

/* RESULTS */

.results-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:70px;
}

.result-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.06);
padding:40px;
border-radius:30px;
text-align:center;
transition:.4s;
}

.result-card:hover{
transform:translateY(-10px);
border-color:#d4af37;
}

.result-card i{
font-size:45px;
color:#d4af37;
margin-bottom:20px;
}

.result-card h3{
margin-bottom:15px;
}

/* CTA */

.campaign-cta .cta-box{
background:linear-gradient(
135deg,
rgba(212,175,55,.15),
rgba(255,255,255,.03)
);

border:1px solid rgba(212,175,55,.2);

padding:70px;
border-radius:40px;
text-align:center;
}

.cta-tag{
display:inline-block;
padding:10px 20px;
background:#d4af37;
color:#000;
border-radius:50px;
font-weight:700;
margin-bottom:20px;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:35px;
flex-wrap:wrap;
}

/* MOBILE */

@media(max-width:992px){

.stats-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.stats-grid{
grid-template-columns:1fr;
}

.campaign-cta .cta-box{
padding:40px 25px;
}

}
/* ==========================================
OFFICIAL AGENCIES HERO
========================================== */

.agencies-hero{

position:relative;

min-height:90vh;

background:
linear-gradient(
to left,
rgba(5,7,13,.82),
rgba(5,7,13,.94)
),
url('../assets/images/partner-bg.jpg');

background-size:cover;

background-position:center;

overflow:hidden;

}

.agencies-hero-content{

display:flex;

align-items:center;

min-height:75vh;

}

.agencies-hero-text{

max-width:850px;

}

.hero-tag{

display:inline-block;

padding:12px 22px;

border:1px solid rgba(212,175,55,.4);

border-radius:50px;

color:#d4af37;

font-size:16px;

font-weight:700;

margin-bottom:30px;

background:rgba(212,175,55,.08);

}

.agencies-hero-text h1{

font-size:95px;

line-height:1.2;

font-weight:900;

margin-bottom:25px;

}

.agencies-hero-text h1 span{

color:#d4af37;

}

.agencies-hero-text p{

font-size:28px;

line-height:2;

color:#e5e7eb;

max-width:800px;

margin-bottom:45px;

}
/* ==========================================
STRATEGIC PARTNERS
========================================== */

.strategic-partners{

padding:120px 0;

background:#070a12;

}

.main-partner-card{

display:flex;

justify-content:space-between;

align-items:center;

gap:60px;

padding:60px;

margin-top:70px;

background:
linear-gradient(
135deg,
rgba(212,175,55,.08),
rgba(255,255,255,.02)
);

border:1px solid rgba(212,175,55,.15);

border-radius:35px;

overflow:hidden;

}

.partner-badge{

display:inline-block;

padding:12px 24px;

background:rgba(212,175,55,.12);

border:1px solid rgba(212,175,55,.25);

border-radius:50px;

color:#d4af37;

font-weight:700;

margin-bottom:25px;

}

.main-partner-content h3{

font-size:48px;

margin-bottom:20px;

}

.main-partner-content p{

font-size:20px;

line-height:2;

color:#d1d5db;

margin-bottom:30px;

}

.partner-points{

display:flex;

flex-direction:column;

gap:15px;

}

.partner-points div{

font-size:18px;

display:flex;

align-items:center;

gap:12px;

}

.partner-points i{

color:#d4af37;

}

.main-partner-logo img{

width:260px;

filter:drop-shadow(
0 0 25px rgba(212,175,55,.3)
);

}

.partners-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.partner-box{

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.06);

padding:35px;

border-radius:25px;

text-align:center;

transition:.4s;

}

.partner-box:hover{

transform:translateY(-10px);

border-color:#d4af37;

}

.partner-box i{

font-size:45px;

color:#d4af37;

margin-bottom:20px;

}

.partner-box h4{

font-size:24px;

margin-bottom:15px;

}

.partner-box p{

line-height:1.9;

color:#cbd5e1;

}
.premium-partner{

background:
linear-gradient(
135deg,
rgba(212,175,55,.05),
rgba(255,255,255,.02)
);

border:1px solid rgba(212,175,55,.12);

padding:35px;

border-radius:25px;

display:flex;

flex-direction:column;

justify-content:space-between;

min-height:420px;

text-align:right;

overflow:hidden;

}

.premium-partner:hover{

border-color:#d4af37;

box-shadow:
0 0 35px rgba(212,175,55,.15);

}

.premium-icon{

width:75px;

height:75px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:rgba(212,175,55,.08);

margin-bottom:25px;

}

.premium-icon i{

font-size:32px;

color:#d4af37;

}

.premium-partner h4{

font-size:28px;

margin-bottom:18px;

color:#fff;

}

.premium-partner p{

line-height:2;

color:#d1d5db;

margin-bottom:25px;

font-size:16px;

}

.partner-tags{

display:flex;

flex-wrap:wrap;

gap:10px;

}

.partner-tags span{

padding:8px 14px;

border-radius:30px;

background:rgba(212,175,55,.08);

border:1px solid rgba(212,175,55,.15);

color:#d4af37;

font-size:14px;

font-weight:700;

}
.partners-grid{

align-items:stretch;

}

.premium-partner h4{

font-size:32px;

font-weight:900;

}
@media(max-width:992px){

.partners-grid{
grid-template-columns:1fr;
}

.premium-partner{
min-height:auto;
}
}

/* ==========================================
TRUST CENTER
========================================== */

.trust-center{

padding:120px 0;

background:#05070d;

}

.trust-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:70px;

}

.trust-card{

background:
linear-gradient(
135deg,
rgba(255,255,255,.03),
rgba(255,255,255,.01)
);

border:1px solid rgba(255,255,255,.06);

padding:45px;

border-radius:30px;

text-align:center;

transition:.4s;

}

.trust-card:hover{

transform:translateY(-12px);

border-color:#d4af37;

box-shadow:
0 0 40px rgba(212,175,55,.12);

}

.trust-card i{

font-size:55px;

color:#d4af37;

margin-bottom:25px;

}

.trust-card h3{

font-size:52px;

font-weight:900;

margin-bottom:12px;

}

.trust-card p{

font-size:18px;

color:#cbd5e1;

}
/* ==========================================
PARTNERSHIP AREAS
========================================== */

.partnership-areas{

padding:120px 0;

background:#070a12;

}

.areas-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:70px;

}

.area-card{

background:
linear-gradient(
135deg,
rgba(255,255,255,.03),
rgba(255,255,255,.01)
);

border:1px solid rgba(255,255,255,.06);

padding:40px 25px;

border-radius:25px;

text-align:center;

transition:.4s;

cursor:pointer;

}

.area-card:hover{

transform:translateY(-10px);

border-color:#d4af37;

box-shadow:
0 0 35px rgba(212,175,55,.15);

}

.area-card i{

font-size:45px;

color:#d4af37;

margin-bottom:20px;

}

.area-card h3{

font-size:22px;

font-weight:800;

}
/* ==========================================
PARTNERS TRUST
========================================== */

.partners-trust{

padding:120px 0;

background:#05070d;

}

.partners-trust-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:70px;

}

.trust-feature-card{

background:
linear-gradient(
135deg,
rgba(255,255,255,.03),
rgba(255,255,255,.01)
);

border:1px solid rgba(255,255,255,.06);

border-radius:30px;

padding:45px;

text-align:center;

transition:.4s;

}

.trust-feature-card:hover{

transform:translateY(-12px);

border-color:#d4af37;

box-shadow:
0 0 40px rgba(212,175,55,.12);

}

.trust-feature-icon{

width:95px;

height:95px;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:rgba(212,175,55,.08);

margin-bottom:25px;

}

.trust-feature-icon i{

font-size:42px;

color:#d4af37;

}

.trust-feature-card h3{

font-size:26px;

margin-bottom:15px;

}

.trust-feature-card p{

font-size:17px;

line-height:2;

color:#cbd5e1;

}
/* ==========================================
STRATEGIC CTA
========================================== */

.strategic-cta{

padding:140px 0;

background:
linear-gradient(
135deg,
#d4af37,
#b8942c
);

position:relative;

overflow:hidden;

}

.strategic-cta::before{

content:"";

position:absolute;

top:-150px;

left:-150px;

width:400px;

height:400px;

border-radius:50%;

background:rgba(255,255,255,.08);

}

.strategic-cta::after{

content:"";

position:absolute;

bottom:-180px;

right:-180px;

width:500px;

height:500px;

border-radius:50%;

background:rgba(255,255,255,.05);

}

.strategic-cta-box{

position:relative;

z-index:2;

text-align:center;

max-width:1000px;

margin:auto;

}

.cta-badge{

display:inline-block;

padding:12px 24px;

background:rgba(0,0,0,.15);

border-radius:50px;

font-weight:700;

margin-bottom:30px;

color:#fff;

}

.strategic-cta-box h2{

font-size:65px;

line-height:1.4;

font-weight:900;

color:#05070d;

margin-bottom:25px;

}

.strategic-cta-box p{

font-size:24px;

line-height:2;

color:#111;

max-width:850px;

margin:auto;

margin-bottom:45px;

font-weight:600;

}

.strategic-buttons{

display:flex;

justify-content:center;

align-items:center;

gap:20px;

flex-wrap:wrap;

}

.cta-main-btn{

background:#05070d;

color:#fff;

padding:18px 40px;

border-radius:14px;

font-size:20px;

font-weight:800;

text-decoration:none;

display:flex;

align-items:center;

gap:12px;

transition:.4s;

}

.cta-main-btn:hover{

transform:translateY(-5px);

background:#000;

}

.cta-second-btn{

border:2px solid #05070d;

color:#05070d;

padding:18px 40px;

border-radius:14px;

font-size:20px;

font-weight:800;

text-decoration:none;

transition:.4s;

}

.cta-second-btn:hover{

background:#05070d;

color:#fff;

}
.back-to-top{

position:fixed;

bottom:30px;

left:30px;

width:55px;

height:55px;

background:#d4af37;

color:#000;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:20px;

text-decoration:none;

z-index:9999;

transition:.3s;

box-shadow:
0 0 20px rgba(212,175,55,.3);

}

.back-to-top:hover{

transform:translateY(-5px);

background:#fff;

}
/* ==========================================
AGENCIES CARDS
========================================== */

.agencies-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
margin-top:70px;
}

.agency-card{

background:linear-gradient(
145deg,
rgba(255,255,255,.04),
rgba(255,255,255,.02)
);

border:1px solid rgba(255,255,255,.06);

border-radius:30px;

padding:40px 35px;

transition:.4s;

backdrop-filter:blur(14px);

}

.agency-card:hover{

transform:translateY(-10px);

border-color:#d4af37;

box-shadow:0 20px 50px rgba(0,0,0,.45);

}

.agency-icon{

width:85px;

height:85px;

border-radius:24px;

background:rgba(212,175,55,.12);

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

}

.agency-icon i{

font-size:36px;

color:#d4af37;

}

.agency-card h3{

font-size:30px;

font-weight:900;

margin-bottom:18px;

}

.agency-card p{

font-size:18px;

line-height:2;

color:#d1d5db;

margin-bottom:25px;

}

.agency-card ul{

list-style:none;

display:flex;

flex-direction:column;

gap:15px;

}

.agency-card ul li{

display:flex;

align-items:center;

gap:12px;

font-size:17px;

color:#e5e7eb;

}

.agency-card ul li i{

color:#d4af37;

font-size:18px;

}

@media(max-width:992px){

.agencies-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.agencies-grid{
grid-template-columns:1fr;
}

}
/* ==========================================
CAMPAIGN DETAILS PAGE
========================================== */

.campaign-details-hero{
min-height:70vh;
}
.campaign-details-hero h1{
line-height:1.5;
max-width:1000px;
}

.campaign-meta-details{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-top:35px;
margin-bottom:45px;
}

.campaign-meta-details span{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:14px 24px;
border-radius:50px;
font-size:16px;
color:#d1d5db;
}

.campaign-meta-details i{
color:#d4af37;
margin-left:8px;
}

/* OVERVIEW */

.campaign-overview{
padding:120px 0;
background:#05070d;
}

.overview-box{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
margin-top:70px;
}

.overview-image img{
width:100%;
border-radius:30px;
display:block;
border:1px solid rgba(255,255,255,.08);
}

.overview-content h3{
font-size:42px;
margin-bottom:25px;
}

.overview-content p{
font-size:20px;
line-height:2;
color:#d1d5db;
margin-bottom:30px;
}

.overview-content ul{
list-style:none;
display:flex;
flex-direction:column;
gap:18px;
}

.overview-content ul li{
font-size:18px;
color:#e5e7eb;
display:flex;
align-items:center;
gap:12px;
}

.overview-content ul li i{
color:#d4af37;
}

/* GOALS */

.campaign-goals{
padding:20px 0 120px;
background:#05070d;
}

.goals-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:70px;
}

.goal-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.06);
padding:40px 30px;
border-radius:30px;
text-align:center;
transition:.4s;
}

.goal-card:hover{
transform:translateY(-10px);
border-color:#d4af37;
}

.goal-icon{
width:90px;
height:90px;
margin:auto;
margin-bottom:25px;
border-radius:50%;
background:rgba(212,175,55,.12);
display:flex;
align-items:center;
justify-content:center;
}

.goal-icon i{
font-size:38px;
color:#d4af37;
}

.goal-card h3{
font-size:26px;
margin-bottom:15px;
}

.goal-card p{
color:#d1d5db;
line-height:1.9;
}

/* GALLERY */

.campaign-gallery{
padding:20px 0 120px;
background:#05070d;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:70px;
}

.gallery-item{
overflow:hidden;
border-radius:30px;
border:1px solid rgba(255,255,255,.06);
}

.gallery-item img{
width:100%;
height:350px;
object-fit:cover;
display:block;
transition:.5s;
}

.gallery-item:hover img{
transform:scale(1.08);
}

/* TESTIMONIAL */

.client-testimonial{
padding:20px 0 120px;
background:#05070d;
}

.testimonial-box{
max-width:900px;
margin:auto;
text-align:center;
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.06);
padding:70px;
border-radius:35px;
}

.testimonial-box i{
font-size:55px;
color:#d4af37;
margin-bottom:25px;
}

.testimonial-box p{
font-size:24px;
line-height:2;
color:#e5e7eb;
margin-bottom:30px;
}

.testimonial-box h3{
font-size:30px;
margin-bottom:10px;
}

.testimonial-box span{
color:#d4af37;
font-size:18px;
}

/* CTA */

.campaign-final-cta{
padding:20px 0 140px;
background:#05070d;
}

.campaign-final-cta .cta-box{
text-align:center;
padding:80px;
border-radius:40px;
background:linear-gradient(
145deg,
rgba(212,175,55,.12),
rgba(255,255,255,.03)
);
border:1px solid rgba(212,175,55,.18);
}

.campaign-final-cta h2{
font-size:58px;
margin-bottom:25px;
}

.campaign-final-cta p{
font-size:22px;
line-height:2;
color:#d1d5db;
max-width:900px;
margin:auto auto 40px;
}
.hero-buttons{
margin-top:30px;
}
/* HERO IMAGE FIX */

.campaign-hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.campaign-hero-image img{
    width:100%;
    max-width:650px;
    height:450px;
    object-fit:cover;
    border-radius:30px;
    display:block;
    border:1px solid rgba(255,255,255,.08);
}
/* RESPONSIVE */

@media(max-width:992px){

.overview-box{
grid-template-columns:1fr;
}

.goals-grid{
grid-template-columns:repeat(2,1fr);
}

.gallery-grid{
grid-template-columns:1fr;
}
.campaign-hero-image img{
    max-width:100%;
    height:350px;
}
.campaign-final-cta h2{
font-size:40px;
}

}

@media(max-width:768px){

.goals-grid{
grid-template-columns:1fr;
}

.testimonial-box{
padding:40px 25px;
}

.testimonial-box p{
font-size:18px;
}

.campaign-final-cta .cta-box{
padding:50px 25px;
}

.campaign-final-cta h2{
font-size:32px;
}

.campaign-final-cta p{
font-size:18px;
}

}
/* LANGUAGE BUTTON */

.lang-btn{
display:flex;
align-items:center;
justify-content:center;
gap:8px;

height:52px;
padding:0 20px;

border-radius:12px;

background:rgba(255,255,255,0.05);

border:1px solid rgba(212,175,55,0.25);

color:#fff;

font-weight:700;

text-decoration:none;

transition:.3s;
}

.lang-btn:hover{
background:#d4af37;
color:#000;
transform:translateY(-3px);
}
/* MOBILE MENU */

.menu-toggle{
display:none;
background:none;
border:none;
color:#d4af37;
font-size:32px;
cursor:pointer;
}

@media(max-width:992px){

.menu-toggle{
display:block;
}

header{
position:relative;
}

nav{
position:absolute;
top:100%;
right:0;
width:100%;
background:#05070d;
padding:25px;
display:none;
border-top:1px solid rgba(212,175,55,.2);
z-index:9999;
}

nav.active{
display:block;
}

nav ul{
flex-direction:column;
align-items:center;
gap:20px;
}

}
@media(max-width:992px){

.header-left{
    display:flex !important;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.phone{
    display:flex !important;
}

.lang-btn,
.project-btn{
    display:flex !important;
}

}
/* MOBILE HEADER FIX */

@media (max-width: 992px){

    .header-content{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .logo img{
        width:120px;
    }

    .phone{
        display:none !important;
    }

    .project-btn{
        display:none !important;
    }

    .header-left{
        gap:12px;
    }

    .lang-btn{
        height:42px;
        padding:0 14px;
        font-size:14px;
    }

}
/* Stats Mobile Layout */

@media (max-width: 768px){

    .stats{
        display:grid;
        grid-template-columns: repeat(2, 1fr);
        gap:15px;
    }

}
@media (max-width: 768px){

    .services-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card{
        padding: 20px 15px;
    }

    .service-card h3{
        font-size: 18px;
    }

    .service-card p{
        font-size: 14px;
        line-height: 1.6;
    }

}
/* MOBILE WHY SECTION FIX */

@media (max-width: 768px){

    .why-grid{
        display:grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .why-card{
        padding:20px 15px;
    }

    .why-card h3{
        font-size:18px;
    }

    .why-card p{
        font-size:14px;
        line-height:1.6;
    }

}