*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f5f5;
    color:#222;
}

img{
    width:100%;
    display:block;
}

.main-profile{
    max-width:500px;
    margin:auto;
    background:#fff;
    min-height:100vh;
}

/* HERO SECTION */

.hero-section{
    width:100%;
    max-width:500px;
    margin:auto;
    background:#fff;
    border-radius:0 0 0 0px;
    overflow:hidden;
    position:relative;
}

/* SLIDER */

.hero-slider{
    position:relative;
    width:100%;
    height:280px;
    overflow:hidden;
}

/* SLIDES */

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* DARK OVERLAY */

.hero-slider::after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.20)
    );
    z-index:1;
}

/* OVERLAY TEXT */

.slider-overlay{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:5;
    color:#fff;
    text-align:center;
    width:90%;
}

.slider-overlay h4{
    font-size:15px;
    margin-bottom:10px;
    letter-spacing:1px;
    color:#d4ffda;
    font-weight:600;
}

.slider-overlay h1{
    font-size:32px;
    line-height:1.2;
    margin-bottom:12px;
    font-weight:800;
}

.slider-overlay p{
    font-size:15px;
    line-height:1.6;
    color:#f1f1f1;
}

/* PROFILE SECTION */

.profile-box{
    text-align:center;
    padding:0 20px 40px;
    position:relative;
}

/* LOGO */

.profile-logo{
    width:120px;
    height:120px;
    margin:auto;
    margin-top:-60px;
    background:#fff;
    border-radius:30px;
    padding:8px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    position:relative;
    z-index:10;
}

.profile-logo img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:25px;
}

/* CONTENT */

.hero-content h2{
    font-size:30px;
    margin-top:20px;
    margin-bottom:10px;
    color:#222;
    font-weight:800;
}

.hero-content span{
    color:#666;
    font-size:16px;
    line-height:1.7;
    display:block;
    max-width:90%;
    margin:auto;
}

/* MOBILE */

@media(max-width:480px){

    .hero-slider{
        height:260px;
    }

    .slider-overlay h1{
        font-size:28px;
    }

    .slider-overlay p{
        font-size:14px;
    }

    .hero-content h2{
        font-size:26px;
    }

}


/* ABOUT SECTION */

.about-section{
    width:100%;
    max-width:500px;
    margin:auto;
    background:#fff;
    padding:10px 20px 35px;
}

/* SOCIAL ICONS */

.social-icons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:20px 0;
}

.social-icons a{
    width:45px;
    height:45px;
    background:linear-gradient(135deg,#1f7a45,#39b56b);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:20px;
    transition:0.3s;
    box-shadow:0 6px 15px rgba(34,139,34,0.15);
}

.social-icons a:hover{
    transform:translateY(-4px);
}

/* ABOUT CONTENT */

.about-content{
    text-align:center;
}

.about-content p{
    font-size:15px;
    line-height:1.9;
    color:#555;
    margin-bottom:15px;
}

.about-content b{
    color:#163d26;
}




/* CONTACT SECTION */

.contact-section{
    width:100%;
    max-width:500px;
    margin:auto;
    background:#fff;
    padding:10px 20px 30px;
}

/* TITLE */

.section-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-bottom:20px;
}

.section-title span{
    width:55px;
    height:2px;
    background:#cfe6d3;
}

.section-title h2{
    font-size:30px;
    color:#163d26;
    font-weight:800;
}

/* GRID */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

/* CARD */

