
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

 .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/*** Spinner End ***/
.navbar .main-logo{
    height: 90px;   
}
/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: #282747;
    border: 0;
}

.topbar {
    padding: 20px;
    border-radius: 0px 100px;
}

.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.topbar .top-link a {
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 15px;
    transition: .5s;
    font-weight: 800;
    text-transform: uppercase;
}

.navbar {
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color:#EBD277;
    
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/

/*** Hero Header ***/




/* Hero Section */
.hero-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/home-banner/banner1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 87vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-title {
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    animation: fadeIn 1s ease-in-out;
}

.hero-subtitle {
    font-weight: 400;
    max-width: 80%;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Search Container */
.hero-search-container {
    max-width: 600px;
}

.search-container {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.search-input {
    padding: 15px 150px 15px 25px;
    border: none;
    font-size: 1.1rem;
    height: 60px;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 50px;
    padding: 0 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #EBD277;
    transform: translateY(-2px);
}

.fresh-offer-badge {
    position: absolute;
    bottom: -30px;
    left: 20px;
    font-weight: 600;
    animation: pulse 2s infinite;
}
.fresh-offer-badge small{
    color: #fff;
    
}




/* Carousel Enhancements */
.hero-carousel {
    /* border: 5px solid rgba(255,255,255,0.2); */
    /* border-radius: 15px; */
    overflow: hidden;
    text-align: center;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-control-prev, 
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: #EBD277;
    border: 2px solid white;
    opacity: 1;
    transition: all 0.3s;
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
    background: #EBD277;
    transform: scale(1.1);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
}

.carousel-indicators button.active {
    background-color: #EBD277;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-header {
        height: auto;
        padding: 100px 0 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 18px;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 30px;
    }
    
    .hero-search-container {
        margin: 0 auto;
    }
    
    .fresh-offer-badge {
        position: relative;
        bottom: auto;
        left: 0px;
        margin-top: 0px;
        display: block;
    }
    
    .carousel-control-prev {
        margin-left: 10px;
    }
    
    .carousel-control-next {
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .search-input {
        padding-right: 120px;
        font-size: 1rem;
    }
    
    .search-btn {
        padding: 0 15px;
    }
    .hero-header {
        margin-top: 31px !important;
    }
}


    .hero-header
    {
        margin-top: 97px ;
    }



.text-banner{
    color: #fff;
    font-weight: 800;
}


.text-default{
    color: #EBD277;
}




/*** Hero Header end ***/


/*** featurs Start ***/



/* Features Section */
.features {
    /* background: linear-gradient(to right, #f9f9f9, #f1ece2); */
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #282747, #ffe8a3, #ffe8a3 ,#282747);
}




/* Feature Cards */
.feature-card {
    border: 1px solid rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-content h5 {
    font-weight: 700;
    transition: all 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.hover-effect:hover .feature-icon {
    transform: rotateY(180deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hover-effect:hover h5 {
    color: #EBD276;
}

/* Ribbons */
.feature-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    width: 120px;
    padding: 5px 0;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Trust Badges */
.trust-badges img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 20px;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .trust-badges img {
        width: 60px;
    }
}


/*** featurs End ***/


/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 250px; 
    height: 130px; 
    top: -50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}

/*** service End ***/


/*** Fruits Start ***/

/* .fruite .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
} */







/*** Fruits End ***/


/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

.vesitable .vesitable-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: var(--bs-primary);
}
/*** Banner Section End ***/


/*** Facts Start ***/
.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
}

.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter h1 {
    margin-bottom: 0;
}
/*** Facts End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** testimonial End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-block;
}
  
.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}
  
.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}
  
.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Single Page End ***/


/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
/*** Footer End ***/

.bg-defualt{
    background-color: #282747;
}



.product-heading {
    text-transform: uppercase;
    font-weight: 800; /* Using heavier font weight for better impact */
    background: linear-gradient(135deg, #282747 0%, #3a3866 100%);
    color: #EAD175;
    font-size: clamp(28px, 3vw, 42px); /* Responsive font sizing */
    padding: 12px 25px;
    border-radius: 12px;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(40, 39, 71, 0.3);
    border: 2px solid rgba(234, 209, 117, 0.3);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
   

    transition: all 0.4s ease;
    
    /* Gold decorative elements */
    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #EAD175, #c9a942, #EAD175);
    }
    
    &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: #EAD175;
        border-radius: 3px;
    }
    
    /* Hover effects */
    &:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(40, 39, 71, 0.4);
        color: #f8e8a6;
    }
    
    /* Animation for attention */
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        box-shadow: 0 8px 20px rgba(40, 39, 71, 0.3);
        border-color: rgba(234, 209, 117, 0.3);
    }
    100% {
        box-shadow: 0 8px 25px rgba(234, 209, 117, 0.4);
        border-color: rgba(234, 209, 117, 0.6);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-heading {
        font-size: clamp(24px, 6vw, 32px);
        padding: 10px 15px;
        letter-spacing: 1px;
        
        &::after {
            width: 60px;
        }
    }
}

/* For very small devices */
@media (max-width: 480px) {
    .product-heading {
        border-radius: 8px;
        margin: 15px auto;
        
        &::before {
            height: 3px;
        }
    }
}

.text-default1{
    color: #282747;
}



/* Navigation Pills Container */
.nav-pills {
    display: inline-flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    /* gap: 5px; */
    padding: 5px;
   
    border-radius: 50px;
  
    backdrop-filter: blur(5px);
   
}

/* Individual Pill Items */
.nav-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    background: #282747;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
    min-width: 130px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Active Pill Styling */
.nav-item a.active {
    background: linear-gradient(135deg, #EBD277 0%, #EBD277 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Hover Effects */
.nav-item a:not(.active):hover {
    background: #4c4a86;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Ripple Effect */
.nav-item a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.nav-item a.active::after,
.nav-item a:focus::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-pills {
        gap: 6px;
        padding: 4px;
    }
    
    .nav-item a {
        padding: 10px 15px;
        min-width: 100px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-pills {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        border-radius: 12px;
    }
    
    .nav-item a {
        width: 100%;
        border-radius: 8px !important;
    }
}

/* Focus State */
.nav-item a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
}




















/* Product Card Container */
.product-card {
    border: 1px solid rgba(234, 209, 117, 0.3);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: white;
    transition: all 0.4s ease;
    /* Soft outer shadow */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Gold border highlight */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #EAD175,
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Natural shine effect */
.product-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(15deg);
    transition: all 0.7s ease;
    opacity: 0;
}

/* Hover effects */
.product-card:hover {
    border-color: #EAD175;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover::after {
    left: 120%;
    opacity: 0.4;
    transition-delay: 0.1s;
}

/* Inner content container */
.product-content {
    position: relative;
    z-index: 1;
    height: 100%;
    border-radius: 11px;
    overflow: hidden;
}

/* Product Image Container */
.product-img-container {
    height: 220px;
    border-radius: 12px 12px 0 0;
}

.product-img {
    height: 100%;
    background-size: cover;
    transition: transform 0.5s ease;
    object-fit: contain;
}

/* Product Badge */
.product-badge {
    top: 15px;
    left: 15px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Quick View Button */
.quick-view-btn {
    bottom: 15px;
    right: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
    font-size: 13px;
}

/* Product Details */
.product-details {
    background: white;
    transition: all 0.3s ease;
    padding: 20px;
}

.product-title {
    font-weight: 700;
    color: #333;
    font-size: 1.25rem;
}

.product-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price Styles */
.current-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: #333;
}

.original-price {
    font-size: 0.9rem;
    margin-left: 5px;
}

.discount-badge {
    font-weight: 600;
}

/* Add to Cart Button */
.add-to-cart-btn {
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.add-to-cart-btn:hover {
    
    transform: translateY(-1px);
  
}

/* Wishlist Button */
.wishlist-btn {
    top: 15px;
    right: 15px;
    background: #282747;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EAD175;
    transition: all 0.3s ease;
    z-index: 2;
}

.wishlist-btn:hover, .wishlist-btn.active {
    color: #dc3545;
}

/* Hover Effects */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ffc107;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Features Icons */
.feature-icon {
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feature-icon:hover {
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-img-container {
        height: 180px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-desc {
        font-size: 0.85rem;
    }
    
    .add-to-cart-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Animation for New Products */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

.new-product {
    animation: pulse 2s infinite;
    position: relative;
}

.new-product::after {
    content: "NEW";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff5722;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
}


















/* Minimal Slider Styles */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item {
    transition: transform 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Transparent Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider .carousel-control-prev {
    left: 20px;
}

.hero-slider .carousel-control-next {
    right: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh !important;
    }
    
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 30px;
        height: 30px;
    }
}





.footer-logo{
    height: 100px;
}








        /* Main Container */
        .product-categories {
            max-width: 1280px;
            margin: 0 auto;
            padding: 50px 20px;
            background: linear-gradient(to bottom, #fafafa, #ffffff);
        }
        
        /* Header Section */
        .category-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .category-header h1 {
            font-size: 42px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        .category-header h1:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #ff7f50, #ff6b6b);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .category-header p {
            font-size: 18px;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Category Grid */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 30px;
        }
        
        /* Category Card */
        .category-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            padding: 25px 15px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .category-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ff7f50, #ff6b6b);
        }
        
        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .category-image-wrapper {
            width: 160px;
            height: 160px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
            border-radius: 50%;
            padding: 15px;
            transition: all 0.3s ease;
        }
        
        .category-card:hover .category-image-wrapper {
            transform: scale(1.05);
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .category-image {
            width: 100%;
            height: auto;
            max-height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
            transition: all 0.3s ease;
        }
        
        .category-card:hover .category-image {
            filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
        }
        
        .category-name {
            font-size: 20px;
            color: #2c3e50;
            font-weight: 600;
            margin-top: 10px;
            position: relative;
        }
        
        .category-name:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #ff6b6b;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .category-card:hover .category-name:after {
            width: 100%;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .product-categories {
                padding: 40px 20px;
            }
            
            .category-header h1 {
                font-size: 36px;
            }
            
            .category-header p {
                font-size: 16px;
            }
            
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .category-image-wrapper {
                width: 140px;
                height: 140px;
            }
        }
        
        @media (max-width: 480px) {
            .product-categories {
                padding: 30px 15px;
            }
            
            .category-header {
                margin-bottom: 40px;
            }
            
            .category-header h1 {
                font-size: 28px;
            }
            
            .category-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .category-card {
                padding: 20px 15px;
                flex-direction: row;
                text-align: left;
            }
            
            .category-image-wrapper {
                width: 80px;
                height: 80px;
                margin-bottom: 0;
                margin-right: 20px;
            }
            
            .category-name {
                margin-top: 0;
            }
        }


        /* About us  */
          .about-section {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background-color: white;
            border-radius: 8px;
            color: #333;
            /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
        }
        
        .section-title {
            font-size: 2.5rem;
            color: rgb(43, 61, 79);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background-color: #d4a762;
            bottom: -10px;
            left: 20%;
        }
        
        .content-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-top: 30px;
        }
        
        .text-content {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
            text-align: left;
        }
        
        .text-content h3 {
            font-size: 1.8rem;
            color: rgb(43, 61, 79);
            margin-bottom: 15px;
        }
        
        .text-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 25px;
        }
        
        .highlight {
            color: #d4a762;
            font-weight: bold;
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: rgb(40, 39, 71);
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 2px solid #d4a762;
            font-size: 1.1rem;
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: #d4a762;
        }
        
        .image-placeholder {
            flex: 1;
            /*min-width: 300px;*/
            /*max-width: 500px;*/
            /*height: 350px;*/
            /*background-color: #f5f5f5;*/
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
          
        }
        
        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        @media (max-width: 768px) {
            .content-container {
                flex-direction: column;
            }
            
            .text-content {
                text-align: center;
            }
        }


        /* cooking tips section */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 0;
            background: linear-gradient(135deg, rgb(40, 39, 71), rgb(60, 58, 95));
            color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(40, 39, 71, 0.3);
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .ingredients-section {
            background: linear-gradient(135deg, rgb(235, 209, 117), rgb(245, 225, 150));
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(235, 209, 117, 0.4);
            border: 2px solid rgb(235, 209, 117);
                 max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    display: flex
;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    color: #333;
             
        }

        .ingredients-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: rgb(40, 39, 71);
            margin-bottom: 15px;
            text-align: center;
        }

        .ingredients-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .ingredient-item {
            background: white;
            padding: 10px 20px;
            border-radius: 25px;
            color: rgb(40, 39, 71);
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(40, 39, 71, 0.1);
            border: 1px solid rgb(235, 209, 117);
            transition: all 0.3s ease;
        }

        .ingredient-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(40, 39, 71, 0.2);
        }

        .steps-container {
            display: grid;
            gap: 30px;
            margin-bottom: 30px;
            max-width: 1200px;
    margin: 40px auto;
    padding: 60px 20px;
    display: flex
;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    color: #333;
        }

        .step-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(40, 39, 71, 0.1);
            border: 3px solid rgb(235, 209, 117);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, rgb(235, 209, 117), rgb(40, 39, 71));
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(40, 39, 71, 0.15);
        }

        .step-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .step-number {
            background: linear-gradient(135deg, rgb(40, 39, 71), rgb(60, 58, 95));
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(40, 39, 71, 0.3);
        }

        .step-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: rgb(40, 39, 71);
        }

        .step-content {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 20px;
            align-items: start;
        }

        .step-text {
            font-size: 1.1rem;
            color: rgb(40, 39, 71);
            line-height: 1.8;
        }

        .step-image {
            width: 120px;
            height: 120px;
            border-radius: 15px;
            object-fit: cover;
            border: 3px solid rgb(235, 209, 117);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .highlight {
            padding: 3px 8px;
            border-radius: 5px;
            font-weight: bold;
        }

        .timer-badge {
            display: inline-block;
            background: rgb(40, 39, 71);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            margin: 5px 0;
        }

        .tip-box {
            background: linear-gradient(135deg, rgba(235, 209, 117, 0.2), rgba(245, 225, 150, 0.2));
            border-left: 5px solid rgb(235, 209, 117);
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }

        .final-section {
            background: linear-gradient(135deg, rgb(40, 39, 71), rgb(60, 58, 95));
            color: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(40, 39, 71, 0.3);
                max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    display: flex
;
    flex-direction: column;
    align-items: center;
    text-align: center;
   
    border-radius: 8px;
 



        }

        .final-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .brand-badge {
            background: rgb(235, 209, 117);
            color: rgb(40, 39, 71);
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: bold;
            display: inline-block;
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(235, 209, 117, 0.3);
            border-radius: 3px;
            margin: 20px 0;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, rgb(235, 209, 117), rgb(40, 39, 71));
            width: 0%;
            transition: width 0.5s ease;
        }

        @media (max-width: 768px) {
            .step-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .step-image {
                justify-self: center;
            }
            
            .ingredients-list {
                flex-direction: column;
                align-items: center;
            }
            
            .header h1 {
                font-size: 2rem;
            }
        }

        .interactive-btn {
            background: linear-gradient(135deg, rgb(235, 209, 117), rgb(245, 225, 150));
            color: rgb(40, 39, 71);
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 10px;
            box-shadow: 0 5px 15px rgba(235, 209, 117, 0.3);
        }

        .interactive-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(235, 209, 117, 0.4);
        }

        .step-completed {
            opacity: 0.7;
            transform: scale(0.98);
        }

        .checkmark {
            color: #4CAF50;
            font-size: 1.2rem;
            margin-left: 10px;
        }


        /* contact us section */
         .contact-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 100px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(235, 210, 118, 0.03) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
            padding-right: 60px;
            animation: slideInLeft 0.8s ease-out;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            animation: slideInRight 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .contact-info h2, .contact-form h2 {
            color: #282747;
            font-size: 36px;
            margin-bottom: 30px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info h2::after, .contact-form h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #ebd276, #282747);
            border-radius: 2px;
        }

        .info-text {
            color: #666;
            margin-bottom: 40px;
            line-height: 1.8;
            font-size: 18px;
            font-weight: 400;
        }

        .info-item {
            display: flex;
            margin-bottom: 35px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(235, 210, 118, 0.1);
            backdrop-filter: blur(10px);
        }

        .info-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(235, 210, 118, 0.3);
        }

        .info-icon {
            margin-right: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ebd276, #f5e89e);
            border-radius: 50%;
            box-shadow: 0 8px 20px rgba(235, 210, 118, 0.3);
            transition: all 0.3s ease;
        }

        .info-item:hover .info-icon {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(235, 210, 118, 0.4);
        }

        .info-icon svg {
            width: 28px;
            height: 28px;
            fill: #282747;
        }

        .info-content h3 {
            color: #282747;
            font-size: 20px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .info-content p {
            color: #666;
            margin: 0;
            line-height: 1.6;
            font-size: 16px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.9);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(235, 210, 118, 0.1);
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            position: absolute;
            top: 15px;
            left: 20px;
            color: #999;
            font-size: 16px;
            pointer-events: none;
            transition: all 0.3s ease;
            background: white;
            padding: 0 5px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.8);
            font-family: inherit;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #ebd276;
            box-shadow: 0 0 0 3px rgba(235, 210, 118, 0.1);
            background: white;
        }

        .contact-form input:focus + label,
        .contact-form textarea:focus + label,
        .contact-form input:not(:placeholder-shown) + label,
        .contact-form textarea:not(:placeholder-shown) + label {
            top: -10px;
            left: 15px;
            color: #282747;
            font-size: 14px;
            font-weight: 600;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: transparent;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #282747, #3a3964);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(40, 39, 71, 0.3);
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(235, 210, 118, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(40, 39, 71, 0.4);
            background: linear-gradient(135deg, #ebd276, #f5e89e);
            color: #282747;
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Floating elements */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(235, 210, 118, 0.1), rgba(235, 210, 118, 0.05));
            animation: floatShape 15s ease-in-out infinite;
        }

        .floating-shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: -5s;
        }

        .floating-shape:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 70%;
            right: 15%;
            animation-delay: -10s;
        }

        .floating-shape:nth-child(3) {
            width: 40px;
            height: 40px;
            top: 30%;
            right: 25%;
            animation-delay: -2s;
        }

        @keyframes floatShape {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(-60px) rotate(240deg); }
        }

        /* Success message */
        .success-message {
            display: none;
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
            font-weight: 600;
            animation: slideIn 0.5s ease-out;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .contact-section {
                padding: 80px 0;
            }
            
            .contact-info {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .contact-container {
                flex-direction: column;
                padding: 0 15px;
            }
            
            .contact-form {
                padding: 30px;
            }
            
            .contact-info h2, .contact-form h2 {
                font-size: 28px;
            }
            
            .info-item {
                padding: 20px;
            }
            
            .floating-shape {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .contact-info h2, .contact-form h2 {
                font-size: 24px;
            }
            
            .info-text {
                font-size: 16px;
            }
            
            .contact-form {
                padding: 20px;
            }
        }
    
































