.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.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: var(--bs-primary);
}

/* Fix dropdown icon */
.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;
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        width: auto;
        min-width: 200px;
        max-width: 300px;
        overflow: hidden;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        opacity: 0;
        z-index: 1050;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
        background: var(--bs-light) !important;
        border-radius: 10px !important;
    }
}

/* Hover effect for dropdown links */
.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.navbar {
    position: relative;
    z-index: 1000;
}


#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}

/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
    background: url('../img/Background.jpg') no-repeat center center;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    /* aspect-ratio:; */
    /* height: 383px; */
}


@media (max-width: 768px) {
    .hero-header-1 {
        min-height: 43vh; /* Take full screen height */
        /* padding: 6vw 0; */
        display: flex;
        /* align-items: center; */
    }
}

.hero-text {
    font-size: 1.2rem;
    color: #666;
}

.highlight {
    font-size: 2.5rem;
    font-weight: bold;
}

.spices-image {
    margin-top: 100px;
    margin-left: 5.2vw;
    margin-bottom: -120px;
}

@media (max-width: 768px) {
    .spices-image {
        margin-top: 20px;
        margin-left: 3vw;
        margin-bottom: -30px;
    }

}

/* Center the search form */
.search-form {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
}

/* Search bar container */
.search-container {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #333;
    /* Underline effect */
    padding: 5px 0;
}

/* Search input field */
.search-bar {
    flex: 1;
    border: none;
    outline: none;
    padding: 5px;
    font-size: 16px;
    background: transparent;
    /* No background */
}

/* Search button */
.search-icon {
    background: none;
    padding: 0;
    border: none;
    cursor: pointer;
    font-size: 18px;
    /* Adjust icon size */
    color: #333;
    /* Icon color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-form {
        max-width: 80%;
    }

    .search-container {
        border-bottom: 1.5px solid #555;
    }

    .search-bar {
        font-size: 14px;
    }

    .search-icon {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .custom-padding-top {
        padding-top: 0 !important;
    }
}

@media (min-width: 769px) {
    .custom-padding-top {
        padding-top: 100px;
    }
}


.icon-wrapper {
    width: 150px;
    height: 150px;
    background: url('../img/cricle.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper img {
    width: 124px;
    /* You can adjust this size as needed */
    height: auto;
}

.product-icon {
    position: absolute;
    left: 65%;
    /* Adjust horizontally */
    transform: translateX(-50%);
    /* Center it */
    top: 100%;
    /* Moves the image just below "Product" */
    margin-top: -30px;
    /* Fine-tune the position */
}

.marhey-font {
    font-family: 'Marhey', sans-serif;
}

.custom-class {
    font-family: 'Jockey One', sans-serif;
}

.marcellus-sc-regular {
    font-family: "Marcellus SC", serif;
    font-weight: 400;
    font-style: normal;
}

.crimson-text-regular {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
}

.cart-btn img {
    content: url('../img/cart-2.png');
    transition: opacity 0.3s ease-in-out;
}

.cart-btn:hover img {
    content: url('../img/Vector-cart.png');

}

.cart-btn:hover {
    background-color: #ff9800 !important;
}

.hover-underline {
    text-decoration: underline;
    text-decoration-color: black;
    /* Default underline color */
    transition: color 0.3s ease-out, text-decoration-color 0.3s ease-out, transform 0.3s ease-out;
    display: inline-block;
    /* Ensures transform works properly */
}

.hover-underline:hover {
    color: #407859 !important;
    /* Change text color */
    text-decoration-color: #EE8E00 !important;
    /* Change underline color */
    transform: translateX(5px);
    /* Move text slightly to the right */
}

.about-us-section {
    background: url('../img/Group-36.jpg') center/cover no-repeat;
    padding: 0px 0;
    position: relative;
}



.about-content {
    position: relative;
    z-index: 2;
    color: white;
}

.info-box {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.info-box i {
    font-size: 30px;
    color: #ff8c00;
    margin-right: 15px;
}

.info-box .fw-bold {
    font-size: 18px;
    color: #155724;
}

.info-box small {
    font-size: 14px;
    color: #6c757d;
}

.image-container img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.underlinecss {

    padding: 20px 80px 0px 0px;
    position: absolute;
    transform: translateX(-50%);
    margin-top: -12px;
    /* height: 200px;
    width: 300px; */
}
@media only screen and (min-width: 300px) and (max-width: 480px) {
    .underlinecss {
        padding: 0;
        position: absolute;
        transform: translateX(-50%);
        margin-top: 0;
        right: -43px;
    }
}
.vector-about {
    padding: 19px 69px 0px 0px;
    position: absolute;
    transform: translateX(-50%);
    margin-top: -11px;
}

/* Container Styling */
.container-test {
    background-image: url('../img/Group.png');
    background-size: cover;
    background-position: bottom;
    padding: 40px 0px;
    overflow: hidden;
}

/* Contact Info Styling */
.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Adds space between icon and text */
    margin-bottom: 20px;
}

