/*** Spinner Start ***/
/*** Spinner ***/
/* Apply Poppins font globally */


#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);

}

.btn.btn-secondary:hover {
    background: #00b4b6;
    border: 1px solid var(--bs-primary);
}

/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 38px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 18px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 43px;
    transition: .5s;
    background-color: #02267c;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 44px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    /* .navbar-light .navbar-brand img {
        max-height: 45px;
    } */
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid;
        border-left: 0;
        border-style: dotted;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--bs-primary) transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;

    transform: translateY(-50%);
    top: 35%;
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;

    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;

    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;

}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
    padding-bottom: 280px;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;


}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
    padding-bottom: 250px;
}



.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}

.form-floating>select.form-control:not(:placeholder-shown)~label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}



.form-floating>label {
    padding: 1rem 0.75rem;
    color: #666666;
}

/* Fix for select arrow */
.form-floating select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.3)), url(../img/ban2.jpg); */
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

/* .about-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.3)), url(../img/banner7.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size:cover;
    height: 700px;
    padding: 120px 0 60px 0;
    transition: 0.5s;
} */
.aspect-ratio-container {
    position: relative;
    width: 100%;
    /* Ensures full-width responsiveness */
    padding-top: 56.25%;
    /* Maintains the 16:9 aspect ratio (height / width = 9 / 16 = 0.5625) */
}

.video-fluid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the container without distortion */
}

.product-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.3)), url(../img/banners/romanner6.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 590px;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.contact-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.3)), url(../img/products/CONTACT.jpg);
    background-position: 50% 19%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 590px;
    /* padding: 120px 0 60px 0; */
    transition: 0.5s;
}

.demo-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.3)), url(../img/demobanner.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 590px;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #fff !important;
    content: var(--bs-breadcrumb-divider,
            "/"
        );
}

.bread {
    font-size: 22px !important;

}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.know-more-button {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 30px;
    color: cyan;
    text-shadow: 1px 1px 1px black;
    background-color: #004aad;
    /* Water-like blue */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.know-more-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.5);
}

/* Water Flow Effect */
.know-more-button::before {
    content: '';
    position: absolute;
    color: #fff !important;
    top: 0;
    left: -100%;
    /* Initially off the button */
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 123, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 100%);
    opacity: 0.5;
    transition: transform 0.5s ease-in-out;
    transform: skewX(-20deg);
}

.know-more-button:hover::before {
    left: 100%;
    /* Moves across the button */
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0.7s ease-out;
}

/* Ripple Effect on Hover */
/* .know-more-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
} */
.know-more-link {
    position: relative;
    /* Required for pseudo-elements */
    display: inline-block;
    /* Makes the link behave like a button */
    text-decoration: none;
    /* Removes underline */
    background-color: #007bff;
    /* Button background color */
    color: #fff;
    /* Text color */
    padding: 12px 24px;
    /* Button padding */
    font-size: 16px;
    /* Font size */
    font-weight: bold;
    /* Makes text bold */
    text-transform: uppercase;
    /* Uppercase text */
    border-radius: 4px;
    /* Rounded corners */
    transition: all 0.3s ease;
    /* Smooth hover effect */
    overflow: hidden;
    /* Ensures the click effect stays within bounds */
}

.know-more-link::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    /* Light effect color */
    border-radius: 50%;
    /* Makes it a circle */
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.4s ease;
    opacity: 0;
    /* Initially invisible */
}

.know-more-link:active::after {
    width: 200px;
    /* Expand to create ripple effect */
    height: 200px;
    opacity: 0.5;
    /* Visible during the effect */
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

.know-more-link:hover {
    background-color: #0056b3;
    /* Darker shade on hover */
    color: #fff;
    /* Keeps text visible */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Subtle shadow effect */
}

.know-more-link:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.5);
    /* Accessible focus ring */
}

.know-more-button:hover::after {
    width: 200%;
    height: 200%;
    opacity: 0.1;
}

