*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Glacial Indifference', sans-serif;
background:#000;
color:#fff;
}


/* HEADER */

.header{

position:fixed;
top:0;
width:100%;
background:rgba(0,0,0,0.6);
padding:20px 0;
z-index:999;

}


.container{

width:92%;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;

}


/* LOGO */

.logo img{height: 65px}


/* MENU */

.nav ul{

display:flex;
gap:0px;
list-style:none;

}

.nav ul li a{

color:#fff;
text-decoration:none;
font-size:15px;
letter-spacing:1px;

}


/* PARALLAX */

.parallax {
    height: 100vh;
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-left: 4px;
}


/* OVERLAY */

.parallax::before{

content:'';
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);

}


/* TEXT */

.parallax-content{

position:relative;
z-index:2;
max-width:800px;

}


.parallax-content h1{

font-size:70px;
letter-spacing:2px;
margin-bottom:20px;

}


.parallax-content p{

font-size:20px;
color:#ddd;

}


/* MOBILE */

@media(max-width:768px){

.parallax{

background-attachment:scroll;

}

.parallax-content h1{

font-size:36px;

}

.parallax-content p{

font-size:16px;

}

}
/* SERVICES SECTION */

.services{

padding:120px 0;
background:#0c0c0c;

}


.container2{

width:90%;
margin:auto;

}


/* TITLE */

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title h2{

font-size:45px;
margin-bottom:15px;
letter-spacing:1px;

}

.section-title p{

color:#aaa;
font-size:18px;

}


/* GRID */

.services-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;

}
.service-card,
.case-card{
opacity:0;
transform:translateY(40px);
transition:0.6s;
}

/* CARD */

.service-card{

background:#111;
padding:40px;
border:1px solid #222;
transition:0.4s;
cursor:pointer;

}


.service-card:hover{

transform:translateY(-10px);
border-color:#9be813;

}


.service-icon{

font-size:35px;
margin-bottom:20px;

}


.service-card h3{

margin-bottom:15px;
font-size:22px;

}


.service-card p{

color:#bbb;
line-height:1.6;

}


/* MOBILE */

@media(max-width:991px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:600px){

.services-grid{

grid-template-columns:1fr;

}

}
/* GLASS HEADER */

.header{

position:fixed;
top:0;
width:100%;
padding:18px 0;

background:rgba(255,255,255,0.05);
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);

border-bottom:1px solid rgba(255,255,255,0.1);

z-index:999;

}


.container{

width:92%;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;

}




/* MENU */

.nav ul{

display:flex;
gap:0px;
list-style:none;

}

.nav ul li a{color:#fff;text-decoration:none;font-size:15px;letter-spacing:1px;position:relative;padding: 4px 0;margin-top: 1px;margin-bottom: 1px;}



/* HOVER CURSOR LINE */

.nav ul li a::after{

content:'';

position:absolute;

bottom:0;

left:0;

width:0;

height:2px;

background: #9cea13;

transition:0.3s;
}

.nav ul li a:hover::after{

width:100%;

}


/* ANIMATED HAMBURGER */

.menu-toggle{

display:none;
flex-direction:column;
cursor:pointer;
width:30px;

}




/* HAMBURGER ANIMATION */

.menu-toggle.active span:nth-child(1){

transform:rotate(45deg) translate(5px,5px);

}

.menu-toggle.active span:nth-child(2){

opacity:0;

}

.menu-toggle.active span:nth-child(3){

transform:rotate(-45deg) translate(6px,-6px);

}


/* MOBILE MENU */

@media(max-width:991px){

.nav{

position:fixed;
top:70px;
left:-100%;
width:100%;
height:100vh;

background:rgba(0,0,0,0.95);

transition:0.4s;

}

.nav.active{

left:0;

}

.nav ul{

flex-direction:column;
align-items:center;
margin-top:80px;
gap:40px;

}

.menu-toggle{

display:flex;

}

}
/* CASE STUDIES */

.case-studies{

padding:120px 0;
background:#080808;

}


/* GRID */

.case-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}


/* CARD */

.case-card{

position:relative;
overflow:hidden;
cursor:pointer;

}


.case-card img{

width:100%;
height:300px;
object-fit:cover;
transition:0.5s;

}


/* HOVER ZOOM */

.case-card:hover img{

transform:scale(1.1);

}


/* OVERLAY */

.case-overlay{

position:absolute;
bottom:0;
width:100%;
padding:30px;

background:linear-gradient(transparent,rgba(0,0,0,0.85));

transform:translateY(100%);
transition:0.4s;

}


