/*=========================================================
 CLIENT INTERIORS
 PREMIUM WEBSITE STYLESHEET
 PART 1 - GLOBAL + NAVBAR + HERO
==========================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================================
ROOT VARIABLES
=========================================================*/

:root{

    --primary:#C8A14B;
    --primary-dark:#A8822F;
    --primary-light:#E6C87B;

    --secondary:#1B1B1B;
    --secondary-light:#2D2D2D;

    --white:#ffffff;
    --off-white:#f8f8f8;
    --light:#f5f5f5;

    --text:#555;
    --heading:#111;

    --border:#ececec;

    --container:1280px;

    --radius-sm:10px;
    --radius:18px;
    --radius-lg:30px;

    --shadow-sm:0 8px 25px rgba(0,0,0,.05);
    --shadow-md:0 20px 45px rgba(0,0,0,.08);
    --shadow-lg:0 35px 80px rgba(0,0,0,.12);

    --transition:.45s cubic-bezier(.4,0,.2,1);

}


/*=========================================================
RESET
=========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.8;

    -webkit-font-smoothing:antialiased;

}

img{

    display:block;

    width:100%;

    object-fit:cover;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

.container{

    width:92%;

    max-width:var(--container);

    margin:auto;

}

section{

    padding:120px 0;

}


/*=========================================================
TYPOGRAPHY
=========================================================*/

h1,
h2,
h3,
h4{

    color:var(--heading);

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:clamp(3.4rem,7vw,6rem);

}

h2{

    font-size:clamp(2.3rem,4vw,3.6rem);

}

h3{

    font-size:1.45rem;

}

p{

    color:#666;

    font-size:1.03rem;

}


/*=========================================================
SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:11px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}

::-webkit-scrollbar-track{

    background:#efefef;

}


/*=========================================================
BUTTONS
=========================================================*/

.btn,
.nav-btn,
.cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:18px 38px;

    border-radius:60px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:var(--transition);

    box-shadow:0 15px 35px rgba(200,161,75,.30);

}

.btn:hover,
.nav-btn:hover,
.cta-btn:hover{

    background:var(--secondary);

    transform:translateY(-6px);

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}


/*=========================================================
NAVIGATION
=========================================================*/

.navbar{

    position:fixed;

    left:0;

    top:0;

    width:100%;

    z-index:9999;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.4);

    transition:.45s;

}

.navbar.scrolled{

    background:#fff;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:92px;

}

/*======================
LOGO
======================*/

.logo-section{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo{

    width:62px;

    height:62px;

    border-radius:50%;

    object-fit:cover;

    padding:4px;

    background:#fff;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.logo-section:hover .logo{

    transform:rotate(-6deg) scale(1.08);

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.brand-name{

    font-size:1.8rem;

    color:var(--secondary);

    font-weight:800;

    letter-spacing:1px;

    line-height:1;

}

.brand-name span{

    color:var(--primary);

}

.logo-text small{

    margin-top:5px;

    letter-spacing:4px;

    color:#777;

    font-size:.72rem;

    font-weight:600;

}


/*======================
MENU
======================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:38px;

}

.nav-link{

    position:relative;

    color:#333;

    font-weight:500;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.4s;

}

.nav-link:hover,

.nav-link.active{

    color:var(--primary);

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}


/*======================
HAMBURGER
======================*/

.hamburger{

    display:none;

    border:none;

    background:none;

    cursor:pointer;

}

.hamburger span{

    display:block;

    width:28px;

    height:3px;

    margin:6px 0;

    border-radius:50px;

    background:#222;

}


/*=========================================================
HERO
=========================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    animation:heroZoom 18s linear infinite alternate;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(10,10,10,.82),
        rgba(10,10,10,.45)
    );

    z-index:1;

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    color:#fff;

}

.hero-content h1{

    color:#fff;

    margin-bottom:25px;

    font-weight:800;

}

.hero-content p{

    color:#ededed;

    font-size:1.15rem;

    margin-bottom:40px;

    max-width:650px;

}

.hero-content .cta-btn{

    padding:20px 42px;

}


/*=========================================================
ANIMATIONS
=========================================================*/

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.12);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(70px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-content{

    animation:fadeUp 1.1s ease;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

.nav-menu{

display:none;

}

.nav-btn{

display:none;

}

.hamburger{

display:block;

}

.hero{

text-align:center;

}

.hero-content{

margin:auto;

}

.hero-content p{

margin:0 auto 40px;

}

}

@media(max-width:768px){

section{

padding:90px 0;

}

.hero h1{

font-size:2.9rem;

}

.hero p{

font-size:1rem;

}

.logo{

width:54px;

height:54px;

}

.brand-name{

font-size:1.4rem;

}

}

/*=========================================================
PART 2
WHY CHOOSE US + ABOUT SECTION
=========================================================*/

/*==============================
SECTION TAGS
==============================*/

.section-tag,
.about-tag{

    display:inline-block;
    padding:10px 24px;

    border-radius:50px;

    background:rgba(200,161,75,.12);

    color:var(--primary);

    font-size:.82rem;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:22px;

}

/*=========================================================
WHY US
=========================================================*/

.why-us{

    position:relative;

    background:#fff;

    overflow:hidden;

}

.why-us::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    background:rgba(200,161,75,.05);

    top:-250px;

    right:-250px;

}

.why-us::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(200,161,75,.04);

    bottom:-170px;

    left:-150px;

}

