
/* STICKY HEADER ON SCROLL */
.ku-main {
  position: relative;
  transition: all 0.4s ease;
}

.ku-main.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  animation: slideDown 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* SPACE FIX (jump avoid) */
body.has-sticky {
  padding-top: 80px;
}

/* ANIMATION */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}


    * { margin:0; padding:0; box-sizing:border-box; font-family:Arial,sans-serif; }

    .ku-container {
      max-width:1200px;
      margin:auto;
      padding:0 15px;
    }

    /* TOP BAR */
    .ku-topbar {
      background:#142b52;
      color:#fff;
      font-size:14px;
    }

    .ku-topbar .ku-container {
      display:flex;
      justify-content:space-between;
      align-items:center;
      height:40px;
    }

    .ku-topbar a {
      color:#fff;
      margin-left:15px;
      text-decoration:none;
    }

    .support-btn {
      background:#39b54a;
      padding:6px 14px;
      border-radius:4px;
    }

    /* MAIN HEADER */
    .ku-main {
      background:#fff;
      border-bottom:1px solid #ddd;
      position:relative;
    }

    .ku-flex {
      display:flex;
      align-items:center;
      justify-content:space-between;
      height:80px;
    }

    .ku-logo {
      font-size:22px;
      color:#142b52;
    }

    .ku-nav {
      display:flex;
      gap:22px; font-size:16px;
    }

    .ku-nav a {
      text-decoration:none;
      color:#142b52;
      font-weight:600;
      position:relative;
    }

    .ku-nav a.active {
      color:#2dbf64;
    }

    .ku-nav a.active::after {
      content:"";
      position:absolute;
      bottom:-28px;
      left:0;
      width:100%;
      height:3px;
      background:#2dbf64;
    }

    /* SUBMENU */
    .has-sub { position:relative; }

    .submenu {
      position:absolute;
      top:100%;
      left:0;
      background:#fff;
      list-style:none;
      min-width:180px;
      display:none;
      border:1px solid #ddd;
      z-index:99;
    }

    .submenu li a {
      display:block;
      padding:8px 15px;
      color:#142b52; border-bottom:1px solid #ccc;
    }

    .submenu li a:hover {
      background:#2dbf64;
      color:#fff;
    }

    /* DESKTOP HOVER */
    @media(min-width:769px){
      .has-sub:hover .submenu { display:block; }
    }

    /* ICONS */
    .ku-icons {
      font-size:24px;
      cursor:pointer;
    }

    .hamburger { display:none; }

    /* MOBILE MENU */
    @media(max-width:768px){
      .ku-topbar { display:none; }

      .hamburger {
        display:inline-block;
        margin-left:15px;
      }
.ku-nav a{padding-left:10px;}
      .ku-nav {
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        display:none;
        border-top:1px solid #ddd;z-index:100 !important;
      }

      .ku-nav.active { display:flex; }
.ku-nav a.active::after{bottom: -13px;}
      .submenu {
        position:static;
        border:none;
        display:none;
      }

      .submenu.active { display:block; }
      .ku-nav a.active{padding-top:10px;}
    }

    /* PROGRAM SECTION */
    .program-section {
      /*background:#0f2347; */

      padding:0px 0;
    }

    .program-grid {
      max-width:1200px;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(3,1fr);
    }

    .program-card {
      padding:50px 40px;
      text-align:left;
      color:#fff;
      transition:0.4s;
background: url("../img/r-bg.webp") center / cover no-repeat;
      
    }

    .program-card.active {
      background:#182f57;
    }

    .program-card h3 {
      font-size:18px;
      margin-bottom:8px;
      font-weight:bold;
    }

    .program-card p {
      font-size:15px;
      line-height:1.7;
      opacity:0.9;
    }

    .program-card:hover {
      background:#1e3a6d;
      transform:translateY(-10px);
      box-shadow:0 25px 60px rgba(0,0,0,0.4);
    }

    @media(max-width:991px){
      .program-grid {
        grid-template-columns:1fr;
      }

      .program-card {
        padding:60px 30px;
      }
    }


/* */

.sd-tabs-section{
  background:#f5f5f5;
  padding:60px 0;
}

/* ================= TABS ================= */
.sd-tabs{
  display:flex;
  justify-content:center;
  gap:10px;
 
  flex-wrap:wrap; /* ✅ mobile wrap */
}

.sd-tab{
  padding:14px 28px;
  background:#fff;
  border:none;
  font-weight:600;
  cursor:pointer;
  border-radius:4px 4px 0px;
  transition:.3s;
}

