/* ==================================================
   SRIPUR DISHARI - FINAL STYLE.CSS
   PART 1
   Reset + Header + Hero + Buttons
================================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#222;
    background:#fff;
    overflow-x:hidden;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*=========================
  HEADER
=========================*/

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    transition:.35s;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.header.scrolled{
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;
}

/*=========================
  LOGO
=========================*/

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:60px;
    height:60px;
    border-radius:50%;
    transition:.3s;
}

.header.scrolled .logo img{
    width:54px;
    height:54px;
}

.logo h2{
    color:#b30000;
    font-size:28px;
    font-weight:700;
    line-height:1;
}

.logo span{
    display:block;
    font-size:13px;
    color:#666;
    margin-top:5px;
}

/*=========================
  NAVIGATION
=========================*/

.navbar ul{
    display:flex;
    align-items:center;
    gap:28px;
}

.navbar ul li a{
    position:relative;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active{
    color:#b30000;
}

.navbar ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    border-radius:10px;
    background:#b30000;
    transition:.35s;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after{
    width:100%;
}

/*=========================
  DONATE BUTTON
=========================*/

.donate-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 30px;
    border-radius:50px;
    background:#b30000;
    color:#fff;
    font-weight:600;
    transition:.35s;
}

.donate-btn:hover{
    background:#8d0000;
    transform:translateY(-3px);
}

/*=========================
  MOBILE MENU
=========================*/

.menu-toggle{
    display:none;
    color:#b30000;
    font-size:28px;
    cursor:pointer;
}

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

.hero{
    margin-top:85px;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/hero.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-overlay{
    width:100%;
}

.hero-content{
    max-width:700px;
    color:#fff;
}

.tagline{
    display:inline-block;
    padding:10px 20px;
    border-radius:40px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(8px);
    color:#fff;
    margin-bottom:25px;
}

.hero h1{
    font-size:64px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:25px;
}

.hero h1 span{
    color:#FFD54F;
}

.hero p{
    font-size:20px;
    line-height:1.9;
    max-width:650px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/*=========================
  BUTTONS
=========================*/

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    border-radius:40px;
    font-weight:600;
    transition:.35s;
}

.btn-primary{
    background:#b30000;
    color:#fff;
}

.btn-primary:hover{
    background:#8d0000;
    transform:translateY(-3px);
}

.btn-secondary{
    background:#fff;
    color:#222;
}

.btn-secondary:hover{
    background:#FFD54F;
    transform:translateY(-3px);
}

/* ===== END PART 1 ===== */


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

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

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

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

.about-content{
    padding-left:20px;
}

.section-tag{
    display:inline-block;
    color:#b30000;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:42px;
    margin-bottom:25px;
    color:#222;
}

.about-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

/*==================================================
        COMMON SECTION TITLE
==================================================*/

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.section-title span{
    display:inline-block;
    color:#b30000;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:12px;
}

.section-title h2{
    font-size:42px;
    color:#222;
    margin-bottom:18px;
}

.section-title p{
    color:#666;
    line-height:1.8;
}

/*==================================================
        IMPACT SECTION
==================================================*/

.impact-section{
    padding:100px 0;
    background:#fafafa;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.impact-box{
    background:#fff;
    padding:45px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

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

.impact-box h3{
    color:#b30000;
    font-size:48px;
    margin-bottom:12px;
    font-weight:700;
}

.impact-box p{
    color:#555;
    font-weight:600;
}

/*==================================================
        PROGRAMS SECTION
==================================================*/

.programs-section{
    padding:100px 0;
    background:#fff;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.program-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border-top:5px solid #b30000;
    transition:.35s;
}

.program-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.program-card .icon{
    font-size:60px;
    margin-bottom:20px;
}

.program-card h3{
    font-size:24px;
    color:#b30000;
    margin-bottom:15px;
}

.program-card p{
    color:#666;
    line-height:1.8;
}

/*=========================
   END OF PART 2
=========================*/


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

.gallery-section{
    padding:100px 0;
    background:#fafafa;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:20px;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.gallery-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.gallery-btn{
    text-align:center;
    margin-top:50px;
}

/*==================================================
        EVENTS SECTION
==================================================*/

.events-section{
    padding:100px 0;
    background:#fff;
}

.events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.event-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border-top:5px solid #b30000;
    transition:.35s;
}

.event-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.event-tag{
    display:inline-block;
    background:#b30000;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.event-card h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
}

.event-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

/*==================================================
        CTA SECTION
==================================================*/

.cta-section{
    padding:100px 0;
    background:#fafafa;
}

.cta-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.cta-box{
    padding:50px;
    border-radius:20px;
    color:#fff;
}

.cta-box h2{
    font-size:36px;
    margin-bottom:20px;
}

.cta-box p{
    line-height:1.9;
    margin-bottom:30px;
}

.volunteer{
    background:linear-gradient(135deg,#b30000,#d62828);
}

.donate{
    background:linear-gradient(135deg,#00695c,#009688);
}

.cta-box .btn-secondary{
    background:#fff;
    color:#00695c;
}

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

.footer{
    background:#111;
    color:#fff;
    padding:80px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    width:80px;
    margin-bottom:20px;
}

.footer h3,
.footer h4{
    margin-bottom:20px;
}

.footer p{
    color:#ccc;
    line-height:1.8;
}

.footer ul{
    list-style:none;
}

.footer li{
    margin-bottom:12px;
}

.footer a{
    color:#ccc;
    transition:.3s;
}

.footer a:hover{
    color:#fff;
}

.copyright{
    margin-top:60px;
    padding:25px;
    text-align:center;
    border-top:1px solid #333;
    color:#999;
}

/*==================================================
        FLOATING BUTTONS
==================================================*/

.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
}

#topBtn{
    position:fixed;
    right:25px;
    bottom:100px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#b30000;
    color:#fff;
    cursor:pointer;
    display:none;
    font-size:18px;
    z-index:999;
    transition:.3s;
}

#topBtn:hover{
    background:#8d0000;
}

