
/*** Spinner Start ***/
/*** Spinner ***/
#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: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}
/*** Topbar Start ***/

/*** Navbar ***/
/* ================= NAVBAR ================= */

/* ================= NAVBAR ================= */

.navbar {
    padding: 0 20px;
    min-height: 78px;
}

/* LOGO */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 20px;
}

.navbar-brand img {
    height: 52px;
    max-height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: 0.5s;
}

/* STICKY NAVBAR LOGO */
.sticky-top.navbar-light .navbar-brand img {
    height: 52px !important;
    max-height: 52px !important;
}

/* NAV LINKS */
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 22px;
    padding: 28px 0;
    color: var(--bs-dark);
    font-size: 16px;
    font-weight: 500;
    transition: .5s;
}

/* STICKY NAV LINKS */
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 28px 0;
    color: var(--bs-dark);
}

/* HOVER */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

/* DROPDOWN ICON */
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-left: 8px;
}

/* DROPDOWN */
.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;
}

/* ================= MOBILE ================= */
@media (max-width: 991.98px) {
    .navbar {
        padding: 8px 16px;
        min-height: auto;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .navbar-brand img {
        height: 42px;
        max-height: 42px;
    }

    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-toggler {
        padding: 8px 16px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
        box-shadow: none;
    }

    .navbar-light .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid rgba(0,0,0,.08);
        background: #fff;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        gap: 0;
    }

    .navbar-light .navbar-nav .nav-item {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0 !important;
        margin-right: 0;
        line-height: 1.4;
        color: var(--bs-dark);
        font-size: 16px;
    }

    .navbar-light .dropdown-menu {
        border: 0;
        box-shadow: none;
        padding: 5px 0 5px 15px;
        background: transparent;
    }
}

/* ================= DESKTOP ================= */
@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: relative;
        width: 100%;
        background: var(--bs-white);
        border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        top: 0;
        width: 100%;
        background: var(--bs-white);
        border: none;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .navbar-light .navbar-nav .nav-item::before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .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-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 {
        opacity: 1;
    }
}

/* REMOVE EXTRA TOP GAP */
body {
    padding-top: 0;
}
/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.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;
    top: 50%;
    transform: translateY(-50%);
    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;
}

.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;
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** 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.7)), url(../img/breadcrumb.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/

/*** About Section Start ***/
/*** About Section Start ***/
.about-section {
    position: relative;
    background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(0, 183, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.about-section::after {
    content: "";
    position: absolute;
    bottom: -110px;
    left: -110px;
    width: 260px;
    height: 260px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 50%;
    z-index: 0;
}

.about-row {
    align-items: stretch !important;
}

.about-image-wrap,
.about-content {
    position: relative;
    z-index: 1;
    height: 100%;
}

.about-image-wrap {
    padding: 14px;
    display: flex;
}

.about-image-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 94%;
    height: 100%;
    border: 3px solid #15c8f3;
    border-radius: 34px;
    z-index: 0;
    animation: floatShape 4s ease-in-out infinite;
}

.about-img {
    min-height: 100%;
    width: 100%;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
    z-index: 1;
}

.about-main-img {
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-img:hover .about-main-img {
    transform: scale(1.08);
}

.about-exp {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, #0b53c1, #14bff2);
    color: #fff;
    padding: 14px 24px;
    border-radius: 18px;
    font-size: 23px;
    font-weight: 700;
    z-index: 2;
    animation: pulseSoft 3s infinite;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    color: #0b53c1;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    z-index: 2;
    animation: floatBadge 3.5s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-badge i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14c8f3, #0d6efd);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-one {
    bottom: 25px;
    left: 20px;
}

.badge-two {
    top: 120px;
    right: 20px;
    animation-delay: 1s;
}

.about-content {
    background: linear-gradient(180deg, #ffffff 0%, #f9fdff 100%);
    border-radius: 32px;
    padding: 34px 30px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-tag {
    display: inline-block;
    background: rgba(20, 191, 242, 0.12);
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
    width: fit-content;
}

.about-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #0b1f4d;
}

.about-title span {
    color: #16c7f3;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #6c757d;
    max-width: 95%;
}

.about-mini-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(13, 202, 240, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 110px;
}

.about-mini-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.14);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #15c8f3, #0d6efd);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-mini-card h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: #0b1f4d;
}

.about-mini-card p {
    margin: 4px 0 0;
    color: #6c757d;
    font-weight: 500;
}

.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-feature-card {
    background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 22px;
    display: flex;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(13, 202, 240, 0.08);
    transition: all 0.4s ease;
}

.about-feature-card:hover {
    background: #ffffff;
    transform: translateX(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #15c8f3, #0d6efd);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.22);
}

.feature-content h4 {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #0b1f4d;
}

.feature-content p {
    margin-bottom: 0;
    color: #6c757d;
    line-height: 1.7;
    font-size: 15px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0b53c1, #15bdf1);
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(13, 71, 161, 0.22);
    width: fit-content;
}

.about-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(13, 71, 161, 0.30);
}

/* Animations */
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, 8px); }
}

