.category-badge {
    font-size: 11px;
    letter-spacing: .5px;
}
.enquiry-btn {
    border-radius: 25px;
    font-weight: 600;
}
.card-body{
    padding: 20px;
}

/* topbar start */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

/* TOPBAR START */
.topbar {
    background-color: #c07651;
    padding: 8px 0;
    color: #fff;
    font-size: 14px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar .container {
    width: 90%;
    margin: auto;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 20px;
}

/* PREMIUM SOCIAL ICONS */
.topbar-right {
    display: flex;
    gap: 12px;
}

.social-3d {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    backdrop-filter: blur(4px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25),
        inset 0px 1px 3px rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.social-3d i {
    font-size: 18px;
}

.social-3d:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.35),
        0px 0px 10px rgba(255, 255, 255, 0.6);
}

/* Icon Colors */
.fa-facebook-f {
    color: #0a58ca;
}

.fa-instagram {
    color: #d6249f;
}

.fa-whatsapp {
    color: #25d366;
}

/* ----------- MOBILE FIXED VERSION ----------- */
@media (max-width: 576px) {
    .topbar-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .topbar-left {
        flex-direction: column;
        gap: 2px;
    }

    /* FORCE hide email on mobile */
    .email-hide {
        display: none !important;
    }

    .social-3d {
        width: 30px;
        height: 30px;
    }

    .social-3d i {
        font-size: 14px;
    }
}

/* topbar end */

/* navbar start */
/* 🌿 Premium Font */
.nav-text-style {
    font-family: "Lora", serif !important;
}

/* NAVBAR */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 90px;
    /* 🔥 FIXED HEIGHT */
    padding: 0 !important;
    /* IMPORTANT */
    display: flex;
    align-items: center;
}

