/* ================= BASE ================= */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
}

/* ================= TOP BAR ================= */
.topbar {
    background: #06476d;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-left p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e6f6fb;
}

/* Social icons */
.top-right a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1aa3c7;
    color: #fff;
    margin-left: 6px;
    transition: 0.3s;
}

.top-right a:hover {
    background: #06476d;
    transform: translateY(-2px);
}

/* ================= NAVBAR ================= */
.navbar-glass {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95) !important;
}

.logo-img {
    height: 55px;
}

.brand-text {
    font-weight: 800;
    color: #06476d;
    margin-left: 8px;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    color: #06476d;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: #1aa3c7;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* BUTTON */
.btn-donate {
    background: linear-gradient(45deg, #06476d, #1aa3c7);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 18px;
    transition: 0.3s;
    border: none;
}

.btn-donate:hover {
    transform: scale(1.05);
}

/* ================= HERO ================= */
.hero-slide {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(6,71,109,0.75), rgba(26,163,199,0.35));
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.95;
}

/* ================= SECTIONS ================= */
/* ================= ABOUT SECTION BASE ================= */
.about-section {
    background: #f3fbfe;
}

/* IMAGE */
.about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(6,71,109,0.12);
    transition: 0.3s;
}

.about-img:hover {
    transform: scale(1.03);
}

/* LIST STYLE */
.home-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.home-list li {
    margin-bottom: 8px;
    font-weight: 500;
    color: #06476d;
}

/* BUTTON */
.btn-home {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border-radius: 30px;
    background: linear-gradient(45deg, #06476d, #1aa3c7);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-home:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* ================= RESPONSIVE DESIGN ================= */

/* TABLET */
@media (max-width: 992px) {

    .about-section h2 {
        font-size: 28px;
        text-align: center;
    }

    .about-section p {
        text-align: center;
    }

    .home-list {
        text-align: center;
    }

    .btn-home {
        display: block;
        width: fit-content;
        margin: 20px auto 0;
    }

    .about-img {
        margin-bottom: 20px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .about-section {
        padding: 40px 15px;
    }

    .about-section h2 {
        font-size: 22px;
    }

    .about-section p {
        font-size: 14px;
    }

    .home-list li {
        font-size: 14px;
    }

    .btn-home {
        padding: 8px 18px;
        font-size: 14px;
    }
}

.services-section {
    background: #eef9fc;
    padding: 70px 0;
}

/* ================= SERVICE CARD ================= */
.service-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(6,71,109,0.08);
    transition: 0.3s;
    height: 100%;
    border-top: 3px solid #1aa3c7;
}

.service-card i {
    font-size: 40px;
    color: #1aa3c7;
    margin-bottom: 15px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(6,71,109,0.18);
}

/* ================= ABOUT ================= */
.about-img {
    border-radius: 12px;
    transition: 0.3s;
}

.about-img:hover {
    transform: scale(1.02);
}

/* ================= FOOTER ================= */
.footer-modern {
    background: #06476d;
    color: #d6e2f0;
    padding: 70px 0 20px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #cfeef7;
}

.footer-modern h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
}

.footer-modern h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 45px;
    height: 3px;
    background: #1aa3c7;
    border-radius: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #cfeef7;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #1aa3c7;
    padding-left: 6px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #cfeef7;
    display: flex;
    gap: 8px;
}

.footer-contact i {
    color: #1aa3c7;
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1aa3c7;
    color: #fff;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #fff;
    color: #06476d;
    transform: translateY(-3px);
}

.footer-line {
    border-color: rgba(255,255,255,0.2);
    margin: 30px 0 15px;
}

.footer-bottom {
    font-size: 13px;
    color: #cfeef7;
}

/* ================= FLOAT BUTTONS ================= */
.phonecall {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* ================= RESPONSIVE SYSTEM ================= */

/* LARGE DESKTOP */
@media (min-width: 1400px) {
    .hero-content h1 {
        font-size: 60px;
    }
}

/* LAPTOP */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 44px;
    }
}

/* TABLET */
@media (max-width: 991px) {
    .hero-slide {
        height: 75vh;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .hero-slide {
        height: 65vh;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .topbar-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .top-left {
        justify-content: center;
    }

    .footer-modern {
        text-align: center;
    }

    .footer-modern h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center;
    }
}

/* SMALL MOBILE */
@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .btn-donate {
        padding: 6px 14px;
        font-size: 13px;
    }
}
/* ================= CONTACT SECTION ================= */
.contact-section {
    background: #f3fbfe;
}

.contact-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(6,71,109,0.08);
    transition: 0.3s;
    height: 100%;
    border-top: 3px solid #1aa3c7;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(6,71,109,0.18);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #06476d, #1aa3c7);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
}

.contact-card h5 {
    font-weight: 600;
    color: #06476d;
}

