body{
font-family: 'Poppins', sans-serif;
overflow-x:hidden;
}


/* ================= TOP BAR ================= */
.topbar{
background:#0b1f33;
color:white;
font-size:14px;
padding:6px 0;
}

.topbar a{
color:white;
margin-left:12px;
transition:0.3s;
}

.topbar a:hover{
color:#ffdd57;
transform:scale(1.1);
}

/* ================= NAVBAR GLASS EFFECT ================= */
.navbar-glass{
backdrop-filter: blur(10px);
background: rgba(255,255,255,0.85) !important;
transition:0.3s;
}

/* LOGO */
.logo-img{
height:55px;
margin-right:10px;
}

.brand-text{
font-weight:800;
font-size:18px;
color:#0b5ed7;
letter-spacing:1px;
}

/* MENU LINKS */
.navbar-nav .nav-link{
font-weight:500;
margin:0 8px;
position:relative;
}

.navbar-nav .nav-link::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:0%;
height:2px;
background:#0b5ed7;
transition:0.3s;
}

.navbar-nav .nav-link:hover::after{
width:100%;
}

/* CTA BUTTON */
.btn-donate{
background:linear-gradient(45deg,#ff6b6b,#ffb347);
color:white;
font-weight:600;
border-radius:30px;
padding:8px 18px;
transition:0.3s;
}

.btn-donate:hover{
transform:scale(1.05);
box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media(max-width:768px){
.brand-text{
font-size:14px;
}
}

/* ===== HERO SLIDER PREMIUM ===== */

.hero-slide{
height: 90vh;
background-size: cover;
background-position: center;
position: relative;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background: linear-gradient(
rgba(0,0,0,0.65),
rgba(0,0,0,0.45)
);
}

.hero-content{
position:relative;
z-index:2;
top:50%;
transform:translateY(-50%);
color:white;
max-width:700px;
animation: fadeUp 1s ease-in-out;
}

.hero-content h1{
font-weight:800;
letter-spacing:1px;
}

.hero-content p{
font-size:18px;
opacity:0.9;
}

/* animation */
@keyframes fadeUp{
from{
opacity:0;
transform:translateY(60px);
}
to{
opacity:1;
transform:translateY(-50%);
}
}

/* indicator style */
.carousel-indicators button{
width:10px;
height:10px;
border-radius:50%;
}

/* SERVICES */
.card-box{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.card-box:hover{
transform:translateY(-10px);
}

.card-box i{
font-size:40px;
color:#0b5ed7;
margin-bottom:10px;
}

/* TESTIMONIAL */
.testimonial{
background:#f8f9fa;
padding:30px;
border-radius:10px;
}
.footer-modern{
    background:#0b1f33;
    color:#d6e2f0;
    padding:70px 0 20px;
}

.footer-logo{
    width:180px;
    margin-bottom:15px;
}

.footer-brand p{
    font-size:14px;
    line-height:1.6;
    color:#b9c7d6;
}

.footer-modern h5{
    color:#ffffff;
    margin-bottom:18px;
    font-weight:600;
    position:relative;
}

.footer-modern h5::after{
    content:'';
    width:40px;
    height:3px;
    background:#28a745;
    position:absolute;
    left:0;
    bottom:-8px;
    border-radius:10px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    text-decoration:none;
    color:#b9c7d6;
    transition:0.3s;
    font-size:14px;
}

.footer-links a:hover{
    color:#28a745;
    padding-left:6px;
}

.footer-contact p{
    margin-bottom:10px;
    font-size:14px;
    color:#b9c7d6;
}

.footer-contact i{
    color:#28a745;
    margin-right:8px;
}

.footer-social{
    /* margin-top:15px; */
}

.footer-social a{
    display:inline-flex;
    width:38px;
    height:38px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#132a44;
    color:#fff;
    margin-right:8px;
    transition:0.3s;
}

.footer-social a:hover{
    background:#28a745;
    transform:translateY(-3px);
}

.footer-line{
    border-color:#1e3a57;
    margin:30px 0 15px;
}

.footer-bottom{
    font-size:13px;
    color:#9fb3c8;
}

/* RESPONSIVE */


.topbar{
    background:#0b1f33;
    color:#fff;
    padding:8px 0;
    font-size:14px;
}

.topbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LEFT SIDE */
.top-left{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.top-left p{
    margin:0;
    display:flex;
    align-items:center;
    gap:6px;
    color:#d6e2f0;
    font-size:13px;
}

/* RIGHT SOCIAL */
.top-right a{
    display:inline-flex;
    width:30px;
    height:30px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#132a44;
    color:#fff;
    margin-left:6px;
    transition:0.3s;
    font-size:14px;
}

.top-right a:hover{
    background:#28a745;
    transform:translateY(-2px);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width: 768px){
    .topbar-inner{
        flex-direction:column;
        text-align:center;
        gap:8px;
    }

    .top-left{
        justify-content:center;
    }
}

/* MOBILE SMALL */
@media(max-width: 480px){
    .top-left{
        flex-direction:column;
        gap:5px;
    }

    .top-right{
        margin-top:5px;
		display:none;
    }
}.testimonial-section{
    background: linear-gradient(135deg, #e8f0ff, #f7fbff);
    padding:80px 0;
}

/* BOX */
.testimonial-box{
    max-width:750px;
    margin:auto;
    background:#ffffff;
    padding:50px 40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* QUOTE */
.quote-icon{
    font-size:45px;
    color:#28a745;
}

/* TEXT */
.testimonial-box p{
    font-size:17px;
    color:#444;
}

/* ================= CUSTOM ARROWS ================= */

.carousel-control-prev,
.carousel-control-next{
    width:60px;
    height:60px;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
}

/* REMOVE DEFAULT ICON */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    display:none;
}

/* CUSTOM BUTTON DESIGN */
.carousel-control-prev span,
.carousel-control-next span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:50%;
    background: #28a745;
    color:#fff;
    font-size:22px;
    font-weight:bold;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    transition:0.3s;
}

/* HOVER EFFECT */
.carousel-control-prev span:hover,
.carousel-control-next span:hover{
    background:#0b1f33;
    transform:scale(1.1);
}

/* POSITION FIX */
.carousel-control-prev{
    left:-10px;
}

.carousel-control-next{
    right:-10px;
}

/* MOBILE */
@media(max-width:768px){
    .carousel-control-prev{
        left:0;
    }

    .carousel-control-next{
        right:0;
    }
}
.testimonial-section{
    background: linear-gradient(135deg, #e8f0ff, #f7fbff);
    padding:80px 0;
}

/* BOX */
.testimonial-box{
    max-width:750px;
    margin:auto;
    background:#ffffff;
    padding:50px 40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* QUOTE */
.quote-icon{
    font-size:45px;
    color:#28a745;
}

/* TEXT */
.testimonial-box p{
    font-size:17px;
    color:#444;
}

/* ================= CUSTOM ARROWS ================= */

.carousel-control-prev,
.carousel-control-next{
    width:70px;
    height:70px;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
}

/* REMOVE DEFAULT BOOTSTRAP ICON */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    display:none;
}

/* CUSTOM BUTTON STYLE */
.arrow-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:55px;
    height:55px;
    border-radius:50%;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color:#fff;
    font-size:24px;
    font-weight:bold;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    transition:0.3s;
}

/* HOVER EFFECT */
.arrow-btn:hover{
    background: linear-gradient(135deg, #0b1f33, #102a43);
    transform:scale(1.1);
}

/* POSITION FIX */
.carousel-control-prev{
    left:-20px;
}

.carousel-control-next{
    right:-20px;
}

/* MOBILE */
@media(max-width:768px){
    .carousel-control-prev{
        left:0;
    }

    .carousel-control-next{
        right:0;
    }

    .arrow-btn{
        width:45px;
        height:45px;
        font-size:20px;
    }
}
/* POSITION FIX */
.carousel-control-prev,
.carousel-control-next{
    width:80px;
    height:80px;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
}

/* REMOVE DEFAULT BOOTSTRAP ICON */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    display:none;
}

/* CUSTOM BUTTON */
.hero-arrow-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:60px;
    height:60px;
    border-radius:50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border:1px solid rgba(255,255,255,0.3);
    color:#fff;
    font-size:26px;
    font-weight:bold;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
    transition:0.3s;
}

/* HOVER EFFECT */
.hero-arrow-btn:hover{
    background:#28a745;
    transform:scale(1.15);
    border-color:#28a745;
}

/* POSITION */
.carousel-control-prev{
    left:20px;
}

.carousel-control-next{
    right:20px;
}

/* MOBILE */
@media(max-width:768px){
    .hero-arrow-btn{
        width:45px;
        height:45px;
        font-size:20px;
    }

    .carousel-control-prev{
        left:10px;
    }

    .carousel-control-next{
        right:10px;
    }
}
.testimonial-card{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:40px 30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-card p{
    font-size:16px;
    color:#555;
    margin:15px 0;
    line-height:1.6;
}

.testimonial-card h6{
    margin-top:10px;
    font-weight:600;
    color:#0b1f33;
}

.stars{
    font-size:18px;
    color:#f7b500;
}

/* Controls styling */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:#0b1f33;
    border-radius:50%;
    padding:15px;
}

/* Indicators */
.carousel-indicators [data-bs-target]{
    background-color:#0b1f33;
}

/* MOBILE */
@media(max-width:768px){
    .testimonial-card{
        padding:25px 20px;
    }

    .testimonial-card p{
        font-size:14px;
    }
}
.services-section{
    background:#f5f9ff;
}

.service-card{
    background:#fff;
    padding:30px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.3s;
    height:100%;
}

.service-card i{
    font-size:40px;
    color:#28a745;
    margin-bottom:15px;
}

.service-card h5{
    font-weight:600;
    margin-bottom:10px;
    color:#0b1f33;
}

.service-card p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,0.12);
}

/* MOBILE */
@media(max-width:768px){
    .service-card{
        padding:25px 20px;
    }
}
.about-section{
    background:#f7fbff;
}

.about-section h2{
    color:#0b1f33;
    margin-bottom:15px;
}

.about-section p{
    font-size:15px;
    line-height:1.7;
}

/* IMAGE */
.about-img{
    transition:0.4s;
}

.about-img:hover{
    transform:scale(1.02);
}

/* FEATURE GRID */
.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:12px 15px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
	margin-top:20px;
}

