/* Custom CSS */
:root {
    --primary-color: #ffffff;
    --secondary-color: #f8f9fa;
    --text-color: #333333;
    --hover-color: #837851;
}

body {
    font-family: 'Poppins';
    overflow-x: hidden;
    background: #fff6d2;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

/* big calson pro file for h1 */
h1.big-calson-pro {
    font-family: 'Big Calson Pro', serif;

}

a {
    text-decoration: none;

}

/* Navbar styles */
.navbar {
    background-color: transparent !important;
    transition: all 0.5s ease;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Decorative line under navbar */
.lte-navbar>.container-fluid:after {
    content: "";
    background: url(img/cNavbar\ bottom.png) repeat-x;
    position: absolute;
    height: 8px;
    bottom: -23px;
    left: 122px;
    right: 54px;
    z-index: 1;
    display: block;
    pointer-events: none;
}

/* Decorative line under navbar */
.lte-navbar2>.container:after {
    content: "";
    background: url(img/cNavbar\ bottom.png) repeat-x;
    position: absolute;
    height: 8px;
    bottom: -23px;
    left: 101px;
    right: 54px;
    z-index: 999;
    display: block;
    pointer-events: none;
}

/* Navbar when scrolled */
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-det {
    height: 70vh;
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.8);
        padding: 15px;
        margin-top: 100px;
        border-radius: 5px;
    }

    .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.7);
        margin-left: 15px;
    }

    .product-det {
        height: fit-content;
    }
}


.navbar {
    transition: all 0.5s ease;
    padding: 35px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 230px;
    transition: all 0.3s ease;
    position: absolute;
    top: -48px;
    z-index: 99;
}

/* This is for mobile responsive */
/* Media query for mobile devices (typically 767px or less) */
@media (max-width: 767px) {
    .navbar-brand img {
        height: 151px;
        transition: all 0.3s ease;
        position: absolute;
        top: -50px;
        left: 4px;
        z-index: 99;
    }

    .navbar-collapse {
        margin-top: 60px;
    }
}

/* This is for mobile responsive */
@media (max-width: 767px) {
    .paddleft {
        padding-left: 0px !important;
    }
}



.navbar.scrolled .navbar-brand img {
    height: 35px;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;

}

.nav-link:hover {
    /* color: var(--hover-color) !important; */
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--hover-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 0;
}

.dropdown-item {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: transparent;
    color: var(--hover-color);
}

.navbar-toggler {
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Carousel Styles */
.carousel {
    height: 100vh;
}

/* Carousel Styles */
.widthr {
    height: 53vh;
}

/* Media query for mobile devices (typically 767px or less) */
@media (max-width: 767px) {
    .widthr {
        height: 88vh;
        /* Taller height for mobile screens */
    }
}


.banner {
    position: relative;
}

.banner .banner-top-img {
    z-index: 2;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: auto;
}

.carousel-inner {
    height: 100%;
}

/* This is for big screen */
.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease, transform 2.0s ease;
    transform: scale(1.1);
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    top: 30%;
}

/* Media query for mobile devices (typically 767px or less) */
@media (max-width: 767px) {
    .carousel-caption {
        z-index: 2;
        bottom: 1%;
    }


}

.carousel-caption h5 {
    font-size: 3.0rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease;
}

.carousel-caption p {
    font-size: 1.2rem;
    animation: fadeInUp 1s ease;
}

/* Keyframes for animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    z-index: 3;
    width: 5%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar {
        background-color: rgba(0, 0, 0, 0) !important;
    }

    .nav-link {
        margin: 5px 0;
    }

    .carousel-caption h5 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

}

/* This is for banner mobile responsive  */
@media (max-width: 768px) {
    .carousel-item {
        height: 75vh;
        background-size: cover;
        background-position: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transition: opacity 1s ease, transform 2.0s ease;
        transform: scale(1.1);
    }

    .carousel {
        height: 70vh;
    }

}

/* Carousel Styles */
/* .carousel {
            position: relative;
        }
        
        .carousel-inner {
            position: relative;
        }
        
        .carousel-item {
            position: relative;
        } */

/* Grunge texture overlay styles */
.grunge-overlay {
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 100%;
    height: 222px;
    background: url(img/cBannerBottom.png) repeat-x;
    background-size: 100% 100%;
    z-index: 1;
    background-position: center;
}


/* Grunge overlay styles */
.grunge-top {
    position: absolute;
    top: -26px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('img/cBannerTop.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 4;
}

/* This about css  */
.patisserie-section {
    padding: 50px 0;
    position: relative;
    /* background-size: contain; */
    background-position: right;
    background-repeat: no-repeat;
}

/* @media (min-width: 992px) {
        .patisserie-section {
            margin-top: 80px;
        }
        } */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0); */
}