/* LOGO */
.navbar-brand {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-logo {
    max-height: 80px;
    /* 🔥 navbar se chhota */
    width: auto;
    object-fit: contain;
}

@media (max-width: 576px) {
    .navbar {
        height: 70px;
    }

    .navbar-logo {
        max-height: 55px;
    }
}

/* NAV LINKS */
.navbar-nav .nav-link {
    color: #890713 !important;
    font-weight: 600;
    margin-right: 18px;
    font-size: 20px;
    transition: 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #f3be02 !important;
    transform: translateY(-1px);
}

/* DROPDOWN */
.navbar .dropdown-menu {
    border: none;
    padding: 10px 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.25s ease-in-out;
}

.navbar .dropdown-item {
    font-size: 19px;
    font-weight: 500;
    padding: 4px 13px;
    color: #333;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: #f3f3f3;
    color: #0a6f4a;
    padding-left: 25px;
}

/* HOVER OPEN ON DESKTOP */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* GET QUOTE BUTTON */
.quote-btn {
    background: linear-gradient(135deg, #c07651, #a65d3f);
    color: #fff !important;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 8px rgba(192, 118, 81, 0.35);
    transition: 0.3s ease;
    text-decoration: none;
}

.quote-btn:hover {
    background: linear-gradient(135deg, #a86243, #8a4d34);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(192, 118, 81, 0.45);
}

/* TOGGLER */
.navbar-toggler {
    border-color: #890713 !important;
}

.navbar-toggler-icon {
    filter: invert(22%) sepia(90%) saturate(450%) hue-rotate(350deg);
}

/* MOBILE */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 8px 0;
        text-align: center;
        width: 100%;
        margin-right: 0;
        font-size: 18px;
    }

    .quote-btn {
        margin: 8px auto !important;
        display: block !important;
        text-align: center;
        padding: 8px 16px;
        font-size: 17px;
    }

    .navbar-collapse {
        display: flex;
        flex-direction: column;
        align-items: center !important;
    }
}

/* DROPDOWN ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* LOGO WRAP */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

/* BRAND TEXT */
.brand-text {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    color: #890713;
    letter-spacing: 0.6px;
    white-space: nowrap;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.35s ease;
}

/* Elegant underline accent */
/* .brand-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, #c07651, #f3be02);
    border-radius: 10px;
    transition: width 0.35s ease;
} */

/* Hover effect (desktop) */
.logo-wrap:hover .brand-text {
    color: #a65d3f;
    transform: translateY(-1px);
}

.logo-wrap:hover .brand-text::after {
    width: 70%;
}

/* TABLET */
@media (max-width: 991px) {
    .brand-text {
        font-size: 20px;
        letter-spacing: 0.4px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .brand-text {
        font-size: 22px;
        font-weight: 600;
    }

    .brand-text::after {
        height: 1.5px;
    }

    .logo-wrap {
        gap: 10px;
    }
}
/* navbar end */

/* crousel start */
/* crousel start */
.carousel-item img {
    height: 520px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .carousel-item img {
        height: 150px;
    }
}

/* crousel end */


/* about start */
/* about start */
/* MAIN SECTION */
.about-section {
    background: #f0e7de;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND SHAPES */
.about-section::before,
.about-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.28;
    filter: blur(40px);
}

.about-section::before {
    width: 330px;
    height: 330px;
    background: #d8c7b5;
    top: -60px;
    left: -70px;
}

.about-section::after {
    width: 260px;
    height: 260px;
    background: #dcc7b7;
    bottom: -50px;
    right: -50px;
}

/* IMAGE */
.about-img img {
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: 0.5s ease;
}

.about-img img:hover {
    transform: scale(1.03);
}

/* HEADINGS */
.small-heading {
    color: #c9a876;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.main-heading {
    font-size: 2.7rem;
    color: #3b3026;
    font-weight: 800;
    line-height: 1.3;
    padding-bottom: 8px;
    position: relative;
}

/* ⭐ Tablet & Mobile Heading Size */
@media (max-width: 767px) {
    .main-heading {
        font-size: 2.1rem;
        /* smaller for mobile */
        text-align: center;
        /* optional – mobile me center achha lagta */
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 1.85rem;
        /* extra small screens */
    }
}

.main-heading::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background: #c9a876;
    bottom: 0;
    left: 0;
    border-radius: 10px;
}

/* ⭐ Mobile Devices: Center the underline */
@media (max-width: 767px) {
    .main-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.highlight {
    color: #c9a876;
}

/* PARAGRAPH */
.about-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #3b3026;
    opacity: 0.9;
    margin-bottom: 28px;
}

/* FEATURES / POINTS */
.about-point {
    font-size: 1.25rem;
    color: #3b3026;
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.point-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #c9a876;
    color: #c9a876;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
}

/* BUTTON */
.btn-about {
    background: #c9a876;
    padding: 0.8rem 2.4rem;
    border-radius: 50px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-about:hover {
    background: #b59460;
    transform: translateY(-3px);
}

/* RESPONSIVE */
/* MOBILE RESPONSIVE FIX */
@media (max-width: 767px) {

    /* Center all text */
    .small-heading,
    .main-heading,
    .about-text {
        text-align: center;
    }

    /* Center points */
    .about-point {
        justify-content: center;
    }

    /* Button at bottom + center */
    .btn-about {
        display: block;
        margin: 25px auto 0;
        text-align: center;
        width: fit-content;
    }

    /* Image center & spacing */
    .about-img img {
        margin: 0 auto 25px;
        display: block;
    }
}

/* about end */

/* footer start */
/* footer start */
/* ================= FOOTER ================= */
.footer {
    background: #f0e7de;
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Soft Gold Glow */
.footer::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -120px;
    right: -120px;
    background: rgba(201, 168, 118, 0.35);
    filter: blur(120px);
    border-radius: 50%;
}

.footer-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3b3026;
    margin-bottom: 18px;
    position: relative;
}

/* Underline effect */
.footer-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #c9a876;
    position: absolute;
    bottom: -5px;
    left: 0;
    border-radius: 5px;
}

/* Text */
.footer p,
.footer a {
    color: #6f6258;
    font-size: 1.1rem;
    text-decoration: none;
}

