* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins";
    overflow-x: hidden;
}


/* -------------------------------------- SVG container   ----------------------------- */

.svg-target3 {
    margin-top: 10%;
    flex: 70%;
    left: 30%;
    top: 0%;
    /* position: absolute; */
}



@media (max-width: 768px) {
    .svg-target3 {
        margin-top: 5%;
        left: 10%;
        flex: 70%;
        width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .svg-target3 {
        margin-top: 5%;
        left: 10%;
        flex: 90%;
        /* width: 50% !important;
        height: auto !important; */
    }
}

/* ---------------------------------------- Preloader     ------------------------------------------ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #3E4095, #006DB5, #3E4095);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.5s ease-in-out;
}

.preloader .preloader-content {
    text-align: center;
}

.preloader #loading-gif {
    width: 40%;
    height: auto;
    margin-bottom: 20px;
}

.preloader h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-family: "Poppins";
}

.preloader #loading-text {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFFFFF;
    font-family: "Poppins";
}

.preloader .progress-bar {
    width: 30%;
    height: 10px;
    background-color: #FFFFFF;
    margin-top: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    margin: auto;
}

.preloader #loading-bar {
    height: 100%;
    width: 0;
    background-color: goldenrod;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .preloader #loading-gif {
        width: 50%;
        height: auto;
        margin: 0;
    }

    .preloader h2 {
        font-size: 12px;
    }

    .preloader #loading-text {
        font-size: 14px;
    }
}

.preloader #content {
    display: none;
    /* Hide content until preloader is finished */
}

/* -------------------------  Popup         --------------------- */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(165, 190, 216, 0.5);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
    font-family: "Poppins";
}


.popup-box h2 {
    text-align: center;
    font-size: 22px;
}

#bottleType option {
    color: #000;
}

/* Styles for popup box */
.popup-overlay .popup-box {
    background-color: #8EAED0;
    color: white;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Close button */
.popup-overlay .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Input and textarea styles */
.popup-overlay .popup-box input,
.popup-overlay .popup-box select,
.popup-overlay .popup-box textarea,
.popup-overlay .popup-box button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-family: "Poppins";
}

.popup-overlay .popup-box input::placeholder,
.popup-overlay .popup-box select::placeholder,
.popup-overlay .popup-box textarea::placeholder {
    color: white;
}

.popup-overlay .popup-box input,
.popup-overlay .popup-box select,
.popup-overlay .popup-box textarea {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.popup-overlay .popup-box select option {
    color: #000;
}

.popup-overlay .popup-box img {
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-left: auto;
    display: flex;
}

.popup-overlay .send {
    background-color: #03A9FC;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* Disable scrolling when popup is active */
body.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .popup-overlay .popup-box {
        width: 85%;
        max-width: 400px;
        padding: 15px;
    }

    .popup-box h2 {
        font-size: 20px;
    }

    .popup-overlay .popup-close {
        top: 5px;
        right: 10px;
        font-size: 18px;
    }

    .popup-overlay .popup-box input,
    .popup-overlay .popup-box select,
    .popup-overlay .popup-box textarea {
        font-size: 12px;
        padding: 8px;
        width: 100% !important;
        height: auto;
    }

    .popup-overlay .send {
        font-size: 14px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .popup-overlay .popup-box {
        width: 90%;
        max-width: 350px;
        padding: 10px;
    }

    .popup-box h2 {
        font-size: 18px;
    }

    .popup-overlay .popup-close {
        top: 5px;
        right: 5px;
        font-size: 16px;
    }

    .popup-overlay .popup-box input,
    .popup-overlay .popup-box select,
    .popup-overlay .popup-box textarea {
        font-size: 10px;
        padding: 6px;
        width: 100% !important;
        height: auto;
    }

    .popup-overlay .send {
        font-size: 12px;
        padding: 6px;
    }
}

/* ----------------------------------- nav bar ------------------------------------------------------ */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(5, 5, 5, 0.7);
    padding: 0px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    margin-bottom: 0;
}

nav a {
    text-decoration: none;
    color: white;
}

.gif-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: -2%;
}

.gif-container img {
    width: 30%;
    height: auto;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-left: 5%;
    flex-grow: 1;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 5px;
    transition: all 0.3s;
    text-align: center;
    font-family: "Poppins";
}

.nav-links a:hover,
.nav-links .active {
    text-decoration: underline;
    text-underline-offset: 5px;
    color: #FFFFFF;
}

.customize-btn {
    background-color: #039AE5;
    color: white;
    padding: 10px 20px;
    /* Increased padding for larger button */
    border: none;
    cursor: pointer;
    animation: pulse3 1.5s infinite;
    border-radius: 10px;
    font-family: "Poppins";
    font-size: 16px;
    width: 200px;
    /* Set a base width */
    text-align: center;
    margin: 0 auto;
}

@keyframes pulse3 {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.3);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
}

/* Right side icons */
.social-icons {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.social-icons a {
    color: white;
    font-size: 24px;
    margin: 0 15px;
    text-decoration: none !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    height: 24px;
    width: 30px;
}

.hamburger div {
    width: 100%;
    height: 4px;
    background-color: white;
}

.hamburger.open div:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 8px;
}

