/* =========================
   GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#fff;
  color:#1f2937;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}



/* =========================
   /* text box*
========================= */


/* text box*/
/* Glow animation effect */
.tax-box::before{
  content:"";
  position:absolute;
  width:200%;
  height:200%;
  background:radial-gradient(circle,rgba(255,255,255,0.15),transparent);
  top:-50%;
  left:-50%;
  animation:shine 6s linear infinite;
}

@keyframes shine{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}

.tax-box p{
  font-size:16px;
  line-height:1.6;
  position:relative;
  z-index:2;
}

/* Hover effect */
.tax-box:hover{
  transform:translateY(-5px) scale(1.01);
  box-shadow:0 25px 60px rgba(0,163,218,0.35);
}









/* =========================
   COMMON CONTAINER
========================= */

.container{
  width:100%;
  max-width:1200px;
  margin:auto;
}

/* =========================
   HERO SECTION
========================= */

.hero{
  width:100%;
  padding: 7px 20px 40px; 
  background:#fff;
}

.hero-content{
  max-width:1200px;
  margin:auto;
  min-height:85vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.hero-left,
.hero-right{
  flex:1;
}

.logo{
  font-size:32px;
  font-weight:800;
  color:#00a3da;
  margin-bottom:40px;
}

.mini-title{
  background:transparent;
  color:#00a3da;
  padding:0;
  border-radius:0;
  display:inline-block;
  margin-bottom:25px;
  font-weight:800;
  font-size:30px;
  letter-spacing:1px;
}

.hero-left h1{
  font-size:62px;
  line-height:1.1;
  margin-bottom:25px;
  font-weight:800;
}

.hero-left h1 span{
  color:#00a3da;
}

.hero-left p{
  font-size:18px;
  line-height:1.9;
  color:#4b5563;
  margin-bottom:35px;
  max-width:600px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn,
.donate-btn{
  text-decoration:none;
  padding:15px 30px;
  border-radius:50px;
  font-weight:700;
  transition:0.3s;
  display:inline-block;
}

.primary-btn,
.donate-btn{
  background:#00a3da;
  color:#fff;
}

.secondary-btn{
  border:2px solid #00a3da;
  color:#00a3da;
}

.primary-btn:hover,
.secondary-btn:hover,
.donate-btn:hover{
  transform:translateY(-4px);
}

/* IMAGE */

.hero-right{
  display:flex;
  justify-content:center;
}

.image-box{
  width:100%;
  max-width:500px;
  position:relative;
}

.image-box img{
  height:620px;
  object-fit:cover;
  border-radius:40px;
  transition:0.6s ease;
  transform:perspective(1000px) rotateY(-10deg);
  box-shadow:0 30px 60px rgba(0,0,0,0.18);
  animation:floatImage 4s ease-in-out infinite;
}

.image-box img:hover{
  transform:perspective(1000px) rotateY(0deg) scale(1.05);
  box-shadow:0 40px 90px rgba(0,0,0,0.25);
}

@keyframes floatImage{
  0%{transform:perspective(1000px) rotateY(-10deg) translateY(0);}
  50%{transform:perspective(1000px) rotateY(-10deg) translateY(-12px);}
  100%{transform:perspective(1000px) rotateY(-10deg) translateY(0);}
}

/* FLOATING CARDS */

.floating-card{
  position:absolute;
  background:#fff;
  padding:18px 22px;
  border-radius:20px;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
  animation:float 3s ease-in-out infinite;
  z-index:5;
}

.floating-card h3{
  color:#00a3da;
  font-size:34px;
  margin-bottom:5px;
}

.floating-card p{
  color:#6b7280;
  font-size:14px;
  font-weight:600;
}

.card1{
  top:30px;
  left:-30px;
}

.card2{
  bottom:30px;
  right:-30px;
}

@keyframes float{
  0%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-10px);
  }
  100%{
    transform:translateY(0);
  }
}


/* =========================
   ABOUT SECTION MODERN
========================= */

