@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.container {
    max-width: 1447px !important;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0C4D64;
}

a {
    text-decoration: none;

}

ul li {
    list-style-type: none;
}

.padding-space {
    padding: 3rem 0rem;
}

.head-top {
    background: #034153;
    background: linear-gradient(150deg, rgba(3, 65, 83, 1) 7%, rgba(17, 116, 145, 0.94) 42%, rgba(3, 65, 83, 1) 66%, rgba(0, 188, 242, 1) 95%);
    color: white;
}

.head-top p {
    margin-bottom: 0px !important;
}

/* button css */
.btn {
    background: #0C4D64;
    color: #fff;
}

.btn:hover {
    border: 1px solid #0C4D64;
}


/* From Uiverse.io by adeladel522 */
.button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: #00BDFD;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
}

.button a {
    color: #fff;
}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    transform: scale(1.05);
    border-color: #fff9;
    background: #0C4D64;
}

.button:hover .icon {
    transform: translate(4px);
}

.button:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

/* Main navbar links */
.navbar-nav .nav-link {
    position: relative;
    color: #000;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #034153 !important;
}

.navbar-nav>.nav-item>.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #034153;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: #034153 !important;
}

/* Dropdown show on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Dropdown items */
.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #034153 !important;
}

/* Footer Column Alignment */
.col-lg-3>div {
    text-align: left;
}

.footer {
    background: #034153;
    background: linear-gradient(150deg, rgba(3, 65, 83, 1) 7%, rgba(17, 116, 145, 0.94) 42%, rgba(3, 65, 83, 1) 66%, rgba(0, 188, 242, 1) 95%);
    color: white;
}

/* H5 Underline Effect */
.footer h5 {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: left;
    margin-bottom: 15px;
}

.footer h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.4s ease;
}

.footer h5:hover::after {
    width: 100%;
}

.footer ul {
    padding-left: 0;
    margin-left: 0;
    list-style: none;
}

.footer ul li {
    text-align: left;
    justify-content: flex-start;
}

.footer ul li a {
    text-align: left;
    color: white;
}

.footer ul li a:hover {
    color: #034153;
}

/* template1 css*/
.about-water {
    background: linear-gradient(304deg, rgb(176 228 243) 7%, rgb(218 237 243 / 75%) 42%, rgb(197 241 255 / 43%) 66%, rgb(209 243 253) 95%);
    overflow: hidden;
}

.img-fluid {
    max-width: 85% !important;
    height: auto;
    border-radius: 10px;
}

/* Image Animation */
.image-wrapper {
    opacity: 0;
    transform: translateX(-150px);
    animation: slideLeft 1.5s ease forwards;
}

/* Content Animation */
.content-box {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.5s ease forwards;
    animation-delay: .4s;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*why Choose us css */

.feature-section {
    background: #fff;
}

.feature-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 30px 25px 25px 95px;
    min-height: 120px;
    transition: .4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    background: #f0f9fb;
}

.feature-icon {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 60px;
    height: 60px;
    background: #f7f7f7;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ed8f8;
    font-size: 28px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.feature-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.feature-content p {
    font-size: 15px;
    color: #777;
    margin: 0;
    line-height: 1.7;
}

/* Mobile */
@media(max-width:767px) {
    .feature-card {
        padding: 25px 20px 25px 90px;
    }
}

/* review css */

.review-subtitle {
    color: #1B8ECD;
    font-weight: 700;
    letter-spacing: 2px;
}

.review-card {
    max-width: 800px;
    margin: 0.5rem auto;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.review-stars {
    color: #ffc107;
    font-size: 24px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.review-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.review-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user h5 {
    margin: 0;
    font-weight: 600;
}

.review-user span {
    color: #777;
    font-size: 14px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #1165AB;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    background-size: 50%;
}

@media(max-width:768px) {

    .review-card {
        padding: 30px 20px;
    }

    .review-title {
        font-size: 22px;
    }

    .review-text {
        font-size: 14px;
    }
}

/* product-slide */
.product-card {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-image img {
    object-fit: fill;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.04);
}

.product-info {
    color: #000 !important;
}

/* gallery css */

.gallerySwiper .swiper-slide img:hover {
    transform: scale(1.05);
}

.gallerySwiper {
    padding-bottom: 30px;
}

/* product-page css */
.product {
    border: 1px solid white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product:hover {
    transform: translateY(2px) scale(1.03);
    box-shadow: -1px 2px 8px 11px rgb(43 51 43 / 7%);

}

.product-img {
    overflow: hidden;
    border-radius: 10px;
}

.product-img img {
    width: 100%;
    object-fit: fill;
    transition: transform 0.7s ease;
}

.product-img:hover img {
    transform: scale(1.15);
}

.card-title {
    color: #034153;
    font-size: 18px;
}


/* product-details popup */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

.custom-search:focus {
    border-color: #1165AB;
    box-shadow: none;
}

/* breadcrumb css */
.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    font-size: 18px;
    color: #999;
}

.breadcrumb-item a {
    color: #00BDFD;
}

/* FAQs  */
.accordion-button {
    font-weight: 600;
    color: #034153;
}

.accordion-button:not(.collapsed) {
    color: #110f0f;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #034153;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

/* blog page */
.blog-slider {
    background: linear-gradient(304deg, rgb(176 228 243) 7%, rgb(218 237 243 / 75%) 42%, rgb(197 241 255 / 43%) 66%, rgb(209 243 253) 95%);
}

.blog-banner {
    color: #034153;
    background: linear-gradient(304deg, rgb(176 228 243) 7%, rgb(218 237 243 / 75%) 42%, rgb(197 241 255 / 43%) 66%, rgb(209 243 253) 95%);
}

.card-img-top {
    height: 315px;
    object-fit: fill;
}


.card {
    transition: 0.4s;
    background: #e5f8fd99;
}

.card:hover {
    transform: translateY(-8px);
}

.card-body a {
    transition: 0.3s;
}

.card-body a:hover {
    color: #0C4D64 !important;
}

/* about us */
.about-img {
    transition: all 0.5s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
}

/* Gallery */

.gallery img {
    object-fit: fill;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 11px 1px rgb(0 0 0 / 39%);
    transition: all 0.5s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}
@media screen and (max-width: 600px) {
 .title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0C4D64;
}
}