/* GIF Icon Styling */

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    /* Adjust size */
    height: 80px;
    border: 1px solid #F8980B;
    /* Light orange border */
    border-radius: 16px;
    /* Rounded corners */
    padding: 6px;
    /* Space between inner box and border */
}

/* Inner Box with Orange Background */
.icon-box {
    background-color: #EE8E00;
    /* Orange background */
    border-radius: 12px;
    /* Slightly rounded corners */
}

/* Icon */
.icon-box img {
    font-size: 32px;
    /* Icon size */
    color: white;
    /* Icon color */
}

.custom-heading {
    color: #eef3ef;
    text-decoration: underline;
    text-decoration-color: #EE8E00;
    text-decoration-style: solid;
    text-decoration-thickness: 3px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Contact Heading */
.contact-heading {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Form Styling */
form {
    padding: 6px;
    border-radius: 50px;
}

/* Form Controls */
.form-control,
.form-select {
    height: 30px;
    font-size: 16px;
    border-radius: 5px;
}

/* Submit Button */
.btn-success {
    background-color: #28a745;
    border: none;
    padding: 12px;
    font-size: 18px;
}

.btn-success:hover {
    background-color: #218838;
}

.testimonials {
    background-color: #e88c28;
    padding: 50px 20px;
    text-align: center;
    position: relative;

}

.testimonial-content img {
    width: 100%;
    border-radius: 10px;
}

blockquote {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #fff;
}

.quote-mark {
    font-size: 2rem;
    color: #fff;
}

.author {
    font-weight: bold;
    margin-top: 10px;
    color: #fff;
}

.location {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #fff;
}

.carousel-indicators [data-bs-target] {
    background-color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
    filter: invert(100%);
}

.testimonial-card {
    color: white;
    padding: 30px;
    position: relative;
    margin: auto;
    text-align: center;
}

.testimonial-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}



.quote-icon {
    position: absolute;
    z-index: 0;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.quote-left {
    left: -10px;
    top: -60px;
}

.quote-right {
    right: 100px;
    bottom: -20px;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.carousel-item {
    padding-top: 80px;
}

.carousel-inner {
    overflow: hidden !important;
}

.text-testimonials {
    position: relative;
    padding-bottom: 10px;
}

.text-testimonials::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 45px;
    width: 100%;
    height: 100%;
    background-image: url('../img/Vector-1.png');
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Bottom Image Section */
.bottom-image-container {
    display: flex;
    justify-content: center;
    background-color: #FFF7EA;
    height: 150px;
    position: relative;
    padding-right: 50px;
}

.bottom-img {
    width: 15%;
}

/* Positioning Navigation Buttons over Bottom Image */
.carousel-buttons-container {
    position: absolute;
    bottom: -60px;
    /* Move buttons over the bottom image */
    left: 66%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    /* Reduce space between buttons */
    z-index: 10;
}

.custom-carousel-prev,
.custom-carousel-next {
    background: rgba(202, 200, 200, 0.5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.custom-carousel-prev:hover,
.custom-carousel-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.product-thumbnail {
    cursor: pointer;
    border: 1px solid transparent;
    transition: border 0.3s;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border: 2px solid #406BD4;
    /* Highlight selected image */
}

/* Button Styling */
.button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Space between buttons */
    margin-top: 10px;
}

/* Button Styling */
.buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    flex: 1;
    /* Ensures both buttons are equal width */
    text-align: center;
}

.image-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    /* Adds spacing between images */
}

@media only screen and (min-width: 772px) and (max-width: 988px) {
    .image-column {
        text-align: center;
        margin-bottom: 10px;
    }

    .product-thumbnail {
        width: 80px; /* Adjust as needed */
        height: 80px;
    }

    .product-image {
        width: 100%;
        max-width: 250px; /* Adjust main image size */
    }

    .button-row {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
    }

    .buy-button {
        width: 100%;
        max-width: 250px;
        margin-bottom: 10px;
    }

    .info table {
        font-size: 14px;
    }
}


.product-thumbnail {
    cursor: pointer;
    border: 1px solid transparent;
    transition: border 0.3s;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border: 2px solid #F8980B;
    /* Highlight selected image */
}

/* Button Styling */
.button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Space between buttons */
    margin-top: 10px;
}

.buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    flex: 1;
    /* Ensures both buttons are equal width */
    text-align: center;
}

.buy-button img {
    width: 20px;
    height: 20px;
}

.buy-button.bg-light {
    background-color: #f8f9fa;
    border: 1px solid #0a0a0a;
    color: black;
}

.buy-button.crimson-text-regular {
    background-color: rgb(250, 161, 6);
    color: white;
}

.buy-button:hover {
    opacity: 0.9;
}