.why-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

/*==============================
IMAGE
==============================*/

.why-image{

    position:relative;

}

.why-image img{

    height:700px;

    border-radius:30px;

    object-fit:cover;

    transition:.7s;

    box-shadow:var(--shadow-lg);

}

.why-image:hover img{

    transform:scale(1.04);

}

/*==============================
EXPERIENCE CARD
==============================*/

.experience-box{

    position:absolute;

    right:-40px;

    bottom:45px;

    width:220px;

    padding:35px;

    border-radius:24px;

    background:#fff;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

    text-align:center;

}

.experience-box h2{

    color:var(--primary);

    font-size:3.4rem;

    margin-bottom:5px;

}

.experience-box span{

    color:#666;

    font-weight:600;

}

/*==============================
CONTENT
==============================*/

.why-content h2{

    margin-bottom:25px;

    max-width:550px;

}

.why-content p{

    margin-bottom:45px;

    color:#666;

}

/*==============================
FEATURE GRID
==============================*/

.why-items{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-bottom:45px;

}

/*==============================
FEATURE CARD
==============================*/

.why-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

    padding:30px;

    border-radius:22px;

    background:#fff;

    border:1px solid var(--border);

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.why-item:hover{

    transform:translateY(-10px);

    border-color:transparent;

    box-shadow:var(--shadow-md);

}

.why-item .icon{

    width:70px;

    height:70px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    font-size:1.4rem;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    transition:.4s;

}

.why-item:hover .icon{

    transform:rotate(-8deg) scale(1.08);

}

.why-item h3{

    margin-bottom:10px;

}

.why-item p{

    margin:0;

    font-size:.95rem;

}

/*=========================================================
ABOUT SECTION
=========================================================*/

.about{

    position:relative;

    background:#f9f9f9;

    overflow:hidden;

}

.about::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(200,161,75,.05);

    bottom:-180px;

    left:-180px;

}

.about-content{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

/*==============================
IMAGE
==============================*/

.about-image-wrapper{

    position:relative;

}

.about-image-card{

    overflow:hidden;

    border-radius:30px;

    box-shadow:var(--shadow-lg);

}

.about-image{

    height:680px;

    transition:.8s;

}

.about-image-card:hover .about-image{

    transform:scale(1.08);

}

/*==============================
TEXT
==============================*/

.about-text h2{

    margin-bottom:25px;

}

.about-text p{

    margin-bottom:22px;

    color:#666;

}

/*==============================
CHECKLIST
==============================*/

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.about-list li{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 20px;

    border-radius:18px;

    background:#fff;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.about-list li:hover{

    transform:translateX(8px);

}

.about-list i{

    width:40px;

    height:40px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1100px){

    .why-grid,
    .about-content{

        grid-template-columns:1fr;

        gap:70px;

    }

    .experience-box{

        right:20px;

        bottom:20px;

    }

}

@media(max-width:768px){

    .why-items{

        grid-template-columns:1fr;

    }

    .about-list{
        
        /*=========================================================
PART 3
SERVICES + PORTFOLIO
=========================================================*/

/*=========================================================
SERVICES SECTION
=========================================================*/

.services{

    position:relative;

    background:linear-gradient(to bottom,#ffffff,#f8f8f8);

    overflow:hidden;

}

.services::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:rgba(200,161,75,.05);

    top:-280px;

    right:-250px;

}

.services::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(200,161,75,.04);

    bottom:-180px;

    left:-180px;

}

/*==============================
SECTION HEADER
==============================*/

.section-header{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;

}

.section-header h2{

    margin-bottom:20px;

}

.section-header p{

    color:#666;

    font-size:1.05rem;

}

/*=========================================================
SERVICES GRID
=========================================================*/

.services-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

/*=========================================================
SERVICE CARD
=========================================================*/

.service-card{

    position:relative;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    transition:.5s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

}

.service-card:hover{

    transform:translateY(-15px);

    box-shadow:0 35px 70px rgba(0,0,0,.15);

}

/* GOLD BORDER */

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-light)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

/*==============================
IMAGE
==============================*/

.img-container{

    position:relative;

    height:260px;

    overflow:hidden;

}

.img-container::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.18)
    );

}

