/*==================================
        RESET
==================================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Montserrat", Sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}
/*==================================
        HEADER
==================================*/

/*=========================
      HEADER
==========================*/

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:82px;

    background:#fff;

    z-index:99999;

    transition:.35s;

    box-shadow:0 2px 12px rgba(0,0,0,.04);

}

header .container{

    max-width:1400px;

    width:92%;

    height:82px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

}
header.scrolled{

    background:#ffffff;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}
header .container{

    height:100px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}
.logo{

display:flex;

align-items:center;

}

.logo img{

height:58px;

width:auto;

}
.navbar{


margin-right:40px;

}

.menu{

display:flex;

align-items:center;

gap:38px;

}

.menu>li{

    position:relative;

}
.menu>li>a{

font-family:'Poppins',sans-serif;

font-size:16px;

font-weight:500;

color:#222;

text-transform:uppercase;

transition:.3s;

}

.menu>li>a:hover{

color:#b88746;

}

.menu>li>a:hover{

    color:#C38A3A;

}

.dropdown{

position:absolute;

top:100%;

left:0;

width:250px;

background:#222;

opacity:0;

visibility:hidden;

transition:.3s;

overflow:visible;   /* important */

z-index:999;

}

.has-dropdown:hover>.dropdown{

    visibility:visible;

    opacity:1;

    top:100%;

}
.dropdown li{

    position:relative;

}

.dropdown li a{

    display:flex;

    justify-content:space-between;

    padding:18px 25px;

    color:#fff;

    font-size:15px;

    transition:.35s;

}

.dropdown li a:hover{

    background:#2e2e2e;

}
.submenu{

position:absolute;

top:0;

left:100%;

width:240px;

background:#222;

opacity:0;

visibility:hidden;

transition:.3s;

z-index:1000;

}
.has-submenu{

position:relative;

}

.has-submenu:hover>.submenu{

opacity:1;

visibility:visible;

left:100%;

}
.dropdown li{

position:relative;

}

.dropdown li a{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 24px;

color:#fff;

}

.has-submenu:hover>.submenu{

    visibility:visible;

    opacity:1;

}
.header-right{

display:flex;

align-items:center;

gap:18px;

margin-left:25px;

}
.btn-outline{

display:flex;

align-items:center;

justify-content:center;

height:44px;

padding:0 28px;

border:1px solid #222;

color:#222;

background:#fff;

font-size:14px;

font-weight:500;

white-space:nowrap;

}

.btn-outline:hover{

background:#222;

color:#fff;

}

.btn-dark{

height:44px;

padding:0 34px;

display:flex;

align-items:center;

justify-content:center;

background:#222;

color:#fff;

font-size:14px;

font-weight:600;

}
.btn-dark1{

height:44px;

padding:0 34px;

display:flex;

align-items:center;

justify-content:center;

background:#fff;

color:#000;

font-size:14px;

font-weight:600;
 border:1px solid #111;
}
.btn-outline{

    border:1px solid #111;

    color:#111;

    padding:14px 28px;

    font-size:14px;

    transition:.35s;

}

.btn-outline:hover{

    background:#111;

    color:#fff;

}

.btn-dark{

    background:#222;

    color:#fff;

    padding:15px 30px;

    transition:.35s;

}

.btn-dark:hover{

    background:#000;

}
.mobile-toggle{

    width:40px;

    height:40px;

    display:none;

    flex-direction:column;

    justify-content:center;

    gap:6px;

    cursor:pointer;

}

.mobile-toggle span{

    width:28px;

    height:3px;

    background:#222;

    transition:.35s;

}
.hero{

    margin-top:100px;

    width:100%;

    height:80vh;

    background:#f5f5f5;

    display:flex;

    align-items:center;

    justify-content:center;

}

.hero-placeholder{

    font-size:40px;

    color:#777;

    font-family:'Barlow Condensed',sans-serif;

}
/* Lock body when menu is open */

body.menu-open{

    overflow:hidden;

}
/*==================================
        HERO SECTION
==================================*/

.hero{
    width:100%;
    height:80vh;
    min-height:650px;
    margin-top:100px;
    position:relative;
    overflow:hidden;
}

.heroSwiper{
    width:100%;
    height:100%;
}

.heroSwiper .swiper-slide{
    position:relative;
    width:100%;
    height:100%;
}

.heroSwiper .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    transition:transform 8s linear;
}