.feature-box i{
    font-size:18px;
    color:#28a745;
}

.feature-box span{
    font-size:14px;
    font-weight:500;
}

.feature-box:hover{
    transform:translateX(6px);
}

/* EXTRA INFO BOX */
.about-extra p{
    margin:5px 0;
    font-size:14px;
    color:#444;
}

/* BUTTON */
.about-section .btn{
    border-radius:8px;
}

/* MOBILE */
@media(max-width:768px){
    .about-features{
        grid-template-columns:1fr;
    }
}
.counter-section{
    background: linear-gradient(135deg, #0b1f33, #102a43);
    color:#fff;
}

.counter-box{
    padding:30px 20px;
    border-radius:15px;
    transition:0.3s;
}

.counter-box i{
    font-size:35px;
    color:#28a745;
    margin-bottom:10px;
}

.counter-box h2{
    font-size:40px;
    font-weight:700;
    margin:10px 0;
}

.counter-box p{
    margin:0;
    font-size:15px;
    color:#cfd8e3;
}

.counter-box:hover{
    transform:translateY(-5px);
}
.gallery-section{
    background:#f7fbff;
}

.gallery-box{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.gallery-box img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.4s;
}

/* HOVER ZOOM EFFECT */
.gallery-box:hover img{
    transform:scale(1.1);
}

/* DARK OVERLAY ON HOVER */
.gallery-box::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0);
    transition:0.3s;
}