.img-container img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s;

}

.service-card:hover img{

    transform:scale(1.12);

}

/*==============================
CONTENT
==============================*/

.service-card h3{

    margin:30px 30px 15px;

    transition:.35s;

}

.service-card:hover h3{

    color:var(--primary);

}

.service-card p{

    margin:0 30px;

    color:#666;

    line-height:1.8;

    flex:1;

}

/*==============================
BUTTON
==============================*/

.service-btn{

    margin:35px 30px 30px;

    width:180px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:15px 24px;

    border-radius:50px;

    background:#f3f3f3;

    color:#222;

    font-weight:600;

    transition:.4s;

}

.service-btn:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(200,161,75,.35);

}

/*==============================
NUMBER BADGE
==============================*/

.services-grid{

    counter-reset:service;

}

.service-card{

    counter-increment:service;

}

.service-card .img-container::before{

    content:counter(service,decimal-leading-zero);

    position:absolute;

    top:18px;

    right:18px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    color:var(--primary);

    z-index:5;

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

/*=========================================================
PORTFOLIO
=========================================================*/

.portfolio{

    background:#fff;

    position:relative;

    overflow:hidden;

}

.portfolio::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(200,161,75,.05);

    top:-230px;

    right:-220px;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

    gap:35px;

}

/*=========================================================
CARD
=========================================================*/

.portfolio-card{

    position:relative;

    border-radius:28px;

    overflow:hidden;

    cursor:pointer;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.portfolio-card img{

    height:520px;

    transition:1s;

}

.portfolio-card:hover img{

    transform:scale(1.15);

}

.portfolio-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        transparent 35%,
        rgba(0,0,0,.88)
    );

    z-index:1;

}

.portfolio-info{

    position:absolute;

    left:35px;

    right:35px;

    bottom:35px;

    z-index:2;

    color:#fff;

    transform:translateY(50px);

    opacity:0;

    transition:.5s;

}

.portfolio-card:hover .portfolio-info{

    transform:translateY(0);

    opacity:1;

}

.portfolio-info h3{

    color:#fff;

    margin-bottom:12px;

    font-size:1.7rem;

}

.portfolio-info p{

    color:#f0f0f0;

    margin-bottom:20px;

}

/* OPTIONAL BUTTON */

.portfolio-info a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:40px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

}

.portfolio-info a:hover{

    background:#fff;

    color:#111;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:992px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .portfolio-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .services-grid,
    .portfolio-grid{

        grid-template-columns:1fr;

    }

    .img-container{

        height:240px;

    }

    .portfolio-card img{

        height:400px;

    }

    .section-header{

        margin-bottom:55px;

    }

}

@media(max-width:500px){

    .service-btn{

        width:100%;

    }

    .portfolio-card img{

        height:320px;

    }

}

/*=========================================================
PART 4
CONTACT • FOOTER • UTILITIES • RESPONSIVE
=========================================================*/

/*=========================================================
CONTACT
=========================================================*/

.contact{

    position:relative;

    background:linear-gradient(180deg,#f8f8f8,#ffffff);

    overflow:hidden;

}

.contact::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(200,161,75,.05);

    top:-200px;

    left:-200px;

}

.contact-content{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:flex-start;

}

/*==============================
FORM
==============================*/

.contact-form{

    background:#fff;

    padding:55px;

    border-radius:30px;

    box-shadow:var(--shadow-lg);

}

.contact-form input,
.contact-form textarea,
.contact-form select{

    width:100%;

    padding:18px 22px;

    margin-bottom:22px;

    border:1px solid #e8e8e8;

    border-radius:15px;

    background:#fff;

    font-family:'Poppins',sans-serif;

    font-size:15px;

    transition:.35s;

}

.contact-form textarea{

    resize:none;

    min-height:180px;

}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 5px rgba(200,161,75,.15);

}

.submit-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:.4s;

}

.submit-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(200,161,75,.35);

}

/*==============================
CONTACT INFO
==============================*/

