:root {
    --primary-color: #ff6b00; /* Saffron orange */
    --secondary-color: #7ab042; /* #8e44ad;  Purple */
    --purple :#8e44ad;
    --accent-color: #f1c40f; /* Gold */
    --dark-color: #333;
    --light-color: #f4f4f4;
    --white: #fff;
    --font-main: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f9f5f0; /* Light beige background */
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

/* banner */
.banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/banner-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    /* margin-top: 20px; */
}

.banner h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: var(--heading-font);
    line-height: 3rem;
}

.banner p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-weight: 600;
    font-family: var(--nav-font);
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Navigation */
nav {
    background: rgba(0,0,0,0.6);
    color: var(--white);
    padding:  0;
    position: fixed;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(5px);
    width: 100%;
    font-family: var(--nav-font);
    transition: all 0.4s ease-in-out;
}
.fixed-top{
    background: #fff;
    box-shadow: 3px 0 10px 0 rgb(183 192 206 / 20%);
}
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    /* background: #fff; */
    /* border-radius: 5px; */
}

.logo-img {height: 70px;width: auto;}


/* For better mobile visibility */
@media (max-width: 768px) {
.logo-img {
height: 35px;
}
}

.nav-links {
    display: flex;
    list-style: none;
    margin-bottom: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    position: relative;
}
.fixed-top .nav-links a{
    color:#000;
    font-size: 14px;
}
.nav-links a:hover,.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a:after,.nav-links a.active::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover:after, .nav-links a.active:after{
    width: 100%;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    font-family: var(--heading-font);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

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

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(255, 107, 0, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.card h3 {
    color: var(--purple);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: var(--nav-font);
}

/* About Section */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Features Section */
.features {
    background: var(--light-color);
}

/* Mission Section */
.mission-vision {
    background: url('../img/mis-vis-bg.png') no-repeat center center / cover;
    position: relative;
    background-attachment: fixed;
}



.mission-vision .section-title:after {
    background: var(--secondary-color);
}
.mission-vision .section-title{color: var(--purple);}
.mission-vision-content .card h3{
    color:var(--primary-color)
}
.mission-content h3{
    font-family: var(--nav-font);
}
.mission-vision-content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.mis-tit{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
/* Team Section */
.team {
    background: #f8f1e5;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta {
    text-align: center;
    background: var(--primary-color);
    background-image: linear-gradient(to right bottom, #ff6b00, #fd7519, #fa7e2a, #f88738, #f58f46);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="10" y="50" font-family="Arial" font-size="20" fill="rgba(255,255,255,0.1)">🕉️</text></svg>');
    z-index: -1;
    pointer-events: none;
}
.cta .btn {
    background: var(--white);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

/* Donate Section */
.donate {
    background: #f8f1e5;
    text-align: center;
}

/* Video Section */
.video {
    background: var(--light-color);
}
.video .card{
    border: 0;
}
/* Contact Section */
.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contact-method {
    text-align: center;
    margin: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 0 0 calc(50% - 40px);
    transition: transform 0.3s ease;
}
.contact-method a{color:#000;text-decoration: none;}
.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.contact h3{
    font-family: var(--nav-font);
    font-size: 16px;
}
.social-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.social-links svg{width: 19px;}
.social-links a {
    color: var(--dark-color);
    margin: 0 15px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background: var(--light-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.social-links a:hover,.social-links a svg:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    background: rgba(255, 107, 0, 0.1);
    fill: var(--primary-color);
}
.playstore_apps img{
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    opacity: 0.9;
}
.playstore_apps img:hover{
    opacity: 1;
    filter: drop-shadow(1px 2px 4px black);
}
/* Newsletter */
.newsletter {
    background: #D38312; 
    background: -webkit-linear-gradient(to left, #A83279, #D38312); 
    background: linear-gradient(to left, #A83279, #D38312); 
    text-align: center;
    padding: 50px 0;
    color: #fff;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--primary-color);
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    border-right: none;
}
.newsletter-form input::placeholder{
    font-size: 15px;
    color:grey
}
.newsletter-form input:focus,.newsletter-form input:focus-visible{
    border: 2px solid var(--purple);
    outline: none;
}
.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 15px 25px;
}
.newsletter-form .btn:hover{background: var(--purple);}
.newsletter h2{
    font-family: var(--nav-font);
    margin-bottom: 10px;
}
.newsletter p{
    margin-bottom: 20px;
}
/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.footer-section {
    flex: 0 0 calc(33.333% - 30px);
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 10px;
    font-family: var(--heading-font);
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,.footer-links .active {
    color: var(--accent-color);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}
.header.header-show {
    left: 0;
    /* z-index: 9999; */
  }
 
  .header .header-toggle {
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    right: 10px;
    background-color: var(--accent-color);
    top: 6px;
  }
  
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .header-show .mob-menu{
    position: relative;
    background: transparent;
    box-shadow: none;
  }
  .header-show .navmenu .logo-img{display: none;}
  .header-show  .logo img.logo-img{
    height: 100px;
  }
  .banner .container{
    margin-top: 50px;
  }
  .fixed-top .logo-img{
    height: 50px;
  }
/*inner-page*/
.inner-page nav{
    /* position: static; */
    background: var(--white);
}
.inner-page .nav-links a{
    color:#000
}
.inner-content a{color:var(--primary-color);text-decoration: none;}
.inner-content a:hover{opacity: 0.8;}
.inner-content h3{font-size: 20px;margin-bottom: 10px;margin-top: 20px;}
.inner-page .section-title{margin-top: 120px;}
.inner-content h4{font-size: 16px;}
.donate-bg{
    background: url(../img/mis-vis-bg.png) no-repeat center center / cover;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.donate-page .card{
    border: 0;
    margin: auto;
}

.link-txt{
    color: var(--primary-color);
    text-decoration: none;
}
.acti-ul,.cont-li{
    padding-left: 0;
    list-style: none;
    width: 100%;
}
.acti-ul li{
    align-items: center;
    border-left: .2rem solid #444;
    display: flex;
    margin-left: 1.6rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    padding-bottom: .8rem;
    padding-top: .8rem;
    position: relative;
    width: 100%;
}
.acti-ul li::before{
    background-color: #555;
    border-radius: 999em;
    box-shadow: 0 0 0 3px hsl(0deg 0% 97.64%);
    content: '';
    height: .2rem;
    left: -7px;
    position: absolute;
    transition: transform 300ms;
    top: 50%;
    width: 12px;
    z-index: 0;
}
.acti-ul li:hover::before{
    transform: scaleX(2);
    background-color:var(--secondary-color)
}

.donate-page .subtitle{
    color: var(--secondary-color);
}
.cont-li{padding-left: 25px;}
.cont-li li{
    list-style-type: '👉';
    padding-left: 20px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.cont-li li:hover{
    padding-left: 30px;
}
/* Responsive */
@media (max-width: 768px) {
  
    .inner-page .section-title{margin-top: 70px;}
    .inner-page nav{background: transparent;}
    .inner-page .nav-links a{color: var(--white);}
  
    header h1 {
        font-size: 2rem;
    }
    
    .card {
        flex: 0 0 100%;
    }
    
    .footer-section {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
        border-right: 1px solid #ddd;
    }
    
    .newsletter-form .btn {
        border-radius: 30px;
    }
    
    .contact-method {
        flex: 0 0 100%;
        margin: 0;
        margin-bottom: 15px;
    }
    nav .container{
        flex-direction: column;
    }
    .nav-links{
        flex-direction: column;
        padding: 0;
        width: 100%;
    }
    .nav-links li{
        margin: 0;
        padding: 15px 10px;
    }
  
    .header {
        background: rgb(0, 0, 0);
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        padding: 0 15px;
        width: 300px;
        transition: all ease-in-out 0.3s;
        overflow-y: auto;
        z-index: 997;
        border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      }
      .playstore_apps{flex-direction: column; gap:0px !important}
      
      .header {
        left: -100%;
      }
      .navmenu{
        background: transparent;
        position: static;
        box-shadow: none;
      }
      .mission-vision-content{
        flex-direction: column;
      }
      .mob-menu{
        display: flex;
        left: 0;
        position: fixed;
        z-index: 999;
        transition: background-color 0.3s;
        background-color: #fff;
        width: 100%;
        padding: 0 10px;
        box-shadow: 3px 0 10px 0 rgb(183 192 206 / 20%);
      }
      .fixed-top .nav-links a{color:#fff}
      .fixed-top .nav-links a.active{color:var(--accent-color)}
      .banner{
        position: static;
        height: initial;
        min-height: 40vh;
      }
      .banner h1{
        font-size: 19px;
        line-height: 21px;
        margin-bottom: 10px;
      }
      .banner p{
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 16px;
      }
      .section-title{
        font-size: 25px;
        margin-bottom: 30px;
        line-height: 33px;
      }
      section{padding: 40px 0;}
      .about-content h3{
        font-size: 14px;
        line-height: 20px;
      }
       p{
        font-size: 15px;
      }
      .btn{font-size: 13px;padding: 7px 30px;}
      .card h3{font-size: 16px;}
      .card{ padding: 15px;}
      .about-content li{
        font-size: 14px;
      }
      .newsletter{
        padding: 30px 0;
      }
      .newsletter h2{font-size: 20px;}
      .footer-links a{
        font-size: 13px;
      }
      .footer-links li{margin: 0;}
      .footer-section h3{font-size: 15px;margin-bottom: 10px;}
      .footer-content{margin-bottom: 0;}
      .playstore_apps img{
        width: 60%;

      }
      .donate-page h2{
        font-size: 18px;
      }
      .donate-page h3{
        font-size: 16px;
      }
      .donate-bg{
        height: 30vh;
      }
}