.about-section{
  width:100%;
  max-width:1100px;
  margin:10px auto;
  padding:50px;
  background:#ffffff;
  border-radius:35px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:50px;

  box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

/* =========================
   IMAGE
========================= */

.about-image{
  flex:1;
  display:flex;
  justify-content:center;
}

.about-image img{
  width:100%;
  max-width:420px;
  height:500px;
  object-fit:cover;
  border-radius:28px;
  transition:0.4s;
}

.about-image img:hover{
  transform:scale(1.03);
}

/* =========================
   CONTENT
========================= */

.about-content{
  flex:1;
}

.about-content span{
  display:inline-block;
  background:#e8f9ff;
  color:#00a3da;
  padding:8px 18px;
  border-radius:50px;

  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:18px;
}

.about-content h2{
  font-size:42px;
  line-height:1.2;
  color:#111827;
  margin-bottom:18px;
  font-weight:800;
}

.about-content p{
  font-size:15px;
  line-height:1.9;
  color:#6b7280;
  margin-bottom:30px;
}

/* =========================
   GRID BOXES
========================= */

.about-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.about-box{
  background:#f8fbfd;
  padding:22px;
  border-radius:22px;
  transition:0.3s;
  border:1px solid #edf2f7;
}

.about-box:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.about-box h3{
  font-size:18px;
  color:#111827;
  margin-bottom:8px;
  font-weight:700;
}

.about-box p{
  font-size:13px;
  line-height:1.7;
  color:#6b7280;
  margin:0;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

  .about-section{
    flex-direction:column;
    text-align:center;
    padding:40px 25px;
    gap:40px;
  }

  .about-image img{
    max-width:380px;
    height:430px;
  }

  .about-content h2{
    font-size:34px;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

  .about-section{
    width:92%;
    margin:60px auto;
    padding:25px 18px;
    border-radius:25px;
  }

  .about-image img{
    max-width:100%;
    height:320px;
    border-radius:22px;
  }

  .about-content span{
    font-size:11px;
    padding:7px 15px;
  }

  .about-content h2{
    font-size:28px;
  }

  .about-content p{
    font-size:14px;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .about-box{
    padding:18px;
    border-radius:18px;
  }
}


/* =========================
   MISSION
========================= */

.mission-section{
  width:100%;
  padding:40px 20px;
  background:#f8fbfd;
}

.section-title{
  max-width:800px;
  margin:auto;
  text-align:center;
  margin-bottom:60px;
}

.mission-cards{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.mission-card{
  background:#fff;
  padding:40px 30px;
  border-radius:30px;
  transition:0.3s;
}

.mission-card:hover{
  transform:translateY(-10px);
}

.icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#e0f7ff;
  color:#00a3da;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  margin-bottom:25px;
}

.mission-card h3{
  margin-bottom:15px;
}

.mission-card p{
  color:#6b7280;
  line-height:1.8;
}

/* =========================
   IMPACT STATS
========================= */
/* =========================
   IMPACT SECTION
========================= */

.impact-section{
  width:100%;
  padding:40px 7%;
  background:#f8fbfd;
}

/* FULL WIDTH WRAPPER */

.impact-wrapper{
  width:100%;
  max-width:1400px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
}

/* =========================
   LEFT CONTENT
========================= */

.impact-content{
  flex:1;
  max-width:550px;
}

.impact-content span{
  display:inline-block;
  background:#e8f9ff;
  color:#00a3da;

  padding:8px 18px;
  border-radius:50px;

  font-size:13px;
  font-weight:700;
  letter-spacing:1px;

  margin-bottom:20px;
}

.impact-content h2{
  font-size:50px;
  line-height:1.2;
  color:#111827;
  margin-bottom:20px;
  font-weight:800;
}

.impact-content p{
  font-size:16px;
  line-height:1.9;
  color:#6b7280;
}

/* =========================
   STATS
========================= */

.impact-stats{
  display:flex;
  gap:22px;
  margin-top:35px;
  flex-wrap:wrap;
}

.impact-stats div{
  background:#ffffff;
  padding:22px 26px;
  border-radius:22px;

  min-width:150px;

  text-align:center;

  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}

.impact-stats div:hover{
  transform:translateY(-5px);
}

.impact-stats h3{
  font-size:34px;
  color:#00a3da;
  margin-bottom:8px;
  font-weight:800;
}

.impact-stats p{
  font-size:14px;
  color:#6b7280;
  line-height:1.5;
}

/* =========================
   IMAGE
========================= */

.impact-image{
  flex:1;
  display:flex;
  justify-content:center;
}

.impact-image img{
  width:100%;
  max-width:560px;
  height:600px;

  object-fit:cover;
  border-radius:35px;

  box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

  .impact-wrapper{
    flex-direction:column;
    text-align:center;
    gap:50px;
  }

  .impact-content{
    max-width:100%;
  }

  .impact-content h2{
    font-size:40px;
  }

  .impact-stats{
    justify-content:center;
  }

  .impact-image img{
    max-width:450px;
    height:480px;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

  .impact-section{
    padding:60px 15px;
  }

  .impact-content h2{
    font-size:30px;
  }

  .impact-content p{
    font-size:14px;
  }

  .impact-stats{
    flex-direction:column;
    align-items:center;
  }

  .impact-stats div{
    width:100%;
    max-width:280px;
  }

  .impact-image img{
    max-width:100%;
    height:330px;
    border-radius:25px;
  }
}




/* =========================
   GALLERY
========================= */

.gallery-section{
  width:100%;
  padding:40px 20px;
}

.gallery-title{
  max-width:800px;
  margin:auto;
  text-align:center;
  margin-bottom:60px;
}

.gallery-title span{
  color:#00a3da;
  font-size:15px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.gallery-title h2{
  font-size:48px;
  margin:15px 0;
  font-weight:800;
}

.gallery-title p{
  color:#6b7280;
  line-height:1.9;
}

.gallery-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:260px;
  gap:25px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s;
}

.gallery-item.large{
  grid-column:span 2;
  grid-row:span 2;
}

.gallery-item.wide{
  grid-column:span 2;
}

.gallery-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.1)
  );
  display:flex;
  align-items:flex-end;
  padding:30px;
  opacity:0;
  transition:0.4s;
}

.gallery-overlay h3{
  color:#fff;
  font-size:24px;
  transform:translateY(20px);
  transition:0.4s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
}

.gallery-item:hover .gallery-overlay h3{
  transform:translateY(0);
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

  .hero-content,
  .about-inner,
  .impact-inner{
    flex-direction:column;
    text-align:center;
  }

  .hero-left h1{
    font-size:48px;
  }

  .mission-cards{
    grid-template-columns:1fr;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide{
    grid-column:span 2;
  }

  .card1{
    left:10px;
  }

  .card2{
    right:10px;
  }

  .impact-stats{
    justify-content:center;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

  .hero{
    padding:20px 15px 60px;
  }

  .hero-left h1,
  .about-content h2,
  .section-title h2,
  .impact-content h2,
  .donation-box h2,
  .gallery-title h2{
    font-size:34px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .image-box img{
    height:480px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.wide{
    grid-column:span 1;
    grid-row:span 1;
    height:300px;
  }

  .donation-box{
    padding:60px 25px;
  }

  .floating-card{
    padding:14px 18px;
  }

  .floating-card h3{
    font-size:28px;
  }
}


/* =========================
DONATION
========================= */

/* =========================
DONATION
========================= */

.sevak-donation{
  width:100%;
  background: linear-gradient(to right, #009BD4 0%, #0285C3 25%, #046FB1 50%, #074D97 75%, #083D8B 100%);
  padding:55px 4%;
  min-height:120px;
  display:flex;
  align-items:center;
}

.sevak-donation-content{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:120px; /* Height */
  padding:0px 0;   /* Top-Bottom Padding */
}

.sevak-left{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.sevak-tag{
  font-size:20px;
  font-weight:700;
  color:#fff;
}

.sevak-title{
  font-size:41px;
  margin:0;
  line-height:1.2;
  color:#fff;
}

.sevak-desc{
  font-size:15px;
  margin:0;
  color:#fff;
}

.sevak-btn{
  display:inline-block;
  padding:15px 36px;
  background:#00a3da;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:700;
  font-size:16px;
  white-space:nowrap;
  transition:0.3s;
}

.sevak-btn:hover{
  transform:translateY(-2px);
}
/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

  .hero-section,
  .about-section{
    flex-direction:column;
    text-align:center;
  }

  .hero-left,
  .about-content{
    max-width:100%;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-left h1{
    font-size:46px;
  }

  .about-content h2,
  .section-heading h2,
  .donation-content h2{
    font-size:34px;
  }

  .impact-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item.big{
    height:240px;
  }

  .feature-boxes{
    flex-direction:column;
  }

  .floating-card{
    min-width:130px;
  }
}


@media(max-width:600px){

  .hero-left h1{
    font-size:38px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .impact-grid{
    grid-template-columns:1fr;
  }

  .hero-right{
    min-height:auto;
    padding-bottom:40px;
  }

  .main-image-card{
    max-width:100%;
  }

  .floating-card{
    position:relative;

    top:auto;
    left:auto;
    right:auto;
    bottom:auto;

    margin-top:15px;

    width:100%;
    max-width:220px;
  }
}

/* TESTIMONIALS */

/* SECTION HEADER  font mate*/
.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-header span{
  color:#00a3da;
  font-weight:700;
  letter-spacing:2px;
}

.section-header h2{
  font-size:42px;
  margin:18px 0;
}

.section-header p{
  color:#6b7d8f;
}

.light h2,
.light span{
  color:#fff;
}
/* SECTION HEADER  font mate*/

* TESTIMONIALS */

/* SECTION HEADER  font mate*/
.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-header span{
  color:#00a3da;
  font-weight:700;
  letter-spacing:2px;
}

.section-header h2{
  font-size:42px;
  margin:18px 0;
}

.section-header p{
  color:#6b7d8f;
}

.light h2,
.light span{
  color:#fff;
}
/* SECTION HEADER  font mate*/

.testimonial-grid{
  width:100%;
  max-width:1200px;

  margin:auto;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

  gap:25px;

  align-items:stretch;
}

.testimonial-card{
  width:100%;

  background:#fff;
  padding:30px;

  border-radius:28px;

  box-shadow:0 20px 40px rgba(0,0,0,0.07);

  transition:0.4s;

  overflow:hidden;
}

.testimonial-card:hover{
  transform:translateY(-10px);
}

.testimonial-card p{
  line-height:2;
  color:#6c7d8e;
  margin-bottom:25px;
}

.testimonial-card h4{
  color:#00a3da;
}

/* TEXT ALWAYS ABOVE BLUE LAYER */
.testimonial-card h4,
.testimonial-card p{
  position:relative;
  z-index:3;
  transition:0.4s ease;
}

/* WHITE TEXT ON HOVER */
.testimonial-card:hover h4,
.testimonial-card:hover p{
  color:#fff !important;
}
/* ADD ONLY - BLUE FILL HOVER EFFECT */
.testimonial-card{
  position:relative;
  overflow:hidden;
}

/* BLUE BACKGROUND FILL */
.testimonial-card::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:0%;
  background:#00a3da;
  transition:0.4s ease;
  z-index:1;
  border-radius:28px;
}

/* ON HOVER FILL UP */
.testimonial-card:hover::before{
  height:100%;
}

/* KEEP CONTENT ABOVE BLUE LAYER */
.testimonial-card > *{
  position:relative;
  z-index:2;
}

.tax-box{
  width:100%;
  height:70px;

  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;

  background:linear-gradient(135deg,#00a3da,#315270);
  color:#fff;

  border-radius:0px;
  margin:20px 0;
  padding:10px;

  box-shadow:0 15px 40px rgba(0,0,0,0.15);

  position:relative;
  overflow:hidden;
  transition:0.4s ease;
}
/* text box*/
/* Glow animation effect */
.tax-box::before{
  content:"";
  position:absolute;
  width:200%;
  height:200%;
  background:radial-gradient(circle,rgba(255,255,255,0.15),transparent);
  top:-50%;
  left:-50%;
  animation:shine 6s linear infinite;
}

@keyframes shine{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}

.tax-box p{
  font-size:16px;
  line-height:1.6;
  position:relative;
  z-index:2;
}

/* Hover effect */
.tax-box:hover{
  transform:translateY(-5px) scale(1.01);
  box-shadow:0 25px 60px rgba(0,163,218,0.35);
}