.contact-info{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.info-item{

    display:flex;

    gap:20px;

    padding:28px;

    background:#fff;

    border-radius:22px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.info-item:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.info-item i{

    width:65px;

    height:65px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

.info-item h4{

    margin-bottom:8px;

    color:var(--heading);

}

.info-item p{

    margin:0;

    color:#666;

}

/*=========================================================
FOOTER
=========================================================*/

footer{

    background: linear-gradient(
        135deg,
        #111111 0%,
        aqua
    );

    color:#ffffff;

    text-align:center;

    padding:30px;

}

.footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-light)
    );

}

.footer-content{

    width:92%;

    max-width:1280px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

}

.footer h4{

    color:#fff;

    margin-bottom:25px;

}

.footer p{

    color:#bbb;

}

.footer ul{

    list-style:none;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#bbb;

    transition:.35s;

}

.footer a:hover{

    color:var(--primary);

    padding-left:8px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#1f1f1f;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.35s;

}

.social-icons a:hover{

    background:var(--primary);

    transform:translateY(-6px);

}

.footer-bottom{

    margin-top:70px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px;

    color:#888;

}

/*=========================================================
BACK TO TOP
=========================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    cursor:pointer;

    box-shadow:0 20px 40px rgba(0,0,0,.2);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.back-to-top.active{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

/*=========================================================
SCROLL ANIMATION
=========================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .9s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*=========================================================
SELECTION
=========================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1100px){

.contact-content{

grid-template-columns:1fr;

}

}

@media(max-width:992px){

.footer-content{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-form{

padding:35px;

}

.info-item{

flex-direction:column;

text-align:center;

align-items:center;

}

.footer-content{

grid-template-columns:1fr;

text-align:center;

}

.social-icons{

justify-content:center;

}

.back-to-top{

right:20px;

bottom:20px;

}

}

@media(max-width:576px){

.contact-form{

padding:25px;

}

.contact-form input,
.contact-form textarea,
.contact-form select{

padding:16px;

}

.submit-btn{

padding:16px;

}

.footer{

padding-top:70px;

}

}

        grid-template-columns:1fr;

    }

    .why-image img,
    .about-image{

        height:450px;

    }

    .experience-box{

        width:180px;

        padding:25px;

    }

    .experience-box h2{

        font-size:2.6rem;

    }

}

/*=========================================================
PART 3
SERVICES + PORTFOLIO
=========================================================*/

/*=========================================================
SERVICES SECTION
=========================================================*/

.services{

    position:relative;

    background:linear-gradient(to bottom,#ffffff,#f8f8f8);

    overflow:hidden;

}

.services::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:rgba(200,161,75,.05);

    top:-280px;

    right:-250px;

}

.services::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(200,161,75,.04);

    bottom:-180px;

    left:-180px;

}

/*==============================
SECTION HEADER
==============================*/

.section-header{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;

}

.section-header h2{

    margin-bottom:20px;

}

.section-header p{

    color:#666;

    font-size:1.05rem;

}

/*=========================================================
SERVICES GRID
=========================================================*/

.services-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

/*=========================================================
SERVICE CARD
=========================================================*/

.service-card{

    position:relative;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    transition:.5s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

}

.service-card:hover{

    transform:translateY(-15px);

    box-shadow:0 35px 70px rgba(0,0,0,.15);

}

/* GOLD BORDER */

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-light)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

/*==============================
IMAGE
==============================*/

.img-container{

    position:relative;

    height:260px;

    overflow:hidden;

}

.img-container::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.18)
    );

}

.img-container img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s;

}

.service-card:hover img{

    transform:scale(1.12);

}

/*==============================
CONTENT
==============================*/

.service-card h3{

    margin:30px 30px 15px;

    transition:.35s;

}

.service-card:hover h3{

    color:var(--primary);

}

.service-card p{

    margin:0 30px;

    color:#666;

    line-height:1.8;

    flex:1;

}

/*==============================
BUTTON
==============================*/

.service-btn{

    margin:35px 30px 30px;

    width:180px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:15px 24px;

    border-radius:50px;

    background:#f3f3f3;

    color:#222;

    font-weight:600;

    transition:.4s;

}

.service-btn:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(200,161,75,.35);

}

/*==============================
NUMBER BADGE
==============================*/

.services-grid{

    counter-reset:service;

}

.service-card{

    counter-increment:service;

}

.service-card .img-container::before{

    content:counter(service,decimal-leading-zero);

    position:absolute;

    top:18px;

    right:18px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    color:var(--primary);

    z-index:5;

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

/*=========================================================
PORTFOLIO
=========================================================*/

.portfolio{

    background:#fff;

    position:relative;

    overflow:hidden;

}

.portfolio::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(200,161,75,.05);

    top:-230px;

    right:-220px;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

    gap:35px;

}

/*=========================================================
CARD
=========================================================*/