.gallery-box:hover::after{
    background:rgba(0,0,0,0.2);
}

/* MOBILE */
@media(max-width:768px){
    .gallery-box img{
        height:160px;
    }
}

/* HERO */
.about-hero{
    background: linear-gradient(135deg, #0b1f33, #102a43);
    padding:80px 0;
}

.about-hero h1{
    font-size:40px;
    font-weight:700;
}

.about-hero p{
    color:#cfd8e3;
}

/* LIST */
.about-list{
    padding:0;
    list-style:none;
    margin-top:20px;
}

.about-list li{
    margin-bottom:10px;
    font-size:15px;
}

.about-list i{
    color:#28a745;
    margin-right:8px;
}

/* INFO CARD */
.info-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.info-card i{
    font-size:35px;
    color:#28a745;
    margin-bottom:10px;
}

/* WHY CHOOSE */
.choose-box{
    background:#f7fbff;
    padding:25px;
    border-radius:12px;
    transition:0.3s;
}

.choose-box i{
    font-size:30px;
    color:#28a745;
    margin-bottom:10px;
}

.choose-box:hover{
    transform:translateY(-5px);
}

/* HERO */
.gallery-hero{
    background: linear-gradient(135deg, #0b1f33, #102a43);
    padding:70px 0;
}

.gallery-hero h1{
    color:#fff;
    font-weight:700;
}

/* CATEGORY BUTTONS */
.gallery-tabs button{
    border:none;
    padding:8px 18px;
    margin:5px;
    border-radius:20px;
    background:#f1f1f1;
    transition:0.3s;
    font-size:14px;
}

.gallery-tabs button.active,
.gallery-tabs button:hover{
    background:#28a745;
    color:#fff;
}

/* IMAGE */
.gallery-item img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    transition:0.4s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

/* PAGINATION */
.pagination .page-link{
    color:#0b1f33;
    border-radius:8px;
    margin:0 3px;
}

.pagination .active .page-link{
    background:#28a745;
    border-color:#28a745;
    color:#fff;
}

/* HERO */
.blog-hero{
    background: linear-gradient(135deg, #0b1f33, #102a43);
    padding:80px 0;
}

.blog-hero h1{
    color:#fff;
    font-weight:700;
}

.blog-hero p{
    color:#cfd8e3;
}

/* BLOG CARD */
.blog-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.blog-card h2{
    color:#0b1f33;
}

/* SECTION TITLES */
.section-title{
    margin-top:25px;
    font-weight:600;
    color:#0b1f33;
}

.blog-card p{
    font-size:15px;
    line-height:1.8;
    color:#444;
}

/* LIST */
.blog-card ul{
    padding-left:20px;
}

.blog-card ul li{
    margin-bottom:8px;
    color:#444;
}

/* IMAGE */
.blog-card img{
    transition:0.4s;
}

.blog-card img:hover{
    transform:scale(1.02);
}

/* HERO */
.contact-hero{
    background: linear-gradient(135deg, #0b1f33, #102a43);
    padding:80px 0;
}

.contact-hero h1{
    color:#fff;
    font-weight:700;
}

.contact-hero p{
    color:#cfd8e3;
}

/* CONTACT BOX */
.contact-box{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    margin-bottom:15px;
    text-align:center;
}

.contact-box i{
    font-size:28px;
    color:#28a745;
    margin-bottom:10px;
}

/* FORM */
.form-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.form-control{
    border-radius:8px;
    padding:10px;
}

.form-control:focus{
    border-color:#28a745;
    box-shadow:none;
}

/* CARD DESIGN */
.care-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.3s;
    height:100%;
}

.care-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.care-card h5{
    margin-top:10px;
    font-weight:600;
    color:#0b1f33;
}

.care-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* HOVER EFFECT */
.care-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}
@media only screen and (min-width: 320px) {
  .phonecall {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
  }
}
@media only screen and (min-width: 320px) {
  .whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 4000;
  }
}