.footer a:hover {
    color: #c9a876;
}

/* Footer Links */
.footer-links a {
    display: block;
    margin-bottom: 8px;
    position: relative;
    transition: 0.3s;
}

/* Hover Line */
.footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #c9a876;
    left: 0;
    bottom: -3px;
    transition: 0.3s ease;
}

.footer-links a:hover::after {
    width: 20%;
}

/* Social Icons */
.social-icons a {
    font-size: 1.3rem;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #3b3026;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

.social-icons a:hover {
    background: #c9a876;
    color: #fff;
    transform: translateY(-3px);
}

/* Newsletter Input */
.footer-input {
    background: rgba(255, 255, 255, 0.6);
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid #d8c9b8;
    width: 100%;
    outline: none;
}

.footer-btn {
    background: #c9a876;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    margin-top: 12px;
    transition: 0.3s;
    width: 100%;
}

.footer-btn:hover {
    background: #b79662;
    transform: translateY(-2px);
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #d8c9b8;
    color: #6f6258;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer p,
    .footer a {
        text-align: center;
    }

    .footer-links a {
        text-align: center;
    }

    .social-icons {
        text-align: center;
        margin-top: 10px;
    }
}

/* footer end */

/* footer end */

/* product start */
/* Smooth Wave Top Border */
.product-section {
    background: #f7f0e6;
    padding: 110px 0;
    position: relative;
}

.eo-products-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 100%;
    /* background: url("https://i.ibb.co/jvVwSgN/wave3.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateY(-100%);
    opacity: 0.9;
}

/* Soft Glow Circles */
.eo-products-wrapper::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #e9dac6;
    border-radius: 50%;
    filter: blur(70px);
    bottom: 0;
    left: -80px;
    opacity: 0.4;
}

/* Small Heading */
.eo-mini-title {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
    display: inline-block;
    color: #a66a3d;
    background: #ecd9c7;
    padding: 6px 22px;
    border-radius: 30px;
    margin-bottom: 10px;
}

/* MAIN HEADING */
.eo-main-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(90deg, #c9a876, #c07651, #8b4e2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 2px 12px rgba(171, 128, 86, 0.25);
}

.eo-highlight {
    color: #c07651;
}

/* Subtitle */
.eo-subtitle {
    color: #5a4a3e;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
}

/* TEXT */
.section-text {
    max-width: 650px;
    margin: auto;
    color: #5a4a3e;
    font-size: 16px;
}

/* CARD DESIGN */
.product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(210, 170, 140, 0.2);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* GOLDEN BORDER HOVER */
.product-card:hover {
    transform: translateY(-12px);
    border: 1px solid #c9a876;
    box-shadow: 0px 12px 40px rgba(201, 168, 118, 0.25);
}

/* IMAGE FLOATING */
.product-img img {
    width: 100%;
    border-radius: 14px;
    transition: 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.06) translateY(-4px);
}

/* PRODUCT TITLE */
.product-title {
    font-size: 22px;
    color: #8b4e2e;
    font-weight: 600;
    margin-top: 18px;
}

/* PRODUCT DESC */
.product-desc {
    font-size: 15px;
    color: #705f54;
    margin-bottom: 20px;
}

/* VIEW BUTTON */
.btn-view {
    background: linear-gradient(90deg, #c07651, #8b4e2e);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0px 5px 20px rgba(192, 118, 81, 0.35);
}

.btn-view i {
    transition: 0.3s ease;
}

.btn-view:hover i {
    transform: translateX(6px);
}

.btn-view:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .main-heading {
        font-size: 32px;
    }
}

/* product end */

/* banner start */

/* MID SECTION NEW CLASS */
.eo-banner-wrap {
    padding: 120px 0;
    text-align: center;
    border-radius: 20px;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
    background: url("images/bg.jpg") center/cover no-repeat;
}

/* OVERLAY */
.eo-banner-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 245, 235, 0.45);
    backdrop-filter: blur(3px);
}

