*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f7f6f3;
color:#333;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}


/* TOPBAR */

/* TOPBAR */

.topbar{
background:linear-gradient(90deg,#062a26,#0f3f3a);
padding:10px 0;
font-size:14px;
}

.topbar-inner{
display:flex;
justify-content:flex-end;
align-items:center;
flex-wrap:wrap;
}

.top-right{
display:flex;
align-items:center;
gap:18px;
flex-wrap:wrap;
}

.top-right a{
color:white;
text-decoration:none;
display:flex;
align-items:center;
gap:6px;
font-size:13px;
}

.top-right i{
color:#c7a46c;
}

/* MOBILE */

@media(max-width:768px){

.topbar-inner{
justify-content:center;
}

.top-right{
justify-content:center;
gap:12px;
}

.top-right a{
font-size:12px;
}

}

/* HEADER */

.header{

background:linear-gradient(90deg,#062a26,#0f3f3a);

height:90px;

position:sticky;
top:0;

z-index:1000;

backdrop-filter:blur(8px);

border-top:1px solid rgba(255,255,255,0.08);

}


.header-inner{

display:flex;
align-items:center;
justify-content:space-between;
height:100%;

}



/* LOGO */

.logo{

font-family:'Playfair Display';
font-size:26px;
color:white;
letter-spacing:1px;

}

.logo span{

color:#c7a46c;

}



/* NAVIGATION */

.nav{

display:flex;
gap:40px;

position:absolute;
left:50%;
transform:translateX(-50%);

}

.nav a{

color:white;
text-decoration:none;
font-weight:500;
letter-spacing:0.4px;

position:relative;

transition:0.3s;

}


/* underline animation */

.nav a::after{

content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;

background:#c7a46c;

transition:0.3s;

}

.nav a:hover::after{

width:100%;

}

.nav a:hover{

color:#c7a46c;

}



/* CTA BUTTON */

.cta-btn{

background:#c7a46c;
color:white;

padding:10px 22px;

border-radius:30px;

text-decoration:none;

font-size:14px;

transition:0.3s;

}

.cta-btn:hover{

background:#b69558;

transform:translateY(-2px);

}



/* MOBILE */

@media(max-width:900px){

.nav{
display:none;
}

}


/* HERO */

.hero{

height:100vh;
position:relative;
overflow:hidden;

}

.hero-slider{

height:100%;
width:100%;
position:absolute;
top:0;
left:0;

}

.hero-slide{

position:absolute;
width:100%;
height:100%;
opacity:0;
transition:1s;

}

.hero-slide img{

width:100%;
height:100%;
object-fit:cover;

}

.hero-slide.active{

opacity:1;

}


/* OVERLAY */

.hero-overlay{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:linear-gradient(
rgba(0,0,0,0.6),
rgba(0,0,0,0.6)
);

z-index:2;

}


/* CONTENT */

.hero-content{

position:relative;
z-index:3;

height:100%;

display:flex;
flex-direction:column;

align-items:center;
justify-content:center;

text-align:center;

color:white;

padding:20px;

max-width:900px;
margin:auto;

}


/* TITLE */

.hero-content h1{

font-family:'Playfair Display';
font-size:60px;
line-height:1.2;
margin-bottom:20px;

}

.hero-content span{

color:#c7a46c;

}


/* TEXT */

.hero-content p{

font-size:18px;
margin-bottom:35px;
letter-spacing:1px;

}


/* BUTTONS */

.hero-buttons{

display:flex;
gap:20px;

}

.hero-btn{

padding:14px 30px;

border-radius:40px;

text-decoration:none;

font-size:14px;

transition:0.4s;

}


/* PRIMARY */

.hero-btn.primary{

background:#c7a46c;
color:white;

}

.hero-btn.primary:hover{

background:#b69558;
transform:translateY(-4px);

}


/* SECONDARY */

.hero-btn.secondary{

border:2px solid white;
color:white;

}

.hero-btn.secondary:hover{

background:white;
color:#0f3f3a;

}


/* MOBILE */

@media(max-width:768px){

.hero-content h1{

font-size:36px;

}

.hero-content p{

font-size:15px;

}

.hero-buttons{

flex-direction:column;

}

}



/* ABOUT SECTION */
/* ABOUT SECTION */

.about{
padding:90px 0;
background:white;
}

.about-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:10px;
}

.about-content h2{
font-family:'Playfair Display';
font-size:40px;
margin-bottom:10px;
}

.about-subtitle{
color:#c7a46c;
margin-bottom:20px;
}

.about-content p{
line-height:1.7;
margin-bottom:25px;
}

.about-btn{
background:#c7a46c;
color:white;
padding:12px 28px;
border-radius:30px;
text-decoration:none;
}

/* MOBILE */

@media(max-width:900px){

.about-wrapper{
grid-template-columns:1fr;
text-align:center;
}

.about-image{
order:-1;
}

}

/* ECOSYSTEM */

.ecosystem{

padding:100px 0;
background:#f7f6f3;
text-align:center;

}

.section-title h2{

font-family:'Playfair Display';
font-size:40px;
margin-bottom:10px;

}

.section-title p{

margin-bottom:50px;
color:#777;

}

.ecosystem-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
}