.sd-tab.active{
  background:#2dbf64;
  color:#fff;
}

/* ================= CONTENT ================= */
.sd-tab-wrapper{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.sd-tab-content{
  display:none;
  grid-template-columns:1fr 1.3fr;
  gap:50px;
  align-items:center;
  background:#fff;
  padding:20px;
}

.sd-tab-content.active{
  display:grid;
}

/* ================= IMAGE ================= */
.sd-image{
  position:relative;
  overflow:hidden;
  border-radius:6px;
}

.sd-image img{
  width:100%;
  height:300px;
  object-fit:cover;
  display:block;
  transition:transform .6s ease;
}

.sd-image:hover img{
  transform:scale(1.08);
}

/* PLAY BUTTON */
.play-btn{
  position:absolute;
  inset:0;
  margin:auto;
  width:70px;
  height:70px;
  background:#2dbf64;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.play-btn::before{
  content:"";
  margin-left:4px;
  border-left:14px solid #fff;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
}

/* ================= TEXT ================= */
.sd-text h2{
  font-size:28px;
  color:#1d2b4f;
  margin-bottom:20px;
  font-weight:bold;
}

.sd-text p{
  color:#777;
  line-height:1.8;
  margin-bottom:15px;
  font-size:16px;
}

/* ================= TABLET ================= */
@media(max-width:991px){
  .sd-tab-content{
    grid-template-columns:1fr;
    gap:30px;
  }

  .sd-text h2{
    font-size:24px;
  }
}

/* ================= MOBILE ================= */
@media(max-width:600px){
  .sd-tabs{
    gap:8px;
  }

  .sd-tab{
    padding:12px 18px;
    font-size:14px;
  }

  .play-btn{
    width:55px;
    height:55px;
  }

  .play-btn::before{
    border-left:11px solid #fff;
    border-top:8px solid transparent;
    border-bottom:8px solid transparent;
  }

  .sd-text h2{
    font-size:22px;
  }

  .sd-text p{
    font-size:14px;
  }
}

/**/

.ku-footer {
  background: linear-gradient(180deg,#111,#1b1b1b);
  color:#aaa;
  font-family:Arial, sans-serif;
}

/* TOP */
.ku-footer-top {
  padding:70px 20px 40px;
}

.ku-footer-grid {
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:40px;
}

/* LOGO */
.ku-logo {
  color:#fff;
  margin-bottom:25px;
}

/* HEADINGS */
.ku-footer-col h4 {
  color:#fff;
  font-size:18px;
  margin-bottom:25px;
  position:relative;
  font-weight:bold;
}

.ku-footer-col h4::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:60px;
  height:2px;
  background:#2dbf64;
}

/* TEXT */
.ku-footer-col p {
  line-height:1.8;
  Font-size:16px;
}

.ku-contact {
  margin-top:20px;
}

.ku-contact a {
  color:#fff;
  text-decoration:none;
}

/* LIST */
.ku-footer-col ul {
  list-style:none;
  padding:0;
}

.ku-footer-col li {
  margin-bottom:12px;
  cursor:pointer;
  font-size:16px;
}
.ku-footer-col li a {text-decoration:none;}
.ku-footer-col li:hover {
  color:#2dbf64;
}

/* BOTTOM */
.ku-footer-bottom {
  border-top:1px solid #333;
  padding:20px 0px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:auto;
  font-size:14px;
}

.ku-social a {
  color:#2dbf64;
  margin-left:15px;
  text-decoration:none;
  font-weight:bold;
}

/* RESPONSIVE */
@media(max-width:991px){
  .ku-footer-grid {
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .ku-footer-grid {
    grid-template-columns:1fr;
  }
  .ku-footer-bottom {
    flex-direction:column;
    gap:15px;
    text-align:center;
    
  }
}

/**/

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

.events-wrapper{
  padding:80px 0;
  background:#fff;
}

.events-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1fr 1.2fr 1fr;
  gap:40px;
}

/* LEFT */
.donation-box img{
  width:100%;
  margin-bottom:20px;
  border-radius:10px;
}

.donation-box h3{
  font-size:22px;
  margin-bottom:15px;
  color:#1d2b4f;
  font-weight:bold;
}

.donation-box p{
  color:#666;
  line-height:1.7;
  margin-bottom:25px;
  font-size:16px;
}

.donate-btn{
  display:inline-block;
  background:#41b662;
  color:#fff;
  padding:14px 26px;
  text-decoration:none;
  font-weight:600;
  border-radius:4px;
}

/* CENTER */
.section-title{
  font-size:24px;
  margin-bottom:30px;
  color:#1d2b4f;
   font-weight:600;
}

.event-item{
  display:flex;
  gap:20px;
  margin-bottom:25px;
}

.event-date{
  text-align:center;
  border-left:3px solid #41b662;
  padding-left:15px;
}

.event-date .day{
  font-size:26px;
  color:#41b662;
  font-weight:700;
}

.event-date .month{
  font-size:14px;
  color:#333;
}

.event-info h4{
  font-size:16px;
  margin-bottom:6px;
  color:#1d2b4f;
}

.meta{
  font-size:14px;
  color:#41b662;
}

.view-events{
  display:inline-block;
  margin-top:20px;
  text-decoration:none;
  color:#1d2b4f;
  font-weight:600;
}

/* RIGHT */
.newsletter-box{
background:url("../img/newsletter-bg.jpg") center/cover no-repeat;
border-radius:10px;
  
  padding:20px;
  color:#fff;
}

.newsletter-box h3{
  font-size:22px;
  margin-bottom:10px;
    font-weight:600;
}

.newsletter-box p{
  color:#cfd6e3;
  margin-bottom:15px;
  font-size:16px;
}

.newsletter-box input{
  width:100%;
  padding:14px;
  margin-bottom:15px;
  border:none;
}

.newsletter-box button{
  width:100%;
  padding:14px;
  background:#41b662;
  border:none;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

/* ================= MOBILE ================= */
@media(max-width:991px){
  .events-container{
    grid-template-columns:1fr;
  }
}



/* */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

/* SECTION */
.about-hero{
  position:relative;
  background:url("../img/hero02.jpg") center/cover no-repeat;
  padding:80px 0;
  color:#fff;
}

/* OVERLAY */
.about-overlay{
  position:absolute;
  inset:0;
  background:rgba(16, 40, 85, 0.88);
}

/* CONTENT */
.about-container{
  position:relative;
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:60px;
  align-items:center;
}

/* LEFT */
.about-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
  font-weight:600;
}

.logo-icon{
  font-size:28px;
}

.about-left h2{
  font-size:36px;
  color:#2dbf64;
  font-weight:700;
}

/* RIGHT */
.about-right p{
  font-size:16px;
  line-height:1.9;
  margin-bottom:25px;
  color:#e3e8f1;
}

.highlight-text{
  font-size:20px;
  color:#ffffff;
}

.read-more{
  display:inline-block;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  margin-top:10px;
  font-size:16px;
}

/* RESPONSIVE */
@media(max-width:991px){
  .about-container{
    grid-template-columns:1fr;
    text-align:left;
  }

  .about-left h2{
    font-size:30px;
  }

  .highlight-text{
    font-size:18px;
  }
}

@media(max-width:576px){
  .about-hero{
    padding:80px 0;
  }

  .about-left h2{
    font-size:26px;
  }
}

/* Container styling */
.services-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Ye responsive ke liye zaruri hai */
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 20px; border-bottom:1px solid #ccc; padding-bottom:10px;
}