/* GLOW CIRCLE */
.eo-banner-wrap::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: #e5d2bd;
    border-radius: 50%;
    left: -60px;
    bottom: -50px;
    filter: blur(80px);
    opacity: 0.35;
}

/* CONTENT */
.eo-banner-content {
    position: relative;
    z-index: 10;
}

.eo-banner-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #c9a876, #c07651, #8b4e2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eo-banner-title span {
    color: #c07651;
}

.eo-banner-text {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 17px;
    color: #6a5b4f;
}

/* BUTTON */
.eo-banner-btn {
    background: linear-gradient(90deg, #c07651, #8b4e2e);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(192, 118, 81, 0.3);
}

.eo-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(192, 118, 81, 0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .eo-banner-title {
        font-size: 30px;
    }

    .eo-banner-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .eo-banner-wrap {
        padding: 55px 0;
    }
}

/* banner end */

/* blog start */

/* SECTION DESIGN */
.eo-article-area {
    padding: 110px 0;
    background-color: #faf4ec;
    font-family: "Poppins", sans-serif;
}

.eo-article-tag {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
    background: #ecd9c7;
    padding: 6px 22px;
    border-radius: 30px;
    color: #c07651;
    display: inline-block;
}

.eo-article-heading {
    font-size: 46px;
    font-weight: 700;
    background: linear-gradient(90deg, #c9a876, #c07651, #8b4e2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eo-article-subtext {
    max-width: 600px;
    margin: 12px auto 40px;
    color: #6a5b4f;
    font-size: 16px;
}

/* BLOG CARD */
.eo-article-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(200, 170, 130, 0.25);
    transition: 0.35s ease;
    font-family: "Poppins", sans-serif;
}

.eo-article-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(201, 168, 118, 0.3);
    border-color: #c9a876;
}

.eo-article-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.eo-article-info {
    padding: 22px 25px;
}

.eo-article-date {
    font-size: 14px;
    color: #c07651;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eo-article-date i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.eo-article-title {
    font-size: 22px;
    font-weight: 600;
    color: #8b4e2e;
    margin-bottom: 10px;
}

.eo-article-summary {
    font-size: 15px;
    color: #5b4a42;
    margin-bottom: 16px;
}

.eo-article-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #c07651;
    text-decoration: none;
    transition: 0.3s ease;
}

.eo-article-btn:hover {
    color: #8b4e2e;
    transform: translateX(4px);
}

.eo-article-btn i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

/* blog end */

/* faq start */
.eo-faq-area {
    padding: 70px 0;
    position: relative;
    background: #fef9f5;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

/* Soft Glow Circle Left */
.eo-faq-area::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: #e5d2bd;
    border-radius: 50%;
    top: -60px;
    left: -80px;
    filter: blur(90px);
    opacity: 0.35;
}

/* Soft Glow Circle Right */
.eo-faq-area::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: #f2dfcc;
    border-radius: 50%;
    bottom: -60px;
    right: -80px;
    filter: blur(90px);
    opacity: 0.35;
}

.eo-faq-tag {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
    background: #ecd9c7;
    padding: 6px 22px;
    border-radius: 30px;
    color: #c07651;
    display: inline-block;
}