/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 370px;
    background: var(--bs-white);
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00b4b6;
}

.feature .feature-item .feature-icon i {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
    transform: rotate(360deg);
}

.feature .feature-item a.btn {
    transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
    color: var(--bs-primary) !important;
}

/*** Features End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px;
    margin-left: 30px;
}

.beniftsimg {
    height: 550px;
    width: 100%;
    object-fit: cover;
}

.about {
    position: relative;
    padding: 40px;
    background: #f9f9f9;
    /* Subtle background for contrast */
    border-radius: 20px;
    /* Soft corners for the section */
    overflow: hidden;
    /* Clip any overflowing content */

}

.about .about-img {
    position: relative;
    width: 100%;
    height: 300px;
    /* Fixed height for the image container */
    background: url('your-image.jpg') center/cover no-repeat;
    /* Replace 'your-image.jpg' */
    border-radius: 20px;
    /* Rounded corners for the image */

}

.about .about-img::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6c63ff, #007bff);
    /* Gradient blob */
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    /* Gentle floating animation */
}

/* Top-right decorative bubble */
.about .about-img::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6c63ff, #007bff);
    /* Gradient blob */
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    /* Gentle floating animation */
}

/* Bottom-left decorative bubble */
.about .about-img::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: #00B4B6;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    animation: float-reverse 6s ease-in-out infinite;
    /* Reverse floating animation */
}

/* Top-left additional bubble */
.about .about-img .bubble-top-left {
    content: "";
    position: absolute;
    top: -50px;
    left: 50px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6a85d5, #8fd3f4);
    /* Gradient blob */
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    animation: float-diagonal 8s ease-in-out infinite;
    /* New animation */
}

/* Bottom-right additional bubble */
.about .about-img .bubble-bottom-right {
    content: "";
    position: absolute;
    bottom: -40px;
    right: 40px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    /* Gradient blob */
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    animation: float-diagonal-reverse 8s ease-in-out infinite;
    /* New animation */
}

/* Experience badge */
.about .about-img .about-exp {
    position: absolute;
    bottom: 41px;
    left: 20px;
    background: #fff;
    color: #333;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    /* Depth for badge */
    z-index: 2;
    /* Ensure it's above blobs */
    transform: rotate(0deg);
    /* Slight tilt for fun */
}


/* ph image style */


/* .about .ph-image::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6c63ff, #007bff); 
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    animation: float 6s ease-in-out infinite; 
  } */
/* Top-right decorative bubble */
/* .about .ph-image::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6c63ff, #007bff); 
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    animation: float 6s ease-in-out infinite; 
  } */

/* Bottom-left decorative bubble */
.about .ph-image::after {
    content: "";
    position: absolute;
    bottom: 53px;
    left: 60px;
    width: 120px;
    height: 120px;
    background: #00B4B6;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    animation: float-reverse 6s ease-in-out infinite;
}

/* Top-left additional bubble */
.about .ph-image .bubble-top-left {
    content: "";
    position: absolute;
    top: -50px;
    left: 50px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6a85d5, #8fd3f4);
    /* Gradient blob */
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    animation: float-diagonal 8s ease-in-out infinite;
    /* New animation */
}

/* Bottom-right additional bubble */
.about .ph-image .bubble-bottom-right {
    content: "";
    position: absolute;
    bottom: -40px;
    right: 40px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    /* Gradient blob */
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    animation: float-diagonal-reverse 8s ease-in-out infinite;
    /* New animation */
}

/* Experience badge */
.about .ph-image .about-exp {
    position: absolute;
    bottom: 68px;
    left: 97px;
    background: #fff;
    color: #333;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transform: rotate(0deg);
}


/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-10px) translateX(10px);
    }
}

@keyframes float-reverse {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(10px) translateX(-10px);
    }
}

@keyframes float-diagonal {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(15px) translateX(-15px);
    }
}

@keyframes float-diagonal-reverse {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-15px) translateX(15px);
    }
}

/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: 230px;
    background: #00b4b6;
    color: #fff;
}