/* Responsive adjustments (optional, but good practice) */
@media (max-width: 600px) {
    .container-product {
        flex-direction: column;
        align-items: center;
    }

    .share-button {
        background: none;
        display: flex; /* Ensures content is properly aligned */
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        border: 1px solid rgba(252, 252, 252, 0.8); /* Adjusted for better visibility */
        padding: 5px; /* Added padding for better clickability */
        margin-right: 30px;
        cursor: pointer; /* Ensures it's clickable */
        position: relative; /* Needed for absolute positioning of modal */
    }

    .share-button:hover img {
        transform: scale(1.1);
        transition: transform 0.2s ease-in-out; /* Smooth scaling effect */
    }

    /* Fix share modal positioning */
    .share-modal {
        display: none;
        position: absolute;
        top:50%; /* Positions it below the button */
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        max-width: 90vw; /* Ensures it doesn’t exceed screen width */
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        z-index: 1000;
    }

    .share-modal-content {
        padding: 10px;
        text-align: center;
    }

    .share-modal-content a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: inherit;
        padding: 10px;
        border-radius: 5px;
        transition: background-color 0.3s;
    }

    .share-modal-content a:hover {
        background-color: #f0f0f0;
    }

    .share-modal-content img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }
}


.product-info {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.product-left,
.product-right {
    flex: 1;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
}



.feature-list {
    list-style-type: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
}

.interested-button {
    background-color: #F8980B;
    /* Example color, adjust as needed */
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    display: block;
    margin: 20px auto;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    /* Optional: Adjust spacing */
}

/* form*/
.form-container {
    max-width: 900px;
    padding: 30px;
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    margin: auto;
    margin-top: 50px;
}

.form-container h3 {
    text-align: center;
    color: #131313;
    font-weight: bold;
}

.form-label {
    font-weight: 600;
    color: #333;
}

.btn-submit {
    background-color: #F8980B;
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
    float: right;
    /* Align button to the right */
}

.btn-submit:hover {
    background-color: #305c44;
}

.custom-input {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 8px;
}

.input-group-text img {
    border-radius: 3px;
}

.certification-card {
    transition: all 0.3s ease-in-out;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    padding: 7px;
    text-align: center;
    background: #fff;
}

.certification-card:hover {
    transform: translateY(-5px);
    border-color: #023a15;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.certification-icon {
    font-size: 40px;
    color: #F8980B;
}

.certification-title {
    font-weight: bold;
    font-size: 18px;
}

/* Positioning the features around the circle */
.feature:nth-child(1) {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.feature:nth-child(2) {
    top: 30%;
    right: 0;
}

.feature:nth-child(3) {
    bottom: 30%;
    right: 0;
}

.feature:nth-child(4) {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.feature:nth-child(5) {
    bottom: 30%;
    left: 0;
}

.feature:nth-child(6) {
    top: 30%;
    left: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    /* 2/5 = 40% */
    height: 100%;
    background: url('../img/Mask-group.png') no-repeat center center/cover;
    /* 2/5 section image */
}




.description {
    font-size: 20px;
    color: #0e0d0d;
    margin-bottom: 20px;
}

.initiative {
    display: flex;
    align-items: center;

}

.initiative .ico {
    font-size: 24px;
    margin-right: 10px;
    padding: 10px;
    border-radius: 50%;
}

.initiative h5 {
    margin: 0;
    color: #030303;
    font-size: 18px;
    font-weight: bold;
}

.initiative p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.ico img {
    /* border-radius: 50%; */
    height: 64px;
    width: 64px;
}

.feature-list {
    list-style-type: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');

.flip-counter {
    display: flex;
    gap: 10px;
}

.digit {
    width: 29px;
    height: 48px;
    background: #2E2D2E;
    color: white;
    font-size: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 120px;
    border: 2px solid #222;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Middle dividing line */
.digit::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
}


/*share*/

.share-button {
    background: none;
    border: 1px solid #fcfcfccb;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    margin-right: 30px;
    position: relative;
}

.share-button:hover img {
    transform: scale(1.1);
}

.share-modal {
    display: none;
    position: absolute;
    top: 220px; /* Adjusted to position below the button */
    right: 0;
    width: 200px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 1000;
}

.share-modal-content {
    padding: 10px;
    text-align: right;
}

.share-modal-content a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.share-modal-content a:hover {
    background-color: #f0f0f0;
}

.share-modal-content img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
.certificate {
    text-align: center;
    border: 1px solid #ddd;
    padding: 20px;
    transition: transform 0.3s ease;
}

.certificate:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.certificate img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    border: 2px solid #eee; /* Add a light border to the images */
    transition: border-color 0.3s ease;
}

.certificate:hover img {
    border-color: #aaa; /* Darken border on hover */
}

.certificate-title {
    font-weight: bold;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .product-description-mobile {
        color: #ffffff !important; /* change to your preferred mobile color */
    }
}