/* Tablet */

@media(max-width:1100px){
.ecosystem-grid{
grid-template-columns:repeat(3,1fr);
}
}

/* Mobile */

@media(max-width:768px){
.ecosystem-grid{
grid-template-columns:repeat(1,1fr);
}
}

.eco-card{

background:white;

padding:40px 25px;

border-radius:10px;

box-shadow:0 10px 25px rgba(0,0,0,0.08);

transition:0.3s;

}

.eco-card i{

font-size:28px;

color:#c7a46c;

margin-bottom:15px;

}

.eco-card h3{

margin-bottom:10px;

}

.eco-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,0.15);

}

/* BRANDS */

.brands{

padding:100px 0;
background:white;

}

.brands-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

/* CARD */

.brand-card{

position:relative;
overflow:hidden;

border-radius:12px;

display:block;

box-shadow:0 10px 25px rgba(0,0,0,0.1);

}

.brand-card img{

width:100%;
height:320px;

object-fit:cover;

transition:0.5s;

}

.brand-overlay{

position:absolute;

bottom:0;
left:0;

width:100%;

padding:30px;

color:white;

background:linear-gradient(
transparent,
rgba(0,0,0,0.8)
);

}

.brand-overlay h3{

font-family:'Playfair Display';
font-size:24px;
margin-bottom:5px;

}

.brand-overlay p{

font-size:14px;

}

/* HOVER */

.brand-card:hover img{

transform:scale(1.08);

}



/* TABLET */

@media(max-width:1000px){

.brands-grid{

grid-template-columns:repeat(2,1fr);

}

}


/* MOBILE */

@media(max-width:700px){

.brands-grid{

grid-template-columns:1fr;

}

.brand-card img{

height:260px;

}

}

/* SECTION TITLE */

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{

font-family:'Playfair Display', serif;
font-size:42px;
color:#0c2b27;
margin-bottom:10px;

}

.section-title p{

color:#666;
font-size:16px;
max-width:600px;
margin:auto;

}

/* BRAND CARD */

.brand-card{

position:relative;
overflow:hidden;
border-radius:12px;
display:block;

}

.brand-card img{

width:100%;
height:320px;
object-fit:cover;
transition:0.6s;

}

/* OVERLAY */

.brand-overlay{

position:absolute;
top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.65);

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

text-align:center;

color:white;

opacity:0;

transition:0.4s;

padding:20px;

}

.brand-card:hover .brand-overlay{

opacity:1;

}

/* ZOOM IMAGE */

.brand-card:hover img{

transform:scale(1.1);

}

/* LOGO */

.brand-logo img{

height:40px;
margin-bottom:15px;

}

/* TITLE */

.brand-overlay h3{

font-family:'Playfair Display';
font-size:26px;
margin-bottom:8px;

}

/* TEXT */

.brand-overlay p{

font-size:14px;
margin-bottom:18px;

}

/* EXPLORE BUTTON */

.explore-btn{

border:1px solid white;
padding:8px 18px;
border-radius:30px;
font-size:13px;

transition:0.3s;

}

.brand-card:hover .explore-btn{

background:#c7a46c;
border-color:#c7a46c;

}


/* GROUP STATS */

.group-stats{

padding:100px 0;

background:#f7f7f7;

}

/* GRID */

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

/* CARD */

.stat-card{

background:white;

padding:40px;

text-align:center;

border-radius:10px;

transition:0.4s;

box-shadow:0 10px 25px rgba(0,0,0,0.08);

}

/* ICON */

.stat-icon{

font-size:28px;

color:#c7a46c;

margin-bottom:15px;

}

/* NUMBER */

.stat-card h3{

font-family:'Playfair Display';

font-size:36px;

color:#0c2b27;

margin-bottom:5px;

}

/* TEXT */

.stat-card p{

font-size:14px;

color:#666;

}

/* HOVER */

.stat-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 40px rgba(0,0,0,0.15);

}


/* TABLET */