.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: #00b4b6;
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
    font-size: 18px;
}

.service-item:hover .service-content a:hover {
    color: var(--bs-white);
}

.service-item:hover .service-content p {
    color: var(--bs-white);
}

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #001442c9;
    transition: 0.5s;
}

.service-item .service-btn.btn1 {
    background: #004aad !important;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}

.table1-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-table1 {
    background-color: #fff;
    border-collapse: separate;
    border-spacing: 2px;
}

.custom-table1 th,
.custom-table1 td {
    background-color: #e6e6fa;
    padding: 15px;
    color: rgba(0, 0, 0, 0.87);
    vertical-align: middle;
}

.custom-table1 th {
    font-weight: 500;
    font-size: 1.2rem;
}

.model-name {
    color: navy;
    font-weight: bold;
}

.model-green {
    color: #008000;
    font-weight: bold;
}

.model-price {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .custom-table1 {
        font-size: 0.9rem;
    }

    .custom-table1 th {
        font-size: 1rem;
    }

    .model-price {
        font-size: 1rem;
    }
}

/*** Service End ***/


/*** Counter Start ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/water-drop\ \(1\).jpg);
}

.footer .footer-item a {
    line-height: 35px;
    color: #fff;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 28px;
    text-align: justify;
    color: #fff;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/


.btn-primary {
    color: #000;
    background-color: #00B4B6;
    border-color: #00b4b6;
}

.text-primary {
    color: #00B4B6 !important;
    font-size: 17px;
}

.water-is-life {
    font-size: 27px;
}

/* .contact {
    border-right: 2px solid #ccc; 
    margin-left: 15px;          
    padding-right: 20px;         
    height: 100%;                
    display: flex;                
    flex-direction: column;   
    align-items: flex-start;      
} */
.request-free {
    border-radius: 0px !important;
}

.text-body {
    color: #00b4b6 !important;
    font-size: 18px;
}

.sticky.active .text-body {
    color: black !important;
}

.display-3 {
    font-size: 2.5rem !important;
    font-family: 'Poppins', sans-serif !important;
    color: #002C8F !important;
}

.life-heading {

    font-size: 1.4rem !important;


}

.fa-3x {
    font-size: 2em !important;
}

.feature .feature-item .feature-icon {
    width: 70px;
    height: 70px;

}

.reminaralaize img {
    height: 500px !important;
    object-fit: cover !important;

}

.proplus .proplus {
    height: 495px;
    object-fit: cover;
}

.proplus .natural {
    width: 100px;
    margin-top: 30px;
}

.proplus .natural2 {
    width: 400px;
    margin-top: 30px;


}

.circle-bg {
    background: #00b4b6;
}

.footer-item img {
    width: 200px;
    margin-top: -15px;
    background: #02267c;
    margin-bottom: 20px;
}

.advantages img {
    width: 100px;
    height: 380px;
    object-fit: cover;
}

.big-image img {
    width: 50%;
    height: 550px;
    object-fit: cover;
}

.service-item2 {
    height: 180px;

}

.last-section img {
    width: 70%;
    height: 700px;
    object-fit: cover;
}

.footer-item h4 {
    color: #00fbff;
    font-weight: bold;

}

/* bubble animation//////////////////////////////// */
.contact-img {
    position: relative;
}

/*.contact-img::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 292px;*/
/*    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;*/
/*    background: rgba(164, 244, 255, 0.9);*/
/*    z-index: 1;*/
/*    animation-name: image-efects;*/
/*    animation-duration: 10s;*/
/*    animation-delay: 1s;*/
/*    animation-iteration-count: infinite;*/
/*    animation-direction: alternate;*/
/*    transition: 0.5s;*/
/*}*/

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

.quote {

    color: #02267c;

}

ul {
    list-style: none;
    /* Remove default bullet points */
    padding-left: 20px;
}

ul li {
    position: relative;
    margin-bottom: 10px;

    line-height: 35px;
    padding-left: 25px;
    font-size: 20px;
    /* Space for the water drop */

}



ul li::before {
    content: "💧";
    /* Water drop Unicode character */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    /* Adjust size as needed */
    color: #00bfff;
    /* Adjust water drop color */
}

/* Responsive Layout */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }
}

