/* about.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fcfcfc;
    color:#111;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

section{
    padding:100px 8%;
}

.section-tag{
    font-size:12px;
    letter-spacing:4px;
    color:#b48b4f;
    font-weight:600;
    display:inline-block;
    margin-bottom:20px;
}

.section-header h2{
    font-size:42px;
    line-height:1.2;
}

.center{
    text-align:center;
}



/* HERO */

/* HERO */

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:90px;
    padding:180px 8% 120px;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

/* BIG BACKGROUND TEXT */

.hero-bg-text{
    position:absolute;
    top:120px;
    left:-40px;
    font-size:170px;
    font-weight:700;
    color:#ece6da;
    letter-spacing:8px;
    z-index:1;
    line-height:1;
}

/* LEFT */

.hero-left{
    position:relative;
    z-index:2;
}

.section-tag{
    font-size:12px;
    letter-spacing:4px;
    color:#b48b4f;
    font-weight:600;
    display:inline-block;
    margin-bottom:25px;
}

.hero-left h1{
    font-size:82px;
    line-height:90px;
    color:#111;
    margin-bottom:30px;
    font-weight:700;
}

.hero-left h1 span{
    color:#b48b4f;
}

.hero-left p{
    color:#555;
    font-size:17px;
    line-height:34px;
    max-width:520px;
    margin-bottom:45px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary,
.btn-outline{
    padding:16px 36px;
    border-radius:60px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.4s ease;
}

.btn-primary{
    background:#111;
    color:#fff;
}

.btn-primary:hover{
    background:#b48b4f;
}

.btn-outline{
    border:1px solid #d6c8b1;
    color:#111;
    background:#fff;
}

.btn-outline:hover{
    background:#111;
    color:#fff;
}

/* RIGHT */

.hero-right{
    position:relative;
    z-index:2;
}

.image-box{
    position:relative;
}

.image-box::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border:2px solid #d9c6a3;
    top:25px;
    left:25px;
    border-radius:30px;
    z-index:-1;
}

.hero-right img{
    width:100%;
    border-radius:30px;
    object-fit:cover;
    box-shadow:0 30px 80px rgba(0,0,0,0.12);
}

/* RESPONSIVE */

@media(max-width:992px){

.hero{
    grid-template-columns:1fr;
    padding-top:150px;
}

.hero-left h1{
    font-size:58px;
    line-height:65px;
}

.hero-bg-text{
    font-size:100px;
    top:100px;
}

}

@media(max-width:768px){

.hero{
    padding:140px 6% 100px;
}

.hero-left h1{
    font-size:42px;
    line-height:50px;
}

.hero-bg-text{
    display:none;
}

.hero-buttons{
    flex-direction:column;
}

}



/* ABOUT */

.about-section{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;
    align-items:center;
}

.about-left h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:30px;
}

.about-left p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

.about-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.stat-box{
    background:#fff;
    padding:45px 35px;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    transition:0.4s ease;
}

.stat-box:hover{
    transform:translateY(-10px);
}

.stat-box h3{
    font-size:48px;
    color:#b48b4f;
    margin-bottom:10px;
}

.stat-box span{
    color:#666;
}



/* SERVICES */

.services-section{
    background:#111;
    color:#fff;
    border-radius:50px 50px 0 0;
}

.services-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#1d1d1d;
    padding:45px 35px;
    border-radius:25px;
    transition:0.4s ease;
    border:1px solid rgba(255,255,255,0.05);
}

.service-card:hover{
    transform:translateY(-12px);
    border-color:#b48b4f;
}

.number{
    width:60px;
    height:60px;
    background:#b48b4f;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    margin-bottom:25px;
}

.service-card h3{
    font-size:26px;
    margin-bottom:15px;
}

.service-card p{
    color:#bbb;
    line-height:1.8;
}



/* TEAM */

.team-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.team-box{
    background:#fff;
    padding:45px 35px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    transition:0.4s ease;
    border:1px solid transparent;
}

.team-box:hover{
    transform:translateY(-10px);
    border-color:#b48b4f;
}

.team-box h3{
    font-size:26px;
    margin-bottom:10px;
}

.team-box span{
    color:#777;
    font-size:14px;
}



/* CTA */

.cta-section{
    background:#111;
    text-align:center;
    color:#fff;
}

.cta-content h2{
    font-size:56px;
    line-height:1.2;
    margin-bottom:25px;
}

.cta-content p{
    color:#cfcfcf;
    margin-bottom:40px;
    font-size:17px;
}



/* RESPONSIVE */

@media(max-width:992px){

    .hero,
    .about-section{
        grid-template-columns:1fr;
    }

    .hero-left h1{
        font-size:52px;
    }

    .services-grid,
    .team-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    section{
        padding:80px 6%;
    }

    .hero-left h1,
    .about-left h2,
    .section-header h2,
    .cta-content h2{
        font-size:38px;
    }

    .services-grid,
    .team-grid,
    .about-right{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

}





















/* =========================================
   NAVBAR
========================================= */

.navbar{
    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:#050505;

    border-bottom:1px solid rgba(255,255,255,0.04);

    box-shadow:none;
}

/* =========================================
   NAV CONTAINER
========================================= */

.nav-container{

    width:min(1360px, calc(100% - 60px));

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    height:100px;

    padding:0 10px;
}

/* =========================================
   LOGO
========================================= */

.logo-link{
    display:flex;
    align-items:center;

    gap:10px;

    text-decoration:none;
}

.logo-icon{
    width:9px;
    height:9px;

    border-radius:50%;

    background:#b28b52;
}

.logo-text{
    color:#ffffff;

    font-size:11px;

    letter-spacing:3px;

    font-weight:600;

    text-transform:uppercase;
}

/* =========================================
   MENU
========================================= */

.nav-menu{
    display:flex;
    align-items:center;

    gap:42px;

    list-style:none;
}

.nav-menu li{
    list-style:none;
}

.nav-menu li a{

    position:relative;

    text-decoration:none;

    color:rgba(255,255,255,0.78);

    font-size:10px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-weight:500;

    transition:0.3s ease;
}

/* UNDERLINE EFFECT */

.nav-menu li a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:1px;

    background:#b28b52;

    transition:0.4s ease;
}

.nav-menu li a:hover{
    color:#ffffff;
}

.nav-menu li a:hover::after{
    width:100%;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.social-icons{
    display:flex;
    align-items:center;

    gap:22px;
}

.social-link{

    color:rgba(255,255,255,0.75);

    font-size:11px;

    transition:0.3s ease;
}

.social-link:hover{

    color:#b28b52;

    transform:translateY(-2px);
}

/* =========================================
   HAMBURGER
========================================= */

.hamburger{
    display:none;

    background:none;
    border:none;

    cursor:pointer;
}

.hamburger span{

    display:block;

    width:22px;
    height:2px;

    background:#ffffff;

    margin:4px 0;
}

/* =========================================
   BODY SPACE
========================================= */

body{
    padding-top:70px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    .nav-menu{
        display:none;
    }

    .social-icons{
        display:none;
    }

    .hamburger{
        display:block;
    }

    .nav-container{
        width:calc(100% - 30px);
        height:65px;
    }

    body{
        padding-top:65px;
    }

}

@media(max-width:768px){

    .logo-text{
        font-size:10px;
        letter-spacing:2px;
    }

    .nav-container{
        height:60px;
    }

    body{
        padding-top:60px;
    }

}