/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#f4fcff;
}


/* =========================
   REMOVE RIGHT SPACE
========================= */

html,
body{
    overflow-x:hidden;
}

/* MAIN SECTION */


/* WATER WAVE */

.water-wave{
    overflow:hidden;
}


/* EXTRA FIX */

.container,
.container-fluid{
    max-width:100%;
}
/* =========================
   HEADER
========================= */

.luxury-header{
    position:relative;
    z-index:9999;
}

/* =========================
   WATER BACKGROUND
========================= */

.water-wave{
    position:absolute;
    width:100%;
   
    top:0;
    left:0;

    background:#fff;

    overflow:hidden;
}

.water-wave::before,
.water-wave::after{
    content:'';
    position:absolute;
    width:220%;
    height:220px;
    left:-60%;
    background:rgba(255,255,255,0.08);
    border-radius:45%;
    animation:waveMove 12s linear infinite;
}

.water-wave::after{
    top:40px;
    opacity:0.5;
    animation-duration:18s;
}

/* =========================
   TOPBAR
========================= */

.top-header{
    position:relative;
    padding:14px 0;
    z-index:5; background: #fef6e4;
}

.header-contact{
    display:flex;
    align-items:center;
    gap:35px;
    flex-wrap:wrap; 
}

.header-contact a,
.working-time{
    color:#222;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
}

.header-contact i,
.working-time i{
    margin-right:8px;
}



@media (max-width: 767px) {

    .top-header {
        padding: 10px 0;
    }

    .header-contact {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px 18px;
        flex-wrap: wrap;
    }

    .header-contact a,
    .working-time {
        font-size: 16px;
        line-height: 1.4;
        white-space: nowrap;
    }

    .header-contact i,
    .working-time i {
        margin-right: 5px;
        font-size: 12px;
    }

}

/* =========================
   NAVBAR
========================= */
/* =========================================
   MAIN NAVBAR
========================================= */

.main-navbar {
    width: 100%;
    background: #ffffff;
    padding: 12px 0;
    position: relative;
    z-index: 9999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}


/* =========================================
   LOGO
========================================= */

.main-navbar .navbar-brand {
    padding: 0;
    margin: 0;
    position: relative;

}

.logo-circle {
    width:178px;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================================
   NAV MENU
========================================= */

.main-navbar .navbar-collapse {
    display: flex;
    align-items: center;
}

.main-navbar .navbar-nav {
    gap: 8px;
    align-items: center;
}


.main-navbar .nav-item {
    position: relative;
}


.main-navbar .nav-link {
    position: relative;
    color: #183b56;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}


/* HOVER UNDERLINE */

.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: #0d8f88;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    width: calc(100% - 30px);
}


.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: #0d8f88;
}


/* =========================================
   DROPDOWN ARROW
========================================= */

.menu-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}


/* =========================================
   DESKTOP DROPDOWN
========================================= */

@media (min-width: 1200px) {

    .main-navbar .menu-dropdown > .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(12px);

        position: absolute;
        top: calc(100% + 12px);
        left: 0;

        min-width: 245px;
        padding: 10px;

        background: #ffffff;
        border: 0;
        border-radius: 14px;

        box-shadow:
            0 16px 45px rgba(20, 50, 70, 0.14);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;

        z-index: 10000;
    }


    /* HOVER OPEN */

    .main-navbar .menu-dropdown:hover > .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }


    .main-navbar .menu-dropdown:hover .menu-arrow {
        transform: rotate(180deg);
    }


    /* SMALL ARROW ABOVE DROPDOWN */

    .main-navbar .menu-dropdown > .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -6px;
        left: 28px;

        width: 12px;
        height: 12px;

        background: #ffffff;
        transform: rotate(45deg);
    }

}


/* =========================================
   DROPDOWN ITEMS
========================================= */

.main-navbar .dropdown-menu {
    list-style: none;
}


.main-navbar .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 11px 12px;

    color: #23465d;
    font-size: 14px;
    font-weight: 500;

    border-radius: 9px;

    transition: all 0.25s ease;
}


.main-navbar .dropdown-item i {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: rgba(13, 143, 136, 0.09);
    color: #0d8f88;

    font-size: 13px;

    transition: all 0.25s ease;
}


.main-navbar .dropdown-item:hover {
    background: #f0faf9;
    color: #0d8f88;
    transform: translateX(3px);
}


.main-navbar .dropdown-item:hover i {
    background: #0d8f88;
    color: #ffffff;
}


/* =========================================
   GET QUOTE BUTTON
========================================= */

.navbar-cta {
    margin-left: 20px;
}


.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 21px;

    background: #0d8f88;
    color: #ffffff !important;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 7px 20px rgba(13, 143, 136, 0.18);

    transition: all 0.3s ease;
}


.quote-btn i {
    transition: transform 0.3s ease;
}


.quote-btn:hover {
    background: #08746f;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 143, 136, 0.25);
}


.quote-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   MOBILE TOGGLE
========================================= */

.mobile-menu-btn {
    display: none;

    width: 45px;
    height: 45px;

    padding: 0;

    border: 0;
    border-radius: 8px;

    background: #0d8f88;
    color: #ffffff;

    font-size: 20px;

    align-items: center;
    justify-content: center;

    box-shadow: none !important;
}


/* =========================================
   MOBILE MENU HEADER
========================================= */

.mobile-menu-header {
    display: none;
}


/* =========================================
   MOBILE OVERLAY
========================================= */

.menu-overlay {
    display: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 1199.98px) {

    .main-navbar {
        padding: 10px 0;
    }


    .main-navbar .container {
        max-width: 100%;
    }


    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }


    /* =====================================
       OFF CANVAS MENU
    ===================================== */

    .main-navbar .navbar-collapse {

        display: flex !important;
        flex-direction: column;
        align-items: stretch;

        position: fixed;

        top: 0;
        right: 0;

        width: min(380px, 88vw);
        height: 100vh;

        padding: 0;

        background: #ffffff;

        transform: translateX(100%);

        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

        box-shadow: -16px 0 45px rgba(0, 0, 0, 0.12);

        overflow-y: auto;

        z-index: 10000;
    }


    /* OPEN */

    .main-navbar .navbar-collapse.mobile-menu-open {
        transform: translateX(0);
    }


    /* =====================================
       MOBILE HEADER
    ===================================== */

    .mobile-menu-header {

        display: flex;

        align-items: center;
        justify-content: space-between;

        padding: 22px 22px;

        border-bottom: 1px solid #eeeeee;

        background: #ffffff;

        position: sticky;
        top: 0;

        z-index: 5;
    }


    .mobile-menu-header span {
        font-size: 19px;
        font-weight: 700;
        color: #183b56;
    }


    .mobile-menu-close {

        width: 38px;
        height: 38px;

        border: 0;
        border-radius: 50%;

        background: #f1f7f7;
        color: #183b56;

        font-size: 18px;

        display: flex;
        align-items: center;
        justify-content: center;

        transition: all 0.25s ease;
    }


    .mobile-menu-close:hover {
        background: #0d8f88;
        color: #ffffff;
    }


    /* =====================================
       MOBILE NAV
    ===================================== */

    .main-navbar .navbar-nav {

        width: 100%;

        margin: 0 !important;

        padding: 16px 20px 10px;

        gap: 0;

        display: block;
    }


    .main-navbar .nav-item {
        width: 100%;
        border-bottom: 1px solid #eeeeee;
    }


    .main-navbar .nav-link {

        display: flex;

        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 16px 5px !important;

        font-size: 16px;

        color: #183b56;
    }


    .main-navbar .nav-link::after {
        display: none;
    }


    .main-navbar .nav-link:hover,
    .main-navbar .nav-link.active {
        color: #0d8f88;
    }


    /* =====================================
       MOBILE DROPDOWN
    ===================================== */

    .main-navbar .menu-dropdown > .dropdown-menu {

        display: none;

        position: static !important;

        width: 100%;

        min-width: 0;

        margin: 0 0 10px !important;

        padding: 5px 0 5px 12px;

        border: 0;

        border-left: 2px solid #0d8f88;

        border-radius: 0;

        box-shadow: none;

        transform: none !important;

        opacity: 1;

        visibility: visible;
    }


    .main-navbar .menu-dropdown.dropdown-open > .dropdown-menu {
        display: block;
    }


    .main-navbar .menu-dropdown.dropdown-open .menu-arrow {
        transform: rotate(180deg);
    }


    .main-navbar .dropdown-item {

        padding: 11px 10px;

        font-size: 14px;
    }


    /* =====================================
       MOBILE CTA
    ===================================== */

    .navbar-cta {

        width: 100%;

        padding: 16px 20px 30px;

        margin: 0;

        margin-top: auto;
    }


    .quote-btn {

        width: 100%;

        padding: 14px 20px;

        border-radius: 9px;
    }


    /* =====================================
       OVERLAY
    ===================================== */

    .menu-overlay {

        display: block;

        position: fixed;

        inset: 0;

        background: rgba(10, 30, 40, 0.48);

        opacity: 0;
        visibility: hidden;

        transition: all 0.35s ease;

        z-index: 9998;
    }


    .menu-overlay.active {

        opacity: 1;
        visibility: visible;
    }


    /* PREVENT BODY SCROLL */

    body.menu-open {
        overflow: hidden;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

 


    .main-navbar {
        padding: 8px 0;
    }


    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }


    .main-navbar .navbar-collapse {
        width: 65vw;
    }

}