.product {
    color: #333;
    font: 100% Lato, Arial, Sans Serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#background-wrap {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: -1;
}

/* KEYFRAMES */

@-webkit-keyframes animateBubble {
    0% {
        margin-top: 1000px;
    }

    100% {
        margin-top: -100%;
    }
}

@-moz-keyframes animateBubble {
    0% {
        margin-top: 1000px;
    }

    100% {
        margin-top: -100%;
    }
}

@keyframes animateBubble {
    0% {
        margin-top: 1000px;
    }

    100% {
        margin-top: -100%;
    }
}

@-webkit-keyframes sideWays {
    0% {
        margin-left: 0px;
    }

    100% {
        margin-left: 50px;
    }
}

@-moz-keyframes sideWays {
    0% {
        margin-left: 0px;
    }

    100% {
        margin-left: 50px;
    }
}

@keyframes sideWays {
    0% {
        margin-left: 0px;
    }

    100% {
        margin-left: 50px;
    }
}


.slide {
    width: 100vw;
    /* Full width of the viewport */
    overflow: hidden;
    /* Ensure no extra content overflows */
}

.slide img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}









.carousel-body {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.carousel {
    overflow: hidden;
    width: 100%;

}

.wrap {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 250px;
    justify-items: stretch;
    animation: slide 30s linear infinite;
    animation-play-state: running;
}

.wrap img {
    width: 200px;
    height: 250px;
    border-radius: 5px;
    object-fit: cover;
    gap: 20px;
    margin: 10px;

}

@keyframes slide {
    to {
        translate: calc(-4 * 250px);

    }

}

.carousel:hover .wrap {
    animation-play-state: paused;
}


/* .products-images {
    background-image: url('./img/background.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    width: 100%; 
    height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; 
  } */
.products-images {
    padding: 20px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.products-images img {
    height: 400px;
    margin-left: 140px;
}

.products-images2 img {
    height: 500px;
    margin-top: -80px;
    z-index: 2;
    margin-left: -60px;
}

.quality {
    width: 141px;
    height: 255px !important;
    object-fit: contain;
    z-index: 5;
    margin-right: -82px;
    margin-top: 20px;
    margin-bottom: -60px;
}

/* .products-images img:first-of-type {
    height: 400px; 
  }
  .products-images img:nth-of-type(2) {
    height: 600px; 
  } */

/* Adjust the images to be fully responsive */
/* @media (max-width: 768px) {
    .contact-img-inner {
        flex-direction: row;
        /* Stack images horizontally on smaller screens 
justify-content: space-between;
}

.w-80 {
    width: 48%;
    /* Adjust image width for mobile */



.advantage {
    font-size: 28px !important;
}

/* Section Styling */
.elite-blueocean-section {
    background-color: #f4f8fa;
    padding: 60px 0;
}

.elite-blueocean-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.elite-blueocean-section .section-title {

    font-size: 2.5rem !important;
    font-family: 'Poppins', sans-serif;
    color: #002C8F;
    align-items: center;
    text-align: center;

}

.elite-blueocean-section .section-subtitle {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}





.elite-blueocean {
    margin: 50px 30px 50px 60px;
    padding: 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #002C8F
}

.section-title p {
    font-size: 1.9rem;
    color: #333333;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.price-list-table {
    width: 60%;
    border-collapse: collapse;
}

.price-list-table th,
.price-list-table td {
    padding: 10px;
    text-align: left;
    color: #333333;
    font-weight: 520;
    font-size: 19px;
}

.price-list-table th {
    background-color: #00000018;
    font-weight: bold;
}

.price-list-table th:hover {
    background-color: #00B4B6;
    color: white;
}

.price-list-table td:hover {
    background-color: #00B4B6;
    color: white;
}


.contact-info {
    width: 35%;
}

.contact-info h4 {
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.1rem;
}



.contact-info a:hover {
    text-decoration: underline;
}

.contact-info {
    width: 35%;
}

.contact-info h4 {
    font-family: 'Poppins', sans-serif !important;
    color: #002C8F !important
}

.contact-info p {
    font-size: 20px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.contact-info a:hover {
    text-decoration: underline;
}

.delivery-info i,
.enquiry-info i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #007bff;
}

.delivery {
    font-size: 19px;
}

/* Button Style for Enquiry */
.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00B4B6;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #002C8F;
}

.WhatsApp {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.WhatsApp:hover {
    color: #1053299f;

}

.contact-btn:focus {
    outline: none;
    box-shadow: 0 0 5px #28a745;
}

/* Delivery Icon */
.delivery-info i {
    color: #17a2b8;
}

/* Enquiry Icon */
.enquiry-info i {
    color: #17a2b8;
}

.contact-info {
    background-color: #f8f9fa;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    padding-bottom: 40px;
}

.warranty-info {
    background-color: #f8f9fa;
    /* Light background color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* margin: 20px 0;  */
}

.warranty-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    /* Add some gap between text and image */
}

.warranty-details {
    flex: 1;
    text-align: left;
}

.warranty-details h4 {
    font-size: 1.75rem;
    color: #002C8F;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    padding-left: 26px;
}

.warranty-details h4 i {
    margin-right: 10px;
    font-size: 1.6rem;
    /* Icon size */
}

.warranty-details ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.warranty-details li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    justify-content: left;
    align-items: center;

    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.warranty-details li::before {
    content: "";
}

.warranty-details li i {
    color: #28a745;
    /* Green check icon */
    margin-right: 15px;
    font-size: 1.3rem;
}

.warranty-details li:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    cursor: pointer;
}

