@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');


:root {
    --bg-primary: #f6fbf2;
    --bg-secondary: #577A40;
    --bg-wight: #fff;
    --footer-color: #C1D7B2;
    --bg-tertiary: #f0f0f0;
    --accent-gold: #84B067;
    --accent-gold-rgb: 201, 160, 99;
    --accent-cream: #2c2b2b;
    --text-primary: #3A522A;
    --text-secondary: #84B067;
    --text-muted: #777777;
    --main-color: rgb(177, 194, 104);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-gold: 1px solid rgba(201, 160, 99, 0.25);
    --border-gold-focus: 1px solid rgba(201, 160, 99, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: 1px solid rgba(17, 17, 17, 0.08);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

body {
    /* background-color: var(--bg-primary); */
    /* color: var(--text-primary); */
    font-family: var(--font-body);
    line-height: 1.7;
}


h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Base styles and utilities */
a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-cream);
}

.text-gold {
    color: var(--accent-gold);
}

.text-cream {
    color: var(--accent-cream);
}

.bg-secondary-section {
    background-color: var(--bg-wight);
}


.vsb-top-marquee{
    width:100%;
    color:#fff;
    overflow:hidden;
    white-space:nowrap;
    height:42px;
    display:flex;
    align-items:center;
    position:relative;
    z-index:999;
}

.vsb-marquee-track{
    display:flex;
    width:max-content;
    animation:vsbScroll 22s linear infinite;
}

.vsb-marquee-track span{
    display:flex;
    align-items:center;
    font-size:15px;
    font-weight:500;
    letter-spacing:.5px;
    padding-right:80px;
    font-family:'Poppins',sans-serif;
}

@keyframes vsbScroll{
    from{
        transform:translateX(-50%);
    }
    to{
        transform:translateX(0%);
    }
}

.vsb-top-marquee:hover .vsb-marquee-track{
    animation-play-state:paused;
}   

@keyframes vsbScroll{
    from{
        transform:translateX(0%);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(253, 251, 247, 0.3) 0%, var(--bg-primary) 100%);
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.3;
    filter: saturate(0.8) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 20%, var(--bg-primary) 90%);
    z-index: -1;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 2.5rem;
}

/* Custom Navigation Bar */
.nav-wrapper {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1050 !important;
    transition: filter 0.3s ease;
    background-color: #f8f6ef !important;
}

.nav-wrapper.scrolled {
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.custom-navbar {
    background: #696246 !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: none;
    transition: var(--transition-smooth);
    padding: 0.8rem 0;
    z-index: 1050;
}

.nav-wrapper.scrolled .custom-navbar {
    padding: 0.5rem 0;
    background: #fefff3 !important;
    box-shadow: none;
    border-bottom-color: transparent;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    height: 95px;
    min-width: 200px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 12px 0;
    /* Add top and bottom spacing */
    transition: var(--transition-smooth);
}

.nav-wrapper.scrolled .navbar-brand img {
    height: 75px;
    margin: 8px 0;
}

/* Nav Links - Default (Top) */
.custom-navbar .nav-link {
    color: #473d3d !important;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem !important;
    text-transform: capitalize;
    position: relative;
    transition: var(--transition-smooth);
    font-size: 18px;

}

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

.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

/* Nav Links - Scrolled */
.nav-wrapper.scrolled .custom-navbar .nav-link {
    color: #473d3d !important;
}

.nav-wrapper.scrolled .custom-navbar .nav-link:hover,
.nav-wrapper.scrolled .custom-navbar .nav-link.active {
    color: #473d3d !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-wrapper.scrolled .custom-navbar .nav-link::after {
    background-color: #473d3d;
}

.navbar-logo {
    height: 90px;
    width: auto;
    transition: 0.3s;
}




/* laptop */
@media (max-width:1024px) {



    .navbar-brand img {
        height: 60px;
        min-width: 115px;

    }


    .custom-navbar .nav-link {
        font-size: 14px;
    }

    .btn-call-animated {
        padding: 4px 10px;
    }

    .nav-wrapper.scrolled .navbar-brand img {
        height: 60px;
    }

}

@media (max-width:504px) {

    .btn-call-animated {
        padding: 4px 6px;
    }
}



/* Mobile */
@media (max-width: 991px) {

    .navbar-logo {
        height: 70px;
    }

}



/* Animated Call Button */
.btn-call-animated {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #473d3d !important;
    color: #fff;
    font-size: 16px;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.nav-wrapper.scrolled .btn-call-animated {
    background: #fff;
    color: var(--main-color);
}

.btn-call-animated:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 48, 45, 0.4);
    color: #fff;
}

.nav-wrapper.scrolled .btn-call-animated:hover {
    color: var(--main-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

.icon-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.nav-wrapper.scrolled .icon-ring {
    background: var(--main-color);
    color: #fff;
}





/* Pulsing effect */
.icon-ring::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: ripple 2s infinite ease-out;
}

/* Ringing phone icon */
.icon-ring i {
    animation: phone-ring 2.5s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes phone-ring {

    0%,
    10%,
    20%,
    30% {
        transform: rotate(0deg);
    }

    5%,
    15%,
    25% {
        transform: rotate(20deg);
    }

    7.5%,
    17.5%,
    27.5% {
        transform: rotate(-20deg);
    }

    35%,
    100% {
        transform: rotate(0deg);
    }
}

.navbar-toggler {
    border: none !important;
    padding: 0.25rem 0.75rem;
}

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

.toggler-icon {
    width: 25px;
    height: 2px;
    background-color: #faf3eb;
    display: block;
    margin: 6px 0;
    transition: var(--transition-smooth);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}


.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}


.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
}