.case-card:hover .case-overlay{

transform:translateY(0);

}


.case-overlay h3{

font-size:22px;
margin-bottom:6px;

}


.case-overlay p{

color:#ccc;

}


/* MOBILE */

@media(max-width:991px){

.case-grid{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:600px){

.case-grid{

grid-template-columns:1fr;

}

}
.case-card{

opacity:0;
transform:translateY(40px);

}
/* CLIENTS */

.clients{

padding:120px 0;
background:#050505;
text-align:center;
overflow:hidden;

}


/* SLIDER */

.logo-slider{

margin-top:60px;
overflow:hidden;
position:relative;

}


/* TRACK */

.logo-track{

display:flex;
width:200%;
animation:scroll 25s linear infinite;

}


.logo-track img{

width:140px;
margin:0 50px;

filter:grayscale(100%);
opacity:0.6;

transition:0.3s;

}


/* HOVER */

.logo-track img:hover{

filter:grayscale(0);
opacity:1;
transform:scale(1.1);

}


/* SCROLL ANIMATION */

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


/* FADE EDGES */

.logo-slider::before,
.logo-slider::after{

content:"";
position:absolute;
top:0;
width:120px;
height:100%;
z-index:2;

}

.logo-slider::before{

left:0;
background:linear-gradient(to right,#050505,transparent);

}

.logo-slider::after{

right:0;
background:linear-gradient(to left,#050505,transparent);

}


/* MOBILE */

@media(max-width:768px){

.logo-track img{

width:100px;
margin:0 30px;

}

}
/* MARQUEE SECTION */

.marquee-section{

background:#000;
padding:120px 0;
overflow:hidden;

}


/* ROW */

.marquee{

width:100%;
overflow:hidden;
margin:40px 0;

}


/* TRACK */

.marquee-track{

display:flex;
align-items:center;
gap:80px;

width:max-content;

animation:marquee 30s linear infinite;

}


/* REVERSE */

.marquee.reverse .marquee-track{

animation:marquee-reverse 30s linear infinite;

}


/* TEXT */

.marquee-track span{

font-size:120px;
font-weight:700;
white-space:nowrap;
color:#fff;

}


/* IMAGE */

.marquee-track img{

height:120px;
border-radius:8px;

}


/* ANIMATION */

@keyframes marquee{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


@keyframes marquee-reverse{

0%{
transform:translateX(-50%);
}

100%{
transform:translateX(0);
}

}


/* MOBILE */

@media(max-width:768px){

.marquee-track span{

font-size:60px;

}

.marquee-track img{

height:70px;

}

}
/* EVENT SECTION */

.event-section{

height:100vh;
display:flex;
align-items:center;
overflow:hidden;
background:#000;

}


/* SLIDER */

.event-slider{

width:100%;
overflow:hidden;

}


/* TRACK */

.event-track{

display:flex;
transition:transform 0.7s ease;

}


/* ITEM */

.event-item{

min-width:50%;
height:80vh;
padding:20px;
position:relative;

}


/* IMAGE */

.event-item img{

width:100%;
height:100%;
object-fit:cover;
border-radius:12px;

}


/* TEXT */

.event-info{

position:absolute;
bottom:40px;
left:40px;
color:#fff;

}

.event-info h3{

font-size:32px;
margin-bottom:6px;

}

.event-info p{

font-size:16px;
color:#ddd;

}


/* MOBILE */

@media(max-width:768px){

.event-item{

min-width:100%;

}

}
/* ======================
AUTHORITY STRIP
====================== */

.authority-strip{

/*padding:100px 0;*/
background-size:cover;
background-position:center;
position:relative;
text-align:center;

}



.authority-strip .container2{

position:relative;
z-index:2;

}

/* GRID */

.authority-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
margin-bottom:50px;

}

/* ITEMS */

.authority-item {
    /*background: rgba(255, 255, 255, 0.05);*/
    backdrop-filter: blur(10px);
    padding: 40px;
    /*border: 1px solid #9cea13;*/
    transition: 0.4s;
}

.authority-item:hover{

transform:translateY(-8px);
border-color:#ffcc00;

}

/* COUNTERS */

.authority-item h2{font-size:50px;color: #9cea13;margin-bottom:10px;}

.authority-item p{

color:#ddd;
font-size:16px;

}


/* LOGO STRIP */

.authority-logos{

display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:60px;

}

.authority-logos img{

height:40px;
opacity:0.6;
filter:grayscale(100%);
transition:0.3s;

}

.authority-logos img:hover{

opacity:1;
filter:grayscale(0);
transform:scale(1.1);

}

/* MOBILE */

@media(max-width:900px){

.authority-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:500px){

.authority-grid{

grid-template-columns:1fr;

}

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

.footer{

background:#000;
padding:120px 0 40px 0;
border-top:1px solid rgba(255,255,255,0.1);

}


.footer-container{

width:90%;
margin:auto;

display:grid;
grid-template-columns:1.2fr 1fr 1fr;

gap:80px;

}


/* CTA */

.cta-box {
    background: #000000;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;
    font-size: 28px;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Inter';
    margin-left: -44px;
}



.office {
    margin-top: 30px;
    line-height: 1.6;
    font-family: 'Inter';
    font-size: 22px !important;
}


/* MENU */

.footer-menu{

display:flex;
flex-direction:column;

}

.footer-menu a{padding:18px 0;color: #ffffff;text-decoration:none;border-bottom:1px solid rgba(255,255,255,0.08);transition:0.3s;font-family: 'Inter';}

.footer-menu a:hover{

color:#fff;

}


/* CONTACT */

.footer-contact p {
    color: #ffffff;
    margin-bottom: 5px;
    font-family: 'Inter';
    font-size: 17px;
}

.footer-contact h4 {
    margin-bottom: 25px;
    color: #ffffff;
    font-family: 'Inter';
}

/* SOCIAL */

.footer-social{

display:flex;
gap:20px;

margin-top:20px;

}

.footer-social a{

width:45px;
height:45px;

display:flex;
align-items:center;
justify-content:center;

border:1px solid rgba(255,255,255,0.2);

color:#fff;
font-size:18px;

transition:0.3s;

}

.footer-social a:hover{border-color: #9cea13;color: #9cea13;}


/* BOTTOM */

.footer-bottom{

margin-top:60px;

border-top:1px solid rgba(255,255,255,0.08);

padding-top:20px;

text-align:center;

color:#777;

font-size:14px;

}


/* MOBILE */

@media(max-width:900px){

.footer-container{

grid-template-columns:1fr;

gap:50px;

}

.cta-box{

font-size:22px;

}

}
/* STORY SECTION */

.story-section{

padding:160px 0;
background:#000;
border-top:1px solid rgba(255,255,255,0.05);

}

.story-container{

width:100%;
margin:auto;

display:grid;
grid-template-columns:1fr 1.2fr;
gap:100px;

align-items:center;

}

/* REVERSE LAYOUT */

.story-container.reverse{

grid-template-columns:1.2fr 1fr;

}

.story-container.reverse .story-text{

order:2;

}

.story-container.reverse .story-image{

order:1;

}


/* TEXT */

.story-number{

color:#666;
font-size:18px;

}

.story-text h2{

font-size:64px;
margin:15px 0;

}

.story-text p{

color:#aaa;
font-size:18px;
line-height:1.7;

}


/* IMAGE */

.story-image{

overflow:hidden;

}

.story-image img{

width:100%;
height:520px;

object-fit:cover;

transform:scale(1.1);

transition:transform 0.6s ease;

}


/* MOBILE */

@media(max-width:900px){

.story-container{

grid-template-columns:1fr;
gap:50px;

}

.story-text h2{

font-size:40px;

}

}
/* TEAM SECTION */

.team-section{

padding:140px 0;
background:#000;

}


.team-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;

}


/* CARD */

.team-card{

overflow:hidden;
position:relative;
cursor:pointer;

}


/* IMAGE */

.team-image{

position:relative;
overflow:hidden;

}


.team-image img{

width:100%;
height:420px;
object-fit:cover;

filter:grayscale(100%);

transition:0.6s;

}


/* HOVER IMAGE */

.team-card:hover img{

filter:grayscale(0);
transform:scale(1.1);

}


/* OVERLAY */

.team-overlay{

position:absolute;
bottom:0;

width:100%;
padding:30px;

background:linear-gradient(
transparent,
rgba(0,0,0,0.9)
);

transform:translateY(60px);

transition:0.4s;

}


.team-card:hover .team-overlay{

transform:translateY(0);

}


/* TEXT */

.team-overlay h3{

font-size:22px;
margin-bottom:5px;

}

.team-overlay span{

color:#bbb;
font-size:14px;

}


/* MOBILE */

@media(max-width:1000px){

.team-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.team-grid{

grid-template-columns:1fr;

}

}
/* SERVICES HERO */

.services-hero{
padding:180px 0 120px 0;
background:#000;
border-bottom:1px solid rgba(255,255,255,0.08);
}

.services-hero-container{
width:90%;
margin:auto;
display:grid;
grid-template-columns:1.2fr 1fr;
gap:80px;
align-items:center;
}

.services-title h1{
font-size:180px;
line-height:1;
}

.services-info p{
color:#aaa;
font-size:18px;
margin-bottom:30px;
line-height:1.6;
}

.services-btn{
display:inline-block;
padding:14px 30px;
border:1px solid #fff;
color:#fff;
text-decoration:none;
transition:0.3s;
}

.services-btn:hover{
background:#fff;
color:#000;
}


/* SERVICE ROW */

.service-row{
padding:160px 0;
background:#000;
overflow:hidden;
border-top:1px solid rgba(255,255,255,0.05);
}

.service-container{
width:90%;
margin:auto;
display:grid;
grid-template-columns:1fr 1.2fr;
gap:100px;
align-items:center;
opacity:0;
transform:translateY(80px);
transition:1s ease;
}

.service-row.active .service-container{
opacity:1;
transform:translateY(0);
}

/* reverse layout */

.service-container.reverse{
grid-template-columns:1.2fr 1fr;
}

.service-container.reverse .service-text{
order:2;
}

.service-container.reverse .service-image{
order:1;
}


/* TEXT */

.service-number{
color:#666;
font-size:18px;
}

.service-text h2{
font-size:60px;
margin:15px 0;
}

.service-text p{
color:#aaa;
font-size:18px;
line-height:1.7;
}


/* IMAGE */

.service-image{
overflow:hidden;
}

.service-image img{
width:100%;
height:520px;
object-fit:cover;
transform:scale(1.2);
transition:transform 1.2s ease;
}

.service-row.active img{
transform:scale(1);
}


/* MOBILE */

@media(max-width:900px){

.services-title h1{
font-size:80px;
}

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

.service-container{
grid-template-columns:1fr;
gap:40px;
}

.service-container.reverse .service-text{
order:1;
}

.service-container.reverse .service-image{
order:2;
}

.service-text h2{
font-size:36px;
}

}
/* CASE STUDIES */

.case-row{

padding:160px 0;
background:#000;
overflow:hidden;
border-top:1px solid rgba(255,255,255,0.05);

}

.case-container{

width:90%;
margin:auto;

display:grid;
grid-template-columns:1fr 1.2fr;
gap:100px;

align-items:center;

opacity:0;
transform:translateY(80px);
transition:1s ease;

}

.case-row.active .case-container{

opacity:1;
transform:translateY(0);

}


/* reverse */

.case-container.reverse{

grid-template-columns:1.2fr 1fr;

}

.case-container.reverse .case-text{

order:2;

}

.case-container.reverse .case-image{

order:1;

}


/* TEXT */

.case-number{

color:#666;
font-size:18px;

}

.case-text h2{

font-size:56px;
margin:15px 0;

}

.case-text p{

color:#aaa;
font-size:18px;
line-height:1.7;

}

.case-text ul{

margin-top:20px;
color:#bbb;

}

.case-text li{

margin-bottom:8px;

}


/* IMAGE */

.case-image{

overflow:hidden;

}

.case-image img{

width:100%;
height:520px;
object-fit:cover;

transform:scale(1.2);
transition:1.2s;

}

.case-row.active img{

transform:scale(1);

}


/* MOBILE */

@media(max-width:900px){

.case-container{

grid-template-columns:1fr;
gap:40px;

}

.case-container.reverse .case-text{
order:1;
}

.case-container.reverse .case-image{
order:2;
}

.case-text h2{

font-size:36px;

}

}
/* GLOBAL MAP */

.global-map-section{

padding:140px 0;
background:#000;
text-align:center;

}

.map-container{

position:relative;
width:90%;
margin:auto;

}

.world-map{

width:100%;
opacity:0.4;

}

/* MARKERS */

.marker{

position:absolute;
width:18px;
height:18px;
background:#ffcc00;
border-radius:50%;
cursor:pointer;

animation:pulse 2s infinite;

}

.marker span{

position:absolute;
top:-35px;
left:-20px;

background:#111;
padding:6px 12px;
font-size:13px;
opacity:0;

transition:0.3s;

}

.marker:hover span{

opacity:1;

}

@keyframes pulse{

0%{box-shadow:0 0 0 0 rgba(255,204,0,0.7);}
70%{box-shadow:0 0 0 15px rgba(255,204,0,0);}
100%{box-shadow:0 0 0 0 rgba(255,204,0,0);}

}

/* MARKER POSITIONS */

.marker.dubai{top:50%;left:55%;}
.marker.singapore{top:60%;left:70%;}
.marker.london{top:35%;left:45%;}
.marker.mauritius{top:65%;left:58%;}
.marker.bangkok{top:55%;left:75%;}
.marker.paris{top:40%;left:47%;}



/* FLIGHT ROUTES */

.flight-routes{

position:absolute;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;

}

.route{

fill:none;
stroke:#ffcc00;
stroke-width:2;
stroke-dasharray:8 8;

animation:flight 6s linear infinite;

}

@keyframes flight{

0%{stroke-dashoffset:100;}
100%{stroke-dashoffset:0;}

}


/* DESTINATIONS */

.destination-section{

padding:120px 0;
background:#050505;

}

.destination-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.destination-card{

position:relative;
overflow:hidden;

}

.destination-card img{

width:100%;
height:320px;
object-fit:cover;

transition:0.5s;

}

.destination-card:hover img{

transform:scale(1.1);

}

.destination-info{

position:absolute;
bottom:0;
padding:25px;
width:100%;

background:linear-gradient(transparent,rgba(0,0,0,0.9));

}

.destination-info h3{

font-size:22px;

}

.destination-info p{

color:#bbb;

}
.marker{
position:absolute;
width:16px;
height:16px;
background:#ffcc00;
border-radius:50%;
animation:pulse 2s infinite;
}

.marker span{
position:absolute;
top:-30px;
left:-20px;
background:#111;
padding:5px 10px;
font-size:12px;
opacity:0;
transition:0.3s;
}

.marker:hover span{
opacity:1;
}

.marker.dubai{top:52%;left:58%;}
.marker.singapore{top:63%;left:74%;}
.marker.london{top:38%;left:46%;}
.marker.bangkok{top:58%;left:78%;}
.marker.mauritius{top:67%;left:60%;}
/* DIAGONAL CLIENT GALLERY */

.client-diagonal{

background:#000;
padding:160px 0;
overflow:hidden;

}

.diagonal-wrapper{

transform:rotate(-6deg);
width:120%;
margin-left:-10%;

}

.diagonal-row{

display:flex;
gap:40px;
width:max-content;

}

.row1{

animation:scrollLeft 35s linear infinite;

}

.row2{

animation:scrollRight 35s linear infinite;
margin-top:80px;

}

.diagonal-row img{

width:420px;
height:260px;
object-fit:cover;

filter:grayscale(100%);
transition:0.5s;

}

.diagonal-row img:hover{

filter:grayscale(0);
transform:scale(1.08);

}

@keyframes scrollLeft{

0%{transform:translateX(0);}
100%{transform:translateX(-50%);}

}

@keyframes scrollRight{

0%{transform:translateX(-50%);}
100%{transform:translateX(0);}

}



/* LOGO CLOUD */

.logo-cloud{

padding:120px 0;
background:#050505;
overflow:hidden;

}

.logo-track{

display:flex;
gap:80px;
animation:logoScroll 25s linear infinite;

}

.logo-track img{

height:60px;
opacity:0.6;
filter:grayscale(100%);
transition:0.3s;

}

.logo-track img:hover{

opacity:1;
filter:grayscale(0);
transform:scale(1.1);

}

@keyframes logoScroll{

0%{transform:translateX(0);}
100%{transform:translateX(-50%);}

}



/* TESTIMONIAL SECTION */

.testimonial-section{

background:#000;
padding:140px 0;

}

.testimonial-container{

width:80%;
margin:auto;
text-align:center;

}

.testimonial-slider{

overflow:hidden;
margin-top:60px;

}

.testimonial-track{

display:flex;
transition:transform 0.7s ease;

}

.testimonial-item{

min-width:100%;
padding:60px;

background:#111;
border:1px solid #222;

}

.testimonial-item p{

font-size:22px;
line-height:1.6;
color:#ddd;

}

.testimonial-item h4{

margin-top:30px;
color:#ffcc00;

}

.testimonial-controls{

margin-top:40px;

}

.testimonial-controls button{

background:#111;
border:1px solid #444;
color:#fff;

width:50px;
height:50px;

font-size:22px;
cursor:pointer;

margin:10px;

transition:0.3s;

}

.testimonial-controls button:hover{

border-color:#ffcc00;
color:#ffcc00;

}
/* CONTACT INFO */

.contact-section{

padding:120px 0;
background:#050505;

}

.contact-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;

}

.contact-card{

background:#111;
padding:40px;
text-align:center;
border:1px solid #222;
transition:0.4s;

}

.contact-card i{

font-size:28px;
color:#ffcc00;
margin-bottom:20px;

}

.contact-card:hover{

transform:translateY(-10px);
border-color:#ffcc00;

}



/* CONTACT FORM */

.contact-form-section{

padding:140px 0;
background:#000;

}

.contact-form-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:80px;

}

.contact-text h2{

font-size:42px;
margin-bottom:20px;

}

.contact-text p{

color:#aaa;
line-height:1.7;

}



.contact-form form{

display:flex;
flex-direction:column;
gap:20px;

}

.contact-form input,
.contact-form textarea{

padding:16px;
background:#111;
border:1px solid #333;
color:#fff;

}

.contact-form button{

padding:16px;
background:#ffcc00;
border:none;
color:#000;
font-weight:bold;
cursor:pointer;
transition:0.3s;

}

.contact-form button:hover{

background:#fff;

}



/* MAP */

.map-section iframe{

width:100%;
height:500px;
border:none;

}



/* MOBILE */

@media(max-width:900px){

.contact-grid{

grid-template-columns:1fr 1fr;

}

.contact-form-grid{

grid-template-columns:1fr;

}

}
/* THANK YOU PAGE */

.thank-section{

min-height:80vh;
display:flex;
align-items:center;
justify-content:center;

background:#000;
text-align:center;

padding:120px 20px;

}

.thank-container{

max-width:700px;

}

.thank-icon{

font-size:80px;
color:#ffcc00;

margin-bottom:30px;

animation:pop 0.6s ease;

}

@keyframes pop{

0%{
transform:scale(0.3);
opacity:0;
}

100%{
transform:scale(1);
opacity:1;
}

}

.thank-container h1{

font-size:48px;
margin-bottom:20px;

}

.thank-container p{

color:#aaa;
font-size:18px;
line-height:1.6;
margin-bottom:40px;

}

.thank-buttons{

display:flex;
justify-content:center;
gap:20px;
margin-bottom:40px;

}

.btn-home{

padding:14px 30px;
border:1px solid #fff;
color:#fff;
text-decoration:none;

transition:0.3s;

}

.btn-home:hover{

background:#ffcc00;
color:#000;
border-color:#ffcc00;

}

.thank-contact{

color:#bbb;
line-height:1.6;

}






/* ================================
FULLSCREEN MENU FIXED
================================ */
.nav{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#000;
    z-index:99999;

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:0.5s ease;

    overflow:hidden;
}

/* ACTIVE */
.nav.ew-active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

/* ================================
CENTER PERFECT
================================ */
.nav ul{
    display:flex !important;
    flex-direction:column !important;
    justify-content:center;
    align-items:flex-start;
    height:100%;
}

/* ================================
TEXT STYLE
================================ */
.nav ul li a{
    font-size: clamp(25px, 3vw, 40px);
    font-weight:normal;
    color:#555;
    text-decoration:none;
    position:relative;
    transition:0.4s;
    padding-left:102px;
    font-family: 'Inter';
}






/* HOVER */
.nav ul li a:hover{
    color:#fff;
}

/* ================================
ARROW FIX
================================ */
.nav ul li a::before{
    content:"→";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    opacity:0;
    transition:0.3s;
}

.nav ul li a:hover::before{
    opacity:1;
    left:10px;
}

/* ================================
FADE EFFECT
================================ */
.nav ul:hover li a{
    opacity:0.2;
}
.nav ul li a:hover{
    opacity:1 !important;
}



.menu-toggle{
    display:flex !important;
    flex-direction:column;
    position:fixed;
    top:30px;      
    right:20px;
    z-index:100000;
    cursor:pointer;
}

/* TOGGLE LINES (SMALL HEIGHT) */
.menu-toggle span{
    width:26px;   
    height:2px;     
    background:#fff;
    margin:4px 0;  
    transition:0.3s;
}

/* CROSS ANIMATION */
.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(4px,4px);
}
.menu-toggle.active span:nth-child(2){
    opacity:0;
}
.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(4px,-4px);
}