/* Zoom Effect */

.swiper-slide-active img{
    transform:scale(1.08);
}

/* Dark Overlay */

.hero-overlay{

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:100%;

    background:linear-gradient(
    to right,
    rgba(0,0,0,.70),
    rgba(0,0,0,.35),
    rgba(0,0,0,.10)
    );

    z-index:1;

}

/* Content */

.hero-content{

    position:absolute;

    left:8%;
    top:50%;

    transform:translateY(-50%);

    z-index:2;

    max-width:700px;

    color:#fff;

}

/* Subtitle */

.hero-subtitle{

    display:inline-block;

    font-size:15px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;

    color:#d8b26a;

    font-weight:600;

}

/* Heading */

.hero-content h1{

    font-family:'Barlow Condensed',sans-serif;

    font-size:72px;

    line-height:1.05;

    font-weight:700;

    margin-bottom:25px;

    text-transform:uppercase;

}

/* Paragraph */

.hero-content p{

    font-size:18px;

    line-height:1.8;

    color:#efefef;

    max-width:620px;

    margin-bottom:40px;

}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* White Outline */

.hero-outline{

    border:1px solid #fff;

    color:#fff;

}

.hero-outline:hover{

    background:#fff;

    color:#111;

}

/* Swiper Pagination */

.swiper-pagination{

    bottom:35px !important;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#fff;

    opacity:.4;

}

.swiper-pagination-bullet-active{

    opacity:1;

}

/* Navigation */

.swiper-button-next,
.swiper-button-prev{

    color:#fff;

    width:55px;

    height:55px;

}

.swiper-button-next:after,
.swiper-button-prev:after{

    font-size:22px;

}
/*==================================
        HERO ANIMATIONS
==================================*/

.hero-subtitle{
    opacity:0;
    animation:fadeUp .7s .2s forwards;
}

.hero-content h1{
    opacity:0;
    animation:fadeUp .8s .4s forwards;
}

.hero-content p{
    opacity:0;
    animation:fadeUp .8s .7s forwards;
}

.hero-buttons{
    opacity:0;
    animation:fadeUp .8s 1s forwards;
}

@keyframes fadeUp{

0%{

opacity:0;
transform:translateY(40px);

}

100%{

opacity:1;
transform:translateY(0);

}

}
.btn-dark{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 36px;

background:#1f1f1f;

color:#fff;

font-weight:600;

transition:.35s;

border:2px solid #1f1f1f;

}

.btn-dark:hover{

background:#fff;

color:#111;

transform:translateY(-3px);

}

.btn-outline{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 36px;

border:2px solid #fff;

color:#fff;

transition:.35s;

}

.btn-outline:hover{

background:#fff;

color:#111;

transform:translateY(-3px);

}
.hero-overlay{

position:absolute;

left:0;
top:0;

width:100%;
height:100%;

background:
linear-gradient(
90deg,
rgba(0,0,0,.75) 0%,
rgba(0,0,0,.45) 45%,
rgba(0,0,0,.20) 100%
);

z-index:1;

}
.swiper-slide img{

transform:scale(1);

transition:transform 8s linear;

}

.swiper-slide-active img{

transform:scale(1.12);

}
.swiper-pagination-bullet{

width:14px;

height:14px;

background:#fff;

opacity:.35;

transition:.3s;

}

.swiper-pagination-bullet-