@keyframes pulseSoft {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(13, 71, 161, 0.25);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 16px 35px rgba(13, 71, 161, 0.35);
    }
}

/* Responsive */
@media (max-width: 1199.98px) {
    .about-img {
        min-height: 620px;
    }
}

@media (max-width: 991.98px) {
    .about-title {
        font-size: 38px;
    }

    .about-image-wrap,
    .about-content {
        height: auto;
    }

    .about-img {
        min-height: 500px;
    }

    .about-content {
        padding: 28px 24px;
    }

    .feature-content h4 {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .about-title {
        font-size: 30px;
    }

    .about-text {
        font-size: 16px;
        max-width: 100%;
    }

    .about-img {
        min-height: 400px;
    }

    .about-exp {
        font-size: 18px;
        padding: 10px 18px;
        top: 15px;
        left: 15px;
    }

    .floating-badge {
        font-size: 13px;
        padding: 10px 14px;
    }

    .floating-badge i {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        font-size: 20px;
    }

    .about-feature-card {
        padding: 18px;
        align-items: flex-start;
    }

    .about-content {
        border-radius: 24px;
        padding: 22px 18px;
    }
}
/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    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;
}

.service-item:hover .service-content a:hover {
    color: var(--bs-secondary);
}

.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: var(--bs-primary);
    transition: 0.5s;
}

.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;
}
/*** Service End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--bs-primary);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.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 ***/

/* why choiose us  */

/*** Why Choose Us Start ***/
.why-choose-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
    overflow: hidden;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: rgba(13, 202, 240, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.why-choose-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 260px;
    height: 260px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 50%;
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.why-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(13, 202, 240, 0.12);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0b1f4d;
    margin-bottom: 0;
}

.why-title span {
    color: #0dcaf0;
}

.why-text {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(13, 202, 240, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 24px;
    min-height: 180px;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(13, 110, 253, 0.14);
}

.why-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.22);
}

.why-card-content h4 {
    font-size: 26px;
    font-weight: 700;
    color: #0b1f4d;
    margin-bottom: 10px;
}

.why-card-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
}

.why-center-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    height: 100%;
    min-height: 520px;
    border: 4px solid rgba(13, 202, 240, 0.3);
    animation: floatImage 4s ease-in-out infinite;
}

.why-center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-center-image:hover img {
    transform: scale(1.06);
}

.why-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #0d47a1;
    padding: 14px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    white-space: nowrap;
}

.why-floating-badge i {
    color: #0dcaf0;
    font-size: 20px;
}

/* animation */
@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* responsive */
@media (max-width: 991.98px) {
    .why-title {
        font-size: 38px;
    }

    .why-center-image {
        min-height: 420px;
        margin: 10px 0 20px;
    }

    .why-card {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .why-title {
        font-size: 30px;
    }

    .why-text {
        font-size: 16px;
    }

    .why-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 22px;
    }

    .why-card-content h4 {
        font-size: 22px;
    }

    .why-center-image {
        min-height: 340px;
    }

    .why-floating-badge {
        padding: 10px 16px;
        font-size: 13px;
        bottom: 16px;
    }
}

/* why choose us end  */

/*** Our Journey Start ***/
.journey-section {
    position: relative;
    background: linear-gradient(180deg, #f8fdff 0%, #ffffff 100%);
    overflow: hidden;
}

.journey-section::before {
    content: "";
    position: absolute;
    top: -90px;
    left: -90px;
    width: 240px;
    height: 240px;
    background: rgba(13, 202, 240, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.journey-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 50%;
    z-index: 0;
}

.journey-section .container {
    position: relative;
    z-index: 1;
}

.journey-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(13, 202, 240, 0.12);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.journey-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    color: #0b1f4d;
    margin-bottom: 0;
}

.journey-title span {
    color: #0dcaf0;
}

.journey-text {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.journey-step {
    position: relative;
    margin-bottom: 28px;
}

.journey-year {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0d47a1, #1e88e5);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(13, 71, 161, 0.25);
}

.journey-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 170px;
    border: 1px solid rgba(13, 202, 240, 0.08);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.journey-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #0dcaf0, #0d6efd);
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(13, 110, 253, 0.14);
}

.journey-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.22);
}