.eo-faq-title {
    font-size: 46px;
    font-weight: 700;
    background: linear-gradient(90deg, #c9a876, #c07651, #8b4e2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 576px) {
    .eo-faq-title {
        font-size: 30px;
        /* Mobile ke liye smaller size */
    }
}

.eo-faq-sub {
    max-width: 600px;
    margin: 12px auto 40px;
    color: #6a5b4f;
    font-size: 16px;
}

/* Accordion Card */
.eo-faq-accordion .accordion-item {
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(200, 170, 130, 0.35);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.eo-faq-accordion .accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 18px 42px rgba(201, 168, 118, 0.25);
    border-color: #c9a876;
}

.eo-faq-accordion .accordion-button {
    padding: 18px 22px;
    font-size: 17px;
    font-weight: 600;
    color: #8b4e2e;
    background-color: transparent;
    transition: 0.3s;
}

.eo-faq-accordion .accordion-button:not(.collapsed) {
    color: #c07651;
    background: #fff6ee;
}

.eo-faq-accordion .accordion-button::after {
    filter: hue-rotate(25deg) brightness(0.8);
}

.eo-faq-accordion .accordion-body {
    padding: 18px 22px;
    color: #5b4a42;
    font-size: 15px;
    background: #ffffff;
}

/* faq end */

/* contact start */

/* PAGE BACKGROUND */
.page-bg {
    background: #fffaf4;
}

/* CONTACT INFO CARDS */
.contact-info {
    padding: 80px 0;
}

.info-box {
    background: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid rgba(200, 170, 130, 0.25);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(201, 168, 118, 0.25);
}

.info-box i {
    font-size: 32px;
    color: #c07651;
    margin-bottom: 12px;
}

.info-box h4 {
    font-size: 22px;
    font-weight: 600;
    color: #8b4e2e;
}

.info-box p {
    color: #5b4a42;
}

/* CONTACT FORM AREA */
.contact-form-area {
    background: #faf4ec;
    padding: 100px 0;
}

/* EQUAL HEIGHT BOXES */
.equal-height-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* MAP */
.map-box iframe {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

/* FORM */
.form-box {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid rgba(200, 170, 130, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid rgba(200, 170, 130, 0.3);
    font-size: 15px;
}

textarea {
    resize: none;
}

/* BUTTON */
.contact-btn {
    background: linear-gradient(90deg, #c07651, #8b4e2e);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    width: 100%;
    transition: 0.3s ease;
    margin-top: auto;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(192, 118, 81, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .map-box iframe {
        height: 300px;
    }
}

/* contact end */

/* breadcrumb start */
/* ===== Breadcrumb Banner ===== */
.contact-banner {
    position: relative;
    background: url("images/bread.jpg") center/cover no-repeat;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    animation: fadeIn 1.2s ease forwards;
}

.banner-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 10px 0;
    letter-spacing: 1px;
    color: #fff;
}

.banner-overlay h1 span {
    color: #fff;
}

.breadcrumb {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    margin: 0 6px;
    color: #fff;
}

/* breadcrumb end */

/* why start  */
/* SECTION */
.eo2-why-wrapper {
    padding: 70px 0;
    background: linear-gradient(180deg, #fff8ef, #fff4e6);
    position: relative;
    overflow: hidden;
}

/* Decorative Glows */
.eo2-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    background: #efd8c2;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
}

.eo2-glow-1 {
    top: -60px;
    left: -50px;
}

.eo2-glow-2 {
    bottom: -70px;
    right: -50px;
}

/* Mini Title */
.eo2-mini-heading {
    background: #ecd9c7;
    padding: 7px 22px;
    border-radius: 30px;
    color: #c07651;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

/* Main Title */
.eo2-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(90deg, #c9a876, #c07651, #8b4e2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 14px;
}

/* Text */
.eo2-info-text {
    font-size: 16px;
    color: #6a564c;
    line-height: 1.8;
    margin-top: 15px;
}

/* Feature Box */
.eo2-feature-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(200, 170, 130, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    transition: 0.35s ease;
    backdrop-filter: blur(8px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eo2-feature-box::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(207, 132, 76, 0.25);
    border-radius: 50%;
    top: -30px;
    right: -25px;
    filter: blur(30px);
    transition: 0.4s ease;
}

.eo2-feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 45px rgba(192, 118, 81, 0.25);
}

.eo2-feature-box:hover::before {
    background: rgba(207, 132, 76, 0.45);
}

/* Icon Box */
.eo2-icon-holder {
    width: 65px;
    height: 65px;
    background: #f8e5d6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 12px rgba(192, 118, 81, 0.25);
    transition: 0.3s ease;
}

.eo2-feature-box:hover .eo2-icon-holder {
    transform: rotate(8deg) scale(1.1);
}

.eo2-icon-holder i {
    font-size: 26px;
    color: #c07651;
}

/* Box Title */
.eo2-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #8b4e2e;
    margin-bottom: 8px;
}

/* Box Text */
.eo2-feature-desc {
    color: #6a564c;
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .eo2-title {
        font-size: 32px;
    }
}

/* why us end */

/* about */
/* MINI HEADING */
.eo2-prod-mini {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    background: #ecd9c7;
    padding: 6px 20px;
    border-radius: 30px;
    color: #c07651;
    display: inline-block;
}

/* MAIN TITLE */
.eo2-prod-title {
    font-size: 44px;
    margin-top: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, #c9a876, #c07651, #8b4e2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eo2-prod-title span {
    color: #c07651;
}

/* SUB TEXT */
.eo2-prod-sub {
    max-width: 600px;
    margin: 10px auto;
    color: #6a564c;
}

/* PRODUCT CARD */
.eo2-prod-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(200, 170, 130, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
    text-align: center;
}

.eo2-prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(192, 118, 81, 0.2);
}

.eo2-prod-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 15px;
}

.eo2-prod-name {
    font-size: 20px;
    font-weight: 600;
    color: #8b4e2e;
}

.eo2-prod-desc {
    color: #5b4a42;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .eo2-prod-title {
        font-size: 32px;
    }
}

/* about end */

/* MAIN SECTION */
.pureoil-process-area {
    padding: 70px 0;
    background: linear-gradient(180deg, #fff8ee, #fff3e2);
    position: relative;
    overflow: hidden;
}

/* FLOATING DECOR GLOWS */
.pureoil-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: #f0d8c4;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.55;
    animation: pulseGlow 6s infinite alternate;
}

.pureoil-glow-1 {
    top: -60px;
    left: -40px;
}

.pureoil-glow-2 {
    bottom: -80px;
    right: -50px;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.45;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.65;
    }
}