/* Individual Item styling */
.service-item {
    display: flex;
    align-items: center;
    flex: 1; 
    min-width: 220px; /* Item ki minimum width */
    padding: 10px;
}

/* Icon Box */
.icon-box {
    margin-right: 15px;
    flex-shrink: 0; /* Icon ko chhota hone se rokega */
}

.icon-box img {
    width: 50px; /* Aap size yahan se adjust kar sakte hain */
    height: auto;
    display: block;
}

/* Text Content */
.text-box h3 {
    color: #1a2b56; /* Dark Blue from your image */
    font-size: 18px;
    font-family: sans-serif;
    font-weight: 700;
    margin: 0;
}

.text-box p {
    color: #999; /* Light Grey text */
    font-size: 14px;
    font-family: sans-serif;
    margin: 3px 0 0 0;
}

/* --- Responsive Media Queries --- */

/* Tablet View (Jab screen 992px se chhoti ho) */
@media (max-width: 992px) {
    .service-item {
        flex: 0 0 45%; /* Ek line mein 2 items dikhenge */
    }
}

/* Mobile View (Jab screen 600px se chhoti ho) */
@media (max-width: 600px) {
    .services-container {
        flex-direction: column; /* Sab ek ke niche ek aa jayenge */
        align-items: flex-start; /* Left aligned */
    }
    
    .service-item {
        width: 100%;
        margin-bottom: 15px;
    }
}


/* */

.intro {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
  font-family: "Georgia", serif;
}