.journey-card h4 {
    font-size: 26px;
    font-weight: 700;
    color: #0b1f4d;
    margin-bottom: 10px;
}

.journey-card p {
    margin: 0;
    color: #6c757d;
    line-height: 1.8;
    font-size: 16px;
}

.journey-center {
    position: relative;
}

.journey-image-wrap {
    position: relative;
    min-height: 560px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
    border: 4px solid rgba(13, 202, 240, 0.28);
    animation: journeyFloat 4s ease-in-out infinite;
}

.journey-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.journey-image-wrap:hover img {
    transform: scale(1.07);
}

.journey-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #0d47a1;
    padding: 14px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.journey-badge i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-stat-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(13, 202, 240, 0.08);
    transition: all 0.4s ease;
}

.journey-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(13, 110, 253, 0.14);
}

.journey-stat-card h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0b1f4d;
}

.journey-stat-card p {
    margin: 0;
    color: #6c757d;
    font-size: 17px;
    font-weight: 500;
}

@keyframes journeyFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .journey-title {
        font-size: 38px;
    }

    .journey-image-wrap,
    .journey-image-wrap img {
        min-height: 420px;
    }

    .journey-center {
        margin: 10px 0 20px;
    }

    .journey-card {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .journey-title {
        font-size: 30px;
    }

    .journey-text {
        font-size: 16px;
    }

    .journey-card {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .journey-card h4 {
        font-size: 22px;
    }

    .journey-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 22px;
        border-radius: 16px;
    }

    .journey-image-wrap,
    .journey-image-wrap img {
        min-height: 340px;
    }

    .journey-badge {
        padding: 10px 16px;
        font-size: 13px;
        bottom: 16px;
    }

    .journey-badge i {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .journey-stat-card h2 {
        font-size: 34px;
    }
}

.service-section {
    background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.service-tag {
    display: inline-block;
    background: rgba(20, 191, 242, 0.12);
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 30px;
}

.service-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0b1f4d;
}

.service-title span {
    color: #16c7f3;
}

.service-text {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(13, 202, 240, 0.08);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 42px rgba(13, 110, 253, 0.14);
}

.service-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #15c8f3, #0d6efd);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.22);
}

.service-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0b1f4d;
    margin-bottom: 14px;
}

.service-card p {
    margin: 0;
    color: #6c757d;
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 991.98px) {
    .service-title {
        font-size: 38px;
    }
}

@media (max-width: 767.98px) {
    .service-title {
        font-size: 30px;
    }

    .service-text {
        font-size: 16px;
    }

    .service-card {
        padding: 24px 18px;
    }

    .service-card h4 {
        font-size: 21px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }
}

/* Water Plant Services */
.water-plant-section {
    position: relative;
    background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
    overflow: hidden;
}

.water-plant-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: rgba(21, 200, 243, 0.08);
    border-radius: 50%;
}

.water-plant-section::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 50%;
}

.water-plant-content,
.water-plant-image-wrap {
    position: relative;
    z-index: 1;
}

.water-plant-tag {
    display: inline-block;
    background: rgba(20, 191, 242, 0.12);
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 30px;
}

.water-plant-title {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
    color: #0b1f4d;
}

.water-plant-title span {
    color: #16c7f3;
}

.water-plant-text {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    max-width: 95%;
}

.water-plant-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.water-plant-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 22px;
    padding: 22px 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(13, 202, 240, 0.08);
    transition: all 0.4s ease;
}

.water-plant-item:hover {
    transform: translateX(10px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.14);
}

.water-plant-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #15c8f3, #0d6efd);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.water-plant-item h5 {
    font-size: 22px;
    font-weight: 700;
    color: #0b1f4d;
    margin-bottom: 8px;
}

.water-plant-item p {
    margin: 0;
    color: #6c757d;
    line-height: 1.7;
    font-size: 15px;
}

.water-plant-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0b53c1, #15bdf1);
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(13, 71, 161, 0.22);
}

