/* =========================
   GLOBAL CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    overflow-x:hidden;
    background:#f7f9fb;
    color:#111827;
}

:root{
    --green:#00A651;
    --green-dark:#008847;
    --red:#EF3E42;
    --dark:#111827;
    --light:#f7f9fb;
    --white:#ffffff;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar{
    background:#fff;
    padding:14px 0;
    transition:.4s;
    z-index:999;
    box-shadow:0 5px 25px rgba(0,0,0,0.05);
}

.navbar-brand img{
    height:65px;
    transition:.4s;
}

.navbar-toggler{
    border:none;
    outline:none;
    box-shadow:none !important;
    font-size:26px;
    color:#111;
}

.navbar-nav .nav-link{
    color:#111827;
    font-weight:600;
    margin:0 12px;
    position:relative;
    transition:.3s;
    font-size:15px;
}

.navbar-nav .nav-link:hover{
    color:var(--green);
}

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    border-radius:50px;
    background:var(--green);
    transition:.4s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

/* =========================
   MODERN HEADER
========================= */

.custom-navbar{
    background:#fff;
    padding:18px 0;
    transition:.4s;
    z-index:999;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.navbar-brand img{
    height:65px;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar{
    background:#fff;
    padding:16px 25px;
    /* border-radius:60px; */
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    position:fixed;
    z-index:999;
}

/* IMPORTANT */

.navbar{
    overflow:visible !important;
}

.main-header{
    overflow:visible !important;
}

.navbar-brand img{
    height:65px;
}

/* MENU */

.navbar-nav{
    gap:8px;
}

.navbar-nav .nav-link{
    color:#111827;
    font-size:16px;
    font-weight:600;
    padding:12px 18px !important;
    border-radius:10px;
    transition:.3s;
    position:relative;
}

.navbar-nav .nav-link:hover{
    color:#00A651;
    background:rgba(0,166,81,0.06);
}

.navbar-nav .nav-link.active{
    color:#00A651;
    background:rgba(0,166,81,0.08);
}

/* =========================
   DROPDOWN ICON
========================= */

.navbar .dropdown-toggle{
    display:flex;
    align-items:center;
}

.navbar .dropdown-toggle::after{
    border:none !important;
    content:"\f107";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    font-size:12px;
    margin-left:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    position:relative;
    top:0;
    vertical-align:middle;
    transition:.3s ease;
}

/* HOVER OPEN */
/* DESKTOP DROPDOWN HOVER */

@media(min-width:992px){

    .navbar .dropdown:hover .dropdown-menu{
        display:block;
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

}

/* DEFAULT */

.custom-dropdown{
    display:block;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s ease;
    border:none;
    border-radius:20px;
    padding:14px;
    width:320px;
    margin-top:15px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* ITEM */

.custom-dropdown .dropdown-item{
    padding:14px 18px;
    border-radius:12px;
    font-weight:600;
    color:#374151;
    transition:.3s;
    margin-bottom:6px;
}

/* HOVER */

.custom-dropdown .dropdown-item:hover{
    background:#00A651;
    color:#fff;
    transform:translateX(5px);
}

/* =========================
   RIGHT SIDE
========================= */

.header-right{
    gap:15px;
}

/* SEARCH */

.search-btn{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111827;
    text-decoration:none;
    transition:.3s;
    font-size:16px;
}

.search-btn:hover{
    background:#00A651;
    color:#fff;
    transform:translateY(-3px);
}

/* BUTTON */

.header-btn{
    display:inline-block;
    background:#00A651;
    color:#fff;
    padding:13px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.header-btn:hover{
    background:#EF3E42;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(239,62,66,0.25);
}

/* =========================
   MOBILE
========================= */

.navbar-toggler{
    border:none;
    box-shadow:none !important;
    font-size:26px;
}

@media(max-width:991px){

    .navbar-collapse{
        background:#fff;
        margin-top:15px;
        padding:20px;
        border-radius:20px;
        box-shadow:0 10px 30px rgba(0,0,0,0.08);

        max-height:80vh;
        overflow-y:auto;
    }

    .navbar-nav{
        margin-bottom:20px;
    }

    .header-right{
        justify-content:center;
    }

    .custom-dropdown{
        width:100%;
        box-shadow:none;
        border:1px solid #eef2f7;

        display:none;
        opacity:1;
        visibility:visible;
        transform:none;
        margin-top:10px;
    }

    .dropdown-menu.show{
        display:block;
    }

}

/* =========================
   ANIMATION
========================= */

@keyframes dropdownFade{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================
   HERO SECTION
========================= */

.hero-section{
    position:relative;
    overflow:hidden;
    padding-top:120px;
    background:linear-gradient(135deg,#f5fff9,#eefbf4);
    min-height:100vh;
    display:flex;
    align-items:center;
}

/* SHAPES */

.hero-shape{
    position:absolute;
    border-radius:50%;
    animation:float 6s ease-in-out infinite;
}

.hero-shape-1{
    width:400px;
    height:400px;
    background:rgba(0,166,81,0.08);
    top:-120px;
    right:-100px;
}

.hero-shape-2{
    width:250px;
    height:250px;
    background:rgba(239,62,66,0.07);
    bottom:40px;
    left:-100px;
    animation-delay:2s;
}

.hero-shape-3{
    width:120px;
    height:120px;
    background:rgba(0,166,81,0.12);
    top:180px;
    right:40%;
    animation-delay:1s;
}

/* CONTENT */

.hero-content{
    position:relative;
    z-index:2;
}

/* TAG */

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:12px 20px;
    border-radius:50px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    color:#00A651;
    font-weight:600;
    margin-bottom:28px;
}

.hero-tag i{
    color:#EF3E42;
}

/* HEADING */

.hero-content h1{
    font-size:68px;
    line-height:1.1;
    font-weight:800;
    color:#111827;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#00A651;
    position:relative;
}

/* TEXT */

.hero-content p{
    color:#5b6470;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
    max-width:620px;
}

/* BUTTONS */

.hero-btns{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:45px;
}

/* MAIN BUTTON */

.main-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#00A651;
    color:#fff;
    padding:16px 38px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
    box-shadow:0 12px 30px rgba(0,166,81,0.25);
}

.main-btn:hover{
    background:#EF3E42;
    color:#fff;
    transform:translateY(-5px);
}

/* OUTLINE BUTTON */

.hero-outline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:2px solid #00A651;
    color:#00A651;
    padding:15px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.hero-outline-btn:hover{
    background:#00A651;
    color:#fff;
    transform:translateY(-5px);
}

/* FEATURES */

.hero-features{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.hero-feature{
    display:flex;
    align-items:center;
    gap:12px;
    color:#374151;
    font-weight:600;
}

.hero-feature i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00A651;
    box-shadow:0 10px 20px rgba(0,0,0,0.06);
}

/* RIGHT IMAGE */

.hero-image{
    position:relative;
    z-index:2;
}

/* IMAGE BG */

.hero-image-bg{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(135deg,#00A651,#009B8A);
    border-radius:40px;
    top:20px;
    left:20px;
    z-index:-1;
}

/* IMAGE */

.hero-image img{
    width:100%;
    border-radius:40px;
    box-shadow:0 30px 60px rgba(0,0,0,0.12);
    animation:heroFloat 4s ease-in-out infinite;
}

/* FLOATING CARD */

.floating-card{
    position:absolute;
    bottom:40px;
    left:-40px;
    background:#fff;
    padding:18px 22px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
    animation:float 4s ease-in-out infinite;
}

.floating-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#00A651;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.floating-card h5{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#111827;
}

.floating-card p{
    margin:0;
    color:#6b7280;
    font-size:14px;
}

/* ANIMATION */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes heroFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .hero-section{
        padding:140px 0 80px;
        text-align:center;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-features{
        justify-content:center;
    }

    .hero-image{
        margin-top:60px;
    }

    .floating-card{
        left:20px;
        bottom:20px;
    }

}

@media(max-width:576px){

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-btns{
        flex-direction:column;
    }

    .hero-outline-btn,
    .main-btn{
        width:100%;
    }

    .floating-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }

}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
    padding:130px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

/* LEFT CONTENT */

.about-content{
    padding-right:30px;
}

/* HEADING */

.about-content h2{
    font-size:35px;
    line-height:1.1;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
    max-width:650px;
}

.about-content h2 span{
    color:var(--green);
    position:relative;
}

/* LINE */

.title-line{
    width:95px;
    height:5px;
    border-radius:50px;
    background:linear-gradient(to right,var(--green),var(--red));
    margin-bottom:28px;
}

/* TEXT */

.about-content p{
    color:#5b6470;
    line-height:1.9;
    margin-bottom:20px;
    font-size:15px;
    max-width:560px;
}

/* FACILITY BOX */

.facility-box{
    background:#f8fbff;
    border-left:5px solid var(--green);
    padding:25px;
    border-radius:22px;
    margin:35px 0;
    box-shadow:0 12px 35px rgba(0,0,0,0.05);
    transition:.4s ease;
}

.facility-box:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

/* FACILITY TITLE */

.facility-box h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
    color:#111827;
}

/* LIST */

.facility-box ul{
    margin:0;
    padding-left:20px;
}

.facility-box ul li{
    margin-bottom:12px;
    color:#5b6470;
    line-height:1.8;
    font-size:15px;
}

/* BUTTON */

.about-content .main-btn{
    margin-top:10px;
}

/* IMAGE SIDE */

.about-image{
    position:relative;
    padding-left:30px;
}

/* BACKGROUND SHAPE */

.about-image::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(135deg,#00A651,#009B8A);
    border-radius:35px;
    top:20px;
    left:0;
    z-index:-1;
    opacity:.12;
}

/* IMAGE */

.about-image img{
    width:100%;
    border-radius:35px;
    box-shadow:0 30px 70px rgba(0,0,0,0.12);
    transition:.5s ease;
    position:relative;
    z-index:2;
}

/* IMAGE HOVER */

.about-image:hover img{
    transform:translateY(-8px) scale(1.02);
}

/* FLOATING CARD */

.about-image::after{
    content:'Trusted Healthcare';
    position:absolute;
    bottom:25px;
    left:0;
    background:#fff;
    color:#111827;
    font-weight:700;
    padding:16px 24px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    z-index:3;
    animation:float 4s ease-in-out infinite;
}

/* ANIMATION */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .about-section{
        padding:90px 0;
    }

    .about-content{
        padding-right:0;
    }

    .about-content h2{
        font-size:48px;
        max-width:100%;
    }

    .about-image{
        padding-left:0;
        margin-top:30px;
    }

}

@media(max-width:576px){

    .about-content h2{
        font-size:38px;
    }

    .about-content p{
        font-size:14px;
    }

    .facility-box{
        padding:20px;
    }

    .facility-box h4{
        font-size:20px;
    }

    .facility-box ul li{
        font-size:14px;
    }

    .about-image::after{
        font-size:14px;
        padding:14px 18px;
    }

}

/* =========================
   PRODUCT SECTION
========================= */

.product-layout-section{
    padding:110px 0;
    background:#f7f9fb;
}

.section-heading h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
}

.section-heading p{
    color:#666;
    margin-top:15px;
    font-size:16px;
}

.heading-line{
    width:90px;
    height:5px;
    background:linear-gradient(to right,var(--green),var(--red));
    margin:18px auto;
    border-radius:50px;
}

/* PRODUCT CARD */

.product-box{
    display:block;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    text-decoration:none;
    transition:.5s;
    height:100%;
    position:relative;
    border:1px solid #eef1f5;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.product-box:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

/* PRODUCT IMAGE */

.product-img{
    height:260px;
    padding:30px;
    position:relative;
    overflow:hidden;
    background:#fff;
}

.product-img::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(0,166,81,0.07);
    top:-50px;
    right:-50px;
    transition:.5s;
}

.product-box:hover .product-img::before{
    transform:scale(1.3);
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.5s;
    position:relative;
    z-index:2;
}

.product-box:hover .product-img img{
    transform:scale(1.08) rotate(2deg);
}

/* PRODUCT CONTENT */

.product-info{
    padding:28px;
}

.product-info h4{
    color:#111827;
    font-size:21px;
    font-weight:700;
    margin-bottom:12px;
    transition:.3s;
}

.product-box:hover .product-info h4{
    color:var(--green);
}

.product-info span{
    color:var(--green);
    font-weight:600;
    font-size:15px;
}

.product-info i{
    margin-left:8px;
    transition:.4s;
}

.product-box:hover .product-info i{
    margin-left:15px;
}

/* =========================
   WHY CHOOSE US
========================= */

.why-choose-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(135deg,#f5fff9,#eefbf4);
    overflow:hidden;
}

/* SHAPES */

.why-shape{
    position:absolute;
    border-radius:50%;
}

.why-shape-1{
    width:350px;
    height:350px;
    background:rgba(0,166,81,0.07);
    top:-120px;
    left:-120px;
}

.why-shape-2{
    width:250px;
    height:250px;
    background:rgba(239,62,66,0.06);
    bottom:-100px;
    right:-80px;
}

/* TITLE */

.section-title{
    max-width:750px;
    margin:auto;
}

.section-tag{
    display:inline-block;
    background:#fff;
    color:#00A651;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.section-title h2{
    font-size:62px;
    line-height:1.1;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.section-title h2 span{
    color:#00A651;
}

.section-title p{
    color:#5b6470;
    font-size:16px;
    line-height:1.9;
}

/* CARD */

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:30px;
    text-align:center;
    transition:.4s;
    height:100%;
    border:1px solid #eef2f7;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    position:relative;
    overflow:hidden;
}

/* TOP EFFECT */

.why-card::before{
    content:'';
    position:absolute;
    width:120%;
    height:5px;
    background:linear-gradient(to right,#00A651,#EF3E42);
    top:0;
    left:-10%;
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

/* ICON */

.why-icon{
    width:90px;
    height:90px;
    border-radius:25px;
    background:linear-gradient(135deg,#00A651,#009B8A);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin:0 auto 25px;
    box-shadow:0 15px 35px rgba(0,166,81,0.25);
}

/* TITLE */

.why-card h4{
    font-size:24px;
    font-weight:700;
    color:#111827;
    margin-bottom:14px;
}

/* TEXT */

.why-card p{
    color:#6b7280;
    line-height:1.8;
    font-size:15px;
    margin:0;
}

/* =========================
   COUNTER SECTION
========================= */

.counter-section{
    padding:100px 0;
    background:linear-gradient(135deg,#00A651,#009B8A);
    position:relative;
    overflow:hidden;
}

/* COUNTER BOX */

.counter-box{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    padding:45px 25px;
    border-radius:28px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.15);
    transition:.4s;
}

.counter-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.18);
}

/* NUMBER */

.counter-box h2{
    font-size:62px;
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
}

/* TEXT */

.counter-box p{
    color:#f3f4f6;
    font-size:17px;
    margin:0;
    font-weight:500;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .section-title h2{
        font-size:46px;
    }

}

@media(max-width:576px){

    .why-choose-section,
    .counter-section{
        padding:80px 0;
    }

    .section-title h2{
        font-size:34px;
    }

    .counter-box h2{
        font-size:42px;
    }

}
/* =========================
   FOOTER
========================= */

.footer{
    background:linear-gradient(135deg,#009B8A,#00A651);
    color:#fff;
    padding-top:100px;
    position:relative;
    overflow:hidden;
}

/* SHAPE */

.footer::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    top:-180px;
    right:-180px;
}

/* LOGO */

.footer-logo{
    height:70px;
    margin-bottom:25px;
}

/* TEXT */

.footer p{
    color:#f3f4f6;
    line-height:1.9;
    font-size:15px;
}

/* TITLE */

.footer h4{
    font-size:24px;
    margin-bottom:28px;
    font-weight:700;
    color:#fff;
}

/* LIST */

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer ul li{
    margin-bottom:14px;
}

/* LINKS */

.footer ul li a{
    color:#f3f4f6;
    text-decoration:none;
    transition:.3s;
    position:relative;
}

.footer ul li a:hover{
    color:#fff;
    padding-left:8px;
}

/* SOCIAL */

.social-icons{
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:10px;
    color:#fff;
    transition:.4s;
    text-decoration:none;
}

.social-icons a:hover{
    background:#fff;
    color:#00A651;
    transform:translateY(-5px);
}

/* NEWSLETTER */

.footer-news-text{
    margin-bottom:22px;
}

/* FORM */

.newsletter-form{
    position:relative;
}

/* INPUT */

.newsletter-form input{
    width:100%;
    height:58px;
    border:none;
    outline:none;
    border-radius:60px;
    padding:0 22px;
    font-size:15px;
    color:#111827;
}

/* BUTTON */

.newsletter-form button{
    width:100%;
    margin-top:15px;
    height:55px;
    border:none;
    border-radius:60px;
    background:#EF3E42;
    color:#fff;
    font-weight:600;
    transition:.4s;
}

.newsletter-form button:hover{
    background:#111827;
}

/* FOOTER BOTTOM */

.footer-bottom{
    margin-top:70px;
    padding:25px 0;
    border-top:1px solid rgba(255,255,255,0.12);
    text-align:center;
}

.footer-bottom p{
    margin:0;
    font-size:15px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .footer{
        padding-top:80px;
    }

}

@media(max-width:576px){

    .footer h4{
        margin-top:10px;
    }

    .footer-logo{
        height:60px;
    }

}

/* =========================
   ANIMATIONS
========================= */

.product-box,
.main-btn,
.about-image img,
.mega-item,
.social-icons a{
    will-change:transform;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .mega-menu{
        width:750px;
    }

}

@media(max-width:991px){

    .hero-content h1{
        font-size:52px;
    }

    .section-heading h2,
    .about-content h2{
        font-size:40px;
    }

    .mega-menu{
        width:100%;
        margin-top:10px;
    }

    .navbar-nav{
        padding-top:20px;
    }

    .nav-link{
        margin:10px 0;
    }

}

@media(max-width:768px){

    .hero-section{
        text-align:center;
    }

    .hero-content p{
        margin:auto;
        margin-bottom:30px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .about-content h2,
    .section-heading h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:15px;
    }

    .product-img{
        height:220px;
    }

    .footer-logo{
        height:60px;
    }

}

 /* =========================
   PRODUCT HERO
========================= */

.product-hero{
    position:relative;
    padding:170px 0 90px;
    background:linear-gradient(135deg,#f5fff9,#eefbf4);
    overflow:hidden;
    text-align:center;
}

/* SHAPES */

.product-hero::before{
    content:'';
    position:absolute;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(0,166,81,0.08);
    top:-120px;
    right:-100px;
}

.product-hero::after{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(239,62,66,0.06);
    bottom:-100px;
    left:-80px;
}

/* CONTENT */

.product-hero-content{
    position:relative;
    z-index:2;
}

/* SMALL LABEL */

.product-hero-content span{
    display:inline-block;
    background:#fff;
    color:#00A651;
    padding:10px 22px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* TITLE */

.product-hero-content h1{
    font-size:52px;
    line-height:1.1;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
}

/* TEXT */

.product-hero-content p{
    color:#5b6470;
    line-height:1.9;
    max-width:620px;
    margin:auto;
    font-size:15px;
}

/* =========================
   PRODUCT SECTION
========================= */

.product-page-section{
    padding:110px 0;
    background:#fff;
}

/* CARD */

.product-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 20px 50px rgba(0,0,0,0.06);
    cursor:pointer;
    height:100%;
    position:relative;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,0.10);
}

/* IMAGE */

.product-image{
    background:#f8fbff;
    padding:40px;
    text-align:center;
    position:relative;
}

.product-image::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(0,166,81,0.08);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.product-image img{
    width:100%;
    height:260px;
    object-fit:contain;
    position:relative;
    z-index:2;
    transition:.4s ease;
}

.product-card:hover img{
    transform:scale(1.06);
}

/* CONTENT */

.product-content{
    padding:32px;
}

/* CODE */

.product-code{
    display:inline-block;
    background:#e8fff2;
    color:#00A651;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

/* TITLE */

.product-content h3{
    font-size:24px;
    line-height:1.3;
    font-weight:800;
    color:#111827;
    margin-bottom:14px;
}

/* TEXT */

.product-content p{
    color:#5b6470;
    line-height:1.9;
    margin-bottom:25px;
    font-size:14px;
}

/* BUTTON */

.product-btn{
    display:flex;
    align-items:center;
    gap:10px;
    color:#00A651;
    font-weight:700;
    transition:.3s ease;
}

.product-card:hover .product-btn{
    gap:16px;
}

/* =========================
   MODAL
========================= */

.custom-modal{
    border:none;
    border-radius:35px;
    overflow:hidden;
    position:relative;
    box-shadow:0 30px 80px rgba(0,0,0,0.15);
}

/* CLOSE */

.custom-close{
    position:absolute;
    top:18px;
    right:18px;
    z-index:5;
    background:#fff !important;
    border-radius:50%;
    opacity:1;
    width:38px;
    height:38px;
}

/* IMAGE */

.modal-image{
    background:#f8fbff;
    padding:50px;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.modal-image::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(0,166,81,0.08);
}

.modal-image img{
    width:100%;
    max-height:420px;
    object-fit:contain;
    position:relative;
    z-index:2;
}

/* CONTENT */

.modal-content-box{
    padding:50px;
}

/* CODE */

.modal-content-box span{
    display:inline-block;
    background:#e8fff2;
    color:#00A651;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

/* TITLE */

.modal-content-box h2{
    font-size:38px;
    line-height:1.2;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
}

/* TEXT */

.modal-content-box p{
    color:#5b6470;
    line-height:1.9;
    margin-bottom:25px;
    font-size:15px;
}

/* LIST */

.modal-content-box ul{
    padding-left:18px;
    margin:0;
}

.modal-content-box ul li{
    margin-bottom:12px;
    color:#374151;
    line-height:1.8;
    font-size:14px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .product-hero{
        padding:150px 0 80px;
    }

    .product-hero-content h1{
        font-size:42px;
    }

    .product-page-section{
        padding:80px 0;
    }

    .modal-content-box{
        padding:35px;
    }

    .modal-content-box h2{
        font-size:32px;
    }

}

@media(max-width:576px){

    .product-hero{
        padding:140px 0 70px;
    }

    .product-hero-content h1{
        font-size:34px;
    }

    .product-content{
        padding:24px;
    }

    .product-content h3{
        font-size:22px;
    }

    .modal-content-box{
        padding:24px;
    }

    .modal-content-box h2{
        font-size:28px;
    }

}