/* =========================
GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#f4f6f8;
  color:#1d2b36;
  overflow-x:hidden;
}


/* =========================
HERO SECTION
========================= */

.hero-section{
  width:100%;
  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;

  padding:70px 5%;

  overflow:hidden;

  background:
  radial-gradient(circle at top left,#dff6ff 0%,transparent 35%),
  radial-gradient(circle at bottom right,#c7ecff 0%,transparent 35%),
  linear-gradient(135deg,#ffffff,#eef8ff);
}


/* LEFT SIDE */

.hero-left{
  flex:1;
  max-width:520px;
}

.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;
  font-weight:800;

  margin-bottom:22px;

  color:#1c2b36;
}

.hero-left h1 span{
  color:#00a3da;
}

.hero-left p{
  font-size:18px;
  line-height:1.9;

  color:#51606d;

  margin-bottom:30px;
}


/* BUTTONS */

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  text-decoration:none;
  padding:14px 26px;
  border-radius:50px;

  font-size:18px;
  font-weight:700;

  transition:0.3s;
}

.primary-btn{
  background:#00a3da;
  color:#fff;

  box-shadow:0 15px 35px rgba(0,163,218,0.35);
}

.primary-btn:hover{
  transform:translateY(-4px);
}

.secondary-btn{
  border:2px solid #00a3da;
  color:#00a3da;
}

.secondary-btn:hover{
  background:#00a3da;
  color:#fff;
}


/* RIGHT SIDE */

.hero-right{
  flex:1;

  display:flex;
  justify-content:center;
  align-items:center;

  position:relative;

  max-width:500px;
  min-height:500px;
}


/* MAIN IMAGE */

.main-image-card{
  width:100%;
  max-width:480px;

  border-radius:30px;
  overflow:hidden;

  position:relative;
  z-index:2;

  transform:perspective(1000px) rotate(-3deg);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.15),
  0 10px 25px rgba(0,163,218,0.12);

  transition:0.6s ease;

  /* ✨ floating animation */
  animation: floatCard 4s ease-in-out infinite;
}

/* IMAGE INSIDE */
.main-image-card img{
  width:100%;
  display:block;
  object-fit:cover;
  transition:0.6s ease;
}

/* HOVER EFFECT */
.main-image-card:hover{
  transform:perspective(1000px) rotate(0deg) scale(1.05);
  box-shadow:0 40px 90px rgba(0,0,0,0.25);
}

/* FLOAT ANIMATION */
@keyframes floatCard{
  0%{
    transform:perspective(1000px) rotate(-3deg) translateY(0);
  }
  50%{
    transform:perspective(1000px) rotate(-3deg) translateY(-12px);
  }
  100%{
    transform:perspective(1000px) rotate(-3deg) translateY(0);
  }
}


/* FLOATING CARDS */

.floating-card{
  position:absolute;

  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);

  padding:15px 18px;

  border-radius:20px;

  min-width:160px;

  box-shadow:0 12px 30px rgba(0,0,0,0.10);

  z-index:5;

  animation:float 3s ease-in-out infinite;
}

.floating-card h3{
  color:#00a3da;
  font-size:34px;
  margin-bottom:4px;
}

.floating-card p{
  font-size:12px;
  font-weight:600;
  color:#51606d;
}


/* CARD POSITION */

.card1{
  top:80px;
  left:20px;
}

.card2{
  bottom:70px;
  right:20px;
}


/* FLOAT */

@keyframes float{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-10px);
  }

  100%{
    transform:translateY(0px);
  }
}


/* =========================
ABOUT SECTION
========================= */

.about-section{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:45px;

  padding:80px 5%;

  background:#fff;
}

.about-image{
  position:relative;
}

/* IMAGE - CLEAN PREMIUM LOOK */
.about-image img{
  border-radius:35px;
  height:450px;
  object-fit:cover;
  box-shadow:0 25px 50px rgba(0,0,0,0.12);
  transition:0.5s ease;
}

/* HOVER ONLY (NO MOVEMENT ANIMATION) */
.about-image img:hover{
  transform:scale(1.03);
  box-shadow:0 40px 90px rgba(0,0,0,0.2);
}

/* SOFT GLOW BACKGROUND */
.about-image::before{
  content:"";
  position:absolute;
  top:20px;
  left:20px;
  width:100%;
  height:100%;
  border-radius:35px;
  background:linear-gradient(135deg,rgba(0,163,218,0.2),transparent);
  filter:blur(12px);
  z-index:-1;
}

.about-content{
  flex:1;
  max-width:520px;
}

.mini-title{
  color:#00a3da;
  font-weight:700;
 font-size: 30px;
  margin-bottom:18px;
  display:block;
}

.about-content h2{
  font-size:42px;
  line-height:1.2;

  margin-bottom:22px;
}

.about-content h2 span{
  color:#00a3da;
}

.about-content p{
  font-size:15px;
  line-height:1.8;

  color:#51606d;
}


/* FEATURE BOX */

.feature-boxes{
  display:flex;
  gap:15px;

  margin-top:28px;
}

.feature-card{
   background:#f7fcff;
  padding:20px;
  border-radius:22px;
  transition:0.3s ease;
  cursor:pointer;
}

/* hover blue effect */
.feature-card:hover{
  background:#00a3da;
}
/* text white on hover */
.feature-card:hover h4,
.feature-card:hover p,
.feature-card:hover .icon{
  color:#fff;
}


.icon{
  font-size:28px;
  margin-bottom:12px;
}

.feature-card h4{
  font-size:17px;
  margin-bottom:8px;
}

.feature-card p{
  font-size:13px;
}


/* =========================
IMPACT SECTION
========================= */

.impact-section{
  width:100%;

  padding:80px 5%;

  background:
  radial-gradient(circle at top left,#dff6ff 0%,transparent 35%),
  linear-gradient(135deg,#f4f6f8,#eef8ff);
}

.section-heading{
  text-align:center;
  margin-bottom:45px;
}

.section-heading span{
  color:#00a3da;
  font-weight:700;
}

.section-heading h2{
  font-size:40px;
  margin-top:10px;
}

.impact-grid{
  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:18px;
}

.impact-card{
  background:#fff;
  padding:28px 18px;
  text-align:center;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:0.3s ease;
  position:relative;
  overflow:hidden;
  cursor:pointer;
  height:220px;

}

/* BLUE FILL FROM BOTTOM */
.impact-card::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:0%;
  background:#00a3da;
  transition:0.4s ease;
  z-index:1;
}

/* hover fill */
.impact-card:hover::before{
  height:100%;
}

/* content above layer */
.impact-card h3,
.impact-card p{
  position:relative;
  z-index:2;
  transition:0.3s ease;
}

/* text color change */
.impact-card:hover h3,
.impact-card:hover p{
  color:#fff;
}

/* =========================
GALLERY
========================= */

.gallery-section{
  width:100%;
  padding:80px 5%;
  background:#fff;
}

.gallery-grid{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:16px;
}

.gallery-item{
  overflow:hidden;

  border-radius:24px;

  height:240px;
}

.gallery-item.big{
  grid-row:span 2;
  height:500px;
}

.gallery-item img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.5s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}


/* =========================
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*/

.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(to right, #009BD4 0%, #0285C3 25%, #046FB1 50%, #074D97 75%, #083D8B 100%);
  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);
}