{

width:35px;

border-radius:20px;

opacity:1;

background:#c89b56;

}
.swiper-button-next,
.swiper-button-prev{

width:60px;

height:60px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(8px);

border-radius:50%;

transition:.35s;

}

.swiper-button-next:hover,
.swiper-button-prev:hover{

background:#c89b56;

}

.swiper-button-next:after,
.swiper-button-prev:after{

font-size:18px;

font-weight:bold;

}
/*=====================================
        COMPANY STORY
======================================*/

.company-story{

    padding:110px 0;

    background:#faf8f5;

    position:relative;

    overflow:hidden;

}

.company-story::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:#d6b47d20;

    border-radius:50%;

    top:-180px;

    right:-120px;

}

.section-heading{

    text-align:center;

    max-width:750px;

    margin:auto;

    margin-bottom:70px;

    position:relative;

    z-index:2;

}

.section-heading span{

    display:inline-block;

    color:#b88645;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-heading h2{

   font-family: "Sofia Sans Condensed", Sans-serif;

    font-size:58px;

    color:#1f1f1f;

    margin-bottom:20px;

}

.section-heading p{

    font-size:14px;

    color:#666;

    line-height:1.8;

}

/*============================*/

.story-wrapper{

    display:grid;

    grid-template-columns:520px 1fr;

    gap:70px;

    align-items:center;

    margin-bottom:70px;

}

/*============================*/

.story-image{

    position:relative;

}

.story-image img{

    width:100%;

    border-radius:25px;

    display:block;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

/*============================*/

.story-content{

    background:#fff;

    padding:50px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.story-content h3{

    font-family:'Barlow Condensed',sans-serif;

    font-size:42px;

    margin-bottom:25px;

    color:#222;

}

.story-content p{

    color:#555;

    font-size:17px;

    line-height:1.9;

    margin-bottom:30px;

}

.story-content ul{

    list-style:none;

}

.story-content ul li{

    padding-left:35px;

    margin-bottom:18px;

    position:relative;

    color:#444;

}

.story-content ul li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#b88645;

    font-weight:bold;

}

/*============================*/

.vision-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-bottom:60px;

}

.vision-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.vision-card:hover{

    transform:translateY(-8px);

}

.vision-card h3{

    font-size:38px;

    font-family:'Barlow Condensed',sans-serif;

    margin-bottom:20px;

}

.vision-card p{

    color:#666;

    line-height:1.9;

}

/*============================*/

.counter-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.counter{

    background:#222;

    color:#fff;

    text-align:center;

    padding:45px;

    border-radius:18px;

}

.counter h2{

    font-size:55px;

    font-family:'Barlow Condensed',sans-serif;

    color:#d6b47d;

    margin-bottom:10px;

}

.counter span{

    letter-spacing:1px;

}
/*=============================
      SOLUTIONS
==============================*/

.solutions-section{

padding:100px 0;

background:#fff;

}

.section-title{

text-align:center;

max-width:700px;

margin:auto auto 70px;

}

.section-title span{

color:#c58b3c;

font-size:15px;

letter-spacing:3px;

font-weight:600;

}

.section-title h2{

font-size:58px;

font-family:'Barlow Condensed',sans-serif;

margin:15px 0;

}

.section-title p{

font-size:17px;

color:#666;

line-height:1.8;

}

/************************/

.solution-wrapper{

display:grid;

grid-template-columns:1fr 500px 1fr;

align-items:center;

gap:50px;

}

/************************/

.solution-column{

display:flex;

flex-direction:column;

gap:60px;

}

/************************/

.solution-box{

position:relative;

padding-left:60px;

}

.solution-box .number{

position:absolute;

left:0;

top:0;

font-size:48px;

font-family:'Barlow Condensed',sans-serif;

font-weight:700;

color:#d8b26a;

}

.solution-box h3{

font-size:30px;

font-family:'Barlow Condensed',sans-serif;

margin-bottom:18px;

}

