
body{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Montserrat',sans-serif;
  overflow-x:hidden;
  background:#fff;
}

img{width:100%;display:block;}

.hero{
  min-height:100vh;
  padding:70px 7%;
  background:#f5fbff;
}

.hero-content{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.hero-left{flex:1;}
.hero-right{flex:1;display:flex;justify-content:center;}

.hero-right img{
  max-width:520px;
  height:560px;
  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;
}

.hero-right 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);}
}

.tag{
  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;
}

.hero-left p{
  font-size:18px;
  color:#6b7280;
  line-height:1.9;
  margin-bottom:35px;
}

.btns{display:flex;gap:15px;}
.btn{
  padding:16px 34px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  font-size:18px;
  transition:0.3s;
}

.primary{
  background:#00a3da;
  color:#fff;
  box-shadow:0 15px 35px rgba(0,163,218,0.35);
}

.primary:hover{
  transform:translateY(-4px);
}

.outline{
  border:2px solid #00a3da;
  color:#00a3da;
}

.about{
  padding:90px 7%;
  display:flex;
  align-items:center;
  gap:60px;
}

.about-image img{
  height:520px;
  border-radius:30px;
  object-fit:cover;
}

.about-content span{
  color:#00a3da;
  font-weight:700;
}

.about-content h2{
  font-size:42px;
  margin:15px 0;
}

.about-content p{
  color:#6b7280;
  line-height:1.8;
}

.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
  margin-top:25px;
}

.box{
  position:relative;
  overflow:hidden;

  background:#f8fbfd;
  padding:20px;
  border-radius:20px;

  transition:0.4s;
  z-index:1;

  cursor:pointer;
}

/* bottom to top color layer */
.box::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;

  width:100%;
  height:0%;

  background:#00a3da;

  transition:0.4s ease;

  z-index:-1;
}

/* hover effect */
.box:hover::before{
  height:100%;
}

.box:hover{
  color:#fff;
  transform:translateY(-6px);
}

/* text color smooth */
.box h3,
.box p{
  transition:0.3s;
}

.box:hover h3,
.box:hover p{
  color:#fff;
}

.impact{
  padding:80px 7%;
  background:#eef4f7;
}

.impact-wrapper{
  display:flex;
  justify-content:center;
  gap:25px;
}

.card{
  background:#eef9ff;
  padding:20px;
  border-radius:20px;

  transition:0.4s ease;

  cursor:pointer;
}

/* hover effect */
.card:hover{
  background:#00a3da;
  color:#fff;
  transform:translateY(-6px);
}

/* text color change */
.card h3,
.card p{
  transition:0.3s ease;
}

.card:hover h3,
.card:hover p{
  color:#fff;
}



@media(max-width:991px){
  .hero-content,.about{
    flex-direction:column;
    text-align:center;
  }
}
/* =========================
   GALLERY
========================= */

.gallery-section{
  width:100%;
  padding:90px 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);
}

/* ===========

/* =========================
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);
}