/* Premium Buttons */
.btn-gold {
    background-color: var(--accent-gold);
    color: #fff !important;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 50px !important;
    border: 2px solid var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(132, 176, 103, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--accent-gold) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(132, 176, 103, 0.5);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--accent-gold) !important;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 50px !important;
    border: 2px solid var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-gold:hover {
    background-color: var(--accent-gold);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(132, 176, 103, 0.4);
}


.menu-section-bg {
    /* background: url('../images/menu_bg5.png'); */
    /* background-attachment: fixed; */
    background-color: #f8f6ef;
}

.menu-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #A8B85A;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.menu-tag .line {
    width: 45px;
    height: 2px;
    background: #D9D4C5;
}

.menu-heading {
    font-family: "Playfair Display", serif;
    font-size: 70px;
    font-weight: 700;
    color: #3A2A22;
    margin-bottom: 15px;
    line-height: 1.1;
}

.menu-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.menu-divider .line {
    width: 55px;
    height: 2px;
    background: #E4DECF;
}

.menu-divider i {
    color: #A8B85A;
    font-size: 14px;
}

.menu-subtitle {
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #6B625A;
}

/* Mobile */
@media (max-width:768px) {

    .menu-heading {
        font-size: 42px;
    }

    .menu-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }

    .menu-tag .line,
    .menu-divider .line {
        width: 30px;
    }
}

.section-subtitle {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}


.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.title-line {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 1.5rem auto 3rem auto;
}

.title-line.left-align {
    margin: 1.5rem 0 3rem 0;
}

/* menu */
.filter-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-slider {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding-bottom: 19px;
    padding-top: 19px;
    flex: 1;
    scrollbar-width: none;
}

.filter-slider::-webkit-scrollbar {
    display: none;
}

.filter-slider.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
    user-select: none;
}

.filter-container {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    width: max-content;
}

.filter-container .btn-menu-filter {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
    transition: transform 0.2s;
}

.filter-nav-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.filter-nav-btn:hover {
    background: var(--main-color);
    color: #fff;
}



.menu-list-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Minimalist and elegant list layout */
.menu-item-simple {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 15px 12px;
    margin-bottom: 8px;
    background-color: transparent;
    border-bottom: 1px dashed rgba(58, 42, 34, 0.15);
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.menu-item-simple:hover {
    background-color: rgba(168, 184, 90, 0.08);
    /* light blend of theme main-color */
    border-bottom-style: solid;
    border-bottom-color: var(--main-color);
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: #3A2A22;
    padding-right: 15px;
    transition: var(--transition-smooth);
    /* white-space: nowrap; */
}

.menu-item-simple:hover .menu-item-name {
    color: var(--main-color);
}

.menu-item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(58, 42, 34, 0.25);
    margin: 0 10px;
    position: relative;
    top: -4px;
    transition: var(--transition-smooth);
}

.menu-item-simple:hover .menu-item-dots {
    border-bottom-color: var(--main-color);
}

.menu-item-price {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 700;
    color: #3A2A22;
    padding-left: 15px;
    transition: var(--transition-smooth);
    /* white-space: nowrap; */
}

.menu-item-simple:hover .menu-item-price {
    color: var(--main-color);
}

@media(max-width: 768px) {
    .menu-item-simple {
        padding: 12px 6px;
    }

    .menu-item-name {
        font-size: 1.15rem;
        padding-right: 8px;
    }

    .menu-item-price {
        font-size: 1.1rem;
        padding-left: 8px;
    }
}

/* Showcase Banner */
.showcase-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 0;
}

.showcase-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 251, 247, 0.85);
}

.showcase-content {
    position: relative;
    z-index: 2;
}


.polaroid-gallery {
    height: 500px;
}

.polaroid {
    background: #fff;
    padding: 10px 10px 0 10px;
    position: absolute;
    width: 280px;
    transition: transform 0.3s;
}

.polaroid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.polaroid-1 {
    top: 0;
    left: 0;
    transform: rotate(-8deg);
    z-index: 2;
}

.polaroid-2 {
    top: 120px;
    left: 140px;
    transform: rotate(10deg);
    z-index: 1;
}

.polaroid:hover {
    transform: scale(1.05);
    z-index: 3;
}

@media (max-width: 991px) {
    .polaroid-gallery {
        height: 450px;
    }

    .polaroid {
        width: 220px;
    }

    .polaroid img {
        height: 200px;
    }

    .polaroid-2 {
        top: 100px;
        left: 100px;
    }
}

@media (max-width: 500px) {
    .polaroid {
        width: 170px;
    }
}

@media (max-width: 500px) {
    .polaroid img {
        height: 170px;
    }
}

@media (max-width: 991px) {
    .polaroid-gallery {
        margin-left: 40px;
    }
}

/* Testimonial Section */

.testimonial-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.testimonial-divider span {
    width: 80px;
    height: 1px;
    background: #e8dcc8;
}

.testimonial-divider .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #D29A3A;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.testimonial-user img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #EFE8D8;
}

