*{
    padding: 0;margin: 0;box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}





 .breadcrumb {
      position: relative;
      width: 100%;
      height: 250px; 
      background-image: url("/assets/unnamed1.jpg");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      color: white;
      
    }

    .breadcrumb::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(32, 13, 13, 0.4); /* dark overlay */
      z-index: 1;
      opacity: 9;
    }

    .breadcrumb h1 {
        padding-left: 20rem;
      font-size: 2.5rem;
      font-weight: bold;
      z-index: 2;
      position: relative;
    }

    /* Responsive text */
  
    @media (max-width: 768px) {
      .breadcrumb {
        height: 40vh;
      }
      .breadcrumb h1 {
        font-size: 2.7rem;
        padding-left: 7rem;
      }
    }

    @media (max-width: 480px) {
      .breadcrumb {
        height: 30vh;
      }
      .breadcrumb h1 {
        font-size:2.2rem;
        padding-left: 2rem;
      }
    }


    .globalh2{
        position: relative;
        margin-bottom: 1rem;
    }
    .globalh2 h2{
        font-size: 1.4rem !important;
        font-weight: 600 !important;
    }
    .globalh2 h2::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #860500;
        width: 190px;
        height: 2px;
    }
    #about-s{
        line-height: 1.6;
        width: 90%;
    }



        .container {
            /* max-width: 1400px; */
            width: 100%;
            margin: 0 auto;
        }

        /* Desktop Grid Layout */
        .sections-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            height: 400px;
        }

        .section {
            position: relative;
            overflow: hidden;
            
            transition: transform 0.3s ease;
        }

        .section:hover {
            transform: scale(1.02);
            z-index: 10;
        }

        .section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .section-title {
            position: absolute;
            bottom: 40px;
            left: 30px;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            text-transform: uppercase;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.84);
            z-index: 2;
            letter-spacing: 2px;
        }
        .section-title  a{
            text-decoration: none;
            color: #860500;
            padding: .2rem 1rem;
            border-radius: 5px;
            font-size: .9rem;
            text-transform: capitalize;
            background-color: #fff;
            text-shadow: none;
            transition: all .5s ease;
            
        }
        .section-title a:hover{
            color: #ffffff;
            background-color: #860500;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 60%;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.796), transparent);
            z-index: 1;
        }

        
       

        /* Slider Styles (Hidden by default) */
        .slider-container {
            display: none;
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-title {
            position: absolute;
            bottom: 50px;
            left: 50px;
            color: white;
            font-size: 3rem;
            font-weight: bold;
            text-transform: uppercase;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            z-index: 2;
            letter-spacing: 3px;
        }
             .slide-title  a{
            text-decoration: none;
            color: #860500;
            padding: .2rem 1rem;
            border-radius: 5px;
            font-size: .9rem;
            text-transform: capitalize;
            background-color: #fff;
            text-shadow: none;
            transition: all .5s ease;
            
        }
        .slide-title a:hover{
            color: #ffffff;
            background-color: #860500;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
            z-index: 1;
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            color: #333;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev {
            left: 20px;
        }

        .slider-nav.next {
            right: 20px;
        }

        /* Slider Dots */
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        /* Tablet Breakpoint */
        @media (max-width: 1024px) {
            .sections-grid {
                display: none;
            }

            .slider-container {
                display: block;
            }
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .slider-container {
                height: 400px;
            }

            .slide-title {
                font-size: 1.8rem;
                left: 30px;
                bottom: 30px;
            }

            .slider-nav {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }













        .service_grid{
            max-width: 1200px;
            margin: 2rem auto;
            padding: 2rem 0;
            width: 97%;
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 1rem;
        }

        .gridData{
            padding: 1rem;
            margin: 1rem 0px;
            border-radius: 8px;
            border: 1px solid #303030;            
        }


        .iconsGrid{
            width:100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .iconsGrid  img{
            height: 100px;
            transform: scale(1.03);
            object-fit: cover;
            display: block;
        }
        .gridDets h2{
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.6;
            text-align: center;
        }
        .gridDets p{
            font-size: 1rem ;
            text-align: center;

        }
 @media (max-width:1024px) {
            .service_grid{
                padding: 1rem;
            }
            
        }

        @media (max-width:768px) {
            .service_grid{
                grid-template-columns: repeat(2,1fr);
            }

        }

         @media (max-width:480px) {
            .service_grid{
                grid-template-columns: repeat(1,1fr);
                gap: .5rem;
            }
            
        }




        /* about_section */

        .about_section{
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
            width: 97%;
            display: flex;
            justify-content: space-between;
            
        }
        
        .about-img{
            width: 50%;
            height: 100%;
            overflow: hidden;
        }
        .about-img img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .about-dets span{
            color: #860500;
            position: relative;
            font-weight: 800;
            
        }
        .about-dets span::before{
            position: absolute;
            content: "";
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #860500;
        }
        .about-dets{
            width: 50%;
            height: 100%;
            padding: 1rem;
        }
        .about-dets h2{
            padding-top: 1rem;
            font-size: 1.7rem;
            font-weight: 500;
            line-height: 1.5;
        }
        .about-dets p{
            text-align: justify;
            line-height: 1.4;
            font-size: 1rem;
            padding-bottom: 1.5rem;
        }
        .btnMain a{
            text-decoration: none;
            background: #860500;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            padding: .5rem 1.5rem ;
            
            border-radius: 8px;
        }


        @media (max-width:768px) {
            .about_section{
                flex-direction: column;
                gap: 15px;
            }
            .about-img{
                width: 100%;
            }
            .about-dets{
                width: 100%;
            }
            
        }

        @media (max-width:480px) {
            .about-dets h2{
                font-size: 1.4rem;
            }
        }



        :root {
  --primary-blue: #0a235b;
  --accent-gold: #ffc107;
  --text-gray: #555;
  --font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}




.container1 {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1.2rem 20px;
}

/* Hero Section */
.hero-header {
  background: linear-gradient(#f16202cb, #860400d4), 
              url('/assets/Goushala.webp') center/cover;
  color: white;
  margin: 2rem 0;
  padding: 80px 0 120px 0; /* Extra bottom padding for the overlap */
}

.school-name {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-content h1 {
  font-size: 3rem;
  margin: 0;
  line-height: 1.1;
}

.upcoming-link {
  color: var(--accent-gold);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 5px;
  font-weight: bold;
}

/* Stats Card */
.stats-card {
  background: white;
  border-radius: 8px;
  display: flex;
  padding: 50px 20px;
  margin-top: -80px; /* This creates the overlap effect */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.stat-item {
  flex: 1;
  padding: 30px 15px;
  border-right: 1px solid #eee;
  
}

.stat-item:last-child {
  border-right: none;
}
.stat-item:hover{
    background-color: #f1721dac;
    
}

.stat-item h2 {
  color: var(--primary-blue);
  font-size: 2.5rem;
  margin: 0;
}

.stat-label {
  font-weight: bold;
  color: #333;
  margin: 5px 0 15px 0;
  font-size: 1.1rem;
}

.stat-desc {
  color: var(--text-gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats-card {
    flex-direction: column;
    margin-top: -40px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
  }
}











  /* News & Events Section */
        .news-section {
            background-color: #f8f8f8;
            padding: 80px 20px;
        }

        .news-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 97%;
        }

        .news-title {
            font-size: 2rem;
            font-weight: 600;
            color: #000;
            margin-bottom: 15px;
        }

        .news-description {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 50px;
            max-width: 900px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .news-card {
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .news-image {
            width: 100%;
            height: 240px;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .news-card:hover .news-image img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 25px;
        }
       .dated span a{
        text-decoration: none;
        font-size: .8rem;
        font-weight: 600;
        color: #860500;
        transition: all .5s ease-in-out;
       }
       .dated span a:hover{
        
        text-decoration: underline;
       }

        .news-card-title {
            font-size: 24px;
            font-weight: 700;
            color: #000;
            margin-bottom: 12px;
        }

        .news-card-text {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 18px;  
            display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
        }

        .read-more {
            display: inline-block;
            color: #860500;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .read-more:hover {
            color: #b90903;
        }

        /* Responsive News Section */
        @media (max-width: 1024px) {
            .news-section {
                padding: 60px 20px;
            }

            .news-title {
                font-size: 40px;
            }

            .news-description {
                font-size: 15px;
                margin-bottom: 40px;
            }

            .news-grid {
                gap: 30px;
            }

            .news-image {
                height: 220px;
            }

            .news-card-title {
                font-size: 22px;
            }

            .news-card-text {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .news-section {
                padding: 50px 20px;
            }

            .news-title {
                font-size: 34px;
            }

            .news-description {
                font-size: 14px;
                margin-bottom: 35px;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                max-width: 500px;
                margin: 0 auto;
            }

            .news-image {
                height: 200px;
            }

            .news-content {
                padding: 22px;
            }

            .news-card-title {
                font-size: 21px;
            }
        }

        @media (max-width: 480px) {
            .news-section {
                padding: 40px 15px;
            }

            .news-title {
                font-size: 28px;
            }

            .news-description {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .news-image {
                height: 180px;
            }

            .news-content {
                padding: 20px;
            }

            .news-card-title {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .news-card-text {
                font-size: 14px;
                margin-bottom: 15px;
            }
        }
















            .rvk-projects-section {
            display: flex;
            min-height: 100vh;
            background: #f5f5f5;
        }

        /* Left Side - Orange Section */
        .rvk-left-section {
            flex: 0 0 400px;
            background: linear-gradient(135deg, #860500 0%, #d97706 100%);
            padding: 4rem 3rem;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .rvk-left-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .rvk-left-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .rvk-projects-label {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .rvk-projects-line {
            width: 60px;
            height: 3px;
            background: white;
        }

        .rvk-projects-text {
            color: white;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .rvk-main-heading {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }

        /* Right Side - Slider Section */
        .rvk-right-section {
            flex: 1;
            padding: 4rem 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .rvk-slider-container {
            width: 100%;
            max-width: 1200px;
            position: relative;
        }

        .rvk-slider-wrapper {
            overflow: hidden;
            position: relative;
        }

        .rvk-slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 1.5rem;
        }

        .rvk-slide {
            min-width: calc(25% - 1.125rem);
            flex-shrink: 0;
        }

        .rvk-project-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 350px;
            position: relative;
        }

        .rvk-project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .rvk-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .rvk-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, #f16202 0%, rgba(59, 130, 246, 0.7) 70%, transparent 100%);
            padding: 2rem 1.5rem 1.5rem;
            color: white;
        }

        .rvk-card-category {
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            opacity: 0.95;
        }

        .rvk-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .rvk-card-link {
            font-size: 0.95rem;
            color: #fbbf24;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
        }

        .rvk-card-link:hover {
            color: #fcd34d;
        }

        /* Navigation Dots */
        .rvk-slider-dots {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 2rem;
        }

        .rvk-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #cbd5e1;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .rvk-dot.rvk-active {
            background: #1e3a8a;
            width: 30px;
            border-radius: 5px;
        }

        .rvk-dot:hover {
            background: #94a3b8;
        }

        /* Navigation Arrows */
        .rvk-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .rvk-slider-nav:hover {
            background: #1e3a8a;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .rvk-slider-nav.rvk-prev {
            left: -25px;
        }

        .rvk-slider-nav.rvk-next {
            right: -25px;
        }

        .rvk-slider-nav svg {
            width: 24px;
            height: 24px;
        }

        /* Responsive Design */
        @media (max-width: 1400px) {
            .rvk-slide {
                min-width: calc(33.333% - 1rem);
            }
        }

        @media (max-width: 1024px) {
            .rvk-projects-section {
                flex-direction: column;
            }

            .rvk-left-section {
                flex: 0 0 auto;
                padding: 3rem 2rem;
            }

            .rvk-main-heading {
                font-size: 2.5rem;
            }

            .rvk-right-section {
                padding: 3rem 2rem;
            }

            .rvk-slide {
                min-width: calc(50% - 0.75rem);
            }

            .rvk-slider-nav.rvk-prev {
                left: -10px;
            }

            .rvk-slider-nav.rvk-next {
                right: -10px;
            }
        }

        @media (max-width: 768px) {
            .rvk-left-section {
                padding: 2rem 1.5rem;
            }

            .rvk-main-heading {
                font-size: 2rem;
            }

            .rvk-right-section {
                padding: 2rem 1.5rem;
            }

            .rvk-slide {
                min-width: calc(100% - 0rem);
            }

            .rvk-project-card {
                height: 300px;
            }

            .rvk-slider-nav {
                width: 40px;
                height: 40px;
            }

            .rvk-slider-nav svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .rvk-left-section {
                padding: 1.5rem 1rem;
            }

            .rvk-main-heading {
                font-size: 1.75rem;
            }

            .rvk-right-section {
                padding: 1.5rem 1rem;
            }

            .rvk-card-title {
                font-size: 1.25rem;
            }
        }

        /* Animation */
        @keyframes rvkFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .rvk-project-card {
            animation: rvkFadeInUp 0.6s ease-out backwards;
        }

        .rvk-project-card:nth-child(1) { animation-delay: 0.1s; }
        .rvk-project-card:nth-child(2) { animation-delay: 0.2s; }
        .rvk-project-card:nth-child(3) { animation-delay: 0.3s; }
        .rvk-project-card:nth-child(4) { animation-delay: 0.4s; }











        /* facility section  */

        .section-header {
            
            margin-bottom: 50px;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 1rem 0;
            width: 97%;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 600;
            color: #111827;
        }

        /* Responsive Grid */
        .facility-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Card Style */
        .card-box {
            position: relative;
            height: 350px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        /* Background Image */
        .card-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .card-box:hover img {
            transform: scale(1.1);
        }

        /* Overlay - Bottom to Top */
        .card-overlay {
            position: absolute;
            bottom: -100%; /* Shuruat mein hidden */
            left: 0;
            width: 100%;
            height: 100%;
            background:linear-gradient( #8604003b ,#f16202); /* Dark transparent overlay */
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease-in-out;
            padding: 20px;
        }

        .card-box:hover .card-overlay {
            bottom: 0; /* Hover par upar slide hoga */
        }

        /* Overlay Text */
        .overlay-title {
            color: #ffffff;
            font-size: 26px;
            font-weight: 700;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.4s ease 0.2s; /* Text thoda delay se aayega */
        }

        .card-box:hover .overlay-title {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 600px) {
            .section-header h2 { font-size: 28px; }
            .card-box { height: 320px; }
        }
















 /* Testimonial Section */
       :root {
            --primary: #00b67a;
            --text-main: #111827;
            --text-muted: #6b7280;
            --bg-card: #f8fafc;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

    
        .testimonial-wrapper {
             padding: 100px 0; 
            max-width: 1200px; 
            margin: 2rem auto; 
            overflow: hidden;
            position: relative; 
        }

        /* Header Optimization */
        .header21 { 
            margin-bottom: 60px; 
        }

        .subtitle { 
            color: var(--text-muted); 
            font-size: 13px; 
            font-weight: 700; 
            letter-spacing: 2px; 
            text-transform: uppercase; 
            margin-bottom: 12px; 
        }

        .header21 h2 { 
            font-size: clamp(2rem, 5vw, 2.75rem); 
            font-weight: 800; 
            color: var(--text-main); 
            line-height: 1.1; 
            max-width: 700px; 
        }

        .description { 
            color: var(--text-muted); 
            font-size: 17px; 
            margin-top: 20px; 
            max-width: 600px; 
        }

        /* Card - Glassmorphism touch */
        .swiper { 
            overflow: visible !important; 
        }

        .swiper-slide { 
            height: auto; 
            opacity: 0.4; 
            transition: var(--transition); 
            transform: scale(0.95);
         }

        .swiper-slide-active, .swiper-slide-next { 
            opacity: 1; 
            transform: scale(1); 
        }

        .card {
            background: var(--bg-card);
            padding: 45px;
            border-radius: 24px;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.03);
            transition: var(--transition);
        }

        .card:hover { 
            background: #ffffff;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            transform: translateY(-8px);
        }

        .stars { color: var(--primary); font-size: 14px; margin-bottom: 25px; display: flex; gap: 4px; }

        .review-text {
            font-size: 18px;
            color: var(--text-main);
            font-weight: 500;
            line-height: 1.7;
            margin-bottom: 40px;
            flex-grow: 1;
        }

        /* User Identity */
        .user-profile { 
            display: flex; 
            align-items: center; 
            gap: 16px; }
        .user-img { 
            width: 56px; 
            height: 56px; 
            border-radius: 16px; 
            overflow: hidden; 
            transform: rotate(-3deg); 
            transition: var(--transition); }
        .card:hover .user-img { 
            transform: rotate(0deg) scale(1.1); }
        .user-img img {
             width: 100%; 
             height: 100%; 
             object-fit: cover; }

        .user-details strong { 
            display: block; 
            font-size: 16px;
             color: var(--text-main); 
             font-weight: 700; }
        .user-details span { 
            font-size: 14px; 
            color: var(--text-muted); }

        /* Sleek Navigation */
        .nav-controls { 
            position: absolute;
             bottom: 50px; 
             right: 5%; 
             display: flex; 
             gap: 12px; }
        
        .swiper-button-next, .swiper-button-prev {
            position: relative; 
            width: 14px;
             height: 14px; 
            border: 2px solid #f1f5f9; 
            border-radius: 8px;
            color: var(--text-main) !important;
             background: #fff;
             padding: 1.5rem ;
            transition: var(--transition); 
            top: auto;
             right: auto;
              margin: 0;
        }

        .swiper-button-next:after, .swiper-button-prev:after { 
            font-size: 18px !important; 
            font-weight: 900; 
        }
        .swiper-button-next:hover, 
        .swiper-button-prev:hover { 
            background: #860500; 
            color: #fff !important; 
            border-color: var(--text-main); 
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .nav-controls { 
                top: auto; 
                bottom: 50px;
                 left: 50%; 
                 transform: translateX(-50%); 
                }
            .testimonial-wrapper { 
                padding-bottom: 120px; 
            }
            .card { 
                padding: 30px; 
            }
        }
















/* message section  */

         .container-pers {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }
        

        .section1-title1 {
        border-left: 5px solid #860500;
        padding-left: 15px;
        line-height: 2.5rem;
        margin: 10px 0;
        }

        .section1-title1 h2 {
        font-size: 28px;
        margin: 0;
        }

        .section1-title1 p {
        font-size: 16px;
        color: #555;
        margin-top: 5px;
        }


.messages-section {
            gap: 40px;
            margin-bottom: 60px;
            margin-top: 60px;
        }

        .message-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.429);
        }

        .message-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
        }

        .message-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .leader-image {
            border-top-left-radius: 3rem;
            border-bottom-right-radius: 3rem;
            width: 270px;
            height: 350px;
            margin: 0 auto 25px;
            overflow: hidden;
            border: 4px solid var(--accent-color);
            box-shadow: 3px 5px 8px rgba(0, 0, 0, 0.534);
            transition: var(--transition);
        }

        .leader-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .leader-image:hover{
            transform: scale(1.05);
        }

        

        .message-card p {
            font-size: 1.1rem;
            line-height: 1.8rem;
            margin-bottom: 20px;
            text-align: justify;
            font-style: italic;
        }
        .message-card h4{
            font-size: 1.6rem;
            text-align: right;
        }
        .message-card h3 {
            color:#333;
            text-align: right;
            font-size: 1.1rem;
            font-weight: 400;
            
        }

        .section-data{
             border-right: 5px solid #860500;
        padding-right: 15px;
        line-height: 2.5rem;
        margin: 10px 0;
        }


           /* Responsive Design */
        @media (max-width: 1024px) {
            .container-pers {
                padding: 0 15px;
            }
        }

        @media (max-width: 768px) {
         
            .message-card {
                padding: 30px;
            }
            
            .message-card h2 {
                font-size: 1.4rem;
            }
             .leader-image {
            border-top-left-radius: 2rem;
            border-bottom-right-radius: 2rem;
   
        }
    }

        @media (max-width: 480px) {
            .container-pers {
                padding: 0 10px;
            }

            .message-card {
                padding: 20px;
            }
            
            .message-card h2 {
                font-size: 1.5rem;
            }
            .message-card p {
                font-size: 1rem;
                line-height: 1.5rem;
            }
            .leader-image {
                width: 200px;
                height: 250px;
            }
        }








        /* video gallery  */

        
.anubhav-section{
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: 3rem auto;
}

.anubhav-Heading{
    font-weight: 600 !important;
}

.anubhav-container{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.anubhav-video-data{
    padding: 1rem;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anubhav-video-data video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: .5rem;
    border: 2px solid #000;
    filter: brightness(.5);
    transition: filter 0.3s ease-in-out;
}

.anubhav-video-data:hover video{
    filter: brightness(1);
}
.anubhav-video-data:hover{
    transform: scale(1.01);
    box-shadow: 0 5px 10px rgba(43, 43, 43, 0.985);
    z-index: 10;
}



@media (max-width:768px) {
    .anubhav-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:480px) {
    .anubhav-container{
        grid-template-columns: repeat(1, 1fr);
    }
}






















/* Gallery section start  */




        .gallery-container {
            max-width: 1180px;
            margin: 2rem auto;
            width: 97%;
        }

      
        .gallery-header {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 30px;
            color: #333;
        }

        /* --- Gallery Grid Styles --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 1 / 1;
            background-color: #eee;
            cursor: pointer; /* Add cursor pointer to container */
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            display: block;
        }

        /* Hover effect */
        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* Hidden Items Class */
        .hidden {
            display: none;
        }

        /* --- View More Button Styles --- */
        .btn-container {
            text-align: center;
        }
        .btn-container a{
            text-decoration: none;
        }

        .view-more-btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 12px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .view-more-btn:hover {
            background-color: #2980b9;
        }
        
        .view-more-btn:disabled {
             background-color: #ccc;
             cursor: default;
        }


        /* --- LIGHTBOX MODAL STYLES (New) --- */
        .lightbox-modal {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 1000;
            padding-top: 50px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /* Modal Content (The Image) */
        .lightbox-content {
            margin: auto;
            display: block;
            max-width: 80%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 4px;
            animation-name: zoom;
            animation-duration: 0.3s;
        }

        @keyframes zoom {
            from {transform:scale(0)}
            to {transform:scale(1)}
        }

        /* Buttons (Close, Prev, Next) */
        .close-btn, .prev-btn, .next-btn {
            position: absolute;
            color: #f1f1f1;
            font-weight: bold;
            font-size: 40px;
            transition: 0.3s;
            cursor: pointer;
            user-select: none;
            background: rgba(0,0,0,0.3); /* Slight background for visibility */
            padding: 10px;
            border-radius: 5px;
            z-index: 1001;
        }

        .close-btn:hover,
        .prev-btn:hover,
        .next-btn:hover {
            color: #bbb;
            background: rgba(0,0,0,0.6);
        }

        /* Position the buttons */
        .close-btn {
            top: 15px;
            right: 35px;
            font-size: 35px;
        }

        .prev-btn {
            top: 50%;
            left: 20px;
            transform: translateY(-50%);
        }

        .next-btn {
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
        }

        /* Responsive adjustments */
                @media (max-width: 1024px) {
                    .gallery-grid {
                        grid-template-columns: repeat(3, 1fr); /* 2 columns on tablets */
                    }
                    .lightbox-content {
                max-width: 90%;
            }

              .prev-btn, .next-btn {
                 font-size: 30px;
                 padding: 5px;
             }


                }


        /* --- Responsive Styles --- */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .lightbox-content {
                max-width: 90%;
            }
             .prev-btn, .next-btn {
                 font-size: 30px;
                 padding: 5px;
             }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: repeat(2,1fr);
                gap: 5px;
            }
        }
           






/* Container Layout */
.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    gap: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Form Section Styling */
.form-section {
    flex: 1;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    /* background-color: #e0e0e0; */
    box-sizing: border-box;
}

/* Submit Button Gradient */
.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(to bottom, #ffc14d 0%, #ff9800 100%);
    color: #444;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.1s;
}

.submit-btn:active {
    transform: translateY(2px);
}

/* Image Section Styling */
.image-section {
    flex: 1;
    
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}











.donate-section{
    width: 100%;
    height: 40%;
    position: relative;
}
.overlayD{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.553);
    z-index: 3;
}
.backgroundImg{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 2;
}
.backgroundImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.content-donate{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 20px;
}
.content-donate h3{
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.content-donate a{
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff9800;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}


















  .main-container12{
            max-width: 1100px;
            margin: 20px auto;
            background: #ffffff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        /* --- Header --- */
        .page-title {
            text-align: center;
            font-size: 30px;
            font-weight: 800;
            color: #860500;
            margin-bottom: 40px;
            border-bottom: 3px solid #e74c3c;
            display: inline-block;
            width: 100%;
            padding-bottom: 10px;
        }

        /* --- Main Content Layout --- */
        .content-wrapper {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 50px;
        }

        .news-text {
            flex: 2;
        }

        .news-text h3 {
            color: #1a2a5e;
            margin-top: 25px;
            padding-bottom: 1rem;
            font-size: 22px;
        }
        .news-text p {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 20px;
        }
        .news-text ul {
            padding-left: 20px;
        }

        .news-text ul li {
            margin-bottom: 12px;
        }

        .hashtags {
            margin-top: 30px;
            color: #0056b3;
            font-weight: bold;
            font-size: 14px;
        }

        /* --- Sidebar Info Box --- */
        .info-box {
            flex: 0 0 320px;
            background-color: #ffa500;
            color: rgb(0, 0, 0);
            padding: 30px;
            border-radius: 10px;
            height: fit-content;
        }

        .info-box h2 {
            margin-top: 0;
            font-size: 22px;
            border-bottom: 1px solid #4a5a8e;
            padding-bottom: 10px;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
            font-size: 15px;
        }

        .info-label {
            font-weight: bold;
            color: #1c1c1c;
        }

        /* --- Gallery Grid --- */
        .gallery-title {
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #1a2a5e;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .gallery-grid img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 6px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-grid img:hover {
            transform: scale(1.03);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* --- Fullscreen Modal (Lightbox) --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
        }

        .modal-content-container {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        #modalImg {
            max-width: 80%;
            max-height: 70vh;
            border: 4px solid white;
            border-radius: 4px;
        }

        #caption {
            color: #fff;
            margin-top: 20px;
            font-size: 20px;
            text-align: center;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }

        /* Nav Buttons */
        .prev, .next {
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 35px;
            cursor: pointer;
            user-select: none;
            transition: 0.3s;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-decoration: none;
        }

        .next { right: 30px; }
        .prev { left: 30px; }

        .prev:hover, .next:hover { background-color: rgba(255,255,255,0.3); }

        /* Responsive */
        @media (max-width: 850px) {
            .content-wrapper { flex-direction: column; }
            .info-box { flex: none; width: auto; }
            .main-container12 { padding: 20px; }
            #modalImg { max-width: 95%; }
        }