/* MINI TITLE */
.pureoil-mini-title {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    background: #ecd9c7;
    padding: 7px 24px;
    border-radius: 40px;
    color: #c07651;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(192, 118, 81, 0.25);
}

/* MAIN TITLE */
.pureoil-main-title {
    font-size: 48px;
    font-weight: 700;
    margin-top: 18px;
    background: linear-gradient(90deg, #ccad7a, #c07651, #8b4e2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

/* SUB TEXT */
.pureoil-subtext {
    max-width: 640px;
    margin: 15px auto;
    color: #6b594e;
    font-size: 16px;
    line-height: 1.7;
}

/* PROCESS CARD */
.pureoil-process-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px 28px;
    border-radius: 22px;
    border: 1px solid rgba(200, 170, 130, 0.25);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.35s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* LIGHT SPOT INSIDE CARD */
.pureoil-process-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(192, 118, 81, 0.25);
    border-radius: 50%;
    top: -45px;
    right: -35px;
    filter: blur(45px);
    transition: 0.4s ease;
}

.pureoil-process-card:hover::before {
    background: rgba(192, 118, 81, 0.45);
}

/* CARD HOVER */
.pureoil-process-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 22px 65px rgba(192, 118, 81, 0.3);
}

/* ICON BOX */
.pureoil-icon-box {
    width: 80px;
    height: 80px;
    background: #f7e3d3;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 12px 25px rgba(192, 118, 81, 0.25);
    transition: 0.35s ease;
}

.pureoil-process-card:hover .pureoil-icon-box {
    transform: rotate(8deg) scale(1.18);
}

/* ICON */
.pureoil-icon-box i {
    font-size: 30px;
    color: #c07651;
}

/* TEXT */
.pureoil-process-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #8b4e2e;
    margin-bottom: 10px;
}

.pureoil-process-card p {
    color: #6b594e;
    font-size: 15px;
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pureoil-main-title {
        font-size: 34px;
    }
}