.solution-box p{

line-height:1.9;

color:#555;

}

/************************/

.solution-center{

position:relative;

display:flex;

justify-content:center;

align-items:center;

}

/************************/

.image-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:12px;

}

.image-grid img{

width:100%;

height:200px;

object-fit:cover;

border-radius:18px;

transition:.4s;

}

.image-grid img:hover{

transform:scale(1.05);

}

/************************/

.circle{

position:absolute;

width:150px;

height:150px;

background:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 10px 35px rgba(0,0,0,.12);

z-index:10;

}

.circle img{

width:70px;

}

/************************/

@media(max-width:991px){

.solution-wrapper{

grid-template-columns:1fr;

}

.solution-center{

order:-1;

margin-bottom:50px;

}

.section-title h2{

font-size:42px;

}

}

@media(max-width:768px){

.image-grid img{

height:150px;

}

.solution-box{

padding-left:45px;

}

.solution-box .number{

font-size:38px;

}

.section-title h2{

font-size:34px;

}

}
/*==============================
        PRODUCTS
===============================*/

.products{

padding:110px 0;

background:#f8f7f4;

}

.product-filter{

display:flex;

justify-content:center;

gap:15px;

margin:50px 0 60px;

flex-wrap:wrap;

}

.product-filter button{

padding:12px 28px;

border:none;

background:#fff;

cursor:pointer;

border-radius:40px;

font-weight:600;

transition:.35s;

box-shadow:0 5px 15px rgba(0,0,0,.06);

}

.product-filter button.active,

.product-filter button:hover{

background:#b88645;

color:#fff;

}

.product-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.product-card{

background:#fff;

border-radius:20px;

overflow:hidden;

transition:.35s;

box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.product-card:hover{

transform:translateY(-12px);

}

.product-img{

overflow:hidden;

height:330px;

}

.product-img img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-content{

padding:30px;

}

.product-content span{

display:inline-block;

font-size:13px;

letter-spacing:2px;

text-transform:uppercase;

color:#b88645;

margin-bottom:12px;

}

.product-content h3{

font-size:30px;

font-family:'Barlow Condensed',sans-serif;

margin-bottom:18px;

}

.product-content a{

color:#222;

font-weight:600;

transition:.3s;

}

.product-content a:hover{

color:#b88645;

}

.product-btn{

text-align:center;

margin-top:60px;

}
/*=========================
      FACILITY
==========================*/

.facility{

padding:110px 0;

background:#faf8f5;

}

.facility-wrapper{

display:grid;

grid-template-columns:520px 1fr;

gap:70px;

align-items:center;

margin-top:70px;

}

/***************/

.facility-images{

display:flex;

flex-direction:column;

gap:25px;

}

.facility-images img{

width:100%;

display:block;

border-radius:18px;

box-shadow:0 20px 45px rgba(0,0,0,.12);

transition:.4s;

}

.facility-images img:hover{

transform:scale(1.03);

}

/***************/

.facility-content h3{

font-size:46px;

margin-bottom:25px;

font-family:'Barlow Condensed',sans-serif;

}

.facility-content p{

font-size:17px;

line-height:1.9;

color:#666;

margin-bottom:35px;

}

/***************/

.feature-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:40px;

}

.feature-card{

background:#fff;

padding:30px;

border-radius:16px;

box-shadow:0 10px 25px rgba(0,0,0,.06);

transition:.3s;

}

.feature-card:hover{

transform:translateY(-8px);

}

.feature-card i{

font-size:34px;

color:#b88645;

margin-bottom:15px;

}

.feature-card h4{

margin-bottom:10px;

font-size:22px;

}

.feature-card p{

margin:0;

font-size:15px;

line-height:1.7;

}

/***************/

.facility-counter{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

margin-top:20px;

}

.facility-counter div{

background:#222;

color:#fff;

padding:30px;

border-radius:15px;

text-align:center;

}