.contact-card{
    background:#f8fff9;
    border:2px solid #dceedd;
    border-radius:12px;
    text-align:center;
    padding:25px 10px;
    text-decoration:none;
    color:#163d26;
    transition:0.3s;
    position:relative;
    min-height:65px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

/* ICON */

.contact-icon{
    width:52px;
    height:52px;
    background:linear-gradient(135deg,#7CD705,#39b56b);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin:auto;
    margin-top:-42px;
    margin-bottom:14px;
    box-shadow:0 8px 18px rgba(34,139,34,0.18);
}

/* TEXT */

.contact-card p{
    font-size:14px;
    line-height:1.5;
    font-weight:700;
    word-break:break-word;
}

/* HOVER */

.contact-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

/* MOBILE */

@media(max-width:480px){

    .contact-grid{
        gap:12px;
    }

    .contact-card{
        min-height:100px;
        padding:16px 8px;
    }

    .contact-card p{
        font-size:13px;
    }

}



/* FACILITY SECTION */

.facility-section{
    width:100%;
    max-width:500px;
    margin:auto;
    background:#fff;
    padding:10px 20px 40px;
}

/* GRID */

.facility-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

/* CARD */

.facility-card{
    background:#fff;
    border:2px solid #dceedd;
    border-radius:12px;
    overflow:hidden;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* IMAGE */

.facility-card img{
    width:100%;
    height:120px;
    object-fit:cover;
}

/* CONTENT */

.facility-content{
    padding:15px;
}

/* TITLE */

.facility-content h3{
    font-size:18px;
    color:#163d26;
    margin-bottom:8px;
    font-weight:800;
}

/* TEXT */

.facility-content p{
    font-size:13px;
    line-height:1.7;
    color:#666;
}

/* HOVER */

.facility-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

/* MOBILE */

@media(max-width:480px){

    .facility-grid{
        gap:14px;
    }

    .facility-card img{
        height:100px;
    }

    .facility-content{
        padding:12px;
    }

    .facility-content h3{
        font-size:16px;
    }

}


/* GALLERY SECTION */

.gallery-section{
    width:100%;
    max-width:500px;
    margin:auto;
    background:#fff;
    padding:10px 20px 40px;
}

/* SLIDER */

.gallery-slider{
    position:relative;
    width:100%;
    height:240px;
    overflow:hidden;
    border-radius:12px;
}

/* SLIDES */

.gallery-slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:0.5s;
}

.gallery-slide.active{
    opacity:1;
}

/* IMAGE */

.gallery-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px;
}

/* BUTTONS */

.gallery-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,0.5);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:5;
    transition:0.3s;
}

/* LEFT */

.prev{
    left:15px;
}

/* RIGHT */

.next{
    right:15px;
}

/* HOVER */

.gallery-btn:hover{
    background:#39b56b;
}

/* MOBILE */

@media(max-width:480px){

    .gallery-slider{
        height:220px;
    }

}


/* TESTIMONIAL SECTION */

.testimonial-section{
    width:100%;
    max-width:500px;
    margin:auto;
    background:#ffffff;
    padding:10px 20px 40px;
}

/* SLIDER */

.testimonial-slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

/* CARD */

.testimonial-card{
    display:none;
    align-items:center;
    gap:15px;
    background:#edf8ef;
    border-radius:25px;
    padding:20px;
    border:1px solid #d7eddc;
}

/* ACTIVE */

.testimonial-card.active{
    display:flex;
}

/* IMAGE */

.testimonial-image img{
    width:90px;
    height:90px;
    border-radius:12px;
    object-fit:cover;
}

/* CONTENT */

.testimonial-content h3{
    font-size:20px;
    color:#14532d;
    margin-bottom:8px;
}

.testimonial-content p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* MOBILE */

@media(max-width:480px){

    .testimonial-card{
        flex-direction:column;
        text-align:center;
    }

}


/* GOOGLE REVIEW BUTTON */

.review-btn-section{
    width:100%;
    max-width:500px;
    margin:auto;
    background:#ffffff;
    padding:10px 20px 40px;
}

.google-review-box{
    background:#f4fbf5;
    border-radius:12px;
    padding:30px 20px;
    text-align:center;
    border:1px solid #d7eddc;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.google-icon{
    width:70px;
    margin-bottom:15px;
}

.google-review-box h3{
    font-size:28px;
    color:#14532d;
    margin-bottom:10px;
}

.google-review-box p{
    font-size:15px;
    color:#666;
    margin-bottom:20px;
}

.review-btn{
    display:inline-block;
    background:#22c55e;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.review-btn:hover{
    background:#15803d;
}


/* SOCIAL SECTION */

.social-section{
    width:100%;
    max-width:500px;
    margin:auto;
    background:#ffffff;
    padding:20px 20px 40px;
}

/* ICONS */

.social-icons{
    display:flex;
    justify-content:center;
    gap:18px;
}

/* BUTTON */

.social-btn{
    width:58px;
    height:58px;
    background:#edf8ef;
    border:1px solid #d7eddc;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#14532d;
    font-size:24px;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* HOVER */

.social-btn:hover{
    background:#22c55e;
    color:#ffffff;
    transform:translateY(-4px);
}


/* GO TO TOP BUTTON */

#topBtn{
    position:fixed;
    bottom:20px;
    right:20px;
    width:55px;
    height:55px;
    border:none;
    border-radius:12px;
    background:#22c55e;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    display:none;
    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* HOVER */

#topBtn:hover{
    background:#15803d;
    transform:translateY(-4px);
}