.testimonial-user h5 {
    margin: 0;
    color: #D29A3A;
    font-size: 28px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.testimonial-user span {
    color: #666;
    font-size: 15px;
}


.testimonial-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 55px 4px;
    flex: 1;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
}

.testimonial-card {
    background: var(--bg-secondary);
    border: var(--border-gold);
    padding: 10px 30px;
    position: relative;
    text-align: center;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.active-card {
    border: 2px solid #f1e6d7;
}

.testimonial-quote-icon {
    position: absolute;
    top: -22px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-img-wrapper img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

.stars {
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-content h5 {
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-content span {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-nav-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-nav-btn:hover {
    background: var(--main-color);
    color: #fff;
}

@media (max-width: 991px) {
    .testimonial-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 600px) {
    .testimonial-slide {
        flex: 0 0 90%;
    }

    .testimonial-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}

/* Interactive Contact Section */
.contact_section {
    background-color: #f8f6ef;
}

.contact-info-wrap {
    max-width: 520px;
}

.contact-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    color: #a8b85a;
    margin-bottom: 12px;
}

.contact-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #3d2d28;
    margin-bottom: 20px;
}

.divider {
    position: relative;
    width: 220px;
    margin-bottom: 25px;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 90px;
    height: 2px;
    background: #b5c45d;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    display: block;
    text-align: center;
    color: #b5c45d;
    font-size: 14px;
}

.contact-desc {
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fffdf7;
    border: 1px solid #ece2cf;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 18px;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
    cursor: pointer;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #eef0d4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9cad43;
    font-size: 22px;
    flex-shrink: 0;
}

.info-card h5 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 700;
    color: #3d2d28;
}

.info-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.info-card a {
    color: #666;
    text-decoration: none;
}

.info-card a:hover {
    color: #a8b85a;
}

@media (max-width:768px) {
    .contact-title {
        font-size: 40px;
    }

    .divider {
        width: 180px;
    }

    .divider::before,
    .divider::after {
        width: 70px;
    }
}

.contact-form-box {
    background: #fff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

.contact-form-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(168, 184, 90, .05),
            transparent 40%);
    pointer-events: none;
}

.contact-form .form-control {
    height: 62px;
    border: 1px solid #e8dfcf !important;
    background: #fcfaf4;
    border-radius: 12px;
    box-shadow: none;
    transition: .3s;
}

.contact-form textarea.form-control {
    height: 160px;
    padding-top: 18px;
    resize: none;
}

.contact-form .form-control:focus {
    border-color: #a8b85a !important;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(168, 184, 90, .15);
}

.contact-form label {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.submit-btn {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #2d241f;
    background: linear-gradient(90deg, #a8b85a, #b7c861);
    transition: .35s;
    box-shadow: 0 10px 25px rgba(168, 184, 90, .35);
}

.submit-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 18px 35px rgba(168, 184, 90, .45);
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -30%;
    width: 160%;
    height: 300%;
    background: rgba(255, 255, 255, .25);
    border-radius: 40%;
    animation: waveMove 6s linear infinite;
}

.submit-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, .12),
            transparent 50%);
    transform: translateX(-100%);
    transition: .6s;
}

.submit-btn:hover::after {
    transform: translateX(100%);
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

/* @keyframes waveMove{
    0%{
        transform:rotate(0deg) translateX(0);
    }
    100%{
        transform:rotate(360deg) translateX(0);
    }
} */
.modern-footer {

    background: #090704;
    color: #e6d7c3;
    ;
    padding: 80px 0 35px;
    position: relative;
    overflow: hidden;

}

/* Background Glow */

.modern-footer::before {

    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
            rgba(255, 183, 77, .08), transparent 40%),

        radial-gradient(circle at bottom right,
            rgba(255, 183, 77, .06), transparent 40%);

    pointer-events: none;

}

.footer-logo {

    width: 170px;
    margin-bottom: 20px;

}

.gold-line {

    width: 90px;
    height: 2px;
    background: #ffd483;
    margin: 18px 0;

}

.footer-text {

    font-size: 14px;
    line-height: 28px;
    color: #bdbdbd;

}

.modern-footer h5 {

    color: #ffd483;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;

}

.footer-links {

    list-style: none;
    padding: 0;

}

.footer-links li {

    margin-bottom: 14px;

}

.footer-links a {

    color: #ccc;
    text-decoration: none;
    transition: .3s;

}

.footer-links a:hover {

    color: #ffd483;
    padding-left: 8px;

}

.social-links {

    display: flex;
    gap: 12px;
    margin-top: 25px;

}

.social-links a {

    width: 42px;
    height: 42px;
    border: 1px solid #ffd483;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffd483;
    transition: .35s;

}

.social-links a:hover {

    background: #ffd483;
    color: #352529;
    transform: translateY(-5px);

}

.contact-item {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 18px;

}

.contact-item span {

    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ffd483;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffd483;
    flex-shrink: 0;

}

.contact-item a {

    margin: 0;
    line-height: 25px;
    color: #d2d2d2;

}

.contact-item span {
    transition: 0.3s ease;
    cursor: pointer;
}