/* Text Content */
.text-content {
    padding-right: 30px;
    color: white;
}

.text-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-content p {
    font-size: 15px;
    line-height: 1.6;
    /* margin-bottom: 30px; */
    max-width: 87%;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 30px 40px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-download {
    background-color: #003d39;
    color: #ffffff;
    border: 2px solid #d4a762;
}

.btn-readmore {
    color: #fff;
    border: 2px solid #fff;
    background: #d4a762;
}

.btn-download:hover {
    background-color: #c4954f;
    border-color: #c4954f;
}

.btn-readmore:hover {
    background-color: #003d39;
}

/* Features */
/* .features {
        background-color: rgb(0 61 57);
        padding: 40px;
        border-radius: 8px;
        } */

.feature {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
    color: white;
}

.feature:last-child {
    margin-bottom: 0;
}

.icon {
    margin-right: 20px;
}

.icon img {
    width: 50px;
    height: 50px;
    /* filter: brightness(0) invert(1); */
}

.feature-text h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #d4a762;
}

.feature-text p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .patisserie-section {
        padding: 60px 0;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 40px;
    }


}

@media (max-width: 767px) {
    .text-content h1 {
        font-size: 32px;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
    }

    .feature {
        margin-bottom: 25px;
    }

    .icon {
        margin-right: 15px;
    }

    .icon img {
        width: 35px;
        height: 35px;
    }

    .grunge-overlay {
        background-image: url('../assect/img/cBannerBottomCopy.png');

    }
    .grunge-overlay {
    position: absolute;
    bottom: -63px;
    left: 0px;
    width: 100%;
    height: 222px;
    /* background: url(img/cBannerBottom.png) repeat-x; */
            background-image: url('../assect/img/cBannerBottomCopy.png');

    background-size: 100% 100%;
    z-index: 1;
    background-position: center;
}
}


/* End about css */




/* This is the rotating square banner */

.square-box {
    width: 270px;
    height: 270px;
    display: block;
    border: 1px solid #c19f5f;
    border-color: #c19f5f;
    border-color: #c19f5f;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    /* Higher than heading */
}

.rotate-animation {
    animation: rotate 9s linear infinite;
}


@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(246.472deg);
    }
}

/* For continuous rotation (if you prefer) */
.continuous-rotate {
    animation: continuous-rotate 8s linear infinite;
}

@keyframes continuous-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* slider effect banner */
.hero-section {
    position: relative;
    height: 93vh;
    /* Full viewport height */
    /* overflow: hidden; */
}

/* Media query for mobile devices (typically 767px or less) */
@media (max-width: 767px) {
    .bloghh {
        height: 170vh;
    }
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/parallax1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

/* iOS/iPhone fix: Disable background-attachment: fixed */
@media screen and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
    .hero-bg {
        background-attachment: scroll;
        /* Optional: Add a higher resolution image for Retina */
        background-image: url('img/parallax1.jpg');
    }
}


.hero-bg2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/parallax2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    /* This creates the fixed effect */
    z-index: 1;
}

.hero-bgabout3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/aboutpagechoco.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    /* This creates the fixed effect */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    /* White text for better contrast */
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent overlay */
}