/* contact cta start */
.eo-contact-cta {
    padding: 70px 0;
    background: #fcf3e8;
    font-family: "Poppins", sans-serif;
}

.eo-contact-box {
    background: #ffffff;
    padding: 70px 45px;
    text-align: center;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(200, 170, 130, 0.25);
    position: relative;
    overflow: hidden;
}

/* Soft Glow */
.eo-contact-box::before,
.eo-contact-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.eo-contact-box::before {
    width: 260px;
    height: 260px;
    background: #ecd9c7;
    top: -60px;
    left: -60px;
}

.eo-contact-box::after {
    width: 300px;
    height: 300px;
    background: #e6ccb6;
    bottom: -80px;
    right: -70px;
}

.eo-contact-title {
    font-size: 44px;
    font-weight: 700;
    background: linear-gradient(90deg, #c9a876, #c07651, #8b4e2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eo-contact-title span {
    color: #c07651;
}

.eo-contact-text {
    max-width: 650px;
    margin: 18px auto 35px;
    color: #6a5b4f;
    font-size: 17px;
}

/* CALL BUTTON ONLY */
.eo-contact-call-btn {
    background: linear-gradient(90deg, #c07651, #8b4e2e);
    color: #fff;
    padding: 14px 45px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 26px rgba(192, 118, 81, 0.35);
    transition: 0.3s ease;
}

.eo-contact-call-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(192, 118, 81, 0.45);
}

.eo-contact-call-btn i {
    font-size: 22px;
}

/* MOBILE */
@media (max-width: 768px) {
    .eo-contact-title {
        font-size: 32px;
    }

    .eo-contact-text {
        font-size: 15px;
    }
}

/* contact cta end */

/* blog-detal start */
/* MAIN SECTION */
.blog-inner-area {
    padding: 70px 0;
    background: linear-gradient(180deg, #fffaf4, #fff5eb);
}

/* ARTICLE TITLE */
.blog-article-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(90deg, #c9a876, #c07651, #8b4e2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* META INFO */
.blog-meta {
    margin: 10px 0 20px;
    color: #7a6458;
    font-size: 15px;
}

.blog-meta i {
    color: #c07651;
}

/* IMAGE */
.blog-feature-img {
    border-radius: 20px;
    width: 100%;
    margin: 25px 0;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* PARAGRAPH */
.blog-inner-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5e4a41;
    margin-bottom: 18px;
}

/* SUB HEADING */
.blog-inner-content h2 {
    font-size: 28px;
    margin-top: 30px;
    color: #8b4e2e;
    font-weight: 700;
}

/* QUOTE BOX */
.blog-quote {
    padding: 25px;
    margin: 30px 0;
    background: #fff0de;
    border-left: 6px solid #c07651;
    border-radius: 14px;
    font-style: italic;
    color: #6b564c;
}

/* TAGS */
.blog-tags span {
    display: inline-block;
    background: #ecd9c7;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin: 5px;
    color: #8b4e2e;
}

/* AUTHOR BOX */
.blog-author {
    background: #fff7ec;
    padding: 25px;
    border-radius: 18px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(200, 170, 130, 0.25);
}

.blog-author img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.blog-author h4 {
    margin: 0;
    color: #8b4e2e;
    font-weight: 700;
}

/* SIDEBAR WIDGET */
.blog-widget {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(200, 170, 130, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.blog-widget h4 {
    color: #8b4e2e;
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-widget ul {
    padding-left: 0;
}

.blog-widget ul li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px dashed #e6d5c7;
    cursor: pointer;
    color: #5e4a41;
}

.blog-widget ul li:hover {
    color: #c07651;
}

/* RELATED POSTS */
.related-title {
    font-size: 30px;
    color: #8b4e2e;
    margin-top: 60px;
    font-weight: 700;
}

.related-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
}

.related-card:hover {
    transform: translateY(-6px);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h5 {
    padding: 12px;
    font-size: 18px;
    color: #8b4e2e;
    margin: 0;
}

/* blog-detail end */

.natural-category-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 6px 0 12px;
}