/* HOVER EFFECT */
.contact-item span:hover {
    background: linear-gradient(135deg, #7a5a22, #ffd483, #d6b25e);
    color: #352529;
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 0 4px rgba(166, 124, 45, 0.5);
    border-color: #d6b25e;
}

.working-card {

    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(6px);

}

.hours-row {

    display: flex;
    gap: 15px;
    align-items: flex-start;

}

.hours-row i {

    color: #ffd483;
    font-size: 20px;
    margin-top: 3px;

}

.hours-row strong {

    display: block;
    color: #fff;
    margin-bottom: 5px;

}

.hours-row span {

    background: #ffd483;
    color: #111;
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;

}

.working-card hr {

    border-color: rgba(255, 255, 255, .08);
    margin: 18px 0;

}

.holiday {

    margin: 0;
    color: #ddd;

}

.holiday i {

    color: #ffd483;
    margin-right: 8px;

}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
    padding: 18px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #cfc2ad;
    font-size: 14px;
}

/* CENTER TEXT */
.bottom-center {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* LINK STYLE */
.bottom-center a {
    color: #ffd483;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* HOVER EFFECT */
.bottom-center a:hover {
    color: #d6b25e;
    text-shadow: 0 0 10px rgba(166, 124, 45, 0.5);
}

/* MOBILE */
@media(max-width:600px) {
    .bottom-center {
        flex-direction: column;
        gap: 5px;
    }
}

/* Animations */
.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Map Style */
.map-container {
    border: var(--border-gold);
    border-radius: 4px;
    overflow: hidden;
    height: 350px;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1);
}

.top-bar {
    background: #a9b85a;
    font-size: 15px;
    padding: 0px 80px;
}

.top-bar a {
    color: #fff;
    transition: 0.3s;
}

.top-bar a:hover {
    color: #f8f8f8;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }
}

.nav-wrapper {
    position: relative;
    background-color: #f8f6ef;
    z-index: 1050;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Mobile par nav links center + underline fix */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        display: inline-block;
    }
}

.custom-navbar {
    background: #fff !important;
    padding: 0 !important;
    backdrop-filter: none;
    border-bottom: none;
}

.scalloped-border {
    position: absolute;
    bottom: -14px;
    /* overlap by 1px to avoid rendering gaps */
    left: 0;
    width: 100%;
    height: 15px;
    background-image: radial-gradient(circle at 12px 0, #fff 12px, transparent 13px);
    background-size: 24px 15px;
    background-repeat: repeat-x;
    z-index: 1049;
    transition: background-image 0.4s ease;
}

.nav-wrapper.scrolled .scalloped-border {
    background-image: radial-gradient(circle at 12px 0, var(--main-color) 12px, transparent 13px);
}

.hero-section-new {
    padding: 0;
    overflow: hidden;
}

.hero-section-new .carousel-item {
    height: 90vh;
    min-height: 650px;
}

.hero-section-new .container {
    height: 100vh;
    min-height: 750px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05);
    transition: transform 6s linear;
}

.carousel-item.active .hero-bg-image {
    transform: scale(1);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 7, 3, 0.027) 0%, rgba(9, 37, 22, 0.247) 100%);
    z-index: 1;
}

.hero-text-col {
    max-width: 800px;
}

.hero-title-new {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
}

.hero-desc-new {
    font-family: var(--font-body);
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0;
}

.hero-btn-container {
    opacity: 0;
}