/* =========================
   ULTRA MODERN HERO
========================= */

.hydro-hero{
    position:relative;
    overflow:hidden;
    padding:50px 0;
    background:
    radial-gradient(circle at top left,#003566,#001d3d 40%,#000814);
}

/* =========================
   LIQUID SHAPES
========================= */

.liquid-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:0.35;
    animation:liquidFloat 10s ease-in-out infinite;
}

.liquid-one{
    width:400px;
    height:400px;
    background:#00d9ff;
    top:-150px;
    right:-40px;
}

.liquid-two{
    width:300px;
    height:300px;
    background:#017e22;
    bottom:-40px;
    left:-40px;
    animation-duration:14s;
}

.liquid-three{
    width:180px;
    height:180px;
    background:#48cae4;
    top:40%;
    left:45%;
}

/* =========================
   GLASS BUBBLES
========================= */

.glass-bubble{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.12);
    animation:bubbleUp linear infinite;
}

.gb1{
    width:50px;
    height:50px;
    left:5%;
    bottom:-40px;
    animation-duration:8s;
}

.gb2{
    width:45px;
    height:45px;
    left:40%;
    bottom:-50px;
    animation-duration:10s;
}

.gb3{
    width:50px;
    height:50px;
    right:10%;
    bottom:-50px;
    animation-duration:12s;
}

/* =========================
   CONTENT
========================= */

.hydro-content{
    position:relative;
    z-index:5;
}

.hydro-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    border-radius:50px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.10);
    color:#fff;
    margin-bottom:28px;
}

.hydro-content h1{
    font-size:46px;
    line-height:1.05;
    font-weight:600;
    color:#fff;
    margin-bottom:18px;
}

.hydro-content h1 span{
    color:#fde916;

}

.hydro-content p{
    color:#fff;
    font-size:18px;
    line-height:1.9;
    margin-bottom:15px;
}

/* FEATURES */

.hydro-features{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:20px;
}

.hydro-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 20px;
    border-radius:18px;
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
}

.hydro-feature i{
    color:#00d9ff;
}

/* BUTTONS */

.hydro-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hydro-btn,
.hydro-btn-glass{
    padding:18px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
}

.hydro-btn{
    background:
    linear-gradient(
    135deg,
    #fde916,
    #fde916
    );
    color:#001d3d;
    box-shadow:
    0 16px 35px rgba(0,217,255,0.30);
}

.hydro-btn:hover{
    transform:translateY(-6px);
    color:#001d3d;
}

.hydro-btn-glass{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.10);
    backdrop-filter:blur(16px);
    color:#fff;
}

.hydro-btn-glass:hover{
    background:#fff;
    color:#001d3d;
}

/* =========================
   SLIDER
========================= */

.hydro-slider-wrap{
    position:relative;
    z-index:5;
}

.hydro-card{
    position:relative;
    border-radius:45px;
    overflow:hidden;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.10);
    padding:18px;
    box-shadow:
    0 30px 80px rgba(0,0,0,0.35);
}

/* GLOW */

.card-glow{
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(0,217,255,0.25),
    transparent 70%);
    top:-40px;
    right:-80px;
}

/* IMAGE */

.hydro-card img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:32px;
    animation:imgZoom 8s ease-in-out infinite alternate;
}

/* CARD CONTENT */

.hydro-card-content{
    position:absolute;
    left:40px;
    bottom:40px;
    padding:22px 30px;
    border-radius:24px;
    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.08);
}

.hydro-card-content h2{
    color:#fff;
    font-size:38px;
    margin-bottom:8px;
    font-weight:700;
}

.hydro-card-content p{
    color:#dcefff;
    margin:0;
}

/* =========================
   CUSTOM NAVIGATION
========================= */

.hydro-nav{
    position:absolute;
    right:-25px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:18px;
    z-index:20;
}

.hydro-arrow{
    width:70px;
    height:70px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.10);

    border:1px solid rgba(255,255,255,0.12);
    color:#fff;
    font-size:22px;
    transition:0.4s;
    box-shadow:
    0 12px 30px rgba(0,0,0,0.25);
}

.hydro-arrow:hover{
    transform:scale(1.12);
    background:#00d9ff;
    color:#001d3d;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes liquidFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(30px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes bubbleUp{

    0%{
        transform:translateY(0) scale(1);
        opacity:0;
    }

    20%{
        opacity:1;
    }

    100%{
        transform:translateY(-900px) scale(1.5);
        opacity:0;
    }

}

@keyframes imgZoom{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.05);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .hydro-content h1{
        font-size:56px;
    }

}

@media(max-width:991px){

    .hydro-hero{
        padding:50px 0;
    }

    .hydro-content{
        margin-bottom:30px;
    }

    .hydro-content h1{
        font-size:44px;
    }

    .hydro-card img{
        height:auto !important;
    }

    .hydro-nav{
        right:20px;
        flex-direction:row;
        top:auto;
        bottom:-70px;
        transform:none; padding-bottom: 60px;
    }

}

@media(max-width:768px){

    .hydro-content h1{
        font-size:34px;
    }

    .hydro-content p{
        font-size:16px;
    }

    

    .hydro-btn,
    .hydro-btn-glass{
        width:100%;
        text-align:center;
    }

    .hydro-card img{
        height:auto;
    }

    .hydro-card-content{
        left:20px;
        right:20px;
        bottom:20px;
    }

    .hydro-card-content h2{
        font-size:26px;
    }

}

@media(max-width:576px){

    .hydro-content h1{
        font-size:28px;
    }

    .hydro-feature{
        width:47%;
    }

    .hydro-arrow{
        width:55px;
        height:55px;
        font-size:18px;
    }

}