.water-plant-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(13, 71, 161, 0.30);
}

.water-plant-image-wrap {
    position: relative;
    padding: 12px;
}

.water-plant-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 94%;
    height: 100%;
    border: 3px solid #15c8f3;
    border-radius: 30px;
    z-index: 0;
    animation: waterPlantFloat 4s ease-in-out infinite;
}

.water-plant-image {
    position: relative;
    min-height: 560px;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.10);
    z-index: 1;
}

.water-plant-image img {
    object-fit: cover;
    transition: transform 0.7s ease;
}

.water-plant-image:hover img {
    transform: scale(1.08);
}

.plant-badge {
    position: absolute;
    background: #fff;
    color: #0b53c1;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    z-index: 2;
    animation: waterPlantBadgeFloat 3.5s ease-in-out infinite;
}

.plant-badge i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #15c8f3, #0d6efd);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-top {
    top: 25px;
    left: 25px;
}

.badge-bottom {
    bottom: 25px;
    right: 25px;
    animation-delay: 1s;
}

@keyframes waterPlantFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(8px, 8px);
    }
}

@keyframes waterPlantBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991.98px) {
    .water-plant-title {
        font-size: 38px;
    }

    .water-plant-image {
        min-height: 450px;
    }
}

@media (max-width: 767.98px) {
    .water-plant-title {
        font-size: 30px;
    }

    .water-plant-text {
        font-size: 16px;
        max-width: 100%;
    }

    .water-plant-image {
        min-height: 360px;
    }

    .water-plant-item {
        padding: 18px;
    }

    .water-plant-item h5 {
        font-size: 20px;
    }

    .water-plant-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 20px;
    }

    .plant-badge {
        font-size: 13px;
        padding: 10px 14px;
    }

    .plant-badge i {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

/* RO SERVICE SECTION */
.ro-service-section {
    background: linear-gradient(180deg, #f4fbff, #ffffff);
    position: relative;
}

/* Heading */
.ro-tag {
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.ro-title {
    font-size: 48px;
    font-weight: 800;
    color: #0b1f4d;
}

.ro-title span {
    color: #16c7f3;
}

.ro-text {
    color: #6c757d;
    font-size: 17px;
}

/* IMAGE */
.ro-image-wrap {
    position: relative;
    padding: 10px;
}

.ro-shape {
    position: absolute;
    width: 95%;
    height: 100%;
    border: 3px solid #16c7f3;
    border-radius: 30px;
    animation: float 4s ease-in-out infinite;
}

.ro-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
}

.ro-image img {
    transition: 0.6s;
}

.ro-image:hover img {
    transform: scale(1.08);
}

/* BADGES */
.ro-badge {
    position: absolute;
    background: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    animation: floatY 3s infinite;
}

.ro-badge.top { top: 20px; left: 20px; }
.ro-badge.bottom { bottom: 20px; right: 20px; }

/* CARDS */
.ro-card {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.ro-card:hover {
    transform: translateX(10px);
    box-shadow: 0 18px 40px rgba(13,110,253,0.15);
}

.ro-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#16c7f3,#0d6efd);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 22px;
}

/* BUTTON */
.ro-btn {
    background: linear-gradient(135deg,#0d6efd,#16c7f3);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.ro-btn:hover {
    transform: translateY(-3px);
}

/* ANIMATION */
@keyframes float {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(8px,8px); }
}

@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* MOBILE */
@media (max-width: 768px) {
    .ro-title { font-size: 30px; }
    .ro-card { flex-direction: column; }
}
/* dommsectic section ednd  */

/* Installation Process Section */
.install-process-section {
    position: relative;
    background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
    overflow: hidden;
}

.install-process-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: rgba(21, 200, 243, 0.08);
    border-radius: 50%;
}

.install-process-section::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 50%;
}

.install-process-section .container {
    position: relative;
    z-index: 1;
}

.install-tag {
    display: inline-block;
    background: rgba(20, 191, 242, 0.12);
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 30px;
}

.install-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0b1f4d;
}

.install-title span {
    color: #16c7f3;
}

.install-text {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.install-card {
    position: relative;
    background: #ffffff;
    border-radius: 26px;
    padding: 32px 24px 26px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(13, 202, 240, 0.08);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    overflow: hidden;
}

.install-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 42px rgba(13, 110, 253, 0.14);
}

.install-number {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 22px;
    font-weight: 800;
    color: rgba(13, 110, 253, 0.14);
}