.btn-recipe {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-transform: none;
    font-family: var(--font-body);
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.btn-recipe:hover {
    background-color: var(--main-color);
    color: #fff !important;
    border-color: var(--main-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(147, 197, 114, 0.4);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    z-index: 10;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: var(--main-color);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

/* Animations */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-item.active .hero-title-new {
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.carousel-item.active .hero-desc-new {
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.carousel-item.active .hero-btn-container {
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

@media (max-width: 991px) {
    .hero-title-new {
        font-size: 2.8rem;
    }

    .hero-section-new {
        min-height: 60vh;
    }

    .slider-arrow {
        display: none;
    }
}

/* About Section */
.about-image-grid,
.about-image-grid .row {
    height: 100%;
}

.about-image-grid .col-6 {
    height: 100%;
}

.about-image-grid .col-6:first-child img {
    height: 100%;
    width: 100%;
}

.about-image-grid .col-6:last-child img:first-child {
    height: calc(50% - 6px);
    width: 100%;
}

.about-image-grid .col-6:last-child img:last-child {
    height: calc(50% - 6px);
    width: 100%;
}

.about-section {
    background-color: #fdf8f5;
    background-image: radial-gradient(rgba(147, 197, 114, 0.4) 2px, transparent 2px), radial-gradient(rgba(224, 122, 95, 0.4) 2px, transparent 2px);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.about-section>.container {
    position: relative;
    z-index: 1;
}

.about-image-grid img {
    object-fit: cover;
}

.about-badge {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #fdf8f5;
    z-index: 2;
}

.circular-text {
    animation: spin 12s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.play-icon {
    font-size: 1.8rem;
    color: var(--main-color);
    transform: translateX(2px);
}

.about-title {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 3rem;
    color: var(--main-color);
    line-height: 1.2;
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--main-color);
}

.btn-primary-custom {
    background-color: var(--main-color);
    color: #fff !important;
    border: 2px solid var(--main-color);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(147, 197, 114, 0.3);
    font-weight: 600;
    transition: all 0.4s ease;
    padding: 14px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    background-color: #fff;
    color: var(--main-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(147, 197, 114, 0.5);
    border-color: var(--main-color);
}

/* Mobile */
@media (max-width: 767px) {
    .btn-primary-custom {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: flex;
        padding: 12px 20px;
        font-size: 16px;
        text-align: center;
    }

    .btn-wrapper {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 457px) {
    .btn-primary-custom {
        padding: 12px 24px;
        font-size: 10px;
        width: auto;
    }

    .btn-wrapper {
        display: flex;
        justify-content: center;
    }
}

/* Stats Section */
.stats-section {
    background-image: url('../images/bg_.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.scalloped-border-top {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background-image: radial-gradient(circle at 12px 15px, var(--main-color) 12px, transparent 13px);
    background-size: 24px 15px;
    background-repeat: repeat-x;
    z-index: 10;
}

.scalloped-border-bottom {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background-image: radial-gradient(circle at 12px 0, var(--main-color) 12px, transparent 13px);
    background-size: 24px 15px;
    background-repeat: repeat-x;
    z-index: 10;
}

/* Timing Section */
.timing-section {
    background-color: #fdf8f5;
    overflow: hidden;
}

.dashed-line {
    border-bottom: 2px dashed rgba(0, 0, 0, 0.1);
    transform: translateY(2px);
    transition: var(--transition-smooth);
}

.timing-row {
    transition: var(--transition-smooth);
}

.timing-row:hover .dashed-line {
    border-bottom-color: var(--main-color);
}

.timing-row:hover span {
    color: var(--main-color) !important;
}

/* slider section  */
.gallery-section {
    background: #fff;
    overflow: hidden;
}

.gallery-heading .sub-title {
    color: var(--main-color);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 14px;
}

.gallery-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-top: 10px;
}

.bakery-showcase-slider {
    width: 100%;
    overflow: hidden;
}

.bakery-showcase-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: bakeryShowcaseSlide 40s linear infinite;
    will-change: transform;
}

.bakery-showcase-item {
    position: relative;
    flex: 0 0 260px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
}

.bakery-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bakery-showcase-item:hover img {
    transform: scale(1.08);
}

.bakery-showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    align-items: flex-end;
}

.bakery-showcase-item:hover .bakery-showcase-overlay {
    transform: translateY(0);
}

.bakery-showcase-overlay span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

@keyframes bakeryShowcaseSlide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .bakery-showcase-item {
        flex: 0 0 200px;
        height: 260px;
    }

    .bakery-showcase-track {
        animation-duration: 25s;
    }
}

.restaurant-banner {
    background-image: url(../images/image.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 380px;
    align-items: center;
}

@media (max-width: 768px) {
    .restaurant-banner {

        min-height: 380px;

    }
}

.icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #98ae4a 0%, #7f9440 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid #fbfaf5;
    box-shadow: 0 14px 30px rgba(141, 166, 63, .25);
}


.banner-title {
    font-size: 48px;
    font-weight: 700;
    color: #2d241d;
    line-height: 1.2;
}

.banner-text {
    font-size: 18px;
    color: #1a1411;
}

.visit-btn {
    background: #98ae4a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.visit-btn:hover {
    background: #7f9440;
    color: #fff;
}

.banner-image {
    max-width: 100%;
}

.banner-leaf {
    max-width: 70px;
}

@media(max-width:991px) {

    .banner-title {
        font-size: 34px;
    }

    .banner-text {
        font-size: 16px;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media(max-width:576px) {

    .banner-title {
        font-size: 28px;
    }

    .banner-text {
        font-size: 15px;
    }

    .visit-btn {
        justify-content: center;
    }

    .d-flex.align-items-center.mb-3 {
        flex-direction: column;
        text-align: center;
    }

    .icon-circle {
        margin-bottom: 15px;
    }
}

.ambience-section {
    background: #f1f2e3;
}

.ambience-content {
    max-width: 320px;
}

.leaf-icon {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    color: #95ab43;
    font-size: 24px;
}

.ambience-content h2 {
    font-size: 52px;
    font-weight: 700;
    color: #1f1f1f;
    margin: 10px 0 18px;
    font-family: Georgia, serif;
}

.ambience-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #a1b353;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.gallery-btn:hover {
    background: #8d9f45;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item.big {
    grid-row: span 2;
}

/* Tablet */
@media(max-width:991px) {

    .ambience-content {
        max-width: 100%;
        text-align: center;
        margin: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 220px 220px;
    }

    .gallery-item.big {
        grid-column: span 2;
        grid-row: auto;
    }
}

/* Mobile */
@media(max-width:576px) {

    .ambience-content h2 {
        font-size: 36px;
    }

    .ambience-content p {
        font-size: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item,
    .gallery-item.big {
        height: 240px;
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}


/* ===============================
   Bakery Meets Restaurant Section
================================== */

.bakery-restaurant {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2f241d;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

@media (max-width:768px) {
    .section-subtitle {
        font-size: 13px;
    }
}

/* Card */
.service-card {
    position: relative;
    background: #fff;
    border-radius: 25px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    margin-top: 15px;
}

.service-card:hover {
    transform: translateY(-8px);
}

.img-box {
    position: relative;
}

.img-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
}

.icon-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #b1c268;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 5px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 99;
}

.content {
    text-align: center;
    padding: 35px 25px;
}

.content h3 {
    font-size: 35px;
    font-family: Georgia, serif;
    color: #2f241d;
    margin-bottom: 10px;
}

.content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.fusion-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #8b9d3d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    border: 6px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

/* Responsive */
@media (max-width: 991px) {

    .section-title {
        font-size: 34px;
    }

    .img-box img {
        height: 240px;
    }

    .content h3 {
        font-size: 34px;
    }

    .fusion-badge {
        position: static;
        transform: none;
        margin: 40px auto;
    }
}

@media (max-width: 576px) {

    .section-title {
        font-size: 28px;
    }

    .img-box img {
        height: 200px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .content h3 {
        font-size: 30px;
    }

    .content p {
        font-size: 15px;
    }

    .fusion-badge {
        width: 110px;
        height: 110px;
        font-size: 15px;
    }
}

/* ==========================
   TESTIMONIAL SECTION
========================== */

.testimonial-section {
    background: #FAFAF7;
    padding: 100px 0;
    overflow: hidden;
}

.subtitle {
    color: #7F993B;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.subtitle .line {
    width: 70px;
    height: 2px;
    background: #7F993B;
}

.special-feature-list {
    position: relative;
    margin-bottom: 35px;
}

.special-item {
    display: flex;
    gap: 18px;
    position: relative;
    padding-bottom: 25px;
}

.special-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 45px;
    width: 2px;
    height: 45px;
    background: #A8B85A;
}

.special-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8DA63F, #A8B85A);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(141, 166, 63, 0.25);
    overflow: hidden;
}

.special-icon::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(32, 32, 32, 0),
            transparent);
    transform: rotate(25deg);
    transition: 0.6s;
}

.special-item:hover .special-icon {
    transform: translateY(-5px) rotate(10deg) scale(1.08);
    box-shadow: 0 12px 30px #8da63f73;
}

.special-item:hover .special-icon::before {
    top: 100%;
    left: 100%;
}

.special-icon i {
    transition: transform 0.4s ease;
}

.special-item:hover .special-icon i {
    transform: scale(1.2) rotate(-10deg);
}

@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

.special-icon {
    animation: floatIcon 3s ease-in-out infinite;
}

.special-content h5 {
    margin-bottom: 5px;
    font-weight: 700;
    color: #33261F;
}

.special-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.special-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8DA63F;
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(141, 166, 63, .25);
}

.special-btn:hover {
    background: #3B2A22;
    color: #fff;
    transform: translateY(-3px);
}


.testimonial-card {

    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 80px 45px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    transition: .35s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.active-card {
    transform: scale(1.05);
    border: 1px solid #DDE4B5;
}


.testimonial-quote-icon {

    position: absolute;
    width: 72px;
    height: 72px;
    background: #9BAE4A;
    border-radius: 50%;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}


.stars {

    color: #D29A3A;
    text-align: center;
    letter-spacing: 5px;
    font-size: 20px;
    margin-bottom: 28px;
}


.testimonial-card p {

    color: #555;
    line-height: 1.9;
    text-align: center;
    font-size: 18px;
    margin-bottom: 35px;
}


.divider {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.divider span {

    width: 90px;
    height: 1px;
    background: #eadfcb;
}

.divider .dot {

    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D29A3A;
}

.testimonial-user {

    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-user img {

    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #efe7d9;
}

.testimonial-user h5 {

    margin: 0;
    font-family: 'Playfair Display', serif;
    color: #D29A3A;
    font-size: 32px;
}

.testimonial-user small {

    color: #666;
    font-size: 18px;
}


.testimonial-nav-btn {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    color: #9BAE4A;
    transition: .3s;
}

.testimonial-nav-btn:hover {

    background: #9BAE4A;
    color: #fff;
}


.modern-footer {
    /* background-image: url("../images/ft_2.png"); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #1a1411;
    position: relative;
    overflow: hidden;
    padding: 50px 0 30px;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background-image: radial-gradient(circle at 12px 15px, #1a1a1a 12px, transparent 13px);
    background-size: 24px 15px;
    background-repeat: repeat-x;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.footer-links li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--main-color);
    transform: translateX(5px);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--main-color);
    color: #fff;
    transform: translateY(-3px);
}




.features-modern {
    position: relative;
    background: url('../images/leaf_bg.png') center/cover no-repeat;
    overflow: hidden;
}

.features-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    /* Overlay */
}

.features-modern>* {
    position: relative;
    z-index: 1;
}




.features-modern>* {
    position: relative;
    z-index: 1;
}

.flip-card {
    perspective: 1000px;
    height: 100%;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    background-color: #fdf8f5;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .icon-wrapper i {
        font-size: 1.6rem !important;
    }
}

.flip-card-back {
    transform: rotateY(180deg);
    overflow: hidden;
    padding: 0 !important;
}

.flip-card-back img {
    object-fit: cover;
    display: block;
}

.feature-card-modern {
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card-modern:hover .icon-wrapper {
    background-color: var(--main-color) !important;
}

.feature-card-modern:hover .icon-wrapper i {
    color: #fff !important;
}

/* CTA Modern */
.veloura-cta {
    position: relative;
    padding: 120px 0;
    background: url(../images/background_about.png) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

/* Dark overlay for readability */
.veloura-cta .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(20, 20, 20, 0.82) 0%,
            rgba(20, 20, 20, 0.55) 45%,
            rgba(20, 20, 20, 0.20) 100%);
}

.veloura-cta .container {
    position: relative;
    z-index: 2;
}

.cta-tag {
    color: #98AE4A;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cta-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0;
}

.cta-title span {
    color: #98AE4A;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
}

.cta-btn {
    display: inline-block;
    background: #98AE4A;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #7f9440;
    color: #fff;
}

@media (max-width: 768px) {
    .cta-btn {
        padding: 10px 28px;
    }
}

@media (max-width: 768px) {
    .veloura-cta {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-text {
        font-size: 16px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    /* background-color: var(--main-color); */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: #9BAE4A;
}

.back-to-top:hover {
    background-color: #222;
    color: var(--main-color);
    transform: translateY(-5px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sweet Page Banner */
.sweet-page-banner {
    position: relative;
    /* background-color: var(--main-color); */
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
}

.sweet-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg_.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* opacity: 0.6; */
    z-index: 1;
}

.sweet-banner-text {
    position: relative;
    z-index: 3;
}

.sweet-banner-title {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.sweet-banner-breadcrumb {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sweet-banner-breadcrumb li {
    display: inline-block;
}

.sweet-banner-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.sweet-banner-breadcrumb a:hover {
    opacity: 0.8;
}

.sweet-banner-decor {
    position: absolute;
    bottom: -60px;
    right: 5%;
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 10px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .sweet-banner-title {
        font-size: 3rem;
    }

    .sweet-banner-decor {
        width: 140px;
        height: 140px;
        bottom: -30px;
        right: 0px;
        opacity: 0.7;
    }
}



.hero_subheading {
    background-color: #9BAE4A;
    padding: 5px 15px;
    border-radius: 30px;
    color: white;
}


.hero-title {
    font-size: 52px;
    line-height: 1.15;
    color: #2b2928;
    font-weight: 700;
}

.hero-title span {
    color: #a6b25a;
}

.hero-description {
    margin-top: 18px;
    font-size: 22px;
    line-height: 1.8;
    color: #201e1e;
    max-width: 720px;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #a6b25a;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .3s;
}

.btn-primary:hover {
    background: #8d9949;
}


.btn-outline {
    border: 2px solid #a6b25a;
    color: #444;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: .3s;
}

.btn-outline:hover {
    background: #a6b25a;
    color: #fff;
}

@media(max-width:768px) {
    .hero_subheading {
        font-size: 12px;
    }

    .hero-title {
        font-size: 33px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary {
        padding: 8px 16px;
    }

    .btn-outline {
        padding: 8px 16px;
    }
}

.about-highlight {
    background: #f8f6ef;
    overflow: hidden;
}

.about-tag {
    color: #98AE4A;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-title {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 700;
    color: #312921;
    margin-bottom: 20px;
}

.about-title span {
    color: #98AE4A;
}

.about-text {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #ece8dc;
    transition: .3s;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.feature-box i {
    color: #98AE4A;
    font-size: 22px;
}

.feature-box span {
    font-weight: 600;
    color: #333;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #98AE4A;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.about-btn:hover {
    background: #7f9440;
    color: #fff;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 650px;
    border-radius: 0 30px 30px 0;
}

.about-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-image::before {
    content: "";
    position: absolute;
    left: -260px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 900px;
    background: #f8f6ef;
    border-radius: 50%;
    z-index: 2;
}

.about-image::after {
    content: "";
    position: absolute;
    left: -248px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 880px;
    border: 2px solid #98AE4A;
    border-radius: 50%;
    z-index: 3;
    opacity: 0.35;
}

.about-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}

@media (max-width: 991px) {

    .about-image-wrapper,
    .about-image img {
        min-height: auto;
        height: auto;
        border-radius: 20px;
    }

    .about-image::before,
    .about-image::after {
        display: none;
    }
}


@media(max-width:991px) {

    .about-title {
        font-size: 40px;
    }

}

@media(max-width:576px) {

    .about-title {
        font-size: 32px;
    }

    .about-text {
        font-size: 15px;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }

}


.gallery_section {
    background-color: #f8f6ef;
}

.gallery-item-premium {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.gallery-item-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
    display: block;
}

.gallery-item-premium:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .8),
            rgba(0, 0, 0, .2),
            transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: .4s;
}

.gallery-item-premium:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    color: #98AE4A;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 26px;
    margin-top: 8px;
    margin-bottom: 0;
    font-weight: 700;
}

/* Heights */
.gallery-tall {
    height: 520px;
}

.gallery-medium {
    height: 350px;
}

.gallery-small {
    height: 240px;
}

/* Mobile */

@media(max-width:991px) {

    .gallery-tall,
    .gallery-medium,
    .gallery-small {
        height: 300px;
    }

}

/* menupage css start  */

.custom_cake_section {
    position: relative;
    background: url(../images/footer_bg.png) center center;
    background-size: cover;
    overflow: hidden;
}

.custom_cake_section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(20, 20, 20, 0.65),
            rgba(20, 20, 20, 0.65));
}

.custom_cake_section .container {
    position: relative;
    z-index: 2;
}

.section-tag {
    color: #98AE4A;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
}

.custom-text {
    max-width: 700px;
    margin: auto;
    line-height: 1.9;
    font-size: 18px;
    opacity: .95;
}

.custom_cake_section .btn {
    transition: .3s;
}

.custom_cake_section .btn:hover {
    transform: translateY(-3px);
}

@media(max-width:768px) {

    .custom_cake_section {
        background-attachment: scroll;
    }

    .custom-text {
        font-size: 16px;
    }
}



.feature-card {
    background: #fff;
    border: 1px solid #ece8dc;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.35s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #98AE4A;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #f4f7e8;
    color: #98AE4A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.feature-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #2f241d;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}





.chef-cta {
    position: relative;
    background: url("../images/hero_1.png") center center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay */
.chef-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    /* Adjust opacity as needed */
    z-index: 1;
}

/* Content above overlay */
.chef-cta .container {
    position: relative;
    z-index: 2;
}

/* Text colors */
.chef-title {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
}

.chef-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
}



.chef-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #98AE4A;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.chef-btn-primary:hover {
    background: #86993d;
    color: #fff;
}

.chef-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: 2px solid #3d332c;
    color: #3d332c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
    background: #fff;
}

.chef-btn-outline:hover {
    background: #3d332c;
    color: #fff;
}

@media(max-width:991px) {

    .chef-title {
        font-size: 36px;
    }

    .chef-text {
        font-size: 16px;
    }

}

@media(max-width:576px) {

    .chef-cta-box {
        padding: 30px 20px;
    }

    .chef-title {
        font-size: 30px;
    }

    .chef-btn-primary,
    .chef-btn-outline {
        width: 100%;
    }

}

/* menupage css end */




.why-veloura {
    background: #fcfbf7;
}

.section-tag-about {
    color: #98AE4A;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #2f241d;
    margin-bottom: 15px;
}

.section-desc {
    max-width: 700px;
    margin: auto;
    color: #777;
    line-height: 1.8;
}

.special-card {
    background: #fff;
    border: 1px solid #ece7da;
    border-radius: 18px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    transition: .35s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .04);
}

.special-card:hover {
    transform: translateY(-8px);
    border-color: #98AE4A;
    box-shadow: 0 18px 35px rgba(152, 174, 74, .18);
}

.special-icon {
    width: 72px;
    min-width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #dfe6bf;
    background: #f8faef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-icon i {
    font-size: 30px;
    color: #98AE4A;
}

.special-card h5 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2f241d;
    font-weight: 700;
}

.special-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

@media(max-width:768px) {

    .section-title {
        font-size: 33px;
    }

    .special-card {
        padding: 20px;
    }

    .special-icon {
        width: 60px;
        min-width: 60px;
        height: 60px;
    }

    .special-icon i {
        font-size: 24px;
    }

    .special-card h5 {
        font-size: 18px;
    }
}

.custom-order-section {
    background: #f8f6ef;
    overflow: hidden;
}

.custom-order-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border: 3px solid #a1b353;
    border-top-right-radius: 180px;
    border-bottom-right-radius: 180px;
}

.custom-order-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

.custom-order-img:hover img {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 991px) {
    .custom-order-img {
        min-height: 400px;
        border-top-right-radius: 120px;
        border-bottom-right-radius: 120px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .custom-order-img {
        min-height: auto;
        height: 300px;
        border-radius: 30px;
        /* ya 25px */
    }

    .custom-order-img img {
        object-fit: cover;
    }
}

.custom-order-content {
    padding: 70px 70px;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #8da13d;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 15px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .section-tag {
        font-size: 12px;
    }
}

.section-tag span {
    width: 70px;
    height: 2px;
    background: #8da13d;
}

.custom-order-content h2 {
    font-size: 72px;
    font-family: Georgia, serif;
    line-height: 1.1;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

.custom-order-content h2 span {
    color: #a1b353;
}

.custom-order-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    max-width: 700px;
    margin-bottom: 45px;
}

.feature-boxes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    /* border-top:1px solid #e9e4d8;
    border-bottom:1px solid #e9e4d8; */
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 20px 10px;
    border-right: 1px solid #e9e4d8;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item i {
    font-size: 34px;
    color: #a1b353;
    margin-bottom: 15px;
}

.feature-item h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
}

