/* --- Global Reset & Variables --- */
:root {
    --primary-color: #e5938a;
    --bg-light: #fdf7f4;
    --text-dark: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}



img {
    max-width: 100%;
    display: block;
}

.text-center {
    text-align: center;
}

.section {
    padding: 50px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* --- Scroll Reveal Animation --- */
.reveal {
    transform: translateY(30px);
    transition: transform 0.7s ease;
}

    .reveal.visible {
        transform: translateY(0);
    }

.reveal-left {
    transform: translateX(-50px);
    transition: transform 0.7s ease;
}

    .reveal-left.visible {
        transform: translateX(0);
    }

.reveal-right {
    transform: translateX(50px);
    transition: transform 0.7s ease;
}

    .reveal-right.visible {
        transform: translateX(0);
    }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1.5px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

    .btn:hover {
        background-color: transparent;
        border: 1px solid #e5938a;
        color: var(--primary-color);
    }

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border-color: #cccccc;
}

    .btn-outline:hover {
        background-color: var(--text-dark);
        color: var(--white);
        border-color: var(--text-dark);
    }

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

/* =========================
   HEADER / NAVBAR
========================= */
.site-header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: box-shadow 0.3s ease;
}

/* Navbar ke baad page content upar na chali jaye */
body {
    padding-top: 80px;
}

.navbar {
    padding: 2px 0;
}

.navbar-brand img {
    width: 250px;
    max-width: 100%;
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    margin: 0 8px;
    /* padding: 8px 4px !important; */
    transition: var(--transition);
    position: relative;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-color) !important;
    }

.navbar-collapse {
    justify-content: space-between;
}

.header-actions .btn,
.d-flex .btn {
    background: var(--primary-color);
    color: #fff;
    border: 1.5px solid var(--primary-color);
    padding: 5px 22px;
    border-radius: 5px;
    font-size: 13px;
    transition: var(--transition);
}

    .header-actions .btn:hover,
    .d-flex .btn:hover {
        background: transparent;
        color: var(--primary-color);
    }

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 4px 8px;
}

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

/* =========================
   HERO
========================= */
.hero {
    height: 85vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        animation: heroZoom 8s ease-in-out infinite alternate;
    }

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.04);
    }
}

/* --- Features Bar --- */
.features-bar {
    background-color: var(--bg-light);
    padding: 45px 0;
    border-top: 1px solid #f3e6e1;
    border-bottom: 1px solid #f3e6e1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

    .feature-item:hover {
        transform: translateY(-4px);
    }

.icon-wrap {
    border-radius: 50%;
    background: #fce8df;
    padding: 4px;
    flex-shrink: 0;
}

    .icon-wrap img {
        width: 55px;
        height: 55px;
        object-fit: contain;
    }

.feature-item h4 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- Story / About Section --- */
.story-section {
    background-color: var(--white);
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: 20px;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.welcome-text {
    margin: 20px 0;
    color: var(--primary-color);
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 25px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: var(--transition);
}

    .badge-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(229,147,138,.2);
    }

    .badge-item i {
        color: var(--primary-color);
        font-size: 1.2rem;
    }

.story-img-1 {
    border-radius: 18px;
    width: 100%;
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

/* --- Categories Section --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-card {
    text-align: center;
    transition: var(--transition);
}

    .category-card .img-box {
        background-color: var(--bg-light);
        padding: 28px;
        border-radius: 16px;
        margin-bottom: 14px;
        transition: var(--transition);
    }

    .category-card:hover .img-box {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(229,147,138,.25);
    }

    .category-card h3 {
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .category-card p {
        font-size: 0.72rem;
        color: var(--text-muted);
    }
    .text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

span.price {
    margin: 4px 0;
    font-weight: 600;
}

/* --- Transform Section --- */
.transform-section {
    background-image: url('../images/background-img.png');
    background-repeat: no-repeat;
    /* background-size: cover; */
    padding-bottom: 0;
    /* background-position: center; */
}

.transform-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.transform-content h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

    .transform-content h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50%;
        height: 2px;
        border-radius: 10px;
        background: linear-gradient(to right, #c79a63, #f3dfc8);
    }

.shine-icon {
    color: #e5938a;
    font-size: 20px;
    margin-left: 8px;
    animation: sparkle 2s infinite ease-in-out;
}

@keyframes sparkle {
    0%, 100% {
        opacity: .6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.92rem;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 13px;
}

    .benefits-list li {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 15px;
        font-weight: 500;
        transition: var(--transition);
    }

        .benefits-list li:hover {
            transform: translateX(5px);
        }

.bullet-icon {
    color: var(--primary-color);
    font-size: 13px;
    background: #e5938a2b;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.benefits-list li:hover .bullet-icon {
    background: var(--primary-color);
    color: #fff;
}/* =========================
   PRODUCT OWL SLIDER
   ========================= */

.product-slider {
    position: relative;
    overflow: hidden;
}

/* Owl spacing fix */
.product-track .owl-item {
    padding: 10px;
}

/* CARD (YOUR DESIGN SAME) */
.product-card {
    text-align: center;
    border: 1px solid #e5938a75;
    padding-bottom: 20px;
    margin: 0;
    transition: var(--transition);
}

.product-card img {
    width: 100%;
    display: block;
}

/* hover */
.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(229,147,138,.25);
}

/* text */
.text-box p {
    font-size: 15px;
    font-weight: 600;
    margin: 11px 0 0px;
}

/* button */
.product-card a {
    background: var(--primary-color);
    color: #fff;
    border: 1.5px solid var(--primary-color);
    padding: 5px 22px;
    border-radius: 5px;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}
.transform-image img {
    width: 100%;
   
}
/* =========================
   CUSTOM NAV BUTTONS
   (YOUR SAME DESIGN)
   ========================= */

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 14px;
    color: var(--text-dark);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* positions */
.prev-btn { left: 5px; }
.next-btn { right: 5px; }

/* responsive */
@media(max-width: 768px) {
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }
}

/* =========================
   TESTIMONIAL OWL SLIDER
   ========================= */

.testimonial-slider {
    position: relative;
    margin-top: 50px;
}

/* Owl item spacing fix */
.testimonial-track .owl-item {
    padding: 12px;
}

/* Card design */
.testimonial-card {
    background: #fff;
    border: 1px solid #e5938a4a;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Stars */
.stars {
    color: #f8b84e;
    margin-bottom: 10px;
}

/* Text */
.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* User info */
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e5938a, #f37b6e);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
@media (max-width: 768px) {
    .testimonial-card {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 14px;
    }
}

/* =========================
   TESTIMONIAL SLIDER NAV
   (CUSTOM ARROWS STYLE)
   ========================= */

.testimonial-slider {
    position: relative;
    padding: 40px 0;
}

/* Owl nav container */
.testimonial-slider .owl-nav {
    display: block !important;
}

/* Common button style */
.testimonial-slider .owl-nav button.owl-prev,
.testimonial-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
}

/* LEFT */
.testimonial-slider .owl-nav button.owl-prev {
    left: -34px;
}

/* RIGHT */
.testimonial-slider .owl-nav button.owl-next {
    right: -40px;
}

/* HOVER */
.testimonial-slider .owl-nav button.owl-prev:hover,
.testimonial-slider .owl-nav button.owl-next:hover {
    background: var(--primary-color);
    color: #fff;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .testimonial-slider .owl-nav button.owl-prev {
        left: 5px;
    }

    .testimonial-slider .owl-nav button.owl-next {
        right: 5px;
    }
}
/* --- Newsletter --- */
.newsletter-section {
    background-color: var(--bg-light);
    padding: 70px 0;
    text-align: center;
    border-top: 1px solid #f3e6e1;
}