.install-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #15c8f3, #0d6efd);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.22);
    animation: installFloat 3.5s ease-in-out infinite;
}

.install-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0b1f4d;
    margin-bottom: 12px;
}

.install-card p {
    margin: 0;
    color: #6c757d;
    line-height: 1.8;
    font-size: 15px;
}

.install-highlight {
    margin-top: 45px;
    background: linear-gradient(135deg, #0b53c1, #15bdf1);
    border-radius: 30px;
    padding: 35px 30px;
    color: #fff;
    box-shadow: 0 18px 36px rgba(13, 71, 161, 0.20);
}

.install-highlight h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.install-highlight p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

.install-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #0b53c1;
    padding: 15px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
}

.install-btn:hover {
    color: #0b53c1;
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(255,255,255,0.18);
}

@keyframes installFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 991.98px) {
    .install-title {
        font-size: 38px;
    }

    .install-highlight h3 {
        font-size: 26px;
    }
}

@media (max-width: 767.98px) {
    .install-title {
        font-size: 30px;
    }

    .install-text {
        font-size: 16px;
    }

    .install-card {
        padding: 28px 18px 22px;
    }

    .install-card h4 {
        font-size: 21px;
    }

    .install-icon {
        width: 68px;
        height: 68px;
        font-size: 22px;
    }

    .install-highlight {
        padding: 28px 20px;
    }

    .install-highlight h3 {
        font-size: 22px;
    }
}

/* ================= PRODUCTS SECTION ================= */
.product-section {
    position: relative;
    background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
    overflow: hidden;
}

.product-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: rgba(21, 200, 243, 0.08);
    border-radius: 50%;
}

.product-section::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 50%;
}

.product-section .container {
    position: relative;
    z-index: 1;
}

/* Heading */
.product-tag {
    display: inline-block;
    background: rgba(20, 191, 242, 0.12);
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 30px;
}

.product-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0b1f4d;
    margin-bottom: 0;
}

.product-title span {
    color: #16c7f3;
}

.product-text {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* Card */
.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(13, 202, 240, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
    transition: all 0.45s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 50px rgba(13, 110, 253, 0.14);
}

/* Image */
.product-img-wrap {
    position: relative;
    background: linear-gradient(180deg, #eefaff 0%, #ffffff 100%);
    padding: 35px 30px 20px;
    overflow: hidden;
}

.product-img {
    height: 290px;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #0b53c1, #15bdf1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.2);
    animation: productFloat 3.2s ease-in-out infinite;
}

/* Content */
.product-content {
    padding: 26px 24px 24px;
    text-align: center;
}

.product-size {
    font-size: 14px;
    font-weight: 700;
    color: #16c7f3;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-name {
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    color: #0b1f4d;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

.product-name:hover {
    color: #0d6efd;
}

.product-desc {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    min-height: 82px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 10px;
}

.product-price {
    font-size: 28px;
    font-weight: 800;
    color: #0d6efd;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b53c1, #15bdf1);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 24px rgba(13, 71, 161, 0.18);
}

.product-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(13, 71, 161, 0.26);
}

/* Animation */
@keyframes productFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .product-title {
        font-size: 38px;
    }

    .product-img {
        height: 250px;
    }

    .product-name {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .product-title {
        font-size: 30px;
    }

    .product-text {
        font-size: 16px;
    }

    .product-content {
        padding: 22px 18px 20px;
    }

    .product-img-wrap {
        padding: 28px 20px 16px;
    }

    .product-img {
        height: 220px;
    }

    .product-desc {
        min-height: auto;
    }

    .product-footer {
        flex-direction: column;
    }

    .product-price {
        font-size: 24px;
    }

    .product-btn {
        width: 100%;
    }
}

.mission-section {
    background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.mission-tag {
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
}

.mission-title {
    font-size: 44px;
    font-weight: 800;
    color: #0b1f4d;
}

.mission-title span {
    color: #16c7f3;
}

.mission-text {
    color: #6c757d;
    font-size: 17px;
}

.mission-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    background: linear-gradient(135deg,#0d6efd,#16c7f3);
    color: #fff;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 24px;
}


.testimonial-section {
    background: #f7fcff;
}

.testimonial-tag {
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
}

.testimonial-title {
    font-size: 42px;
    font-weight: 800;
    color: #0b1f4d;
}

.testimonial-title span {
    color: #16c7f3;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}