.feature-item p {
    margin: 4px 0 0;
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.feature-item:hover i {
    transform: translateY(-3px);
    transition: .3s;
    color: #8fa142;
}

@media (max-width:768px) {
    .feature-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border: none;
    }

    .feature-item {
        border: 1px solid #e9e4d8;
        margin: 5px;
    }
}

@media (max-width:576px) {
    .feature-boxes {
        grid-template-columns: 1fr;
    }
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #a1b353;
    color: #fff;
    text-decoration: none;
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.order-btn:hover {
    background: #899a42;
    color: #fff;
}

/* Tablet */

@media(max-width:991px) {

    .custom-order-img {
        min-height: 500px;
        border-radius: 40px;
    }

    .custom-order-content {
        padding: 50px 30px;
        text-align: center;
    }

    .section-tag {
        justify-content: center;
    }

    .custom-order-content h2 {
        font-size: 48px;
    }

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

/* Mobile */

@media(max-width:576px) {

    .custom-order-content h2 {
        font-size: 30px;
    }

    .custom_p {
        font-size: 13px !important;
    }

    .custom-order-content p {
        font-size: 10px;
    }

    .order-btn {
        font-size: 12px;
        padding: 10px 14px;
    }

    .feature-boxes {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .feature-item i {
        font-size: 28px;
    }

    .feature-item h6 {
        font-size: 12px;
    }

    .order-btn {
        width: 100%;
        justify-content: center;
    }

    .section-tag span {
        width: 40px;
    }
}

@media(max-width:991px) {

    .custom-order-img {
        min-height: 267px;
        border-radius: 40px;
    }
}