/*=========================
   END OF PART 3
=========================*/


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

.page-hero{

    margin-top:85px;

    padding:120px 0;

    text-align:center;

    color:#fff;

    background:
    linear-gradient(rgba(179,0,0,.82),
    rgba(179,0,0,.82)),
    url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

}

.page-hero h1{

    font-size:56px;

    margin-bottom:15px;

    font-weight:700;

}

.page-hero p{

    font-size:20px;

    opacity:.95;

}

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

.about-full{

    padding:100px 0;

    background:#fff;

}

.about-full .container{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.about-full h2{

    font-size:42px;

    color:#b30000;

    margin-bottom:25px;

}

.about-full p{

    color:#555;

    line-height:1.9;

    margin-bottom:20px;

}

/*==================================================
        VOLUNTEER PAGE
==================================================*/

.volunteer-form{

    padding:100px 0;

    background:#fafafa;

}

.volunteer-form .container{

    max-width:750px;

}

.volunteer-form h2{

    text-align:center;

    color:#b30000;

    margin-bottom:40px;

}

.form-group{

    margin-bottom:20px;

}

.form-group input,
.form-group textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

}

.form-group textarea{

    resize:vertical;

    min-height:140px;

}

.volunteer-form button{

    border:none;

    cursor:pointer;

}

/*==================================================
        DONATE PAGE
==================================================*/

.donate-section{

    padding:100px 0;

    background:#fafafa;

}

.donate-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

    align-items:center;

}

.donate-list{

    margin-top:25px;

    padding-left:20px;

    line-height:2.2;

}

.donate-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.donate-card img{

    width:220px;

    margin:0 auto 20px;

}

.thank-you{

    padding:80px 0;

    text-align:center;

    color:#fff;

    background:#b30000;

}

.thank-you h2{

    font-size:42px;

    margin-bottom:15px;

}

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

.contact-section{

    padding:100px 0;

    background:#fafafa;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

}

.contact-info h3{

    color:#b30000;

    margin-bottom:20px;

}

.contact-info p{

    margin:18px 0;

    line-height:1.8;

}

.contact-info i{

    width:28px;

    color:#b30000;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:15px;

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

}

.contact-form textarea{

    resize:vertical;

    min-height:150px;

}

.contact-form button{

    border:none;

    cursor:pointer;

}

.map-section iframe{

    width:100%;

    height:450px;

    border:none;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/*=========================
   END OF PART 4
=========================*/


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

@media (max-width:992px){

.container{
    width:92%;
}

.about-container,
.contact-grid,
.donate-grid,
.cta-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.program-grid,
.gallery-grid,
.events-grid{
    grid-template-columns:repeat(2,1fr);
}

.impact-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer-grid{
    grid-template-columns:1fr 1fr;
}

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

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

}

/*==================================================
        TABLET
==================================================*/

@media (max-width:768px){

.header .container{
    height:75px;
}

.menu-toggle{
    display:block;
}

.navbar{

    position:absolute;

    top:75px;

    left:0;

    width:100%;

    background:#fff;

    display:none;

    padding:20px 0;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.navbar.active{
    display:block;
}

.navbar ul{

    flex-direction:column;

    gap:20px;

    text-align:center;

}

.donate-btn{
    display:none;
}

.hero{

    min-height:85vh;

    text-align:center;

}

.hero-content{

    max-width:100%;

}

.hero-buttons{

    justify-content:center;

}

.hero h1{

    font-size:40px;

}

.hero p{

    font-size:18px;

}

.about-container,
.contact-grid,
.donate-grid,
.cta-grid{

    grid-template-columns:1fr;

}

.program-grid,
.gallery-grid,
.events-grid,
.impact-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.page-hero{

    padding:90px 0;

}

.page-hero h1{

    font-size:40px;

}

}

/*==================================================
        MOBILE
==================================================*/

@media (max-width:480px){

.logo img{

    width:48px;

    height:48px;

}

.logo h2{

    font-size:20px;

}

.logo span{

    font-size:11px;

}

.hero h1{

    font-size:32px;

}

.hero p{

    font-size:16px;

}

.section-title h2{

    font-size:30px;

}

.about-content h2{

    font-size:32px;

}

.page-hero h1{

    font-size:34px;

}

.btn-primary,
.btn-secondary{

    width:100%;

}

.event-card,
.program-card,
.donate-card{

    padding:25px;

}

}

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

.hero-slider{

    position:relative;

    width:100%;

    height:100%;

}

.slide{

    position:absolute;

    inset:0;

    opacity:0;

    transition:opacity 1s ease-in-out;

    background-size:cover;

    background-position:center;

}

.slide.active{

    opacity:1;

    z-index:1;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

/*==================================================
        ANIMATION
==================================================*/

.program-card,
.event-card,
.impact-box,
.gallery-grid img{

    transition:.35s ease;

}

.program-card:hover,
.event-card:hover,
.impact-box:hover{

    transform:translateY(-8px);

}

.gallery-grid img:hover{

    transform:scale(1.05);

}

/*==================================================
        SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eee;

}

::-webkit-scrollbar-thumb{

    background:#b30000;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#8d0000;

}

/*==================================================
        SELECTION
==================================================*/

::selection{

    background:#b30000;

    color:#fff;

}

/*==================================================
        FINAL
==================================================*/

body{

    animation:fadeIn .5s ease;

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}