@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: white; /* Ensure the background color is set */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: adds a shadow for better visibility */
}


.logo {
    width: 80px;
}

.navbar-nav {
    gap: 60px;
    color: #000;
}
/* Dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Adjust this to align the dropdown menu correctly */
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg); /* Optional: Rotate the caret when dropdown is active */
}

/* Optional: Adjust dropdown menu positioning for smooth hover */
.dropdown-menu {
    display: none; /* Hide dropdown menu initially */
    position: absolute;
    will-change: transform;
}

.product-enquiry {
    padding: 10px 20px;
    border: 1px solid #050505;
    border-radius: 30px;
    text-decoration: none;
    color: #0c0c0b;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.product-enquiry:hover {
    background-color: #ffcc00;
    color: #fff;
}
.hero-section {
    position: relative;
    padding: 150px 0 50px;
    background-color: #fff;
    overflow: hidden;
}

.hero-section .content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-section .content-wrapper h1 {
    font-size: 2rem;
    color: #555;
}

.hero-section .content-wrapper h2 {
    font-size: 3rem;
    color: #511616;
}

.hero-section .content-wrapper p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.hero-section .content-wrapper .btn {
    background-color: #FACC15;
    color: #0a0a0a;
    border-radius: 25px;
    padding: 12px 25px;
    text-decoration: none;
}

.hero-section .content-wrapper .btn:hover {
    background-color: #e6b800;
}

.hero-section .hero-image {
    position: relative;
    z-index: 2;
}

.hero-section .hero-image img {
    max-width: 100%;
    border-radius: 30px;
}

.hero-section .yellow-circle {
    position: absolute;
    top: 0;
    right: -50px;
    width: 500px;
    height: 500px;
    background-color: #FACC15;
    border-radius: 50%;
    z-index: 1;
}
.hero-section .additional-image {
    position: absolute;
    right: 0;
    bottom: -50px;
    z-index: 2;
}