.intro-icon {
  font-size: 32px;
  color: #7a0019;
  
}

.intro-subtitle {
  font-size: 13px;
  letter-spacing: 1px;
  color: #182f57;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 25px;
}

.intro-title {
  max-width: 1010px;
  margin: 0 auto 40px;
  font-size: 42px; font-weight:bold;
  line-height: 1.3;
  color: #111; border-bottom:2px solid  #ccc; padding:10px;  border-top:1px solid  #ccc;
}

.intro-title span {
  color: #2dbf64;
  text-decoration: underline;
}

.intro-facts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.intro-fact {
  min-width: 200px;
}

.intro-label {
  font-size: 14px;
  color: #000; font-weight: 600;
  margin-bottom: 10px;
}

.intro-counter {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
background:#2dbf64; border-radius:5px;
padding:10px;
}

.intro-divider {
  width: 1px;
  height: 60px;
  background: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .intro-title {
    font-size: 30px;
  }
.intro {
  padding: 20px 20px;}
  .intro-facts {
    gap: 30px;
  }

  .intro-divider {
    display: none;
  }
}


/* */

#page-loader{
  position:fixed;
  top:0; left:0;
  width:100%;
  height:100%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
}

.loader{
  width:120px;
  height:120px;
  position:relative;
}

.loader svg{
  width:100%;
  height:100%;
  animation: rotate 2s linear infinite;
}

.loader circle{
  fill:none;
  stroke:#2dbf64;
  stroke-width:6;
  stroke-linecap:round;
  stroke-dasharray: 283;
  stroke-dashoffset: 75;
  animation: dash 1.5s ease-in-out infinite;
}

/* Center logo */
.logo{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-weight:bold;
  font-size:16px;
}

/* Animations */
@keyframes rotate {
  100% { transform: rotate(360deg); }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 280;
  }
  50% {
    stroke-dashoffset: 70;
  }
  100% {
    stroke-dashoffset: 280;
  }
}

/***********************************************************************/

.manager-message {
  padding: 90px 20px;
  background: #f8f9fb;
}

.manager-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.manager-image img {
  
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.manager-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #1f2933; font-weight:bold;
}

.manager-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 15px;
}

.manager-content h4 {
  margin-top: 20px;
  font-size: 18px;
  color: #111827;
}

.manager-content span {
  font-size: 14px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .manager-container {
    flex-direction: column;
    text-align: center;
  }

  .manager-content h2 {
    font-size: 26px;
  }
}

/*******************************************************************************/
#scrollTopBtn{
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #39b54a;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

#scrollTopBtn.show{
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover{
  background: #247830;
}

/**************************************************************************************/

.contact-block{
  width:100%;
  background:#f7f7f7;
  margin-top:5%;
}

/* Map */
.contact-map iframe{
  width:100%;
  height:300px;
  border:0;
  display:block;
}

/* Info Section */
.contact-info{
  max-width:1200px;
  margin:0 auto;
  padding:50px 20px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

.contact-item{
  background:#fff;
  padding:30px 25px;
  text-align:center;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-item .icon{
  font-size:36px;
  display:block;
  margin-bottom:15px;
}

.contact-item h4{
  font-size:20px;
  margin-bottom:10px;
}

.contact-item p{
  font-size:15px;
  line-height:1.6;
  color:#555;
}

.contact-item a{
  color:#39b54a;
  text-decoration:none;
}
.g-line{ width:30%; height:4px; border:0px; background:#39b54a;  margin-bottom:10px;}
.contact-item a:hover{
  text-decoration:underline;
}

/* Responsive */
@media(max-width:900px){
  .contact-info{
    grid-template-columns:1fr;
  }
}

/******************************************************************************/

.error-404{
  min-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:#f7f7f7;
  padding:60px 20px;
}

.error-404 .container{
  max-width:600px;
}

.error-404 h1{
  font-size:120px;
  line-height:1;
  color:#39b54a;
  margin-bottom:10px;
}

.error-404 h2{
  font-size:32px;
  margin-bottom:15px;
}

.error-404 p{
  font-size:16px;
  color:#555;
  margin-bottom:30px;
}

.error-actions .btn-home{
  display:inline-block;
  padding:12px 28px;
  background:#39b54a;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-size:15px;
}

.error-actions .btn-home:hover{
  background:#0c5adf;
}

.error-search{
  margin-top:30px;
}

/* Responsive */
@media(max-width:600px){
  .error-404 h1{
    font-size:80px;
  }
  .error-404 h2{
    font-size:26px;
  }
}