/* =========================
   GOOGLE FONTS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    --gold:#C9A227;
    --gold-light:#e8c75a;
    --cream:#FAF7F2;
    --white:#ffffff;
    --dark:#2D241A;
    --gray:#6f6f6f;

    --shadow:0 10px 30px rgba(0,0,0,.08);

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--cream);
    color:var(--dark);
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1300px;
    margin:auto;

}

section{

    padding:90px 0;

}

/* =========================
   COMMON
========================= */

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-family:'Playfair Display',serif;
    font-size:42px;
    color:var(--dark);

}

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;
    border-radius:50px;
    font-weight:600;

    transition:.3s ease;
}

.primary-btn{

    background:var(--gold);
    color:#fff;

}

.primary-btn:hover{

    transform:translateY(-4px);
    box-shadow:var(--shadow);

}

.secondary-btn{

    border:2px solid var(--gold);
    color:var(--gold);

}

.secondary-btn:hover{

    background:var(--gold);
    color:#fff;

}

/* =========================
   HEADER
========================= */

.header{

    position:sticky;
    top:0;
    z-index:1000;

    background:#ffffffd9;
    backdrop-filter:blur(15px);

    box-shadow:0 2px 10px rgba(0,0,0,.05);

}

.header .container{

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:20px 0;

}

.logo img{

    height:70px;
    width:auto;

}

.navbar ul{

    display:flex;
    gap:35px;

}

.navbar a{

    color:var(--dark);
    font-weight:500;
    transition:.3s;

}

.navbar a:hover{

    color:var(--gold);

}

.order-btn{

    background:var(--gold);
    color:#fff;

}

/* =========================
   HERO
========================= */

.hero{

    min-height:90vh;
    display:flex;
    align-items:center;

}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.hero-tag{

    display:inline-block;

    background:#fff;
    color:var(--gold);

    padding:8px 20px;
    border-radius:30px;

    font-size:14px;
    font-weight:600;

    margin-bottom:25px;

}

.hero-content h1{

    font-family:'Playfair Display',serif;

    font-size:72px;
    line-height:1.15;

    margin-bottom:25px;

}

.hero-content p{

    font-size:18px;
    color:var(--gray);

    max-width:550px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:15px;

}

.hero-image{

    position:relative;

}

.hero-image img{

    border-radius:30px;
    box-shadow:var(--shadow);

}

/* =========================
   WHY CHOOSE US
========================= */

.features-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;

}

.feature-card{

    background:#fff;

    border-radius:20px;
    padding:30px 20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.3s;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card i{

    font-size:30px;
    color:var(--gold);

    margin-bottom:15px;

}

.feature-card h4{

    font-size:16px;

}

/* =========================
   SERVICES
========================= */

.services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.service-card{

    background:#fff;

    border-radius:25px;
    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card img{

    height:230px;
    object-fit:cover;

}

.service-card h3{

    padding:20px 20px 10px;

}

.service-card span{

    display:block;

    padding:0 20px 25px;

    color:var(--gold);
    font-weight:700;

}

/* =========================
   PORTFOLIO
========================= */

.portfolio-category{

    margin-bottom:70px;

}

.portfolio-category h3{

    margin-bottom:20px;
    font-size:26px;

}

.portfolio-row{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

}

.portfolio-item{

    height:220px;

    background:#fff;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.portfolio-item:hover{

    transform:scale(1.03);

}

/* =========================
   PRICING
========================= */

.pricing-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.pricing-card{

    background:#fff;

    border-radius:25px;

    padding:50px 30px;

    text-align:center;

    box-shadow:var(--shadow);

}

.pricing-card h3{

    margin-bottom:20px;

}

.pricing-card h2{

    color:var(--gold);

    font-size:42px;

}

.featured{

    border:3px solid var(--gold);

    transform:scale(1.05);

}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.testimonial-card{

    background:#fff;

    border-radius:25px;

    padding:30px;

    box-shadow:var(--shadow);

}

/* =========================
   CTA
========================= */

.cta{

    background:#1f1811;
    color:#fff;

    text-align:center;

}

.cta h2{

    font-size:50px;
    margin-bottom:20px;

    font-family:'Playfair Display',serif;

}

.cta p{

    margin-bottom:30px;

}

.cta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;

}

.whatsapp-btn{

    background:#25D366;
    color:#fff;

}

/* =========================
   FOOTER
========================= */

footer{

    background:#15110d;
    color:#fff;

    padding:80px 0;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;

}

.footer-col h3,
.footer-col h4{

    margin-bottom:20px;

}

.footer-col p{

    color:#ccc;

    line-height:1.8;

}

/* =========================
   FLOATING WHATSAPP
========================= */

.floating-whatsapp{

    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

    z-index:999;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .hero-grid,
    .services-grid,
    .pricing-grid,
    .testimonial-grid{

        grid-template-columns:1fr;

    }

    .features-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .portfolio-row{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:768px){

    .navbar{

        display:none;

    }

    .hero-content h1{

        font-size:45px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .portfolio-row{

        grid-template-columns:1fr;

    }

    .features-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

    .cta h2{

        font-size:34px;

    }

}

.modal{

    display:none;

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.7);

    z-index:9999;

}

.modal-content{

    width:90%;
    max-width:600px;

    background:#fff;

    padding:35px;

    border-radius:25px;

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);
}

.modal-content h2{

    margin-bottom:20px;
}

.modal-content input,
.modal-content textarea{

    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:1px solid #ddd;

    border-radius:10px;
}

.modal-content button{

    width:100%;

    padding:15px;

    border:none;

    background:#C9A227;

    color:#fff;

    border-radius:50px;

    cursor:pointer;
}

.close-modal{

    float:right;

    font-size:28px;

    cursor:pointer;
}

.upload-note{

    margin-top:15px;

    font-size:14px;

    color:#777;
}


/* ==========================
   ORDER MODAL
========================== */

.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.7);
    z-index:9999;
}

.modal-content{

    width:90%;
    max-width:600px;

    background:#fff;

    padding:35px;

    border-radius:20px;

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);
}

.close-modal{

    float:right;

    font-size:30px;

    cursor:pointer;

    color:#333;
}

.modal-content h2{

    margin-bottom:20px;
}

.modal-content input,
.modal-content textarea{

    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:15px;
}

.modal-content button{

    width:100%;

    padding:15px;

    border:none;

    background:#C9A227;

    color:white;

    border-radius:50px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;
}

.upload-note{

    margin-top:15px;

    font-size:14px;

    color:#666;
}


footer p{
    text-align: center;
    font-weight: bolder;

}

#heroBanner{
    width:100%;
    transition:opacity 0.8s ease-in-out;
}

.fade-out{
    opacity:0;
}

.fade-in{
    opacity:1;
}
.hero-image{
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

#heroBanner{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1.8s ease-in-out;
}

/* more services */
.more-services{

    padding:100px 0;

    background:#faf7f2;
}

.more-services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-top:50px;
}

.more-service-card{

    background:#fff;

    padding:35px 25px;

    text-align:center;

    border-radius:20px;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.more-service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.more-service-card i{

    font-size:40px;

    color:#C9A227;

    margin-bottom:20px;
}

.more-service-card h3{

    font-size:18px;

    font-weight:600;
}
/* mail us button */
.mail-btn{

    background-color: goldenrod;

    border-radius: 20%;

    padding: 20px 40px;

    color: white;

    text-decoration: none;

    display: inline-block;

    transition: 0.3s ease;
}

.mail-btn:hover{

    transform: translateY(-3px);

    background-color: #c99800;
}