.portfolio-card{

    position:relative;

    border-radius:28px;

    overflow:hidden;

    cursor:pointer;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.portfolio-card img{

    height:520px;

    transition:1s;

}

.portfolio-card:hover img{

    transform:scale(1.15);

}

.portfolio-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        transparent 35%,
        rgba(0,0,0,.88)
    );

    z-index:1;

}

.portfolio-info{

    position:absolute;

    left:35px;

    right:35px;

    bottom:35px;

    z-index:2;

    color:#fff;

    transform:translateY(50px);

    opacity:0;

    transition:.5s;

}

.portfolio-card:hover .portfolio-info{

    transform:translateY(0);

    opacity:1;

}

.portfolio-info h3{

    color:#fff;

    margin-bottom:12px;

    font-size:1.7rem;

}

.portfolio-info p{

    color:#f0f0f0;

    margin-bottom:20px;

}

/* OPTIONAL BUTTON */

.portfolio-info a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:40px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

}

.portfolio-info a:hover{

    background:#fff;

    color:#111;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:992px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .portfolio-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .services-grid,
    .portfolio-grid{

        grid-template-columns:1fr;

    }

    .img-container{

        height:240px;

    }

    .portfolio-card img{

        height:400px;

    }

    .section-header{

        margin-bottom:55px;

    }

}

@media(max-width:500px){

    .service-btn{

        width:100%;

    }

    .portfolio-card img{

        height:320px;

    }

}

/*=========================================================
PART 4
CONTACT • FOOTER • UTILITIES • RESPONSIVE
=========================================================*/

/*=========================================================
CONTACT
=========================================================*/

.contact{

    position:relative;

    background:linear-gradient(180deg,#f8f8f8,#ffffff);

    overflow:hidden;

}

.contact::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(200,161,75,.05);

    top:-200px;

    left:-200px;

}

.contact-content{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:flex-start;

}

/*==============================
FORM
==============================*/

.contact-form{

    background:#fff;

    padding:55px;

    border-radius:30px;

    box-shadow:var(--shadow-lg);

}

.contact-form input,
.contact-form textarea,
.contact-form select{

    width:100%;

    padding:18px 22px;

    margin-bottom:22px;

    border:1px solid #e8e8e8;

    border-radius:15px;

    background:#fff;

    font-family:'Poppins',sans-serif;

    font-size:15px;

    transition:.35s;

}

.contact-form textarea{

    resize:none;

    min-height:180px;

}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 5px rgba(200,161,75,.15);

}

.submit-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:.4s;

}

.submit-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(200,161,75,.35);

}

/*==============================
CONTACT INFO
==============================*/

.contact-info{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.info-item{

    display:flex;

    gap:20px;

    padding:28px;

    background:#fff;

    border-radius:22px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.info-item:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.info-item i{

    width:65px;

    height:65px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

.info-item h4{

    margin-bottom:8px;

    color:var(--heading);

}

.info-item p{

    margin:0;

    color:#666;

}

/*=========================================================
FOOTER
=========================================================*/

.footer{

    position:relative;

    background:#111;

    color:#ddd;

    padding-top:90px;

}

.footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-light)
    );

}

.footer-content{

    width:92%;

    max-width:1280px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

}

.footer h4{

    color:#fff;

    margin-bottom:25px;

}

.footer p{

    color:#bbb;

}

.footer ul{

    list-style:none;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#bbb;

    transition:.35s;

}

.footer a:hover{

    color:var(--primary);

    padding-left:8px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#1f1f1f;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.35s;

}

.social-icons a:hover{

    background:var(--primary);

    transform:translateY(-6px);

}

.footer-bottom{

    margin-top:70px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px;

    color:#888;

}

/*=========================================================
BACK TO TOP
=========================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    cursor:pointer;

    box-shadow:0 20px 40px rgba(0,0,0,.2);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.back-to-top.active{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

/*=========================================================
SCROLL ANIMATION
=========================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .9s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*=========================================================
SELECTION
=========================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1100px){

.contact-content{

grid-template-columns:1fr;

}

}

@media(max-width:992px){

.footer-content{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-form{

padding:35px;

}

.info-item{

flex-direction:column;

text-align:center;

align-items:center;

}

.footer-content{

grid-template-columns:1fr;

text-align:center;

}

.social-icons{

justify-content:center;

}

.back-to-top{

right:20px;

bottom:20px;

}

}

@media(max-width:576px){

.contact-form{

padding:25px;

}

.contact-form input,
.contact-form textarea,
.contact-form select{

padding:16px;

}

.submit-btn{

padding:16px;

}

.footer{

padding-top:70px;

}

}