.warranty-details li:hover i {
    color: #218838;
    /* Darker green for the icon on hover */
}

.warranty-image {
    flex: 1;
    max-width: 300px;
}

.warranty-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product1 {
    margin-left: 5px;
}

.product-page-card {
    width: 300px;
    height: 350px;
    border-radius: 5px;
}

.product-page-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abot-card {
    background-color: #00B4B6;
    color: #fff;
    font-size: 18px;
}

.abt-para {
    font-size: 18px;
}

@media (max-width: 768px) {
    .warranty-info h4 {
        font-size: 1.3rem;
    }

    .warranty-info li {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        width: 100%;
        margin-top: 30px;
    }

    .contact-info h4 {
        font-size: 1.2rem;
    }

    .contact-info p {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .price-list-table {
        width: 100%;
    }

    .contact-info {
        width: 100%;
        margin-top: 30px;
    }
}













.lottie-animation {
    width: 600px;
    /* Adjust width as needed */
    height: 600px;
    /* Adjust height as needed */
    margin-left: -90px !important;
}





/* Optional: Adding some responsiveness */
@media (max-width: 768px) {
    .delivery-contact-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .delivery-info,
    .contact-info {
        width: 100%;
        /* Make the sections full width on smaller screens */
        margin-bottom: 15px;
    }
}

.fluid5 {
    max-width: 100%;
    height: 600px;
    width: 632px;
    object-fit: cover;
}




/* privacy policy */

.privacy-policy {
    background-color: #f8f9fa;
    padding: 50px 20px;
}

.privacy-policy .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #002c8f;
    text-align: center;
    margin-bottom: 20px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

.section-title i {
    color: #28a745;
    margin-right: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.policy-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    line-height: 1.8;
}

.policy-content h4 {
    font-size: 1.4rem;
    color: #002c8f;
    margin-bottom: 10px;
}

.policy-content p,
.policy-content ul {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
}

.policy-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.policy-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #28a745;
    margin-right: 10px;
}

.policy-content strong {
    color: #002c8f;
}