.hamburger.open div:nth-child(2) {
    opacity: 0;
}

.hamburger.open div:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -8px;
}

.menu {
    display: flex;
}

.menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    gap: 0;
}

.menu a {
    display: block;
    padding: 5px;
    color: white;
    text-decoration: none;
}

.menu a:hover {
    text-decoration: underline;
}

@media screen and (min-width:1500px) and (max-width: 2000px)  {
    .menu {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-left: 15%;
    }
}

@media (max-width: 1024px) {
    .banner img {
        width: 40%;
        top: 60%;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
    }

    .gif-container img {
        width: 30%;
    }

    .hamburger {
        display: none;
    }

    .menu {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .customize-btn {
        display: block;
        width: 180px;
        /* Reduced width for larger screens */
    }
}

@media (max-width: 900px) {
    nav {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .gif-container {
        margin: 0;
        padding: 0;
    }

    .gif-container img {
        width: 20%;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
    }

    .menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        width: 100%;
        text-align: center;
    }

    .social-icons {
        display: none;
    }

    .menu .social-icons {
        display: flex;
        justify-content: center;
        margin: 10px 0;
    }

    .menu .social-icons a {
        margin: 10px;
        font-size: 30px;
    }

    .customize-btn {
        width: 150px;
        /* Slightly smaller button on mobile */
        font-size: 12px;
        padding: 8px 20px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .customize-btn {
        width: 140px;
        /* Further reduced width for smaller screens */
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .customize-btn {
        width: 120px;
        /* Minimum width for small screens */
        font-size: 10px;
    }
}

/* ----------------------------------- banner bar ------------------------------------------------------ */
/* Ensure the video banner fills the viewport */
.banner {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevents overflow outside the banner */
}

/* Style the video */
.banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%; /* Fill the entire height of the banner */
    object-fit: cover; /* Make the video cover the entire area */
}

/* Responsive behavior for larger screens */
@media (min-width: 1024px) {
    .banner {
        height: 110vh; 
        margin-top: -5%;
    }
    .banner video {
        /* For large screens, the video remains full-screen */
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* For tablets and smaller devices (768px and up) */
@media (max-width: 1024px) and (min-width: 768px) {
    .banner {
        height: 50vh; /* Ensure the banner still covers full screen */
    }

    .banner video {
        width: 100%;
        height: auto;
        object-fit: cover; /* Ensure the video fills the screen */
    }
}

/* For smaller devices (480px to 767px) */
@media (max-width: 768px) and (min-width: 480px) {
    .banner {
        height: 60vh; /* Full screen height */
    }

    .banner video {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* For very small devices (below 480px) */
@media (max-width: 480px) {
    .banner {
        height: 40vh; /* Full screen height */
    }

    .banner video {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}


@media (max-width: 900px) {
    nav {
        flex-direction: row-reverse;
        justify-content: flex-start;
        padding: 0px;
        gap: 10px;
        background-color: #000000;
    }

    .gif-container {
        order: 1;
        display: flex;
        margin-right: auto;
        padding: 0px;
        margin-left: 0;
    }

    .gif-container img {
        width: 18%;
    }

    .hamburger {
        display: flex;
        height: 20px;
        width: 25px;
        margin-left: auto;
        position: absolute;
        right: 10px;
        /* Aligns the hamburger to the right */
    }

    .nav-links {
        display: none;
        margin-left: 0;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: relative;
    }

    .menu.active {
        display: flex;
    }

    .social-icons {
        display: none;
    }

    .menu .social-icons {
        display: flex;
        justify-content: center;
        margin: auto;
    }

    .menu .social-icons a {
        margin: 10px;
        font-size: 30px;
    }

    .customize-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: -5%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 10px;
        padding: 5px;
        width: 30%;
    }
}


/* ----------------------------------- footer bar ------------------------------------------------------ */

footer {
    background: linear-gradient(to bottom right, #3E4095, #006DB5, #3E4095);
    color: white;
    padding: 20px 20px;
    position: relative;
}

footer a {
    text-decoration: none;
    color: #FFFFFF;
}

footer a:hover {
    color: #FFFFFF;
    /* Keep the text color white */
    text-decoration: none;
    /* Remove underline on hover */
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    /* Prevent wrapping */
    gap: 20px;
}

.footer-part {
    width: 20%;
    /* Make each part take equal space */
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    gap: 5px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 0px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-text {
    text-align: center;
    margin-bottom: 20px;
}

.footer-text p {
    margin-bottom: 0;
    font-family: "Poppins";
}

.footer-images {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-images img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.footer-contact-info {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 5px;
}

.footer-contact-info img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* .footer-contact-info .cbrqr2 {
    width: 105.5%;
    height: auto;
    object-fit: contain;
} */

.footer-contact-info iframe {
    width: 70%;
    height: 45%;
    border-radius: 10px;
    object-fit: contain;
}

.contact-details p {
    margin: 20px 0;
    line-height: 20px;
    font-size: 12px;
    font-family: "Poppins";
}

.contact-details i {
    margin-right: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #FFFFFF;
    padding-top: 5px;
    padding-bottom: 0;
    /* margin-top: 30px; */
}

.footer-left,
.footer-right {
    width: 30%;
}

.footer-center {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 10%;
}

.footer-left p {
    font-size: 12px;
    margin: 0;
    font-family: "Poppins";
}

.footer-right p {
    font-size: 12px;
    margin-left: auto;
    text-align: right;
    font-family: "Poppins";
}


.footer-center img {
    width: 33%;
    height: auto;
}

.contact-details {
    margin-top: -25%;
}

.footer-part h4 {
    text-decoration: underline;
    text-decoration-color: #FFC310;
    text-underline-offset: 5px;
    color: #FFC310;
    font-size: 16px;
    font-family: "Poppins";
}

.vtechwatertechlogo {
    display: flex;
    margin: auto;
    padding: 10px;
    width: 50%;
    height: auto;
    padding-bottom: 30px;
}

@media (max-width: 1200px) {
    /* .footer-row {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 5px;
        margin: 0;
        padding: 0;
    } */

    .footer-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    .footer-part {
        width: 45%;
        /* Adjust the width for medium screens */
        margin-bottom: 20px;
    }

    .footer-center {
        width: 60%;
        justify-content: center;
        gap: 20px;
        margin-top: 0%;
    }

    .footer-left,
    .footer-right {
        width: 50%;
        /* Adjust the width for left and right sections */
    }

    .footer-center img {
        width: 10%;
        /* Smaller images for medium screens */
    }

    .footer-contact-info iframe {
        width: 70%;
        height: 100px;
    }

    .footer-contact-info img {
        width: 100%;
        height: 100px;
    }

    .contact-details {
        margin-top: 0%;
    }

    .vtechwatertechlogo {
        width: 80%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .footer-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-part {
        width: 100%;
        margin-bottom: 0px;
        gap: 0px;
        text-align: center;
    }

    .footer-contact-info {
        justify-content: center;
        gap: 0;
    }

    .footer-logo img {
        width: 50%;
        /* Reduce logo size on smaller screens */
    }

    .footer-text p {
        font-size: 16px;
        /* Adjust text size for smaller screens */
    }

    .footer-images {
        gap: 0px;
    }

    .footer-images img {
        width: 80%;
        /* Reduce social icons size */
    }

    .footer-contact-info iframe {
        width: 50%;
        height: 100px;
    }

    .footer-contact-info img {
        width: 80%;
        height: 100px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        margin-bottom: 10px;
        /* Stack left and right sections */
    }

    .footer-left p,
    .footer-right p {
        font-size: 16px;
        text-align: center;
        /* Reduce font size */
    }

    .footer-part h4 {
        font-size: 16px;
    }

    .contact-details p {
        font-size: 16px;
        line-height: 20px;
        margin: 10px;
    }

    .contact-details {
        margin-top: 0%;
    }
    
    .vtechwatertechlogo {
        width: 80%;
        height: auto;
        padding-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        width: 70%;
    }

    .footer-images {
        gap: 0px;
    }

    .footer-images img {
        width: 80%;
        /* Further reduce icon size */
    }

    .footer-center img {
        width: 15%;
        /* Small images for very small screens */
    }

    .footer-left p,
    .footer-right p {
        font-size: 10px;
        text-align: center;
        /* Adjust text size for very small screens */
    }

    .contact-details {
        margin-top: 0%;
    }

    .footer-contact-info iframe {
        width: 60%;
        height: 60px;
    }

    .footer-contact-info img {
        width: 90%;
        height: 60px;
    }

    .vtechwatertechlogo {
        width: 100%;
        height: auto;
        padding-bottom: 10px;
    }
}


/* ----------------------------------- who r we bar ------------------------------------------------------ */
.section-divide {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    gap: 10px;
    width: 90%;
    height: auto;
    margin: auto;
}

.left-section {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
}

.left-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #303030;
    font-family: "Poppins";
}

.left-section p {
    font-size: 16px;
    margin-bottom: 10px;
    /* line-height: 30px; */
    text-align: justify;
    font-family: "Poppins";
}

.highlighted-text {
    background-color: #e3f6ff;
    color: #039ae5;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}

.view-catalogue {
    background-color: #039ae5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-family: "Poppins";
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.view-catalogue:hover {
    background-color: #02779d;
}

.right-section {
    flex: 1;
    min-width: 211px;
    max-width: 50%;
    align-items: center;
    display: flex;
}

.right-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 1100px) {
    .left-section h2 {
        font-size: 16px;
    }

    .left-section p {
        font-size: 10px;
    }

    .view-catalogue {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .section-divide {
        flex-direction: column;
        align-items: center;
        padding-top: 0;
        margin-top: 0;
    }

    .left-section {
        max-width: 100%;
    }

    .right-section {
        max-width: 60%;
    }

    .left-section h2 {
        font-size: 16px;
    }

    .left-section p {
        font-size: 10px;
    }

    .view-catalogue {
        padding: 8px 15px;
        font-size: 10px;
    }
}



/* ----------------------------------- count bar ------------------------------------------------------ */
.background-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url('../images/countimg.png');
    background-size: cover;
    background-position: center;
    /* height: 300px; */
    padding: 20px;
    color: white;
}

.left-part,
.middle-part,
.right-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.left-content,
.middle-content,
.right-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 5px;
}

.left-part img,
.middle-part img,
.right-part img {
    width: 50%;
    height: auto;
    margin-right: 20px;
}

.number {
    font-size: 30px;
    font-weight: 500;
    min-width: 100px;
    font-family: "Poppins";
    margin-bottom: 20px;
}

.clients-text {
    font-size: 18px;
    font-weight: normal;
    margin-top: -7%;
    text-align: end;
    margin-left: 16%;
    font-family: "Poppins";
}

.vertical-line {
    font-size: 50px;
    color: #FFFFFF;
    margin: 0 20px;
    display: flex;
    align-items: center;
}


@media (max-width: 768px) {
    .background-section {
        flex-direction: row;
        text-align: center;
        height: auto;
        padding: 10px;
        gap: 5px;
    }

    .vertical-line {
        display: visible;
        font-size: 20px;
    }

    .left-part img,
    .middle-part img,
    .right-part img {
        width: 30%;
        /* Adjust image size for mobile */
        height: auto;
        margin-right: 0px;
    }

    .number {
        font-size: 14px;
        min-width: 50px;
    }

    .clients-text {
        font-size: 10px;
        margin-top: -10%;
        margin-left: 30%;
    }
}

/* ----------------------------------- why choose us bar ------------------------------------------------------ */
.features-section {
    text-align: center;
    padding: 50px 20px;
    width: 90%;
    height: auto;
    margin: auto;
}

.features-section .section-heading {
    font-size: 24px;
    font-weight: 600;
    color: #303030;
    margin-bottom: 30px;
    font-family: "Poppins";
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Content Wrapper */
.features-section .feature-container {
    display: grid;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

/* Left Part */
.features-section .feature-item,
.features-section .feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Center Part (Empty) */
.features-section .center-part {
    flex: 1;
}

/* Part Styles */
.features-section .part {
    border-radius: 8px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Part Content (Image and Heading in One Line) */
.features-section .part-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.features-section .part img {
    width: 15%;
    height: auto;
}

.features-section .part h3 {
    font-size: 16px;
    font-weight: 500;
    color: #303030;
    font-family: "Poppins";
}

/* Paragraph Styles */
.features-section .part p {
    font-size: 16px;
    color: #666;
    text-align: justify;
    font-family: "Poppins";
}

/* Responsive Design */
/* @media (max-width: 1024px) {
    .features-section .section-heading {
        font-size: 28px;
    }

    .features-section .feature-container {
        flex-direction: column;
        align-items: center;
    }

    .features-section .part {
        width: 70%;
        margin-bottom: 0px;
    }
}

@media (max-width: 768px) {
    .features-section .section-heading {
        font-size: 16px;
    }

    .features-section .part {
        padding: 15px;
        width: 80%;
        height: auto;
    }

    .features-section .part img {
        width: 10%;
        height: auto;
    }

    .features-section .part h3 {
        font-size: 12px;
    }

    .features-section .part p {
        font-size: 10px;
    }
} */

@media screen and (max-width: 1000px) {

    /* For Section 2 (Features), change to 2 columns on tablets */
    .features-section .feature-container {
        grid-template-columns: repeat(1, 1fr);
        /* 2 columns for smaller screens */
    }

    .features-section .part img {
        width: 10%;
        height: auto;
    }

}

@media screen and (max-width: 768px) {
    .features-section .feature-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .features-section .feature-item:nth-child(2) {
        order: 1;
    }

    .features-section .feature-item:nth-child(1) {
        order: 2;
    }

    .features-section .feature-item:nth-child(3) {
        order: 3;
    }

    .features-section .section1 {
        padding: 30px;
    }

    .features-section .section-heading {
        font-size: 16px;
    }

    .features-section .part h3 {
        font-size: 14px;
    }

    .features-section .part p {
        font-size: 12px;
    }

    .features-section .part img {
        width: 10%;
        height: auto;
    }
}

@media screen and (max-width: 480px) {

    /* For Section 2 (Features), change to 1 column on mobile */
    .features-section .feature-container {
        grid-template-columns: 1fr;
        /* 1 column for mobile */
    }

    /* For other sections, adjust font size */
    .features-section .section-heading {
        font-size: 16px;
    }

    .features-section .section1 {
        padding: 20px;
    }

    .features-section .feature-item {
        padding: 15px;
    }

    .features-section .part h3 {
        font-size: 14px;
    }

    /* Paragraph Styles */
    .features-section .part p {
        font-size: 12px;
    }
}


/* ----------------------------------- quality bar ------------------------------------------------------ */

.quality1 {
    background-color: #E5F5FE;
    width: 100%;
    height: auto;
    position: relative;
}

.quality1 img {
    margin-top: 10%;
    position: relative;
}


.quality1 .twinbottle {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: auto;
    top: 7%;
    animation: moveUpDown 3s infinite ease-in-out;
}

@keyframes moveUpDown {
    0% {
        top: 7%;
    }

    50% {
        top: 10%;
        /* Adjust this value to control the maximum upward position */
    }

    100% {
        top: 7%;
    }
}


.quality1 h1 {
    font-size: 150px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #039AE5;
    -webkit-text-stroke-width: .012em;
    position: absolute;
    margin-top: 5%;
    margin-left: 5%;
    font-family: "Poppins";
}

.quality1 .leafimg1 {
    width: 20%;
    height: auto;
    float: left;
    margin-left: 2%;
    margin-top: 15%;
}

.quality1 h2 {
    font-size: 110px;
    font-family: "Poppins";
    font-weight: 600;
    color: #8FD7FB;
    position: absolute;
    margin-top: 20%;
    margin-left: 30%;
    z-index: 999;
    font-family: "Poppins";
}

.quality2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    margin-top: 50%;
    position: relative;
}

.quality2 .watersplsh2 {
    position: relative;
}

.quality2 img {
    position: absolute;
}

.qualitylist {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

.qualitylist1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    padding: 20px;
    width: 30%;
    height: 200px;
    box-sizing: border-box;
    margin: auto;
    border-radius: 10px;
}

.qualitylist1 h5 {
    margin: 0;
    font-size: 16px;
    font-family: "Poppins";
    font-style: "Semibold";
    color: #20B2FD;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 10px;
}

.qualitylist1 p {
    margin: 2px;
    font-size: 13px;
    font-family: "Poppins";
    font-style: "Regular";
    color: #363636;
    text-align: justify;
    font-weight: 400;
    font-family: "Poppins";
}


.quality2 .leafimg2 {
    width: 25%;
    height: auto;
    position: absolute;
    right: 0;
    top: 59%;
}

/* Animations when section comes into view */
@keyframes slideFromLeft {
    0% {
        left: -100%;
        opacity: 0;
    }

    100% {
        left: 0;
        opacity: 1;
    }
}

@keyframes slideFromRight {
    0% {
        right: -100%;
        opacity: 0;
    }

    100% {
        right: 0;
        opacity: 1;
    }
}

/* Apply the animations */
.slide-left {
    animation: slideFromLeft 1s ease-out forwards;
}

.slide-right {
    animation: slideFromRight 1s ease-out forwards;
}


@media (max-width: 1200px) {
    .quality1 h1 {
        font-size: 10vw;
    }

    .quality1 h2 {
        font-size: 8vw;
    }

    .quality2 {
        margin-top: 20%;
    }

    .qualitylist1 h5 {
        font-size: 16px;
    }

    .qualitylist1 p {
        font-size: 14px;
    }

    .qualitylist1 {
        width: 90%;
        gap: 0;
        justify-content: normal;
        height: auto;
        margin-top: 0%;
        margin-bottom: 10px;
    }

    .qualitylist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        margin-top: 10%;
    }

    .quality2 .leafimg2 {
        width: 15%;
        position: absolute;
        top: 75%;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .quality1 h1 {
        font-size: 12vw;
    }

    .quality1 h2 {
        font-size: 8vw;
    }

    .quality1 .leafimg1 {
        width: 15%;
        margin-top: 22%;
    }

    .quality2 .leafimg2 {
        width: 15%;
        position: relative;
        margin-top: 0%;
        margin-left: auto;
    }

    .qualitylist1 {
        width: 80%;
        gap: 0;
        justify-content: normal;
        height: auto;
        margin-top: 5%;
        margin-bottom: 10px;
    }

    .quality2 {
        margin-top: 10%;
        flex-direction: column;
        /* Stack images and text vertically */
        align-items: center;
    }

    .quality2 .watersplsh2 {
        width: 30%;
        /* Scale down splash image */
    }

    .qualitylist1 h5 {
        font-size: 12px;
        /* Smaller font size for smaller screens */
    }

    .qualitylist1 p {
        font-size: 10px;
        /* Smaller font size for smaller screens */
    }

    .qualitylist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        margin-top: 5%;
    }

    .quality1 .twinbottle {
        top: 3%;
    }
}

@media (max-width: 480px) {
    .quality1 {
        text-align: center;
    }

    .quality1 h1 {
        font-size: 10vw;
        text-align: center;
        margin-top: 10%;
    }

    .quality1 h2 {
        font-size: 8vw;
        text-align: center;
        margin-top: 30%;
    }

    .qualitylist1 {
        width: 70%;
        gap: 0;
        justify-content: normal;
        height: auto;
        margin-top: 5%;
    }

    .quality2 .watersplsh2 {
        width: 30%;
    }

    .quality2 .leafimg2 {
        width: 15%;
        position: relative;
        margin-top: 5%;
        margin-left: auto;
    }

    .qualitylist1 h5 {
        font-size: 12px;
        /* Smaller font size for smaller screens */
    }

    .qualitylist1 p {
        font-size: 10px;
        /* Smaller font size for smaller screens */
    }

    .qualitylist {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
        margin-top: 5%;
    }

    .quality1 .twinbottle {
        margin-top: 5%;
    }

    .quality2 img {
        position: absolute;
        margin-top: 20%;
    }
}


/* ----------------------------------    Product section   ------------------------------------------ */

.image-section {
    position: relative;
    height: auto;
    text-align: center;
    width: 100%;
    height: auto;
}

.section-heading1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: underline;
    text-underline-offset: 5px;
    padding-bottom: 0px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-family: "Poppins";
}

.image-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: relative;
    background-image: url('../images/productwaterimg.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    padding-top: 10%;
    padding-bottom: 5%;
}

.section-image {
    width: 65%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
    justify-content: center;
    align-items: center;

}

.customize-btn1 {
    background-color: #039AE5;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    animation: pulse 1.5s infinite;
    border-radius: 10px;
    font-family: "Poppins";
    font-size: 12px;
    position: absolute;
    top: 92%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 20%;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@media (max-width: 992px) {
    .section-heading1 {
        font-size: 20px;
        font-weight: 600;
    }

    .image-container {
        background-image: url('../images/productwaterimg1.png');
        background-size: cover;
        background-position: center;
        padding-top: 20%;
        /* Adjust the aspect ratio as needed */
        grid-template-columns: repeat(2, 1fr);
    }

    .section-image {
        width: 60%;
        /* Adjust the image size for medium screens */
    }

    .customize-btn1 {
        padding: 5px 10px;
        font-size: 12px;
        position: relative;
        top: 0%;
        left: 65%;
        transform: translate(-50%, -50%);
        width: 70%;
    }
}

@media (max-width: 768px) {
    .section-heading1 {
        font-size: 16px;
        font-weight: 600;
    }

    .image-container {
        background-image: url('../images/productwaterimg1.png');
        background-size: cover;
        background-position: center;
        padding-top: 20%;
        /* Adjust the aspect ratio as needed */
        grid-template-columns: repeat(2, 1fr);
    }

    .section-image {
        width: 60%;
        /* Adjust the image size for medium screens */
    }

    .customize-btn1 {
        padding: 5px 10px;
        font-size: 12px;
        position: relative;
        top: 0%;
        left: 65%;
        transform: translate(-50%, -50%);
        width: 70%;
    }
}

@media (max-width: 480px) {
    .image-container {
        grid-template-columns: repeat(2, 1fr);
        background-image: url('../images/productwaterimg1.png');
        background-size: cover;
        background-position: center;
        padding-top: 30%;
    }

    .section-image {
        width: 70%;
        /* Adjust the image size for small screens */
    }

    .customize-btn1 {
        padding: 5px 10px;
        font-size: 12px;
        position: relative;
        top: 0%;
        left: 65%;
        transform: translate(-50%, -50%);
        width: 80%;
    }
}




/*        <!-- ************** water composition  ***************** --> */

.section {
    background-color: #E5F5FE;
    padding: 40px 20px;
}

.container {
    width: 90%;
    height: auto;
    margin: 0 auto;
}

.heading {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: "Poppins";
    font-style: "Bold";
    color: #2F2F2F;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 5px;
}


.content3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 5%;
}

.left-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.left-image {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.left-text div {
    font-size: 130px;
    margin: 0px 0;
    font-family: "Poppins";
    font-style: "Bold";
    color: #CFECFD;
    font-weight: 600;
    margin-left: -28%;
}

.right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.points1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    width: 100%;
}

.point1 {
    position: relative;
    text-align: center;
    font-size: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.point1 img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.point1 h5,
.point1 span,
.point1 p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 20%;
    align-items: start;
    margin-top: 10%;
}

.point1 h5 {
    font-size: 16px;
    font-weight: 400;
    top: 20px;
    font-family: "Poppins";
    font-style: "Medium";
    color: #363636;
    align-items: start;
    margin-left: 10%;
    line-height: 1px;

}

.point1 span {
    font-size: 14px;
    top: 40px;
    font-family: "Poppins";
    font-style: "Medium";
    color: #039AE5;
    align-items: start;
    margin-left: 8%;
    line-height: 1px;
}

.point1 p {
    font-size: 14px;
    top: 55px;
    font-family: "Poppins";
    font-style: "Regular";
    color: #363636;
    text-align: justify;
    width: 50%;
    align-items: start;
    line-height: 15px;
}

.left-text1 {
    position: absolute;
    width: 100%;
    height: 100%;
}

.left-text1 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}


@media (max-width: 1200px) {
    .heading {
        font-size: 24px;
    }

    .content3 {
        gap: 20px;
    }

    .left-text div {
        font-size: 100px;
        margin-left: -25%;
    }

    .right-side .points1 {
        grid-template-columns: repeat(2, 1fr);
    }

    .point1 p {
        font-size: 14px;
        width: 70%;
        margin-left: 30%;
    }

    .left-text1 img {
        /* margin-left: 30%; */
        margin-top: 0%;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 992px) {
    .heading {
        font-size: 20px;
    }

    .content3 {
        gap: 20px;
    }

    .left-text div {
        font-size: 100px;
        margin-left: -25%;
    }

    .right-side .points1 {
        grid-template-columns: repeat(2, 1fr);
    }

    .point1 p {
        font-size: 12px;
        width: 70%;
    }

    .point1 span {
        line-height: 0px;
        width: 100%;
    }

    .point1 h5 {
        margin-left: 18%;
    }

    .left-text1 img {
        margin-left: -31%;
        margin-top: 0%;
        width: 132%;
        height: auto;
    }
}

@media screen and (min-width:576px) and (max-width: 767px) {
    .heading {
        font-size: 18px;
    }

    .content3 {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        margin-top: 15%;
    }

    .left-text div {
        font-size: 60px;
        margin-left: 37px;
    }

    .left-image {
        width: 60px;
        height: 60px;
    }

    .point1 img {
        height: 150px;
        width: 100%;
    }

    .point1 h5 {
        font-size: 12px;
        margin-left: 15%;
    }

    .point1 span {
        font-size: 12px;
        margin-left: 15%;
        width: 100%;
        height: auto;
    }

    .point1 p {
        font-size: 12px;
        width: 80%;
        margin-left: 30%;
    }

    .left-text1 img {
        /* margin-left: 30%; */
        margin-top: 0%;
        width: 100%;
        height: auto;
    }

    .right-side .points1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        margin: auto;
        margin-left: -9%;
    }

    .heading::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 7%;
        width: 30%;
        height: 4px;
        background: #1BBFE5;
    }

    .right-side {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 110%;
        height: auto;
    }
}


@media (max-width: 575px) {
    .heading {
        font-size: 16px;
    }

    .content3 {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        margin-top: 15%;
    }

    .left-text div {
        font-size: 60px;
        margin-left: 37px;
    }

    .left-image {
        width: 60px;
        height: 60px;
    }

    .point1 img {
        height: 135px;
        width: 81%;
    }

    .point1 h5 {
        font-size: 12px;
        margin-left: 15%;
    }

    .point1 span {
        font-size: 12px;
        margin-left: 15%;
        width: 100%;
        height: auto;
    }

    .point1 p {
        font-size: 10px;
        width: 80%;
        margin-left: 30%;
    }

    .left-text1 img {
        margin-left: 0%;
        margin-top: 0%;
        width: 100%;
        height: auto;
    }

    .right-side .points1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        margin: auto;
        margin-left: -8%;
    }


    .right-side {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 110%;
        height: auto;
    }
}

@media (max-width: 320px) {
    .heading {
        font-size: 18px;
    }

    .content3 {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 15%;
    }

    .left-text div {
        font-size: 50px;
        margin-left: 37px;
        font-weight: 600;
    }

    .left-image {
        width: 60px;
        height: 60px;
    }

    .point1 img {
        height: 150px;
        width: 100%;
    }

    .point1 h5 {
        font-size: 10px;
        margin-left: 15%;
    }

    .point1 span {
        font-size: 10px;
        margin-left: 15%;
        width: 100%;
        height: auto;
    }

    .point1 p {
        font-size: 10px;
        width: 80%;
        margin-left: 30%;
    }

    .left-text1 img {
        /* margin-left: 41%; */
        margin-top: -1%;
        width: 100%;
        height: auto;
    }

    .right-side .points1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        margin: auto;
        margin-left: -6%;
    }

    .heading::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 7%;
        width: 30%;
        height: 4px;
        background: #1BBFE5;
    }

    .right-side {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 110%;
        height: auto;
    }

    .point1 h5,
    .point1 span,
    .point1 p {
        position: absolute;
        left: 50%;
        margin-left: 20%;
        align-items: start;
        margin-top: 15%;
    }
}

/* *********************************************** our Certificate  ******************************************* */
.certificatesection {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    height: auto;
    position: relative;
    margin: auto;
}

.certificatesection h2 {
    font-family: "Poppins";
    font-style: bold;
    font-size: 24px;
    color: #363636;
    font-weight: 600;
    padding: 10px;
    margin-top: 3%;
    position: relative;
    display: inline-block;
    text-decoration: underline;
    text-underline-offset: 5px;
}


.certificatelist {
    background-image: url(../images/popularbrandlogo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-top: 3%;
    padding: 10px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.certificatelistitems {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 15%;
    height: auto;
    margin: 10px;
}

.certificatelistitems img {
    width: 80%;
    height: auto;
}

.certificatelistitems span {
    font-size: 16px;
    margin-top: 5%;
    font-family: "Poppins";
    font-style: "Medium";
    color: #363636;
}

.certificatelistitems span b {
    font-size: 16px;
    margin-top: 5%;
    font-family: "Poppins";
    font-style: "Medium";
    color: #515FFD;
}

.certificate-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Black background with opacity */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    /* Background blur effect */
}

.close-btn {
    position: absolute;
    top: 17%;
    right: 33%;
    font-size: 30px;
    color: #363636;
    cursor: pointer;
    font-weight: 600;
    background-color: #FFFFFF;
    width: 2%;
    height: auto;
    text-align: center;
}

@media (max-width: 1280px) {
    .certificatesection h2 {
        font-size: 24px;
    }

    .certificatelistitems {
        width: 30%;
    }

    .close-btn {
        position: absolute;
        top: 26%;
        right: 21%;
        font-size: 30px;
        color: #363636;
        cursor: pointer;
        font-weight: 600;
        background-color: #FFFFFF;
        width: 6%;
        height: auto;
        text-align: center;
    }
}


@media (max-width: 768px) {
    .certificatesection h2 {
        font-size: 16px;
    }

    .certificatelistitems {
        width: 25%;
    }

    .close-btn {
        position: absolute;
        top: 26%;
        right: 21%;
        font-size: 30px;
        color: #363636;
        cursor: pointer;
        font-weight: 600;
        background-color: #FFFFFF;
        width: 6%;
        height: auto;
        text-align: center;
    }

    .certificatelistitems span {
        font-size: 12px;
    }

    .certificatelistitems span b {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .certificatesection h2 {
        font-size: 16px;
        margin-top: 5%;
    }

    .certificatelistitems {
        width: 40%;
    }

    .certificatelistitems img {
        width: 90%;
    }

    .certificatelistitems span {
        font-size: 10px;
    }

    .certificatelistitems span b {
        font-size: 10px;
    }

    .close-btn {
        position: absolute;
        top: 11%;
        right: 11%;
        font-size: 30px;
        color: #363636;
        cursor: pointer;
        font-weight: 600;
        background-color: #FFFFFF;
        width: 6%;
        height: auto;
        text-align: center;
    }
}

/* ************************************* Contact us  ******************************************** */
.ourcontact {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 20px;
    border-radius: 15px;
    width: 80%;
    margin: auto;
    height: auto;
    margin-top: 5%;
}

.ourcontact h2 {
    position: absolute;
    font-size: 22px;
    top: -2%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    padding: 5px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.contactus1 {
    background: #0F86B9;
    padding: 20px;
    color: #363636;
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px 0 0 10px;
}

.contactus1 h5 {
    font-family: "Poppins";
    font-weight: bold;
    font-size: 26px;
    color: #FFFFFF;
    text-align: center;
}

.contactus1 p {
    font-family: "Poppins";
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 30px;
    margin-left: 10%;
    margin-right: 10%;
    text-align: left;
}

.contactus2 {
    background-color: #f8f8f8;
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: 80%;
    height: auto;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.contactus2 span {
    font-family: "Poppins";
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 10px;
    color: #272525;
}

.contactus2 input,
.contactus2 textarea,
.contactus2 select {
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    color: #858585;
    border: 2px solid #E4E9FF;
}

.contactus2 button {
    padding: 10px;
    background-color: #0F86B9;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 20px;
    margin-top: 5%;
}

.quantity-note {
    font-size: 14px;
    color: #858585;
    margin-top: 10px;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .ourcontact {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .contactus1,
    .contactus2 {
        width: 90%;
        margin: 0 auto;
    }

    .contactus1 h5 {
        font-size: 24px;
    }

    .contactus2 span {
        font-size: 20px;
    }

    .contactus1 p {
        font-size: 18px;
        margin: 5% 5%;
        text-align: center;
    }

    .contactus2 input,
    .contactus2 select,
    .contactus2 button {
        font-size: 14px;
    }

    .quantity-note {
        font-size: 12px;
    }
}

@media (max-width: 768px) {

    .contactus2 input,
    .contactus2 select,
    .contactus2 button {
        font-size: 14px;
    }

    .quantity-note {
        font-size: 12px;
    }
}

@media (max-width: 567px) {
    .ourcontact {
        padding: 10px;
        width: 100%;
        height: auto;
    }

    .contactus1 h5 {
        font-size: 16px;
        margin-top: 0%;
    }

    .contactus1 p {
        font-size: 16px;
        text-align: center;
        margin-top: 0%;
    }

    .contactus2 span {
        font-size: 16px;
    }

    .contactus2 input,
    .contactus2 textarea {
        font-size: 16px;
    }

    .contactus2 button {
        font-size: 16px;
    }

    .quantity-note {
        font-size: 12px;
    }
}


/* ------------------------------------- Back to Top Button Styles-------------------------------- */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #039AE5;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    width: auto;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border: 2px solid white;
    animation: bounce 1.5s infinite;
    animation-delay: 0.5s;
}

.back-to-top i {
    font-size: 24px;
    animation: ringing 1s ease-in-out infinite;
    /* Apply ringing animation */
}

@keyframes ringing {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(5deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.enquiry-text {
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
}

.enquiry-text span {
    display: block;
}

@media (max-width: 768px) {
    .back-to-top {
        padding: 8px 15px;
        width: auto;
    }

    .back-to-top i {
        font-size: 20px;
    }

    .enquiry-text {
        font-size: 12px;
    }
}