/* =========================
   DREAM INDIA NETWORK
   MODERN NGO WEBSITE
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#0086d1;
    --secondary:#00AEEF;
    --dark:#0f172a;
    --light:#f8fafc;
    --success:#10b981;
    --warning:#f59e0b;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#334155;
    overflow-x:hidden;
    line-height:1.8;
}

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

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.section-title{
    font-size:42px;
    font-weight:800;
    color:var(--dark);
    margin-bottom:20px;
}

.section-subtitle{
    color:#64748b;
    font-size:18px;
    max-width:800px;
    margin:auto;
}

.btn-primary-custom{
    background:var(--secondary);
    border:none;
    padding:15px 35px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

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

.navbar{
    background:#fff !important;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
    padding:15px 0;
}

.navbar-brand img{
    height:75px;
}

.nav-link{
    font-weight:600;
    color:#1e293b !important;
    margin-left:20px;
    transition:.3s;
}

.nav-link:hover{
    color:var(--secondary)!important;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background-size:cover;
    background-position:center;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.hero h1{
    font-size:70px;
    font-weight:800;
    margin-bottom:15px;
}

.hero p{
    font-size:22px;
    margin-bottom:30px;
}

/* =========================
   COUNTERS
========================= */

.counter-box{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

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

.counter-box h2{
    color:var(--primary);
    font-size:42px;
    font-weight:800;
}

.counter-box p{
    margin:0;
    color:#64748b;
}

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

.about-section{
    padding:100px 0;
}

.about-image img{
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-content p{
    color:#475569;
    font-size:17px;
}

/* =========================
   PROJECTS
========================= */

.project-card{
    border:none;
    border-radius:25px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    height:260px;
    object-fit:cover;
}

.project-card .card-body{
    padding:30px;
}

.project-card h4{
    font-weight:700;
    margin-bottom:15px;
    color:var(--dark);
}

/* =========================
   TEAM
========================= */

.team-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    text-align:center;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.team-card .content{
    padding:25px;
}

.team-card h4{
    font-size:22px;
    font-weight:700;
    color:var(--dark);
}

.team-card span{
    color:var(--secondary);
    font-weight:600;
}

/* =========================
   GALLERY
========================= */

.gallery img{
    border-radius:20px;
    transition:.4s;
}

.gallery img:hover{
    transform:scale(1.05);
}

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

.contact-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
    height:100%;
}

.contact-card i{
    font-size:40px;
    color:var(--secondary);
    margin-bottom:20px;
}

.contact-card h5{
    font-weight:700;
}

.contact-card p{
    color:#64748b;
}

/* =========================
   DONATION SECTION
========================= */

.donation-section{
    background:linear-gradient(135deg,#0086d1,#00AEEF);
    color:white;
    padding:80px 0;
    text-align:center;
}

.donation-section h2{
    font-size:42px;
    font-weight:800;
}

.donation-section .btn{
    background:#fff;
    color:#0086d1;
    font-weight:700;
    padding:14px 35px;
    border-radius:50px;
}

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

footer{
    background:#0f172a;
    color:#fff;
    padding:70px 0 30px;
}

footer h4{
    font-weight:700;
    margin-bottom:20px;
}

footer p{
    color:#cbd5e1;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#1e293b;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:white;
    margin-right:10px;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--secondary);
    transform:translateY(-3px);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    color:#94a3b8;
}

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

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25d366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
}

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

@media(max-width:992px){

.hero h1{
    font-size:48px;
}

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

}

@media(max-width:768px){

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:18px;
}

.nav-link{
    margin-left:0;
}

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

.counter-box{
    margin-bottom:20px;
}

}


.navbar{
    background:#ffffff !important;
    box-shadow:0 3px 20px rgba(0,0,0,.08);
    padding:12px 0;
}

.logo-img{
    height:85px;
    width:auto;
    transition:.3s;
}

.logo-img:hover{
    transform:scale(1.05);
}

.brand-text{
    line-height:1.1;
}

.brand-title{
    font-size:2rem;
    font-weight:800;
    letter-spacing:1px;
    color:#2aa7d9;
    text-transform:uppercase;
}

.brand-tagline{
    font-size:1rem;
    letter-spacing:6px;
    color:#2d4f68;
    font-weight:500;
    margin-top:6px;
}

@media(max-width:768px){

    .logo-img{
        height:60px;
    }

    .brand-title{
        font-size:1.1rem;
    }

    .brand-tagline{
        font-size:.7rem;
        letter-spacing:2px;
    }
}