.policy-content a {
    color: #28a745;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

.product-page-card {
    margin-bottom: 20px;
    /* Add space below each card */
    text-align: center;
    /* Center content inside the cards */
}

.products-page-section {
    padding: 0px 0 30px 0;
    /* Add top and bottom padding to the section */

}

.product-page-card {
    height: 400px;
    margin: 2px;
    width: 315px;
}

.Product-1 {

    /* background-color: #00B4B6; */
    /* padding: 25px; */
}

.Product-2 {

    /* background-color: #002b8fd5; */
    /* padding: 25px; */
}

.Product-3 {

    /* background-color: #00B4B6; */
    /* padding: 25px; */
}

.Product-4 {

    /* background-color: #002b8fd5; */
    /* padding: 25px; */
}

.phscale {
    height: 350px;
    margin-bottom: 0 !important;
    object-fit: cover;
}

.ph {
    margin-bottom: 0 !important;
}

.delivery img.truck {
    max-width: 150px;
    /* Set a consistent image size */
    margin-right: 10px;
    width: 80px;
}

/* .fw-bold{
    font-size: 18px;
    font-weight: 550 !important;
  } */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.know-more-link {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    /* Necessary for the indicator */
    margin-bottom: 30px;
}

.know-more-link:hover {
    background-color: #0056b3;
    /* border-color: #004080; */
    transform: scale(1.05);
    cursor: pointer;
}

/* Style for the click indicator */
.click-indicator {
    display: block;
    /* Ensure it is visible */
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px;
    font-weight: 600;

    margin-top: 5px;
    text-align: center;
    animation: bounce 1s infinite;
}

/* Bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.address {
    background: #00B4B6 !important;
    color: #fff;
}

.wats {

    color: #fff;

}

.wats:hover {
    color: #002C8F;
}

.email-link {
    color: #fff;
}

.email-link:hover {
    color: #002C8F;

}

.product-banner {
    display: grid;
    /* Enables grid layout */
    place-items: center;
    /* Centers content both vertically and horizontally */


    background-size: cover;

}

.about-banner {
    display: grid;
    /* Enables grid layout */
    place-items: center;
    /* Centers content both vertically and horizontally */


    background-size: cover;
    background-position: center;
}

.contact-banner {
    display: grid;
    /* Enables grid layout */
    place-items: center;
    /* Centers content both vertically and horizontally */

}

.demo-banner {
    display: grid;
    /* Enables grid layout */
    place-items: center;
    /* Centers content both vertically and horizontally */

    background-size: cover;
    background-position: center;
}

.jayam {
    font-size: 12px !important;
    color: gray !important;
    cursor: pointer;
}

.demopage-img img {
    width: 100%;
    max-width: 98%;
    height: 550px;
    object-fit: cover;
    margin-bottom: 10px;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: #00B4B6;
    color: white;
}

.green {
    color: #008000;
    font-weight: 600;
}

.blue {
    color: #007bff;
    font-weight: 600;
}

.price {
    color: #555555;
    font-weight: 600;
}

.model {
    font-weight: 700 !important;
    color: #ffffff;
}

.price-heading {
    color: #0056b3;
}

.card-title {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-size: 21px;
}

.warrenty-section {
    background-color: #00B4B6;
    color: #ffffff;
}

.enquirey-section {
    background-color: #00B4B6;
    color: #ffffff;

}

.warrenty-icon {
    color: #ffffff;
}

.poster1 {
    height: 600px;
    object-fit: cover;
    margin-bottom: 20px;
}

.poster2 {
    height: 550px;
    object-fit: cover;

}


@media (max-width: 768px) {

    .delivery-info,
    .enquiry-info {
        margin-bottom: 20px;
        /* Add spacing between sections on smaller screens */
    }
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important;
    }

    .navbar-collapse.show {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        flex-direction: column !important;
    }

    .d-none.d-xl-flex {
        display: flex !important;
        flex-direction: column;
        margin: 1rem 0;
    }
}

.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}