@media (max-width:767px){

    .hydro-buttons{
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .hydro-buttons a{
        flex: 1;
        width: auto !important;
        min-width: 0;
        text-align: center;
    }
}






/* =========================
   ABOUT SECTION
========================= */

.about-shrishty-care{
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg,#f5fcff,#ffffff,#eef9ff);
    overflow: hidden;
}

/* WATER SHAPES */

.water-shape{
    position: absolute;
    border-radius: 50%;
    background: rgba(0,153,255,0.08);
    animation: floatShape 8s ease-in-out infinite;
}

.shape1{
    width: 300px;
    height: 300px;
    top: -40px;
    left: -40px;
}

.shape2{
    width: 220px;
    height: 220px;
    bottom: -80px;
    right: -80px;
    animation-delay: 2s;
}

/* CONTENT */

.about-content{
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.sub-title{
    display: inline-block;
    background: #dff5ff;
    color: #fd8a01;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content h2{
    font-size: 48px;
    color: #111;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #111;
    margin-bottom: 20px;
}

/* STATS */

.about-stats{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.stat-box{
    background: #fff;
    border-radius: 20px;
    padding: 35px 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
    transition: 0.4s;
}

.stat-box:hover{
    transform: translateY(-10px);
}

.stat-box h3{
    font-size: 32px;
    color: #009a20;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box span{
    font-size: 16px;
    color: #111;
}

/* ANIMATION */

@keyframes floatShape{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(30px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* RESPONSIVE */

@media(max-width:991px){

    .about-stats{
        grid-template-columns: repeat(2,1fr);
    }

    .about-content h2{
        font-size: 36px;
    }

}

@media(max-width:575px){

     .about-stats{
        grid-template-columns: repeat(2,1fr);
    }

    .about-content h2{
        font-size: 28px;
    }

}











/* =========================
   WATER SERVICES BACKGROUND
========================= */

.water-services{
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    z-index: 1;

    /* BACKGROUND IMAGE */

    background:
    linear-gradient(rgba(255,255,255,0.82),
    rgba(255,255,255,0.82)),
    url('../images/water.jfif');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* BIG WATER GLOW */

.water-services::before{
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
    rgba(0,174,255,0.18) 0%,
    rgba(0,174,255,0.08) 30%,
    transparent 70%);
    top: -300px;
    left: -250px;
    animation: waterMove 10s ease-in-out infinite;
    z-index: -1;
}

/* EXTRA WATER OVERLAY */

.water-services::after{
    content:'';
    position:absolute;
    inset:0;

    background:
    url('../images/wave1.png');

    opacity:0.08;

    animation: waterFlow 20s linear infinite;

    z-index:-1;
}

/* ANIMATIONS */

@keyframes waterMove{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(40px);
    }

    100%{
        transform: translateY(0px);
    }

}

@keyframes waterFlow{

    0%{
        background-position:0 0;
    }

    100%{
        background-position:1000px 0;
    }

}

/* SECOND WATER GLOW */



/* WATER WAVES */

.wave{
    position: absolute;
    left: 0;
    width: 200%;
    height: 220px;
    background: rgba(0,153,255,0.08);
    border-radius: 43%;
    filter: blur(2px);
}

.wave1{
    top: -130px;
    animation: waveAnim 12s linear infinite;
}

.wave2{
    bottom: -150px;
    animation: waveAnim2 14s linear infinite;
}

/* WATER RIPPLE */

.ripple{
    position: absolute;
    border: 2px solid rgba(0,153,255,0.15);
    border-radius: 50%;
    animation: rippleEffect 6s linear infinite;
}

.ripple1{
    width: 350px;
    height: 350px;
    top: 10%;
    left: 5%;
}

.ripple2{
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

/* BUBBLES */

.bubble{
    position: absolute;
    bottom: -40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);
    box-shadow:
    inset 0 0 10px rgba(255,255,255,0.8),
    0 0 20px rgba(0,153,255,0.15);
    animation: bubbleUp 12s linear infinite;
}

.bubble1{
    width: 20px;
    height: 20px;
    left: 10%;
}

.bubble2{
    width: 35px;
    height: 35px;
    left: 30%;
    animation-delay: 2s;
}

.bubble3{
    width: 16px;
    height: 16px;
    left: 55%;
    animation-delay: 4s;
}

.bubble4{
    width: 28px;
    height: 28px;
    left: 80%;
    animation-delay: 1s;
}

/* SERVICE CARD */

.service-card{
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 28px;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-card:hover{
    transform: translateY(-16px);
    box-shadow: 0 30px 70px rgba(0,153,255,0.18);
}

/* WATER SHINE */

.service-card::before{
    content: '';
    position: absolute;
    top: -120%;
    left: -40%;
    width: 80px;
    height: 300%;
    background: rgba(255,255,255,0.4);
    transform: rotate(25deg);
    transition: 0.8s;
}

.service-card:hover::before{
    left: 120%;
}

/* ANIMATIONS */

@keyframes bubbleUp{

    0%{
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    20%{
        opacity: 1;
    }

    100%{
        transform: translateY(-1200px) scale(1.5);
        opacity: 0;
    }

}

@keyframes waveAnim{

    0%{
        transform: translateX(0) rotate(0deg);
    }

    100%{
        transform: translateX(-60px) rotate(2deg);
    }

}

@keyframes waveAnim2{

    0%{
        transform: translateX(0) rotate(0deg);
    }

    100%{
        transform: translateX(60px) rotate(-2deg);
    }

}

@keyframes waterMove{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(40px);
    }

    100%{
        transform: translateY(0px);
    }

}

@keyframes waterMove2{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.15);
    }

    100%{
        transform: scale(1);
    }

}

@keyframes rippleEffect{

    0%{
        transform: scale(0.8);
        opacity: 0.7;
    }

    100%{
        transform: scale(1.4);
        opacity: 0;
    }

}







/* GLASS EFFECT CARD */

.service-card{
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.5s;
    position: relative;
}

.service-card::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
    rgba(255,255,255,0.2),
    transparent);
    opacity: 0;
    transition: 0.5s;
}

.service-card:hover::before{
    opacity: 1;
}

.service-card:hover{
    transform: translateY(-16px);
    box-shadow: 0 30px 60px rgba(0,153,255,0.18);
}

/* TITLE */

.section-title{
    position: relative;
    z-index: 2;
}

.section-title h2{
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: #111;
}

.section-title h2 span{
    background:#027a22;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ANIMATIONS */

@keyframes waveMove{

    0%{
        transform: translateX(0) rotate(0deg);
    }

    100%{
        transform: translateX(-60px) rotate(3deg);
    }

}

@keyframes bubbleUp{

    0%{
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    20%{
        opacity: 1;
    }

    100%{
        transform: translateY(-1200px) scale(1.5);
        opacity: 0;
    }

}

@keyframes waterGlow{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.15);
    }

    100%{
        transform: scale(1);
    }

}

/* TITLE */

.section-title{
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.sub-title{
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: #ffffff;
    color: #fd8a01;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

.section-title h2{
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

.section-title h2 span{
    color: #fd8a01;
}

.section-title p{
    font-size: 18px;
    color: #111;
}

/* GRID */

.services-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* CARD */

.service-card{
    background: rgba(255,255,255,0.9);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.5s;
    position: relative;
}

.service-card:hover{
    transform: translateY(-16px);
}

/* IMAGE */

.service-image{
    overflow: hidden;
    height: 220px;
}

.service-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.service-card:hover img{
    transform: scale(1.1);
}

/* CONTENT */

.service-content{
    padding: 15px 25px;
    text-align: center;
    position: relative;
}

.icon{
    width: 70px;
    height: 70px;
    line-height: 80px;
    margin: auto;
    margin-top: -75px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #fff;
    font-size: 34px;
    box-shadow: 0 10px 30px rgba(0,153,255,0.15);
    position: relative;
    z-index: 2;
}

.service-content h3{
    font-size: 20px;
    font-weight:600;
    margin-bottom: 16px;
    color: #111;
}

.service-content p{
    font-size: 16px;
    color: #111;
    line-height: 1.8;
}

/* ANIMATIONS */

@keyframes waveMove{

    0%{
        transform: translateX(0) rotate(0deg);
    }

    100%{
        transform: translateX(-50px) rotate(3deg);
    }

}

@keyframes bubbleUp{

    0%{
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    20%{
        opacity: 1;
    }

    100%{
        transform: translateY(-1200px) scale(1.5);
        opacity: 0;
    }

}

/* RESPONSIVE */

@media(max-width:1199px){

    .services-grid{
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width:991px){

    .services-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .section-title h2{
        font-size: 42px;
    }

}

@media(max-width:575px){

    .services-grid{
        grid-template-columns: 1fr;
    }

    .section-title h2{
        font-size: 30px;
    }

}










/* =========================
   WHY CHOOSE SECTION
========================= */

.why-choose-section{
    position: relative;
    padding: 50px 0;
    background: linear-gradient(180deg,#f4fbff,#ffffff,#eef9ff);
    overflow: hidden;
}

/* WATER GLOW */

.water-glow{
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(rgba(0,153,255,0.15),transparent 70%);
    animation: waterFloat 10s ease-in-out infinite;
}

.glow1{
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
}

.glow2{
    width: 400px;
    height: 400px;
    bottom: -40px;
    right: -40px;
    animation-delay: 3s;
}

/* TITLE */

.section-title{
    max-width: 800px;
    margin: auto;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.sub-title{
    display: inline-block;
    padding: 10px 24px;
    background: #dff5ff;
    color: #fd8a01;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title h2{
    font-size: 44px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
}

.section-title h2 span{
    color: #fd8a01;
}

.section-title p{
    color: #111;
    font-size: 17px;
}

/* GRID */

.why-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* BOX */

.why-box{
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 10px 30px;
    text-align: center;
    transition: 0.5s;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
}

.why-box::before{
    content:'';
    position:absolute;
    top:-100%;
    left:-30%;
    width:80px;
    height:300%;
    background:rgba(255,255,255,0.4);
    transform:rotate(25deg);
    transition:0.7s;
}

.why-box:hover::before{
    left:130%;
}

.why-box:hover{
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,153,255,0.15);
}

/* ICON */

.icon{
    width: 70px;
    height: 70px;
    line-height: 61px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg,#fd8a01,#fd8a01);
    color: #fff;
    font-size: 38px;
    box-shadow: 0 16px 35px rgba(0,153,255,0.25);
}

.why-box h3{
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.why-box p{
    font-size: 16px;
    color: #111;
    line-height: 1.5;
}

/* ANIMATION */

@keyframes waterFloat{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(40px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* RESPONSIVE */

@media(max-width:991px){

    .why-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .section-title h2{
        font-size: 40px;
    }

}

@media(max-width:575px){

    .why-grid{
        grid-template-columns: 1fr;
    }

    .section-title h2{
        font-size: 30px;
    }

}








/* =========================
   INDUSTRIES SECTION
========================= */

.industries-section{
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background:
    linear-gradient(rgba(255,255,255,0.92),
    rgba(255,255,255,0.92)),
    url('images/water-bg.jpg');

    background-size: cover;
    background-position: center;
}

/* WATER CIRCLES */

.water-circle{
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(rgba(0,153,255,0.12),transparent 70%);
    animation: waterFloat 10s ease-in-out infinite;
}

.circle1{
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
}

.circle2{
    width: 400px;
    height: 400px;
    bottom: -50px;
    right: -50px;
    animation-delay: 3s;
}

/* TITLE */

.section-title{
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.sub-title{
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: #dff5ff;
    color: #fd8a01;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title h2{
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

.section-title h2 span{
    color: #fd8a01;
}

.section-title p{
    color: #111;
    font-size: 17px;
}

/* INDUSTRY BOX */

.industry-box{
    position: relative;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 5px 20px;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.6);
    z-index: 2;
}

.industry-box:hover{
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,153,255,0.15);
}

/* WATER SHINE */

.industry-box::before{
    content:'';
    position:absolute;
    top:-120%;
    left:-30%;
    width:80px;
    height:300%;
    background:rgba(255,255,255,0.45);
    transform:rotate(25deg);
    transition:0.8s;
}

.industry-box:hover::before{
    left:130%;
}

/* ICON */

.industry-icon{
    width: 75px;
    height: 75px;
    line-height: 73px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg,#df6701,#fd8a01);
    color: #fff;
    font-size: 40px;
    box-shadow: 0 16px 35px rgba(0,153,255,0.2);
    position: relative;
}

/* ICON WATER RIPPLE */

.industry-icon::after{
    content:'';
    position:absolute;
    inset:-8px;
    border-radius:50%;
    border:2px solid rgba(0,153,255,0.2);
    animation:ripple 3s linear infinite;
}

/* TEXT */

.industry-box h3{
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
}

/* WATER LINE */

.water-line{
    width: 70px;
    height: 5px;
    margin: auto;
    border-radius: 50px;

}

/* ANIMATION */

@keyframes ripple{

    0%{
        transform: scale(1);
        opacity: 1;
    }

    100%{
        transform: scale(1.4);
        opacity: 0;
    }

}

@keyframes waterFloat{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(40px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* RESPONSIVE */

@media(max-width:991px){

    .section-title h2{
        font-size: 40px;
    }

}

@media(max-width:575px){

    .section-title h2{
        font-size: 30px;
    }

    .industry-box{
        padding: 40px 25px;
    }

}








/* =========================
   MISSION VISION
========================= */

.sc-mv-section{
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background:#f2f2f2;
}

/* WAVES */

.mv-wave-top{
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 250px;
    background: rgba(0,153,255,0.08);
    border-radius: 45%;
    animation: waveMove 12s linear infinite;
}

.mv-wave-bottom{
    position: absolute;
    bottom: -150px;
    right: 0;
    width: 100%;
    height: 250px;
    background: rgba(0,191,255,0.08);
    border-radius: 45%;
    animation: waveMove2 15s linear infinite;
}

/* TITLE */

.sc-mv-title{
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.sc-mv-title span{
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    background: #dff5ff;
    color: #fd8a01;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sc-mv-title h2{
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: #111;
}

/* IMAGE */

.mv-image-box{
    position: relative;
    z-index: 2;
}

.mv-image-box img{
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: 0.5s;
}

.mv-image-box:hover img{
    transform: scale(1.03);
}

/* FLOATING CARD */

.floating-water-card{
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 25px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-water-card i{
    font-size: 38px;
    color: #fd8a01;
    margin-bottom: 10px;
    display: block;
}

.floating-water-card h4{
    font-size: 24px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
}

/* CONTENT */

.mv-content-wrapper{
    position: relative;
    z-index: 2;
}

.mv-content-box{
    display: flex;
    gap: 25px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 35px;
    margin-bottom: 30px;
    transition: 0.5s;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.5);
}

.mv-content-box:hover{
    transform: translateX(12px);
    box-shadow: 0 25px 60px rgba(0,153,255,0.14);
}

/* ICON */

.mv-icon-box{
    min-width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 25px;
    background: linear-gradient(135deg,#fd8a01,#fd8a01);
    color: #fff;
    font-size: 38px;
    box-shadow: 0 16px 35px rgba(0,153,255,0.2);
}

/* TEXT */

.mv-small-title{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #fd8a01;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #111;
    margin: 0;
}

/* ANIMATIONS */

@keyframes waveMove{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50px);
    }

}

@keyframes waveMove2{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(50px);
    }

}

@keyframes floatCard{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* RESPONSIVE */

@media(max-width:991px){

    .sc-mv-title h2{
        font-size: 40px;
    }

    .floating-water-card{
        right: 20px;
    }

}

@media(max-width:575px){

    .sc-mv-title h2{
        font-size: 30px;
    }

    .mv-content-box{
        flex-direction: column;
    }

    .mv-icon-box{
        width: 50px;
    }

}






/* =========================
   PREMIUM TESTIMONIALS
========================= */

.premium-testimonials{
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background:
    linear-gradient(rgba(255,255,255,0.90),
    rgba(255,255,255,0.90)),
    url('images/water-bg.jpg');

    background-size: cover;
    background-position: center;
}

/* WAVES */

.pt-wave{
    position: absolute;
    width: 200%;
    height: 240px;
    background: rgba(0,153,255,0.08);
    border-radius: 45%;
}

.pt-wave1{
    top: -50px;
    left: -20%;
    animation: waveMove 12s linear infinite;
}

.pt-wave2{
    bottom: -140px;
    right: -20%;
    animation: waveMove2 15s linear infinite;
}

/* TITLE */

.pt-title{
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.pt-subtitle{
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: #dff5ff;
    color: #026927;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

.pt-title h2{
    font-size: 38px;
    font-weight: 600;
    color: #111;

}

.pt-title h2 span{
    background:#fc9402;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pt-title p{
    color: #111;
    font-size: 17px;
}

/* CARD */
/* =========================
   PREMIUM TESTIMONIAL CARD
========================= */

.pt-card{
    position: relative;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(16px);
    border-radius: 35px;
    padding: 45px 40px;
    overflow: hidden;
    transition: 0.5s;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.6);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);

    z-index: 2;
}

/* HOVER */

.pt-card:hover{
    transform: translateY(-16px) scale(1.02);

    box-shadow:
    0 35px 80px rgba(0,153,255,0.18),
    0 10px 30px rgba(0,191,255,0.12);
}

/* WATER GLOW BORDER */

.pt-card::after{
    content:'';
    position:absolute;
    inset:0;
    border-radius:35px;
    padding:1px;

    background:
    linear-gradient(135deg,
    rgba(0,191,255,0.5),
    rgba(255,255,255,0.2),
    rgba(0,153,255,0.5));

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;

    pointer-events:none;
}

/* TOP */

.pt-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:28px;
}

/* USER */

.pt-user{
    display:flex;
    align-items:center;
    gap:18px;
}

/* AVATAR */

.pt-avatar{
    width:75px;
    height:75px;
    line-height:75px;
    text-align:center;
    border-radius:24px;

    background:#f5b902;

    color:#fff;
    font-size:24px;
    font-weight:700;

    box-shadow:
    0 16px 35px rgba(0,153,255,0.25);

    position:relative;
}

/* RIPPLE EFFECT */

.pt-avatar::before{
    content:'';
    position:absolute;
    inset:-6px;
    border-radius:28px;
    border:2px solid rgba(0,153,255,0.15);
    animation:rippleEffect 3s linear infinite;
}

/* QUOTE */

.pt-quote{
    width:70px;
    height:70px;
    line-height:70px;
    text-align:center;
    border-radius:24px;

    background:
    linear-gradient(135deg,
    rgba(0,191,255,0.12),
    rgba(0,153,255,0.08));

    color:#e6a40f;
    font-size:32px;

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7);
}

/* TEXT */

.pt-card p{
    font-size:16px;
    line-height:2;
    color:#111;
    margin-top:16px;
    position:relative;

}



/* BUTTON FIX */

.carousel-control-prev{
    justify-content:flex-start;
    left:-50px;
    width:auto;
}

.carousel-control-next{
    justify-content:flex-end;
    right:-50px;
    width:auto;
}

/* BUTTON */

.pt-slider-btn{
    width:68px;
    height:68px;
    line-height:68px;
    text-align:center;
    border-radius:50%;

    background:
    linear-gradient(135deg,#00c6ff,#e6a40f);

    color:#fff;
    font-size:24px;

    box-shadow:
    0 16px 35px rgba(0,153,255,0.2);

    transition:0.4s;
}

.pt-slider-btn:hover{
    transform:scale(1.08);
}

/* WATER FLOAT */

.premium-testimonials{
    position:relative;
    overflow:hidden;
}

/* FLOATING BLUR */

.premium-testimonials::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:
    radial-gradient(rgba(0,191,255,0.10),transparent 70%);
    top:-200px;
    left:-200px;
    animation:floatWater 10s ease-in-out infinite;
}

.premium-testimonials::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:
    radial-gradient(rgba(0,153,255,0.10),transparent 70%);
    bottom:-200px;
    right:-200px;
    animation:floatWater2 12s ease-in-out infinite;
}

/* ANIMATIONS */

@keyframes rippleEffect{

    0%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(1.4);
        opacity:0;
    }

}

@keyframes floatWater{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(40px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes floatWater2{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-40px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* RESPONSIVE */

@media(max-width:1399px){

    .carousel-control-prev{
        left:-20px;
    }

    .carousel-control-next{
        right:-20px;
    }

}

@media(max-width:991px){

    .carousel-control-prev,
    .carousel-control-next{
        display:none;
    }

}




/* =========================
   PREMIUM FOOTER
========================= */

.sc-footer{
    position: relative;
    background:#001d3d;
    padding-top: 40px;
    overflow: hidden;
}

/* WAVES */

/* ABOUT */

.footer-about{
    position: relative;
    z-index: 2;
}

.footer-logo{
    max-width: 180px;
    margin-bottom: 25px;
}

.footer-about p{
    color:#fff;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* SOCIAL */

.footer-social{
    display: flex;
    gap: 16px;
}

.footer-social a{
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 18px;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover{
    background: linear-gradient(135deg,#00c6ff,#e6a40f);
    transform: translateY(-5px);
}

/* LINKS */

.footer-links,
.footer-contact{
    position: relative;
    z-index: 2;
}

.footer-links h3,
.footer-contact h3{
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 16px;
}

.footer-links h3::before,
.footer-contact h3::before{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:4px;
    border-radius:50px;
    background:#fc9402;
}

/* LIST */

.footer-links ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links ul li{
    margin-bottom: 18px;
}

.footer-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.4s;
}

.footer-links ul li a i{
    color: #fff;
    margin-right: 10px;
}

.footer-links ul li a:hover{
    color: #fff;
    padding-left: 8px;
}

/* CONTACT */

.footer-contact-box{
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.footer-contact-box i{
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #00c6ff;
    font-size: 18px;
    flex-shrink: 0;
}

.footer-contact-box span{
    color:#fff;
    line-height: 1.8;
    font-size: 16px;
}

/* BOTTOM */

.footer-bottom{
    position: relative;
    z-index: 2;
background:#012a58;
    padding: 25px 0;

    text-align: center;
}

.footer-bottom p{
    margin: 0;
    color: #fff;
    font-size: 16px;
}

/* ANIMATION */

@keyframes footerWave{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-60px);
    }

}

@keyframes footerWave2{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(60px);
    }

}

/* RESPONSIVE */

@media(max-width:991px){

    .sc-footer{
        padding-top: 50px;
    }

}

@media(max-width:575px){

    .footer-links h3,
    .footer-contact h3{
        font-size: 22px;
    }

}

@media (max-width: 767px){

    .footer-links ul{
        display: flex;
        flex-wrap: wrap;
        gap: 12px 0;
    }

    .footer-links ul li{
        width: 50%;
        margin-bottom: 10px;
    }
}











.breadcrumb-section{
    position:relative;

    padding:50px 0 80px;

    background:#fff;

    background-size:cover;
    background-position:center;
}

.breadcrumb-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.breadcrumb-content h1{
    color:#222;
    font-size:42px;
    font-weight:600;
    margin-bottom:16px;
}

.breadcrumb{
    background:none;
}

.breadcrumb-item,
.breadcrumb-item a{
    color:#222;
    text-decoration:none;
    font-size:16px;
}

.breadcrumb-item + .breadcrumb-item::before{
    color:#ffffff;
}

.breadcrumb-item.active{
    color:#24A9E1;
}

@media(max-width:576px){

    .breadcrumb-section{
        padding:50px 0 60px;
    }

    .breadcrumb-content h1{
        font-size:34px;
    }

}








.about-company-premium{
    padding:50px 0;
    background:
    linear-gradient(180deg,#f5fbff,#ffffff);
}

.about-image-box{
    position:relative;
}

.about-image-box img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.10);
}

.experience-badge{
    position:absolute;
    bottom:25px;
    right:-20px;

    background:
    linear-gradient(135deg,#fd8a01,#ffb347);

    color:#fff;

    padding:25px 30px;

    border-radius:20px;

    text-align:center;
}

.experience-badge h3{
    font-size:42px;
    font-weight:600;
    margin:0;
}

.about-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#fff3e8;
    color:#fd8a01;
    font-weight:600;
    margin-bottom:20px;
}

.about-company-premium h2{
    font-size:50px;
    font-weight:600;
    margin-bottom:25px;
    line-height:1.2;
}

.about-company-premium p{
    color:#111;
    line-height:1.9;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:30px;
}

.feature-box{
    background:#fff;
    padding:16px 20px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.feature-box i{
    color:#222;
    margin-right:10px;
}

.glass-stat{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(10px);

    border-radius:25px;
    padding:35px 25px;

    text-align:center;

    box-shadow:
    0 16px 40px rgba(0,0,0,.06);

    transition:.4s;
}

.glass-stat:hover{
    transform:translateY(-10px);
}

.glass-stat h3{
    font-size:48px;
    color:#fd8a01;
    font-weight:600;
}

.glass-stat span{
    color:#111;
}




.sc-why-choose{
    position:relative;
    padding:40px 0;
    background:linear-gradient(180deg,#f7fbff,#ffffff);
    overflow:hidden;
}

.water-circle{
    position:absolute;
    border-radius:50%;
    background:rgba(0,123,255,.08);
    filter:blur(60px);
}

.wc1{
    width:300px;
    height:300px;
    top:-80px;
    left:-80px;
}

.wc2{
    width:350px;
    height:350px;
    right:-40px;
    bottom:-40px;
}

.sc-title{
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

.sc-title span{
    color:#0b7cff;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.sc-title h2{
    font-size:48px;
    font-weight:700;
    color:#082a4d;
    margin:16px 0;
}

.sc-title h2 span{
    display:block;
    color:#00a8ff;
}

.sc-title p{
    color:#111;
    font-size:17px;
}

.choose-card{
    height:100%;
    background:#fff;
    padding:35px 28px;
    border-radius:25px;
    text-align:center;
    transition:.4s;
    border:1px solid #eaf3ff;
    box-shadow:0 16px 40px rgba(0,0,0,.05);
}

.choose-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,123,255,.15);
}

.choose-icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    border-radius:50%;
    background:linear-gradient(135deg,#0b7cff,#00c6ff);
    color:#fff;
}

.choose-card h3{
    font-size:22px;
    font-weight:700;
    color:#082a4d;
    margin-bottom:16px;
}

.choose-card p{
    color:#111;
    line-height:1.8;
    margin:0;
}

@media(max-width:768px){

    .sc-title h2{
        font-size:32px;
    }

    .choose-card{
        padding:30px 22px;
    }

}







.tech-detail-section{
    padding:40px 0;
    background:#f5fbff;
}

.tech-box{
    display:grid;
    grid-template-columns:450px 1fr;
    gap:50px;
    align-items:center;

    background:#fff;
    border-radius:30px;
    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);
}


/* =========================
   PREMIUM TECH ACCORDION
========================= */

.tech-accordion .accordion-item{
    border:none;
    margin-bottom:25px;
    border-radius:25px !important;
    overflow:hidden;

    background:rgba(255,255,255,0.85);

    backdrop-filter:blur(16px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    transition:.4s;
}

.tech-accordion .accordion-item:hover{
    transform:translateY(-5px);

    box-shadow:
    0 25px 60px rgba(0,123,255,.15);
}

.tech-accordion .accordion-button{

    background:transparent;

    box-shadow:none !important;

    padding:28px 35px;

    font-size:20px;
    font-weight:600;

    color:#082a4d;
}

.tech-accordion .accordion-button:not(.collapsed){

    background:
    linear-gradient(
    135deg,
    #017e22,
    #00cfff
    );

    color:#fff;
}

.tech-accordion .accordion-button::after{
    filter:brightness(0) invert(1);
}

.tech-accordion .accordion-body{

    padding:40px;

    background:#fff;
}

/* CONTENT */

.tech-accordion h4{
    color:#082a4d;
    font-size:28px;
    margin-bottom:20px;
    font-weight:700;
}

.tech-accordion h5{
    color:#017e22;
    margin-top:25px;
    margin-bottom:16px;
    font-weight:700;
}

.tech-accordion p{
    line-height:1.9;
    color:#111;
}

/* ADVANTAGES */

.tech-advantages{
    background:#effcf4;
    border-left:5px solid #22c55e;

    padding:25px;
    border-radius:16px;

    margin-top:25px;
}

.tech-advantages h5{
    color:#16a34a;
}

/* LIMITATIONS */

.tech-limitations{
    background:#fff3f3;
    border-left:5px solid #ef4444;

    padding:25px;
    border-radius:16px;

    margin-top:25px;
}

.tech-limitations h5{
    color:#dc2626;
}

/* PROCESS */

.tech-process{

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:30px;
}

.process-step{

    background:#f8fbff;

    padding:20px;

    border-radius:18px;

    position:relative;

    padding-left:75px;
}

.process-step span{

    position:absolute;

    left:20px;
    top:18px;

    width:40px;
    height:40px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #017e22,
    #00cfff
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
}

/* TABLE */

.tech-table{
    overflow-x:auto;
    margin-top:25px;
}

.tech-table table{
    width:100%;
    border-collapse:collapse;
}

.tech-table th{
    background:#017e22;
    color:#fff;
    padding:16px;
}

.tech-table td{
    padding:16px;
    border:1px solid #e5e7eb;
}

/* QUOTE BOX */

.tech-note{

    margin-top:30px;

    background:
    linear-gradient(
    135deg,
    #082a4d,
    #017e22
    );

    color:#fff;

    padding:25px 30px;

    border-radius:20px;

    font-size:18px;

    font-style:italic;
}

/* MOBILE */

@media(max-width:768px){

    .tech-process{
        grid-template-columns:1fr;
    }

    .tech-accordion .accordion-button{
        font-size:18px;
        padding:22px;
    }

    .tech-accordion .accordion-body{
        padding:25px;
    }

}





/* =========================
   CONTACT SECTION
========================= */

.sc-contact-section{
    position:relative;
    padding:50px 0;
    background:linear-gradient(180deg,#f4fbff,#ffffff);
    overflow:hidden;
}

.contact-wave{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;

    background:
    radial-gradient(
    rgba(0,153,255,0.12),
    transparent 70%);

    top:-150px;
    right:-150px;
}

.contact-title{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.contact-title h2{
    font-size:48px;
    font-weight:600;
    color:#111;
    margin:20px 0;
}

.contact-title p{
    color:#111;
    font-size:17px;
}

/* INFO BOX */

.contact-info-box{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-item{
    display:flex;
    gap:20px;

    background:#fff;
    padding:30px;

    border-radius:25px;

    box-shadow:
    0 16px 40px rgba(0,0,0,.06);

    transition:.4s;
}

.contact-item:hover{
    transform:translateY(-8px);
}

.contact-icon{
    width:70px;
    height:70px;

    min-width:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #fd8a01,
    #fcb900);

    color:#fff;

    font-size:28px;
}

.contact-item h4{
    font-size:22px;
    margin-bottom:12px;
    font-weight:700;
}

.contact-item a{
    display:block;
    color:#111;
    text-decoration:none;
    margin-bottom:6px;
}

.contact-item p{
    margin:0;
    color:#111;
    line-height:1.8;
}

/* FORM */

.contact-form-box{
    background:#fff;

    padding:40px;

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.contact-form-box .form-control{
    height:58px;
    border-radius:14px;
    border:1px solid #ddd;
}

.contact-form-box textarea.form-control{
    height:auto;
}

.contact-btn{
    border:none;

    padding:16px 35px;

    border-radius:60px;

    background:
    linear-gradient(
    135deg,
    #fd8a01,
    #fcb900);

    color:#111;

    font-weight:700;

    transition:.4s;
}

.contact-btn:hover{
    transform:translateY(-4px);
}

/* MOBILE */

@media(max-width:768px){

    .contact-title h2{
        font-size:34px;
    }

    .contact-form-box{
        padding:25px;
    }

}




/* =========================
   AMC PLANS SECTION
========================= */

.amc-plans-section{
    position:relative;
    padding:50px 0;
    overflow:hidden;
    background:
    linear-gradient(180deg,#f4fbff,#ffffff,#eef9ff);
}

/* TITLE */

.amc-title{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.amc-subtitle{
    display:inline-block;

    padding:12px 28px;

    border-radius:50px;

    background:#e8f7ff;

    color:#e6a40f;

    font-size:14px;

    font-weight:700;
}

.amc-title h2{
    font-size:48px;
    font-weight:600;
    color:#111;
    margin:20px 0;
}


.amc-title p{
    color:#111;
    font-size:17px;
}

/* CARD */

.amc-card{
    position:relative;

    background:#fff;

    padding:45px 35px;

    border-radius:30px;

    height:100%;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.amc-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 30px 70px rgba(0,153,255,.18);
}

/* FEATURED */
.featured-plan{
    background:
    linear-gradient(
    135deg,
    #d9a106 0%,
    #f5d76e 40%,
    #6ccf3b 100%
    );

    color:#111;

    transform:scale(1.05);
}
.featured-plan ul li{
    border-color:rgba(255,255,255,.15);
}

.featured-plan .plan-btn{
    background:#fff;
    color:#017e22;
}

.featured-plan .plan-icon{
    background:rgba(255,255,255,.15);
    color:#222;
}

/* POPULAR */

.popular-badge{
    position:absolute;

    top:18px;
    right:-38px;

    background:#fff;

    color:#017e22;

    padding:8px 40px;

    font-size:12px;

    font-weight:700;

    transform:rotate(45deg);
}

/* ICON */

.plan-icon{
    width:50px;
    height:50px;

    margin:auto;
    margin-bottom:25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #017e22,
    #017e22
    );

    color:#fff;

    font-size:40px;

    box-shadow:
    0 16px 35px rgba(0,153,255,.25);
}

/* TEXT */

.amc-card h3{
    text-align:center;

    font-size:28px;
    font-weight:700;

    margin-bottom:16px;
}

.plan-price{
    text-align:center;

    font-size:48px;

    font-weight:600;

    margin-bottom:30px;
}

.plan-price span{
    font-size:18px;
    font-weight:500;
}

/* LIST */

.amc-card ul{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.amc-card ul li{

    padding:14px 0;

    border-bottom:1px solid #eee;

    display:flex;
    gap:10px;

    align-items:flex-start;
}

.amc-card ul li i{
    color:#00b4d8;
    margin-top:3px;
}

.featured-plan ul li i{
    color:#fff;
}

/* BUTTON */
.
.plan-btn{

    display:block;

    text-align:center;

    text-decoration:none;

    padding:16px;

    border-radius:60px;

    background:
    linear-gradient(
    135deg,
    #026427,
    #017e22
    );

    color:#fff;

    font-weight:700;

    transition:.4s;
}

.plan-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .featured-plan{
        transform:none;
    }

}

@media(max-width:768px){

    .amc-title h2{
        font-size:34px;
    }

    .plan-price{
        font-size:40px;
    }

}


   .products-section{ background: linear-gradient(180deg, #f5fbff, #ffffff); padding-top: 60px;}



.amc-bottom-info{
    margin-top:70px;
}

.info-box{
    background:#fff;
    padding:35px;
    border-radius:25px;
    text-align:center;
    height:100%;
    box-shadow:0 16px 40px rgba(0,0,0,.06);
}

.info-box i{
    font-size:50px;
    color:#0a9c2f;
    margin-bottom:20px;
    display:block;
}

.info-box h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:16px;
}

.info-box p{
    margin:0;
    color:#111;
    line-height:1.8;
}

.amc-note-wrap{
    margin-top:50px;
    text-align:center;
}

.amc-note-wrap p{
    max-width:900px;
    margin:auto;
    color:#111;
    line-height:1.9;
}



.ro-product-list{    background: linear-gradient(180deg, #f5fbff, #ffffff); padding-top:60px;
}
.product-card{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
    border:1px solid #e5e7eb;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

.product-image{
  
    overflow:hidden;
    background:#f8fafc;
}

.product-image img{
    width:100%;
  
    transition:0.5s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

.product-content{
    padding:25px;
}

.product-category{
    display:inline-block;
    background:#e0f2fe;
    color:#0284c7;
    font-size:13px;
    font-weight:600;
    padding:6px 14px;
    border-radius:30px;
    margin-bottom:16px;
}

.product-content h3{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:12px;
}

.product-content p{
    color:#111;
    line-height:1.8;
    margin-bottom:20px;
}

.product-features{
    padding:0;
    margin:0 0 25px;
    list-style:none;
}

.product-features li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    font-size:16px;
    color:#111;
}

.product-features i{
    color:#10b981;
    font-size:18px;
}

.product-specs{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-bottom:25px;
}

.spec-item{
    background:#f8fafc;
    border-radius:12px;
   
    text-align:center;
}

.spec-item strong{
    display:block;
    font-size:13px;
    color:#111;
    margin-bottom:5px;
}

.spec-item span{
    font-size:16px;
    font-weight:600;
    color:#0f172a;
}

.product-price{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:12px;
}

.sale-price{
    font-size:32px;
    font-weight:600;
    color:#0284c7;
}

.old-price{
    text-decoration:line-through;
    color:#111;
    font-size:18px;
}

.discount-badge{
    background:#dcfce7;
    color:#16a34a;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.installation-note{
    color:#111;
    margin-bottom:25px;
    font-size:14px;
}

.installation-note i{
    color:#0284c7;
    margin-right:8px;
}

.product-buttons{
    display:flex;
    gap:12px;
}

.buy-btn,
.detail-btn{
    flex:1;
    text-align:center;
    padding:13px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.buy-btn{
    background:#0284c7;
    color:#fff;
}

.buy-btn:hover{
    background:#0369a1;
    color:#fff;
}

.detail-btn{
    border:2px solid #0284c7;
    color:#0284c7;
}

.detail-btn:hover{
    background:#0284c7;
    color:#fff;
}

@media(max-width:576px){

    .product-specs{
        grid-template-columns:1fr;
    }

    .product-buttons{
        flex-direction:column;
    }

    .sale-price{
        font-size:28px;
    }

    .product-content h3{
        font-size:22px;
    }
}











.industrial-plants-section{
    padding:50px 0;
    background:#f8fbff;
}

.section-title{
    margin-bottom:60px;
}

.section-title .subtitle{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    font-weight:600;
    color:#0f172a;
    margin:20px 0 16px;
}

.section-title p{
    max-width:800px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
}

.plant-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.plant-content h3{
    font-size:32px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:16px;
}

.plant-content p{
    color:#64748b;
    line-height:1.8;
}

.plant-card{
    background:#fff;
    padding:25px;
    border-radius:16px;
    border:1px solid #e5e7eb;
    height:100%;
    transition:.3s;
}

.plant-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 40px rgba(0,0,0,.08);
}

.plant-card i{
    font-size:35px;
    color:#0d6efd;
    margin-bottom:16px;
    display:block;
}

.plant-card h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.plant-card p{
    font-size:14px;
    margin:0;
}

.industry-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:35px;
}

.industry-tags span{
    background:#fff;
    border:1px solid #dbeafe;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    color:#334155;
}

.industry-tags i{
    color:#0d6efd;
    margin-right:5px;
}

.plant-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:35px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    padding:16px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.plant-btn:hover{
    background:#084298;
    color:#fff;
}

@media(max-width:991px){

    .section-title h2{
        font-size:34px;
    }

    .plant-content{
        margin-top:30px;
    }
}

@media(max-width:576px){

    .section-title h2{
        font-size:28px;
    }

    .plant-content h3{
        font-size:24px;
    }
}






.industrial-section{
    padding:40px 0;

}

.industrial-heading{
    margin-bottom:50px;
}

.industrial-heading span{
    display:inline-block;
    color:#0ea5e9;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.industrial-heading h2{
    font-size:48px;
    font-weight:600;
    color:#111;
    margin:16px 0;
}

.industrial-heading p{
    max-width:750px;
    margin:auto;
    color:#111;
}

.industrial-banner{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    margin-bottom:60px;
}

.industrial-banner img{
    width:100%;
    height:550px;
    object-fit:cover;
    display:block;
}

.industrial-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.industrial-overlay h2{
    font-size:42px;
    font-weight:600;
    margin-bottom:10px;
}

.industrial-overlay p{
    font-size:18px;
}

.industrial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.industry-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.industry-card i{
    font-size:50px;
    color:#0ea5e9;
    margin-bottom:20px;
    display:block;
}

.industry-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:16px;
    color:#111;
}

.industry-card p{
    color:#111;
    line-height:1.8;
}

.stats-bar{
    margin-top:60px;
    background:#0f172a;
    padding:40px;
    border-radius:25px;
    display:flex;
    justify-content:space-between;
    text-align:center;
}

.stat-box h3{
    color:#128c3f;
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.stat-box span{
    color:#222;
}

.industrial-cta{
    margin-top:60px;
}

.industrial-cta h3{
    font-size:34px;
    font-weight:600;
    color:#111;
}

.industrial-cta p{
    color:#111;
    margin:16px auto 25px;
    max-width:700px;
}

.industrial-btn{
    display:inline-block;
    background:#0ea5e9;
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.industrial-btn:hover{
    background:#0284c7;
    color:#fff;
}

@media(max-width:991px){

    .industrial-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-bar{
        flex-wrap:wrap;
        gap:30px;
    }

    .industrial-banner img{
        height:400px;
    }

    .industrial-overlay h2{
        font-size:36px;
    }
}

@media(max-width:576px){

    .industrial-grid{
        grid-template-columns:1fr;
    }

    .industrial-heading h2{
        font-size:32px;
    }

    .industrial-banner img{
        height:260px;
    }

    .industrial-overlay h2{
        font-size:26px;
    }

    .stats-bar{
        flex-direction:column;
    }

    .industrial-cta h3{
        font-size:26px;
    }
}



.accessories-section{
    padding:40px 0;
    background:#f8fafc;
}

.section-title{
    margin-bottom:60px;
}

.section-title span{
    color:#16a34a;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    font-weight:600;
    color:#0f172a;
    margin:16px 0;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#111;
}

.accessories-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.accessory-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.4s;
}

.accessory-card:hover{
    transform:translateY(-8px);
}

.accessory-card img{
    width:100%;
    
    object-fit:cover;
}

.accessory-card h4{
    font-size:20px;
    font-weight:700;
    padding:20px 20px 10px;
    color:#0f172a;
}

.accessory-card p{
    padding:0 20px 25px;
    color:#111;
    line-height:1.7;
}

@media(max-width:991px){

    .accessories-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .accessories-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:32px;
    }

}


.ro-heading-section{
    padding:50px 0 60px;
    background:#f8fafc;
}

.ro-heading-content{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.ro-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#e0f2fe;
    color:#0284c7;
    padding:10px 22px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    margin-bottom:20px;
}

.ro-subtitle i{
    font-size:18px;
}

.ro-heading-content h2{
    font-size:42px;
    font-weight:600;
    color:#0f172a;
    margin-bottom:20px;
    line-height:1.2;
}

.ro-heading-content p{
    font-size:18px;
    line-height:1.9;
    color:#111;
    max-width:760px;
    margin:auto;
}

@media(max-width:991px){

    .ro-heading-content h2{
        font-size:40px;
    }

}

@media(max-width:576px){

    .ro-heading-section{
        padding:70px 0 40px;
    }

    .ro-heading-content h2{
        font-size:30px;
    }

    .ro-heading-content p{
        font-size:16px;
    }

}





/* =========================================
   LEFT FLOATING BUTTONS
========================================= */

.left-floating-buttons {

    position: fixed;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;

    gap: 10px;

    z-index: 9999;
}


/* =========================================
   COMMON BUTTON
========================================= */

.left-floating-buttons a {

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    font-size: 20px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.18);

    transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        transform 0.3s ease;
}


/* =========================================
   CALL
========================================= */

.floating-call {

    background: #078f88;

}


/* =========================================
   WHATSAPP
========================================= */

.floating-whatsapp {

    background: #25D366;

}


/* =========================================
   HOVER
========================================= */

.left-floating-buttons a:hover {

    width: 125px;

    border-radius: 30px;

    justify-content: flex-start;

    padding-left: 16px;

    color: #ffffff;

    transform: translateX(3px);

}


/* =========================================
   TEXT
========================================= */

.left-floating-buttons a span {

    position: absolute;

    left: 48px;

    white-space: nowrap;

    opacity: 0;

    visibility: hidden;

    font-size: 13px;

    font-weight: 700;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}


.left-floating-buttons a:hover span {

    left: 48px;

    opacity: 1;

    visibility: visible;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .left-floating-buttons {

        left: 10px;

        gap: 8px;
    }


    .left-floating-buttons a {

        width: 44px;
        height: 44px;

        font-size: 18px;
    }


    .left-floating-buttons a:hover {

        width: 44px;

        padding-left: 0;

        justify-content: center;

        border-radius: 50%;

        transform: none;
    }


    .left-floating-buttons a span {

        display: none;
    }

}



.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: #00aaff;
}


/* MOBILE */

@media (max-width: 767px) {

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

}