@media (max-width: 992px) {
    .hero-section .content-wrapper h1 {
        font-size: 1.5rem;
    }

    .hero-section .content-wrapper h2 {
        font-size: 2rem;
    }

    .hero-section .content-wrapper p {
        font-size: 0.9rem;
    }

    .hero-section .yellow-circle {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-section .content-wrapper h1 {
        font-size: 1.2rem;
    }

    .hero-section .content-wrapper h2 {
        font-size: 1.5rem;
    }

    .hero-section .content-wrapper p {
        font-size: 0.8rem;
    }

    .hero-section .yellow-circle {
        width: 250px;
        height: 250px;
    }
    .hero-section .additional-image {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section .content-wrapper h1 {
        font-size: 1rem;
    }

    .hero-section .content-wrapper h2 {
        font-size: 1.2rem;
    }

    .hero-section .content-wrapper p {
        font-size: 0.7rem;
    }

    .hero-section .yellow-circle {
        width: 200px;
        height: 200px;
    }
    .hero-section .additional-image {
        display: none;
    }
}
.custom-sliders .owl-item.center .slider-item {
    transform: scale(1.3); /* Scale up the center item */
    transition: transform 0.3s ease-in-out;
}

.custom-sliders .slider-item {
    text-align: center;
    overflow: visible;
    position: relative;
    padding: 20px;
}

.custom-sliders .slider-item img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.custom-sliders .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 200000; /* Ensure the buttons are on top */
    transform: translateY(-50%);
    pointer-events: none; /* Ensure buttons don’t block clicks on images */
}

.custom-sliders .owl-nav .owl-prev, 
.custom-sliders .owl-nav .owl-next {
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
    border: 2px solid #ccc;
    pointer-events: all; /* Restore clickability to the buttons */
}

.custom-sliders .owl-nav .owl-prev {
    left: -20px; /* Adjust this value to control spacing */
    margin-left: -30px; /* Increase the distance from the edge */
}

.custom-sliders .owl-nav .owl-next {
    right: 120px; /* Adjust this value to control spacing */
    margin-right: 120px; /* Increase the distance from the edge */
}

@media (max-width: 768px) {
    .custom-sliders .slider-item img {
        width: 80px;
        height: 80px;
    }

    .custom-sliders .owl-nav .owl-prev, 
    .custom-sliders .owl-nav .owl-next {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}
.text-section {
    color: #5B0A0A;
}

.text-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.text-section h2 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #5B0A0A;
}

.text-section p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

.image-section {
    position: relative;
    text-align: right;
}

.image-section img {
    max-width: 100%;
    height: auto;
}

.circle-border {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 15px solid rgba(233, 79, 55, 0.3);
    z-index: -1;
}

@media (max-width: 768px) {
    .text-section h1 {
        font-size: 1.5rem;
    }

    .text-section h2 {
        font-size: 2.5rem;
    }

    .text-section p {
        font-size: 0.9rem;
    }

    .circle-border {
       display: none;
    }
}

@media (max-width: 576px) {
    .text-section h1 {
        font-size: 1.2rem;
    }

    .text-section h2 {
        font-size: 2rem;
    }

    .text-section p {
        font-size: 0.8rem;
    }

    .circle-border {
       display: none;
    }
}

.section {
    background-color: #fff;
    position: relative;
}



.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.text-content {
    max-width: 50%;
}

.text-content h2 {
    font-size: 45px;
    color: #511616;
}

.text-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.image-content {
    max-width: 50%;
}

.image-content img {
    max-width: 100%;
}

@media (max-width: 992px) {
    .text-content, .image-content {
        max-width: 100%;
    }

    .text-content h2 {
        font-size: 36px;
    }

    .text-content p {
        font-size: 16px;
    }

    .image-content img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .text-content h2 {
        font-size: 28px;
    }

    .text-content p {
        font-size: 14px;
    }

    .image-content img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .text-content h2 {
        font-size: 24px;
    }

    .text-content p {
        font-size: 12px;
    }

    .image-content img {
        max-width: 100%;
    }
}

.product-ranges-section {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-ranges-image img {
    max-width: 100%;
    margin-bottom: 40px;
}

.product-ranges-content {
    text-align: center;
    margin-top: 20px;
}

.product-ranges-text h2 {
    font-size: 48px;
    color: #511616;
    margin-top: 20px;
    text-align: center;
}

@media (min-width: 992px) {
    .product-ranges-section {
        flex-direction: row;
    }

    .product-ranges-content {
        margin-top: 0;
        text-align: left;
    }

    .product-ranges-text h2 {
        margin-top: 180px;
        margin-right: 500px;
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .product-ranges-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .product-ranges-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .product-ranges-text h2 {
        font-size: 24px;
    }
}

.container {
    overflow: visible;
}

.owl-carousel {
    overflow: visible;
}

.custom-slider {
    position: relative;
    overflow: visible; /* Ensure the entire slider allows overflow */
}

.custom-slider .slider-item {
    position: relative;
    background-color: #f1f1f1; /* Replace with your preferred color */
    border-radius: 50px 50px 0 0;
    height: 200px; /* Adjust height to accommodate content */
    text-align: center;
    margin: 0 10px;
    overflow: visible; /* Allow the image to overflow outside the square */
}

.custom-slider .image-container {
    position: absolute;
    top: -50px; /* Position image to be half outside the container */
    left: 50%;
    transform: translateX(-50%);
    width: 160px; /* Adjust the size as needed */
    height: 160px;
    border-radius: 50%; /* Make the image round */
    z-index: 2; /* Ensure the image is above the square */
    overflow: visible; /* Ensure the image isn't clipped */
}

.custom-slider .image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.custom-slider .arrow-container {
    margin-top: 60px; /* Adjust as needed to align arrow properly */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 150px;
}

.custom-slider .arrow-container i {
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    border: 2px solid #ccc;
    font-size: 1.2rem;
  
}

.custom-slider .item p {
    margin-top: 20px; /* Adjust to ensure the text is spaced properly */
    font-size: 1rem;
    font-weight: 500;
}


        .custom-nav-button {
            position: absolute;
            top: 260%;
            transform: translateY(-50%);
            background-color: #fff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #000;
            cursor: pointer;
            z-index: 1;
            border: 1px solid #000;
        }

        .custom-nav-button.prev {
            left: 30px;
        }

        .custom-nav-button.next {
            right: 30px;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .owl-dots {
                display: none;
            }

            .custom-nav-button {
                top: auto;
                /* bottom: -40px; */
                transform: none;
                width: 50px;
                height: 50px;
            }

            .custom-nav-button.prev {
                left: 25%;
            }

            .custom-nav-button.next {
                right: 25%;
            }

            .custom-slider .slider-item {
                margin: 0 auto; /* Center the single item on the screen */
            }
        }



.btn-warning {
background-color: #ffd700;
border: none;
color: #000;
padding: 10px 20px;
margin-top: 10px;
font-size: 12px;
font-weight: bold;
border-radius: 40px;
text-align: center;
display: inline-block;
text-decoration: none;
transition: background-color 0.3s, color 0.3s;

}

.btn-warning:hover {
background-color: #e6b800;
color: #fff;
}
.position-relative .badge {
margin-top: 20px;
}

.position-relative .fa-heart {
font-size: 1.2rem;
color: #333;
cursor: pointer;
transition: color 0.3s;
}

.position-relative .fa-heart:hover {
color: #ff0000;
}


.custom-button {
    background-color: #FFC107;
    color: #000;
    border-radius: 50px;
    padding: 15px 50px;
    
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border: none;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #FFB000;
}



.trusted-section {
background: linear-gradient(90deg, #FACC15 0%, #E3C9B9 100%);
}

.text-content h2 {
font-size: 36px;
color: #fff;
}

/* .icon-box {
max-width: 150px;
} */

.icon-circle {
width: 80px;
height: 80px;
border-radius: 50%;
background-color: #fff;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
}

.icon-circle i {
font-size: 24px;
color: #0a0a0a;
}

.icon-box p {
font-size: 14px;
color: #fff;
margin-top: 10px;
}

.image-wrapper {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}

.circle-borders {
position: absolute;
width: 75%; /* Adjust this to reduce the size of the circle */
padding-top: 70%; /* This keeps the circle proportional */
border: 30px solid #F39D68; /* Adjust this to increase the border width */
border-radius: 50%;
top: 20%; /* Adjust these values to position the circle partially */
left: 60%;
z-index: 1;
}

.image-wrapper img {
position: relative;
z-index: 2;
max-width: 100%;
}

.trusted-section .icon-container {
text-align: center;
margin-bottom: 30px; /* Add spacing between rows */
}

@media (max-width: 992px) {
.trusted-section .trusted-image {
text-align: center;
margin-top: 30px;
}
}

@media (max-width: 768px) {
.text-content h2 {
font-size: 28px;
}
.icon-box {
max-width: 120px;
}
.icon-circle {
width: 50px;
height: 50px;
}
.icon-circle i {
font-size: 20px;
}
.icon-box p {
font-size: 12px;
}
}

@media (max-width: 576px) {
.text-content h2 {
font-size: 24px;
}
.icon-box {
max-width: 100px;
}
.icon-circle {
width: 40px;
height: 40px;
}
.icon-circle i {
font-size: 16px;
}
.icon-box p {
font-size: 10px;
}
.circle-borders {
display: none;
}
}

.clients-section {
    padding: 50px 0;
    text-align: center;
}

.client-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.client-slider .client {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.client-slider .client img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-slider .client.active {
    transform: scale(1.2);
}

.testimonial {
    background-color: rgb(240, 233, 233);
    border-radius: 40px;
    padding: 20px;
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial p {
    font-size: 1rem;
}

.testimonial span {
    font-weight: bold;
}

.arrow-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid black;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
.client-slider {
gap: 30px;
}

.client-slider .client {
width: 60px;
height: 60px;
border-radius: 50%;
}

.arrow-container {
width: 30px;
height: 30px;
font-size: 1.2rem;
}

.testimonial {
margin-top: 30px;
padding: 15px;
}

.testimonial p {
font-size: 0.9rem;
}
}
.special-offer-section {
background: linear-gradient(90deg, #FACC15 0%, #E3C7B5 100%);
text-align: center;
display: flex;
align-items: center;
justify-content: center;
position: relative;
gap: 30px;
}

.circle-background {
position: absolute;
border-radius: 50%;
background-color: rgba(255, 0, 0, 0.2); /* Adjust color and opacity */
}

.circle1 {
width: 200px;
height: 200px;
top: 10%;
left: 10%;
}

.circle2 {
width: 300px;
height: 300px;
top: 30%;
right: 15%;
}

.circle3 {
width: 150px;
height: 150px;
bottom: 10%;
left: 30%;
}

.special-offer-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
}

.special-offer-content {
max-width: 600px;
z-index: 1;
}

.special-offer-content h3 {
font-size: 2rem;
color: #e53935;
}

.special-offer-content h1 {
font-size: 5rem;
color: #511616;
}

.special-offer-content p {
font-size: 2rem;
color: #511616;
}

@media (max-width: 992px) {
.special-offer-section {
flex-direction: column;
text-align: center;
}
.special-offer-image img {
margin-bottom: 20px;
}
.circle-background {
display: none;
}
.special-offer-content h3 {
font-size: 1.5rem; /* Adjust font size for smaller screens */
}
.special-offer-content h1 {
font-size: 3rem; /* Adjust font size for smaller screens */
}
.special-offer-content p {
font-size: 1.5rem; /* Adjust font size for smaller screens */
}
}

@media (max-width: 576px) {
.special-offer-content h3 {
font-size: 1.25rem; /* Further adjust font size for very small screens */
}
.special-offer-content h1 {
font-size: 2.5rem; /* Further adjust font size for very small screens */
}
.special-offer-content p {
font-size: 1.25rem; /* Further adjust font size for very small screens */
}
}





/* .contact-section {
padding: 50px 0;
} */

.contact-info h2 {
font-size: 24px;
color: #FFC107;
}

.contact-info p {
margin: 20px 0;
color: #333;
}

.contact-details {
list-style: none;
padding: 0;
}

.icon-item {
display: flex;
align-items: center;
margin-bottom: 15px;
}

.icon-circles {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #FFC107;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
}

.icon-circles i {
color: #fff;
font-size: 18px;
}

.icon-item span {
color: #333;
}

.contact-form .form-group {
position: relative;
margin-bottom: 1.5rem;
}

.contact-form .form-control {
padding-top: 1.5rem;
padding-bottom: 0.5rem;
border: 1px solid #ced4da;
}

.contact-form .form-control:focus {
border-color: #FFC107;
box-shadow: none;
}

.contact-form label {
position: absolute;
top: 0.5rem;
left: 0.75rem;
font-size: 0.875rem;
color: #aaa;
transition: all 0.3s;
pointer-events: none;
}

.contact-form .form-control:focus + label,
.contact-form .form-control:not(:placeholder-shown) + label {
top: -0.75rem;
left: 0.75rem;
font-size: 0.75rem;
color: #FFC107;
background: #fff;
padding: 0 0.25rem;
}

.contact-form textarea.form-control {
height: auto;
}

.btn-primary {
background-color: #FFC107;
border-color: #FFC107;
color: #fff;
}

@media (max-width: 768px) {
.contact-section {
text-align: center;
}
.contact-info,
.contact-form {
margin-bottom: 30px;
}
.icon-item {
flex-direction: column;
align-items: center;
}
.icon-item span {
margin-top: 10px;
text-align: center;
}
}



.footer {
    background-color: #FACC15;
    padding: 50px 0;
    color: #333;
}

.footer .footer-logo {
    max-width: 200px;
    
}

.footer h5 {
    font-weight: bold;
    font-size: 18px;
}

.footer a {
    color: #333;
    text-decoration: none;
    
}

.footer a:hover {
    text-decoration: underline;
}

.footer .footer-bottom {
    border-top: 1px solid #f5f2f2;
    padding-top: 10px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}