@media(max-width:900px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* MOBILE */

@media(max-width:600px){

.stats-grid{

grid-template-columns:1fr;

}

}

/* REVIEWS */

.reviews{

padding:100px 0;
background:white;

}

.review-slider{

overflow:hidden;
position:relative;

}

.review-track{

display:flex;
gap:30px;
animation:scrollReviews 25s linear infinite;

}

/* CARD */

.review-card{

min-width:320px;

background:#f9f9f9;

padding:30px;

border-radius:10px;

box-shadow:0 10px 25px rgba(0,0,0,0.08);

transition:0.3s;

}

/* HOVER */

.review-card:hover{

transform:translateY(-5px);

}

/* STARS */

.review-stars{

color:#c7a46c;
font-size:18px;
margin-bottom:15px;

}

/* TEXT */

.review-text{

font-size:14px;
color:#555;
line-height:1.6;
margin-bottom:20px;

}

/* USER */

.review-user{

display:flex;
align-items:center;
gap:12px;

}

.review-user img{

width:45px;
height:45px;

border-radius:50%;
object-fit:cover;

}

.review-user h4{

font-size:14px;
margin:0;

}

.review-user span{

font-size:12px;
color:#777;

}


/* AUTO SCROLL */

@keyframes scrollReviews{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* CLIENTS */

.clients{

padding:100px 0;

background:#f7f7f7;

}

/* SLIDER */

.clients-slider{

overflow:hidden;

position:relative;

margin-top:50px;

}

/* TRACK */

.clients-track{

display:flex;

align-items:center;

gap:80px;

width:max-content;

animation:clientsScroll 35s linear infinite;

}

/* LOGOS */

.clients-track img{

height:42px;



opacity:0.7;

transition:0.3s;

}

/* HOVER */

.clients-track img:hover{

filter:grayscale(0);

opacity:1;

transform:scale(1.15);

}

/* ANIMATION */

@keyframes clientsScroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* LOCATION */

.location{

padding:100px 0;

background:white;

}

/* WRAPPER */

.location-wrapper{

display:grid;

grid-template-columns:1fr 1.4fr;

gap:50px;

align-items:center;

margin-top:50px;

}

/* LEFT INFO */

.location-info h3{

font-family:'Playfair Display';

font-size:28px;

margin-bottom:15px;

color:#0c2b27;

}

.location-info p{

line-height:1.7;

color:#555;

margin-bottom:25px;

}

/* DETAILS */

.location-details{

list-style:none;

padding:0;

margin-bottom:25px;

}

.location-details li{

margin-bottom:12px;

display:flex;

align-items:center;

gap:10px;

color:#444;

}

.location-details i{

color:#c7a46c;

}

/* BUTTON */

.map-btn{

display:inline-block;

background:#c7a46c;

color:white;

padding:12px 28px;

border-radius:30px;

text-decoration:none;

font-size:14px;

transition:0.3s;

}

.map-btn:hover{

background:#0c2b27;

}

/* MAP */

.location-map iframe{

width:100%;

height:420px;

border-radius:10px;

border:0;

box-shadow:0 10px 30px rgba(0,0,0,0.1);

}

/* TABLET */

@media(max-width:900px){

.location-wrapper{

grid-template-columns:1fr;

}

.location-map iframe{

height:350px;

}

}

/* FOOTER */
/* FOOTER */

.footer{

background:#0c2b27;

color:#ddd;

padding:80px 0 0;

}

/* GRID */

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1.5fr;

gap:40px;

}

/* TITLE */

.footer-col h3{

color:white;

margin-bottom:20px;

font-size:18px;

}

/* TEXT */

.footer-col p{

line-height:1.7;

font-size:14px;

margin-bottom:20px;

}

/* LINKS */

.footer-col ul{

list-style:none;

padding:0;

}

.footer-col ul li{

margin-bottom:10px;

}

.footer-col ul li a{

color:#ccc;

text-decoration:none;

font-size:14px;

transition:0.3s;

}

.footer-col ul li a:hover{

color:#c7a46c;

}

/* CONTACT */

.footer-contact li{

display:flex;

align-items:center;

gap:10px;

}

.footer-contact i{

color:#c7a46c;

}

/* SOCIAL */

.footer-social{

display:flex;

gap:12px;

margin-top:15px;

}

.footer-social a{

width:35px;

height:35px;

background:#143c37;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

color:white;

transition:0.3s;

}

.footer-social a:hover{

background:#c7a46c;

}

/* BOTTOM */

.footer-bottom{

text-align:center;

padding:18px;

margin-top:60px;

background:#081f1c;

font-size:13px;

}

/* MOBILE */

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

}

}