.newsletter-container h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.newsletter-container p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.93rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 480px;
    margin: 0 auto;
    gap: 10px;
}
/* --- Footer --- */
.site-footer {
    background-image: url('../images/background-img.png');
    padding: 60px 0 0;
    font-size: 0.88rem;
    border-top: 1px solid #f0e0db;
}

.footer-about .logo img {
    width: 232px;
    margin-bottom: 14px;
}

.footer-about p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 13.5px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

    .social-links a {
        color: #fff;
        font-size: 14px;
        background: var(--primary-color);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        text-decoration: none;
    }

        .social-links a:hover {
            background: var(--text-dark);
            transform: translateY(-3px);
        }

.footer-links h3 {
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-links a,
.footer-links p {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 11px;
    font-size: 14px;
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--primary-color);
        padding-left: 4px;
    }

.footer-links i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-links iframe {
    border-radius: 10px;
    max-width: 100%;
}

.footer-bottom {
    border-top: 1px solid #e8d8d3;
    padding: 18px 0;
    margin-top: 40px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}
.efwef_tri {
    display: flex;
    justify-content: space-between;
}
.efwef_tri a{
    text-decoration:none;
    color:#242522
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .transform-container {
        grid-template-columns: 1fr 1fr;
    }

        .transform-container .transform-image {
            /* display: none; */
        }
}

@media (max-width: 991px) {
    .navbar-brand img {
        width: 170px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 18px 16px;
        margin-top: 0;
        border-top: 1px solid #eee;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 9998;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

    .navbar-nav {
        text-align: left;
    }

        .navbar-nav .nav-link {
            margin: 0;
            padding: 10px 0 !important;
        }

            .navbar-nav .nav-link::after {
                display: none;
            }

    .d-flex {
        /* justify-content: center; */
        margin-top: 12px;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px;
    }

    .product-card {
        flex: 0 0 50%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .transform-section {
        padding-bottom: 0px;
    }

    .hero {
        height: 60vh;
    }

    .transform-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .transform-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .story-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

        .newsletter-form input {
            width: 100%;
        }

        .newsletter-form .btn {
            width: 100%;
        }

    .section-title {
        font-size: 2rem;
    }

    .transform-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        width: 200px;
    }

    body {
        padding-top: 65px;
        overflow-x: hidden;
    }

    .hero {
        height: 50vh;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        flex: 0 0 100%;
    }

    .footer-about,
    .footer-links {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
/* =============================================
   ABOUT HERO BANNER
   ============================================= */
.about-hero {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Soft overlay so text reads cleanly */
.about-hero-bg::after {
    content: '';
    position: absolute;
    /* inset: 0; */
    background: rgba(253, 240, 238, 0.45);
    width: 100%;
}

.about-hero-content {
    /* position: relative; */
    z-index: 2;
    display: flex;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    /* justify-content: flex-end; */
}

.about-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.breadcrumb {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}