.contact-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* BUTTONS */
.btn-main {
    background: linear-gradient(45deg, #06476d, #1aa3c7);
    color: #fff;
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 600;
    border: none;
}

.btn-main:hover {
    transform: scale(1.05);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}
/* ================= COUNTER SECTION ================= */
.counter-section {
    background: linear-gradient(45deg, #06476d, #1aa3c7);
    color: #fff;
}

.counter-box {
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.3s;
}

.counter-box i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #fff;
}

.counter-box h2 {
    font-size: 40px;
    font-weight: 800;
}

.counter-box p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.counter-box:hover {
    transform: translateY(-6px);
}
/* ================= TESTIMONIALS ================= */
.testimonial-section {
    background: #f3fbfe;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(6,71,109,0.08);
    transition: 0.3s;
    height: 100%;
    position: relative;
    border-top: 3px solid #1aa3c7;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(6,71,109,0.18);
}

.quote-icon {
    font-size: 30px;
    color: #1aa3c7;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.testimonial-card h6 {
    margin-top: 15px;
    font-weight: 600;
    color: #06476d;
}
/* better spacing for long service titles */
.service-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #06476d;
    margin-top: 10px;
    line-height: 1.4;
}
/* ================= SERVICES BUTTON ================= */
.btn-services {
    background: linear-gradient(45deg, #06476d, #1aa3c7);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(6,71,109,0.2);
}

.btn-services:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(26,163,199,0.35);
}
/* ================= IMAGE SERVICE CARD ================= */
.service-img-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(6,71,109,0.08);
    transition: 0.3s;
    background: #fff;
}

.service-img-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.service-img-card:hover img {
    transform: scale(1.1);
}

.service-content {
    padding: 15px;
    background: #fff;
}

.service-content h5 {
    font-weight: 600;
    color: #06476d;
    margin-bottom: 5px;
}

.service-content p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.service-img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(6,71,109,0.18);
}

/* BUTTON (reuse your existing one) */
.btn-services {
    background: linear-gradient(45deg, #06476d, #1aa3c7);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-services:hover {
    transform: translateY(-3px);
    color: #fff;
}
/* ================= GALLERY SECTION ================= */
.gallery-section {
    background: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(6,71,109,0.08);
    transition: 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover {
    box-shadow: 0 12px 30px rgba(6,71,109,0.2);
    transform: translateY(-5px);
}

/* BUTTON */
.btn-gallery {
    background: linear-gradient(45deg, #06476d, #1aa3c7);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-gallery:hover {
    transform: translateY(-3px);
    color: #fff;
}
/* ================= HOME CONTENT SECTION ================= */
.home-content-section {
    background: #f3fbfe;
}

.home-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(6,71,109,0.10);
    transition: 0.3s;
}

.home-img:hover {
    transform: scale(1.03);
}

.home-list {
    padding: 0;
    margin-top: 15px;
    list-style: none;
}

.home-list li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #06476d;
    font-weight: 500;
}

/* BUTTON */
.btn-home {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border-radius: 30px;
    background: linear-gradient(45deg, #06476d, #1aa3c7);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-home:hover {
    transform: translateY(-3px);
    color: #fff;
}
/* ================= SIMPLE ABOUT HERO ================= */
.about-hero-simple {
    background: linear-gradient(135deg, #06476d, #1aa3c7);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.about-hero-simple h5 {
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 10px;
}

.about-hero-simple h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-hero-simple p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* BUTTON */
.btn-about-hero {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    background: #fff;
    color: #06476d;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-about-hero:hover {
    transform: translateY(-3px);
    background: #f0f0f0;
    color: #06476d;
}
/* ================= WHY / VISION / MISSION ================= */
.why-section {
    background: #f3fbfe;
}

.info-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(6,71,109,0.08);
    transition: 0.3s;
    height: 100%;
    border-top: 4px solid #1aa3c7;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(6,71,109,0.18);
}

.info-card i {
    font-size: 40px;
    color: #1aa3c7;
    margin-bottom: 10px;
}

.info-card h5 {
    font-weight: 700;
    color: #06476d;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
/* ================= ALT HOME SECTION ================= */
.home-alt-section {
    background: #f3fbfe;
}

/* IMAGE STACK DESIGN */
.img-stack {
    position: relative;
    width: 100%;
    height: 420px;
}

.img-stack img {
    width: 70%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(6,71,109,0.15);
    position: absolute;
    transition: 0.3s;
}

.img1 {
    top: 0;
    left: 0;
}

.img2 {
    bottom: 0;
    right: 0;
}

/* FEATURE BOXES */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.feature-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(6,71,109,0.08);
    transition: 0.3s;
}

.feature-box i {
    font-size: 22px;
    color: #1aa3c7;
    margin-bottom: 5px;
}

.feature-box h6 {
    margin: 0;
    font-weight: 600;
    color: #06476d;
}

.feature-box p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* BUTTON */
.btn-alt {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 30px;
    background: linear-gradient(45deg, #06476d, #1aa3c7);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-alt:hover {
    transform: translateY(-3px);
    color: #fff;
}