/*==================================
SMILE HOUSE NGO
Premium NGO Website
==================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

--primary:#ff7a00;
--primary-dark:#e86800;

--secondary:#2563eb;
--secondary-dark:#1d4ed8;

--white:#ffffff;
--light:#f8fafc;
--gray:#6b7280;
--dark:#111827;

--shadow:0 15px 40px rgba(0,0,0,.12);

--radius:20px;

--transition:.35s ease;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:#fff;

color:var(--dark);

overflow-x:hidden;

line-height:1.7;

}

img{

display:block;

max-width:100%;

}

ul{

list-style:none;

}

a{

text-decoration:none;

color:inherit;

}

.container{

width:min(92%,1200px);

margin:auto;

}

section{

padding:90px 0;

}

/*=====================
BUTTONS
======================*/

.btn{

display:inline-flex;

align-items:center;

gap:10px;

padding:15px 35px;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.primary-btn{

background:var(--primary);

color:#fff;

}

.primary-btn:hover{

background:var(--primary-dark);

transform:translateY(-4px);

}

.secondary-btn{

border:2px solid var(--secondary);

color:var(--secondary);

}

.secondary-btn:hover{

background:var(--secondary);

color:#fff;

}

/*=====================
HEADER
======================*/

.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:1000;

background:rgba(255,255,255,.95);

backdrop-filter:blur(12px);

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.header .container{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo{

display:flex;

align-items:center;

gap:15px;

}

.logo img{

width:60px;

height:60px;

border-radius:50%;

object-fit:cover;

}

.logo-text h2{

color:var(--primary);

font-size:24px;

}

.logo-text span{

color:var(--secondary);

font-weight:700;

}

.logo-text p{

font-size:13px;

color:var(--gray);

}

/*=====================
NAVIGATION
======================*/

.navbar{

display:flex;

align-items:center;

}

.nav-links{

display:flex;

align-items:center;

gap:28px;

}

.nav-links a{

font-weight:600;

transition:.3s;

}

.nav-links a:hover,

.nav-links a.active{

color:var(--primary);

}

.donate-btn{

background:var(--primary);

color:#fff!important;

padding:12px 24px;

border-radius:50px;

}

.menu-btn{

display:none;

font-size:30px;

cursor:pointer;

}

/*=====================
HERO
======================*/

.hero{

padding-top:150px;

padding-bottom:100px;

background:linear-gradient(135deg,#fff7ed,#ffffff,#eff6ff);

}

.hero-container{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:60px;

align-items:center;

}

.hero-tag{

display:inline-block;

padding:10px 20px;

background:#fff3e8;

color:var(--primary);

border-radius:50px;

font-weight:600;

margin-bottom:25px;

}

.hero h1{

font-size:58px;

line-height:1.1;

margin-bottom:20px;

}

.hero h1 span{

color:var(--primary);

}

.hero p{

font-size:18px;

color:var(--gray);

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.hero-image img{

border-radius:25px;

box-shadow:var(--shadow);

}

.hero-stats{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-top:50px;

}

.stat-card{

background:#fff;

padding:20px;

border-radius:20px;

display:flex;

align-items:center;

gap:15px;

box-shadow:var(--shadow);

}

.stat-card i{

font-size:30px;

color:var(--primary);

}

.stat-card h3{

font-size:28px;

color:var(--primary);

}

/*=========================
SECTION TITLES
=========================*/

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-subtitle{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 20px;

background:#fff3e8;

color:var(--primary);

border-radius:50px;

font-weight:600;

margin-bottom:18px;

}

.section-title h2{

font-size:42px;

margin-bottom:15px;

}

.section-title p{

max-width:720px;

margin:auto;

color:var(--gray);

}

/*=========================
ABOUT
=========================*/

.about{

background:#fff;

}

.about-container{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:70px;

align-items:center;

}

.about-image{

position:relative;

}

.about-image img{

border-radius:25px;

box-shadow:var(--shadow);

}

.experience-box{

position:absolute;

bottom:25px;

right:-20px;

background:var(--primary);

color:#fff;

padding:25px;

border-radius:20px;

text-align:center;

box-shadow:var(--shadow);

}

.experience-box h2{

font-size:42px;

}

.about-content h2{

font-size:42px;

margin:20px 0;

}

.about-content p{

margin-bottom:30px;

}

.about-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:35px;

}

.feature{

display:flex;

align-items:center;

gap:12px;

font-weight:600;

}

.feature i{

color:var(--primary);

}

/*=========================
MISSION
=========================*/

.mission{

background:#f8fafc;

}

.mission-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.mission-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

text-align:center;

transition:.35s;

box-shadow:var(--shadow);

}

.mission-card:hover{

transform:translateY(-10px);

}

.mission-card i{

font-size:48px;

color:var(--primary);

margin-bottom:20px;

}

.mission-card h3{

margin-bottom:15px;

}

/*=========================
IMPACT
=========================*/

.impact{

background:#fff;

}

.impact-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.impact-card{

background:linear-gradient(135deg,#ffffff,#fff7ed);

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.impact-card:hover{

transform:translateY(-8px);

}

.impact-card i{

font-size:42px;

color:var(--primary);

margin-bottom:20px;

}

.impact-card h3{

font-size:38px;

color:var(--primary);

margin-bottom:10px;

}

/*=========================
PROGRAMS
=========================*/

.programs{

background:#f8fafc;

}

.program-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.program-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.program-card:hover{

transform:translateY(-10px);

}

.program-card i{

font-size:50px;

color:var(--primary);

margin-bottom:20px;

}

.program-card h3{

margin-bottom:15px;

}

/*=========================
WHY CHOOSE US
=========================*/

.why-us{

background:#fff;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.why-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.why-card:hover{

transform:translateY(-10px);

}

.why-card i{

font-size:46px;

color:var(--primary);

margin-bottom:18px;

}

/*=========================
GALLERY PREVIEW
=========================*/

.gallery-preview{

background:#f8fafc;

}

.preview-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

margin-bottom:40px;

}

.preview-grid img{

height:260px;

width:100%;

object-fit:cover;

border-radius:20px;

box-shadow:var(--shadow);

transition:.4s;

cursor:pointer;

}

.preview-grid img:hover{

transform:scale(1.05);

}

.center-btn{

text-align:center;

}

/*=========================
CTA
=========================*/

.cta{

background:linear-gradient(135deg,var(--primary),var(--secondary));

text-align:center;

color:#fff;

}

.cta h2{

font-size:46px;

color:#fff;

margin-bottom:20px;

}

.cta p{

color:#fff;

max-width:700px;

margin:0 auto 35px;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/*=========================
FOOTER
=========================*/

.footer{

background:#111827;

color:#fff;

padding:80px 0 20px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1.5fr;

gap:50px;

margin-bottom:50px;

}

.footer-logo{

width:80px;

margin-bottom:20px;

}

.footer h3{

margin-bottom:20px;

color:#fff;

}

.footer p{

color:#d1d5db;

}

.footer-links ul li,

.footer-contact ul li{

margin-bottom:15px;

}

.footer-links a,

.footer-contact a{

color:#d1d5db;

transition:.3s;

}

.footer-links a:hover,

.footer-contact a:hover{

color:var(--primary);

}

.footer-contact i{

color:var(--primary);

margin-right:10px;

}

.footer hr{

border:none;

height:1px;

background:rgba(255,255,255,.15);

margin:30px 0;

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:15px;

}

.footer-bottom i{

color:#ff4d6d;

}

/*=========================
FORM
=========================*/

.donation-form{

max-width:700px;

margin:auto;

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:var(--shadow);

}

.input-group{

margin-bottom:20px;

}

.input-group label{

display:block;

margin-bottom:8px;

font-weight:600;

}

.input-group input,

.input-group textarea{

width:100%;

padding:15px;

border:2px solid #e5e7eb;

border-radius:10px;

font-size:16px;

outline:none;

transition:.3s;

}

.input-group input:focus,

.input-group textarea:focus{

border-color:var(--primary);

}

.payment-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

margin:25px 0;

}

.submit-btn{

width:100%;

justify-content:center;

}

/* ===========================
   GUIDING INSPIRATION
=========================== */

.foundation-section{
    padding:90px 0;
}

.foundation-card{
    display:flex;
    align-items:center;
    gap:50px;
    background:#fff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.foundation-card:hover{
    transform:translateY(-8px);
}

.foundation-image img{
    width:260px;
    height:260px;
    border-radius:50%;
    object-fit:cover;
    border:8px solid #ffb703;
}

.foundation-content h3{
    color:#1d4ed8;
    margin-bottom:15px;
    font-size:28px;
}

.foundation-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}

@media(max-width:768px){

.foundation-card{
    flex-direction:column;
    text-align:center;
}

.foundation-image img{
    width:220px;
    height:220px;
}

}

/*=========================================
CONVENOR & MANAGING DIRECTOR
=========================================*/

.leadership-section{

padding:90px 0;

}

.leadership-card{

display:flex;

align-items:center;

gap:50px;

padding:40px;

margin-top:50px;

background:#fff;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

transition:.4s;

}

.leadership-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.leadership-image{

flex:0 0 320px;

}

.leadership-image img{

width:100%;

border-radius:25px;

object-fit:cover;

border:6px solid #174A8B;

}

.leadership-content{

flex:1;

}

.leadership-badge{

display:inline-block;

padding:10px 22px;

background:linear-gradient(135deg,#174A8B,#2b6cc4);

color:#fff;

font-weight:600;

border-radius:50px;

margin-bottom:20px;

}

.leadership-content h3{

font-size:2rem;

margin-bottom:20px;

color:#174A8B;

}

.leadership-content p{

line-height:1.9;

margin-bottom:30px;

}

.leadership-highlights{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.highlight{

display:flex;

align-items:center;

gap:10px;

padding:12px 18px;

background:#f5f7fb;

border-radius:50px;

font-weight:600;

}

.highlight i{

color:#E76A2D;

font-size:18px;

}

@media(max-width:991px){

.leadership-card{

flex-direction:column;

text-align:center;

}

.leadership-image{

flex:unset;

width:250px;

}

.leadership-highlights{

justify-content:center;

}

}

/*=========================
TEAM CARDS
=========================*/

.team-grid,

.volunteer-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

}

.team-card{

background:#fff;

padding:25px;

border-radius:20px;

text-align:center;

box-shadow:var(--shadow);

transition:.3s;

}

.team-card:hover{

transform:translateY(-8px);

}

.team-card img{

width:170px;

height:170px;

border-radius:50%;

margin:auto;

object-fit:cover;

border:5px solid var(--primary);

}

.team-card h4{

margin-top:20px;

}

/*=========================
DOCUMENTS
=========================*/

.documents-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.document-card{

background:#fff;

padding:20px;

border-radius:20px;

box-shadow:var(--shadow);

text-align:center;

}

.document-card img{

width:100%;

border-radius:15px;

}

/*=========================
ANIMATION
=========================*/

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

.hero-image img{

animation:float 4s ease-in-out infinite;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:992px){

.hero-container,

.about-container,

.footer-grid{

grid-template-columns:1fr;

}

.mission-grid,

.impact-grid,

.program-grid,

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.preview-grid{

grid-template-columns:repeat(2,1fr);

}

.hero-image{

order:-1;

}

}

@media(max-width:768px){

.menu-btn{

display:block;

}

.nav-links{

position:absolute;

top:100%;

left:0;

width:100%;

background:#fff;

display:none;

flex-direction:column;

padding:25px;

box-shadow:0 10px 30px rgba(0,0,0,.1);

}

.nav-links.active{

display:flex;

}

.hero{

padding-top:130px;

}

.hero-container,

.about-container,

.mission-grid,

.impact-grid,

.program-grid,

.why-grid,

.preview-grid,

.footer-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:40px;

}

.hero-buttons,

.payment-buttons,

.cta-buttons{

flex-direction:column;

}

.hero-stats{

grid-template-columns:1fr;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

}

.thank-message{

max-width:700px;

margin:20px auto;

font-size:18px;

line-height:1.8;

text-align:center;

color:#2c3e50;

padding:0 20px;

}

.thank-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:35px;

flex-wrap:wrap;

}

.btn-home,

.btn-gallery{

padding:15px 35px;

border-radius:50px;

font-size:17px;

font-weight:600;

text-decoration:none;

transition:.35s;

}

.btn-home{

background:#ff7a00;

color:#fff;

}

.btn-home:hover{

background:#e86800;

transform:translateY(-5px);

}

.btn-gallery{

background:#2563eb;

color:#fff;

}

.btn-gallery:hover{

background:#1d4ed8;

transform:translateY(-5px);

}

@media(max-width:768px){

.thank-you{

font-size:36px;

}

.thank-message{

font-size:16px;

}

.thank-buttons{

flex-direction:column;

align-items:center;

}

}

/*==================================================
SERVICES PAGE
==================================================*/

.services-hero{

padding:140px 0 90px;

text-align:center;

background:linear-gradient(rgba(23,74,139,.75),rgba(23,74,139,.75)),
url("../assets/images/services/services-banner.jpg") center/cover no-repeat;

color:#fff;

}

.services-hero h1{

font-size:3rem;

margin:20px 0;

}

.services-hero p{

max-width:850px;

margin:auto;

line-height:1.8;

}

.page-tag{

display:inline-block;

padding:10px 22px;

background:#E76A2D;

border-radius:30px;

font-weight:600;

}

.breadcrumb{

margin-top:30px;

font-weight:500;

}

.breadcrumb a{

color:#FFD56A;

text-decoration:none;

}

.services-intro{

padding:90px 0;

text-align:center;

}

.services-intro p{

max-width:900px;

margin:25px auto 0;

line-height:1.9;

font-size:17px;

}

.service-block{

padding:80px 0;

}

.service-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.service-block.alt .service-image{

order:2;

}

.service-block.alt .service-content{

order:1;

}

.service-image img{

width:100%;

border-radius:20px;

transition:.4s;

box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.service-image img:hover{

transform:scale(1.04);

}

.service-category{

display:inline-flex;
align-items:center;
gap:10px;

padding:10px 22px;

background:linear-gradient(135deg,#174A8B,#2b6cc4);

color:#fff;

font-size:14px;
font-weight:700;
letter-spacing:.5px;
text-transform:uppercase;

border-radius:50px;

box-shadow:0 12px 30px rgba(23,74,139,.25);

transition:.35s ease;

margin-bottom:22px;

}

.service-category i{

width:34px;
height:34px;

display:flex;
align-items:center;
justify-content:center;

background:#fff;

color:#E76A2D;

border-radius:50%;

font-size:15px;

}

.service-category:hover{

transform:translateY(-3px);

box-shadow:0 18px 40px rgba(23,74,139,.35);

}

.service-content h2{

margin-bottom:20px;

}

.service-content p{

line-height:1.8;

margin-bottom:20px;

}

.service-content ul{

margin:25px 0;

padding-left:20px;

}

.service-content li{

margin-bottom:12px;

}

.learn-more-btn{

display:inline-flex;
align-items:center;
gap:12px;

padding:16px 34px;

background:linear-gradient(135deg,#E76A2D,#ff8a3d);

color:#fff;

border:none;

border-radius:50px;

font-size:16px;

font-weight:600;

cursor:pointer;

transition:.35s ease;

box-shadow:0 12px 30px rgba(231,106,45,.35);

overflow:hidden;

position:relative;

}

.learn-more-btn i{

transition:.35s;

}

.learn-more-btn:hover{

transform:translateY(-4px);

box-shadow:0 20px 40px rgba(231,106,45,.45);

}

.learn-more-btn:hover i{

transform:translateX(8px);

}

.learn-more-btn:active{

transform:scale(.96);

}

.service-details{

display:none;

margin-top:25px;

padding:25px;

background:#F7F8FA;

border-left:5px solid #E76A2D;

border-radius:12px;

line-height:1.8;

animation:fadeIn .4s ease;

}

.service-details.active{

display:block;

}

.services-cta{

padding:100px 20px;

text-align:center;

background:#174A8B;

color:#fff;

}

.services-cta h2{

font-size:2.4rem;

margin-bottom:20px;

}

.services-cta p{

max-width:800px;

margin:auto;

line-height:1.8;

margin-bottom:35px;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

@keyframes fadeIn{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@media(max-width:991px){

.service-grid{

grid-template-columns:1fr;

gap:40px;

}

.service-block.alt .service-image,

.service-block.alt .service-content{

order:unset;

}

.services-hero h1{

font-size:2.2rem;

}

}