.facility-counter h2{

font-size:46px;

color:#d8b26a;

margin-bottom:8px;

font-family:'Barlow Condensed',sans-serif;

}
/*=========================
      WHY US
=========================*/

.why-us{

padding:100px 0;

background:#faf8f5;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.why-card{

background:#fff;

padding:45px 30px;

text-align:center;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.why-card:hover{

transform:translateY(-10px);

}

.icon{

width:80px;

height:80px;

background:#f6efe5;

border-radius:50%;

margin:0 auto 25px;

display:flex;

justify-content:center;

align-items:center;

}

.icon i{

font-size:32px;

color:#b88645;

}

.why-card h3{

font-size:26px;

font-family:'Barlow Condensed',sans-serif;

margin-bottom:15px;

}

.why-card p{

color:#666;

line-height:1.8;

}

@media(max-width:991px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}
/*==========================
        TEAM
==========================*/

.team{

padding:100px 0;

background:#fff;

}

.team-wrapper{

display:flex;

justify-content:center;

gap:80px;

margin-top:60px;

flex-wrap:wrap;

}

.team-card{

width:340px;

background:#fff;

text-align:center;

border-radius:20px;

padding:30px;

transition:.35s;

box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.team-card:hover{

transform:translateY(-12px);

}

.team-image{

width:220px;

height:220px;

margin:auto;

overflow:hidden;

border-radius:50%;

border:8px solid #f8f8f8;

}

.team-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.team-card:hover img{

transform:scale(1.08);

}

.team-content{

margin-top:25px;

}

.team-content h3{

font-size:28px;

font-family:'Barlow Condensed',sans-serif;

margin-bottom:10px;

color:#222;

}

.team-content span{

display:inline-block;

padding:8px 24px;

background:#b88645;

color:#fff;

border-radius:30px;

font-size:14px;

font-weight:600;

letter-spacing:1px;

text-transform:uppercase;

}
/*=========================
        FOOTER
=========================*/

.footer{

background:#222;

color:#fff;

padding:90px 0 25px;
font-family: "Montserrat", Sans-serif;

}



.footer-top{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:40px;

padding-bottom:50px;

border-bottom:1px solid rgba(255,255,255,.08);

align-items:flex-start;

}

.footer-col{

width:100%;

min-width:0;

}
.footer-col h4{

margin-bottom:28px;

}

.footer-col ul{

padding:0;

margin:0;

list-style:none;

}

.footer-col ul li{

margin-bottom:18px;

}

.footer-logo{

height:70px;

margin-bottom:25px;

}

.footer h4{

font-size:24px;

margin-bottom:25px;

font-family:'Barlow Condensed',sans-serif;

}

.footer-text{

color:#bdbdbd;

line-height:1.9;

margin-bottom:25px;

}

.footer-contact{

list-style:none;

padding:0;

margin:0;

}

.footer-contact li{

margin-bottom:18px;

display:flex;

gap:15px;

line-height:1.8;

}

.footer-contact i{

color:#c59d5f;

margin-top:5px;

}

.footer ul{

list-style:none;

padding:0;

}

.footer ul li{

margin-bottom:16px;

}

.footer ul li a{

color:#ccc;

text-decoration:none;

transition:.3s;

}

.footer ul li a:hover{

color:#c59d5f;

padding-left:8px;

}

.footer-btn{

display:inline-block;

margin-top:15px;

background:#c59d5f;

color:#fff;

padding:14px 38px;

text-decoration:none;

border-radius:6px;

transition:.35s;

}

.footer-btn:hover{

background:#fff;

color:#222;

}

.footer-social{

display:flex;

gap:12px;

margin-top:30px;

}

.footer-social a{

width:42px;

height:42px;

background:#333;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

transition:.3s;

}

.footer-social a:hover{

background:#c59d5f;

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

padding-top:25px;

font-size:15px;

color:#bdbdbd;

flex-wrap:wrap;

gap:15px;

}