.hero-title {
    font-size: 6rem;
    font-weight: 300;
    font-family: auto;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
    /* Lower than square box */
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.title-container {
    position: relative;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
   

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .square-box {
        width: 200px;
        height: 200px;
    }
  .testimonials-section .row .content{
    padding-left: 20px;
    padding-right:20px ;
  }
    

  

}

/* End rotating square banner */


/* This is for the product section */

.product-header {
    position: relative;
    padding: 30px 0 20px;
    text-align: center;
}

.product-header.prod-cat .img-box {
    border-radius: 30px;
}

.background-heading {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.09;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    color: #000000;
}

.main-heading {
    font-size: 3.0rem;
    font-weight: 700;
    font-family: serif;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: white;
}

.sub-heading {
    font-size: 0.9rem;
    margin-bottom: 6px;
    position: relative;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.decorative-line {
    content: "";
    background: url('assect/img/cNavbar\ bottom.png');
    position: absolute;
    height: 6px;
    bottom: 47px;
    left: 45%;
    right: 45%;
    display: block;
}


.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff00;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
    margin-bottom: 30px;
    height: 100%;
    position: relative;
}

/* .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    } */

.product-img-container {
    position: relative;
    padding: 30px;
    /* background-color: #0e0d0e; */
    height: 300px;
    overflow: hidden;
}

.product-bg {
    width: 600px;
    height: 600px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: rotate(8deg) translate(-50%, -50%);
    display: block;
    z-index: 0;
    zoom: 1;
    /* filter: alpha(opacity=100); */
    /* -webkit-opacity: 1; */
    /* -moz-opacity: 1; */
    opacity: 1.1;
    transform-origin: top left;
    /* -webkit-animation: lte-dots 50s linear infinite; */
    /* -moz-animation: lte-dots 50s linear infinite; */
    /* -o-animation: lte-dots 50s linear infinite; */
    animation: lte-dots 50s linear infinite;
    background-image: url('img/gsret.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes lte-dots {
    0% {
        transform: rotate(8deg) translate(-50%, -50%);
    }

    100% {
        transform: rotate(368deg) translate(-50%, -50%);
    }
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-img {
    transform: scale(1.3);
}

.product-body {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.btn-add-to-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .product-col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .background-heading {
        font-size: 3.5rem;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .product-bg {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .product-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .background-heading {
        font-size: 2.5rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .product-bg {
        width: 300px;
        height: 300px;
    }
}


/* play icon button */
.play-btn {
    /* width: 60px;
    height: 60px; */

    background-color: transparent;
    border: 2px solid #ffffff;
    /* Bootstrap primary color */
    color: #ffffff;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    transition: background-color 0.3s, color 0.3s;
}

.play-btn:hover {
    border: 2px solid rgb(255, 237, 73);
    /* Bootstrap primary color */
    color: white;
}

/* End product section */


/* This is for the footer section */
.footer {
    background-color: #40221d;
    color: white;
    padding: 40px 0 30px;
    margin-top: 50px;
    position: relative;
}

.footer-top-img {
    position: absolute;
    top: -113px;
    left: 0;
    width: 100%;
    height: auto;



}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    max-width: 247px;
    margin-bottom: -10px;
    margin-left: 37px;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* .footer-heading:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background-color: var(--secondary-color);
    } */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p a {
    text-decoration: none;
    list-style: none;
    color: white;
}

.contact-info i {
    color: #9b7b4c;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgb(0 60 55);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #c19f5f;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* .footer-col{
        display: flex;
    flex-direction: column;
    align-items: center;
} */
.footer-col.contact-inf {
    display: unset;
}


@media (max-width: 992px) {
    .footer-col {
        margin-bottom: 40px;
    }

    .footer-heading:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-heading {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info {
        text-align: center;
    }

    .footer-col .contact-info p {
        justify-content: center;
    }


}

/* End footer section */


/* This is for the testimonls section */
/* Main Feedback Section */
/* .feedback-container {
        padding: 80px 0;
    } */

/* Header Styles */
.feedback-header {
    text-align: center;
    margin-bottom: 60px;
}

.feedback-header .main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feedback-header .sub-title {
    color: #777;
    font-size: 18px;
    /* max-width: 700px; */
    margin: 0 auto;
}

/* Slider Container */
.feedback-slider-wrapper {
    position: relative;
    margin: 0 auto;
    /* max-width: 1800px; */
}

/* Pattern Background */
.slider-pattern-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('img/feedbackbgimg.png'); */
    background-repeat: repeat;
    /* opacity: 0.1; */
    z-index: 0;
    border-radius: 15px;
}

/* Slider Content */
.slider-content-area {
    position: relative;
    z-index: 1;
}

/* Feedback Card */
.feedback-item {
    background: rgba(255, 255, 255, 0);
    border-radius: 15px;
    padding: 11px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
    margin: 20px;
    /* position: relative; */
    /* transition: all 0.3s ease; */
}

/* .feedback-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    } */

/* Quote Symbol */
.feedback-item::before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 60px;
    color: #ffe342;
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}

/* Feedback Text */
.feedback-text {
    font-size: 18px;
    line-height: 1.2;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

/* Author Info */
.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #ffe342;
}

.client-details h5 {
    margin-bottom: 5px;
    font-weight: 700;
    color: #333;
}

.client-details p {
    color: #777;
    margin: 0;
}

/* Navigation Arrows */
.slider-nav-prev,
.slider-nav-next {
    width: 50px;
    height: 50px;
    background-color: #ffe342;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.slider-nav-prev:hover,
.slider-nav-next:hover {
    background-color: #ffd700;
}

.slider-nav-prev {
    left: -25px;
}

.slider-nav-next {
    right: -25px;
}

/* Indicator Dots */
.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.slider-dots button.active {
    background-color: #ffe342;
    transform: scale(1.2);
}

/* End testimonals section */


/* This is four the three banner section */
.mission-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.sign-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 93%;
    width: 50%;
    object-fit: cover;
    z-index: 1;
}

.cocoa-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 93%;
    width: 50%;
    object-fit: cover;
    z-index: 1;
    background-color: #2d2627;
}

.mission-content {
    position: relative;
    z-index: 2;
}

.sign-person {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    bottom: -42px;
    left: 459px;
    z-index: 3;
}

.mission-text {
    background-color: rgba(255, 255, 255, 0.438);
    padding: 22px;
    border-radius: 10px;
    position: absolute;
    right: 32%;
    top: 45%;
    transform: translateY(-50%);
    max-width: 632px;
    z-index: 4;
}

.mission-text h2 {
    color: #8B4513;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-text p {
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.signature {
    max-width: 150px;
    margin-top: 20px;
}

.chef-title {
    color: #8B4513;
    font-weight: 600;
}

@media (max-width: 992px) {
    .mission-text {
        position: relative;
        left: 1px;
        top: auto;
        transform: none;
        max-width: 100%;
        margin-top: 30px;
    }

    .sign-bg,
    .cocoa-bg {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-text {
        padding: 25px;
    }

    .sign-bg,
    .cocoa-bg {
        width: 100%;
        opacity: 0.3;
        height: 100%;
    }

    .sign-bg {
        display: none;
    }
}

/* End three banner section */


/* This is for the counter section */
.counter-section {
    /* background-color: #f8f9fa; */
    padding: 80px 0;
    text-align: center;
}

.counter-item {
    padding: 30px 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.counter-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.counter-number {
    font-size: 80px;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 10px;
    line-height: 1;
}

.counter-text {
    font-size: 18px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease-out 0.3s;
    /* Added delay */
}

.counter-item.visible .counter-text {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .counter-number {
        font-size: 70px;
    }

    .counter-text {
        font-size: 16px;
    }
}

/* End counter section */


/* Three banner section */
.gallery-section {
    padding: 60px 0;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

.img-container {
    height: 100%;
    padding: 5px;
}

.right-col .img-container {
    height: 50%;
}

@media (max-width: 768px) {
    .right-col .img-container {
        height: auto;
    }
}

/* End three banner section */


/* Faq section */
/* h1 {
        margin: 50px 0 30px;
        text-align: center;
    } */

.faqs-container {
    margin: 0 auto;
    max-width: 800px;
}

.faq {
    background-color: transparent;
    border-bottom: 1px solid #9FA4A8;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: -17px 0;
    transition: 0.3s ease;
}

.faq.active {
    background-color: #003d38;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* .faq.active::after, .faq.active::before {
        color: #2ecc71;
        content: '\f075';
        font-family: 'Font Awesome 5 Free';
        font-size: 7rem;
        position: absolute;
        opacity: 0.2;
        top: 20px;
        left: 20px;
        z-index: 0;
    } */

/* .faq.active::before {
        color: #3498db;
        top: -10px;
        left: -30px;
        transform: rotateY(180deg);
    } */

.faq-title {
    margin: 0 2px 0 0;
    font-size: 1.2rem;
    color: #a5915e;
}

.faq-text {
    display: none;
    margin: 30px 0 0;
    color: #f2ecd5;
}

.faq.active .faq-text {
    display: block;
}

.faq-toggle {
    background-color: transparent;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    position: absolute;
    top: 30px;
    right: 30px;
    height: 30px;
    width: 30px;
}

.faq-toggle:focus {
    outline: none;
}

.faq.active .faq-toggle {
    background-color: #9FA4A8;
}

.faq-toggle .fa-times {
    display: none;
}

.faq.active .faq-toggle .fa-times {
    display: block;
}

.faq-toggle .fa-chevron-down {
    color: #83888E;
}

.faq.active .faq-toggle .fa-chevron-down {
    display: none;
}

/* SOCIAL PANEL CSS */
.social-panel-container {
    position: fixed;
    right: 0;
    bottom: 80px;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.social-panel-container.visible {
    transform: translateX(-10px);
}

.social-panel {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 31px -17px rgba(0, 31, 97, 0.6);
    border: 5px solid #001F61;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Muli';
    position: relative;
    height: 169px;
    width: 370px;
    max-width: calc(100% - 10px);
}

.social-panel button.close-btn {
    border: 0;
    color: #97A5CE;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
}

.social-panel button.close-btn:focus {
    outline: none;
}

.social-panel p {
    background-color: #001F61;
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    padding: 2px 17px 6px;
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    text-align: center;
    width: 235px;
}

.social-panel p i {
    margin: 0 5px;
}

.social-panel p a {
    color: #FF7500;
    text-decoration: none;
}

.social-panel h4 {
    margin: 20px 0;
    color: #97A5CE;
    font-family: 'Muli';
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
}

.social-panel ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.social-panel ul li {
    margin: 0 10px;
}

.social-panel ul li a {
    border: 1px solid #DCE1F2;
    border-radius: 50%;
    color: #001F61;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    text-decoration: none;
}

.social-panel ul li a:hover {
    border-color: #FF6A00;
    box-shadow: 0 9px 12px -9px #FF6A00;
}

.floating-btn {
    border-radius: 26.5px;
    background-color: #001F61;
    border: 1px solid #001F61;
    box-shadow: 0 16px 22px -17px #03153B;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 20px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.floating-btn:hover {
    background-color: #ffffff;
    color: #001F61;
}

.floating-btn:focus {
    outline: none;
}

.floating-text {
    background-color: #001F61;
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-family: 'Muli';
    padding: 7px 15px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 998;
}

.floating-text a {
    color: #FF7500;
    text-decoration: none;
}

@media screen and (max-width: 480px) {

    .social-panel-container.visible {
        transform: translateX(0px);
    }

    .floating-btn {
        right: 10px;
    }   


    .patisserie-section {
        padding: 30px 0;
    }
    .hero-title {
    font-size: 4.5rem;
}

}

/* End faq section */


/* This is for the form section */
.gold-border-btn {
    border: 2px solid #D4AF37;
    background-color: transparent;
    color: #D4AF37;
    transition: all 0.3s ease;
    padding: 10px 25px;
}

.gold-border-btn:hover {
    background-color: #D4AF37;
    color: white;
}

.form-control:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.form-section {
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .gold-border-btn {
        width: 100%;
    }
}

/* End form section */


/* whatsapp */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .1s all ease-in-out;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 .75rem #18d26e;
    background-color: #18d26e;
}

.whatsapp:hover {
    background-color: white;
    color: #18d26e;
}

.call {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    transition: .1s all ease-in-out;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    background-color: #222222;
    box-shadow: 0 0 .5rem #eee;
}

.call:hover {
    background-color: white;
    color: #222222;
}

/* End whatsapp section */









/* this is banner css */
.banner-container {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #0f0e0f; */
    opacity: 0;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: white;
    padding: 0 20px;
    z-index: 2;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.0rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1.2rem;
    }

    .banner-container {
        height: 70vh;

    }

}

/* End banner css */

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border: none;

}

/* Media query for mobile devices (typically 767px or less) */
@media (max-width: 767px) {
    .footer-top-img {
        position: absolute;
        top: -114px;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 1;
    }

    .footer-col .footer-logo {
        margin-left: unset;
    }

    .footer-col.footer-log {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.product-header .product-sec {
    width: 50%;
}

.product-header .product-sec img {
    width: 75px;
}

@media (max-width: 1110px) {
    .product-header .product-sec {
        width: 100%;

    }
}

@media (max-width: 560px) {
    .product-header .product-sec p br {
        display: none;

    }

    .footer-bottom {
        margin-top: 0;
    }
}


@media (max-width:1475px) {
    .footer-top-img {
        top: -88px;
    }
}


@media (max-width:370px) {
    .footer-top-img {
        top: -46px;
    }
}

@media (max-width: 662px) {
    .product-page p br {
        display: none;

    }
}

.footer .phone-footer {
    display: none;
}

@media (max-width: 767px) {
    .footer .phone-footer {
        display: block;
    }
    .footer .desto-footer{
        display: none;
    }
}



/* contact form start */
.contact{
    margin-bottom: 100px;
    height: fit-content;
}
.contact .left .img-box {
    height: fit-content;
}

.contact .left .img-box img{
   border-radius: 30px;
}

.contact .form h4 {
    font-size: 28px;
    font-weight: 500;
}

.contact .form input {
    padding: 14px 12px;
    border-radius: 8px;
    border: 1px solid rgba(128, 128, 128, 0.274);
    width: 100%;
}

.contact .form input:focus-visible {
    outline: 1px solid var(--primary-color);
}

.contact .form textarea {
    padding: 12px;
    border-radius: 4px;
    width: 100%;
    border: none;
    border-radius: 8px;
    border: 1px solid rgba(128, 128, 128, 0.274);
}

.contact .main-btn a {
    color: black;
}

.contact .main-btn:hover a {
    color: white;
}

.contact .form textarea:focus-visible {
    outline: 1px solid var(--primary-color);
}

.contact p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.contact .form input::placeholder{
    color:#003d38;
}

.contact .form textarea::placeholder{
    color:#003d38;
}
/* contact form end */
