*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Hind', sans-serif;
    background: #f3f4f6;
    overflow-x: hidden;
}



/* =========================
   HEADER
========================= */

.top-header{
    width: 100%;
    background: linear-gradient(to right, #ececec, #f7f7f7);
    padding: 7px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d8d8d8;
}

.logo-section{
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-section img{
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.company-text h1{
    font-family: 'Cinzel', serif;
    font-size: 30px;
    font-weight: 600;
    color: #0f172a;
}

.company-text p{
    color: #9b7a28;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}



/* =========================
   SOCIAL ICONS
========================= */

.social-icons{
    display: flex;
    gap: 14px;
}

.social-icons a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0f172a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover{
    background: #d4af37;
    transform: translateY(-4px);
}



/* =========================
   NAVBAR
========================= */

.navbar{
    width: 100%;
    background: rgba(15, 23, 42, 0.97);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.navbar ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.navbar ul li a{
    color: white;
    text-decoration: none;
    display: block;
    padding: 16px 22px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s ease;
}

.navbar ul li a:hover{
    color: #d4af37;
}

.bottom-gold-line{
    width: 100%;
    height: 3px;
    background:  #b88919
}



/* =========================
   HERO SLIDER
========================= */

.hero-section{
    width: 100%;
    background: #f3f4f6;
    padding: 25px 5% 10px;
}

.hero-slider{
    position: relative;
    width: 100%;
    max-width: 1450px;
    margin: auto;
    overflow: hidden;
    border-radius: 24px;
    background: transparent;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}



.slider-track{
    display: flex;
    transition: transform 0.8s ease-in-out;
    align-items: stretch;
}

.slide{
    flex: 0 0 100%;
    display: flex;
}

.slide img{
    width: 100%;
    height: 100%;
    display: block;
}



/* =========================
   ARROWS
========================= */

.slider-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(15,23,42,0.75);
    color: white;
    font-size: 16px;
    z-index: 10;
    transition: 0.3s ease;
}

.slider-btn:hover{
    background: #d4af37;
    color: #0f172a;
}

.prev{
    left: 20px;
}

.next{
    right: 20px;
}




/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .hero-section{
        padding: 15px 3% 10px;
    }

    .slider-btn{
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .prev{
        left: 10px;
    }

    .next{
        right: 10px;
    }

    .slider-dots{
        bottom: 10px;
    }

}

/* ========================= CTA SECTION ========================= */ 
.cta-section{ 
    padding: 25px 7% 50px; 
} 

.cta-buttons{ 
    display: flex; 
    justify-content: 
    center; gap: 20px; 
    flex-wrap: wrap; 
} 

.hero-btn, .chat-btn{ 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    padding: 15px 34px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    transition: 0.3s ease; 
    font-size: 16px; 
} 

.hero-btn{ 
    background: #d4af37; 
    color: #0f172a; 
} 

.chat-btn{ 
    background: #25d366; 
    color: white; 
} 

.hero-btn:hover, .chat-btn:hover{ 
    transform: translateY(-5px); 
}

/* =========================
   SECTIONS
========================= */

section{
    padding: 90px 7%;
}

.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2{
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: #0f172a;
}

.title-line{
    width: 90px;
    height: 4px;
    background: #d4af37;
    margin: 15px auto 0;
}


.about-section{
    padding-top: 20px;
}
/* =========================
   ABOUT SECTION
========================= */


/* =========================
   ABOUT SECTION
========================= */

.about-container{
    display: grid;
    grid-template-columns: minmax(300px, 480px) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.about-image{
    width: 100%;
}

.about-image img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.about-content h3{
    font-size: 30px;
    margin-bottom: 25px;
    color: #0f172a;
}

.about-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}


/* =========================
   FEATURES
========================= */

.features-section{
    background: white;
}

.features-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.feature-card{
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: 0.4s ease;
}

.feature-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.feature-card i{
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 25px;
}

.feature-card h3{
    font-size: 24px;
    margin-bottom: 14px;
}


.features-section{
    padding-bottom: 70px;
}

.reviews-section{
    padding-top: 70px;
}
/* =========================
   REVIEWS
========================= */

.reviews-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.review-card{
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.review-card img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
}

.stars{
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 18px;
}

.review-card p{
    line-height: 1.9;
    margin-bottom: 20px;
}



/* =========================
   ANIMATIONS
========================= */

.reveal{
    opacity: 0;
    transform: translateY(70px);
    transition: 1s ease;
}

.reveal.active{
    opacity: 1;
    transform: translateY(0);
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .about-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .about-image{
        max-width:450px;
        margin:0 auto;
    }

    .features-grid,
    .reviews-container{
        grid-template-columns:1fr;
    }

}

@media(max-width: 992px){

    .top-header{
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .logo-section{
        flex-direction: column;
    }

}

@media(max-width: 600px){

    section{
        padding: 70px 6%;
    }

    .hero-btn,
    .chat-btn{
        width: 100%;
        justify-content: center;
    }

    .cta-buttons{
        flex-direction: column;
    }

    .navbar ul li a{
        font-size: 14px;
        padding: 14px 10px;
    }

    .section-title h2{
        font-size: 32px;
    }

    .about-content h3{
        font-size: 25px;
    }

}
/* =========================
   FOOTER
========================= */

.footer{
    background: #0f172a;
    color: white;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.footer-top-line{
    width: 100%;
    height: 4px;
    background: linear-gradient(to right,
    #b88919,
    #d4af37,
    #f4dc93,
    #d4af37,
    #b88919);
}

.footer-container{
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 75px 7%;
}



/* =========================
   FOOTER LOGO
========================= */

.footer-logo{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img{
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.footer-logo h2{
    font-family: 'Cinzel', serif;
    font-size: 28px;
    margin-bottom: 4px;
}

.footer-logo p{
    color: #d4af37;
    letter-spacing: 2px;
    font-size: 12px;
    text-transform: uppercase;
}



/* =========================
   FOOTER ABOUT
========================= */

.footer-about{
    line-height: 1.9;
    color: #d1d5db;
    margin-bottom: 28px;
}



/* =========================
   TAGS
========================= */

.footer-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-tags span{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: #e5e7eb;
}



/* =========================
   TITLES
========================= */

.footer-column h3{
    font-size: 22px;
    margin-bottom: 28px;
    color: #d4af37;
    position: relative;
}

.footer-column h3::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: #d4af37;
}



/* =========================
   LINKS
========================= */

.footer-column ul{
    list-style: none;
}

.footer-column ul li{
    margin-bottom: 16px;
}

.footer-column ul li a{
    text-decoration: none;
    color: #d1d5db;
    transition: 0.3s ease;
}

.footer-column ul li a:hover{
    color: #d4af37;
    padding-left: 6px;
}



/* =========================
   CONTACT
========================= */

.footer-contact li{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d1d5db;
}

.footer-contact i{
    color: #d4af37;
}



/* =========================
   EMAIL BUTTON
========================= */

.footer-mail-btn{
    margin-top: 25px;
}

.footer-mail-btn a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d4af37;
    color: #0f172a;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 700;
    transition: 0.3s ease;
}

.footer-mail-btn a:hover{
    transform: translateY(-4px);
}



/* =========================
   MARKETPLACE SECTION
========================= */

.marketplace-text{
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 24px;
}

.marketplace-buttons{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.amazon-btn,
.flipkart-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    cursor: default;
    text-decoration: none;
}

.amazon-btn{
    background: #fbbf24;
    color: #111827;
    
}

.flipkart-btn{
    background: #2563eb;
    color: white;
}

.amazon-btn i,
.flipkart-btn i{
    font-size: 18px;
}


/* =========================
   SOCIALS
========================= */

.footer-socials{
    display: flex;
    gap: 15px;
}

.footer-socials a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 18px;
}

.footer-socials a:hover{
    background: #d4af37;
    color: #0f172a;
    transform: translateY(-5px);
}



/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 24px;
    margin-top: 30px;
}

.footer-bottom p{
    color: #cbd5e1;
    font-size: 15px;
    letter-spacing: 1px;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1150px){

    .footer-container{
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width: 700px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo{
        justify-content: center;
    }

    .footer-contact li{
        justify-content: center;
    }

    .footer-socials{
        justify-content: center;
    }

    .footer-column h3::after{
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-tags{
        justify-content: center;
    }

}