/*# Annapurna.css*/

body
{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f4f6f8;
  color:#315270;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

section{
  padding:4px 4%;
}


.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

/* .logo-circle{
  width:55px;
  height:55px;
  border-radius:50%;
  background:linear-gradient(135deg,#00a3da,#315270);
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  font-weight:700;
  font-size:20px;
}

.logo h2{
  font-size:20px;
}

.logo p{
  font-size:12px;
  color:#6d7f91;
} */

nav{
  display:flex;
  gap:28px;
}

nav a{
  text-decoration:none;
  color:#315270;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#00a3da;
}



/* HERO */
.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:0px;
  position:relative;
  overflow:hidden;
}

.hero-content{
  position:relative;
  z-index:2;
}

.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 h1{
  font-size:62px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero h1 span{
  color:#00a3da;
}

.hero p{
  font-size:18px;
  line-height:1.9;
  color:#66788a;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.primary-btn,
.secondary-btn{
  padding:16px 34px;
  border-radius:60px;
  text-decoration:none;
  font-weight:600;
}

.primary-btn{
  background:linear-gradient(135deg,#00a3da,#315270);
  color:#00a3da;
  box-shadow:0 15px 35px rgba(0,163,218,0.35);
}

.secondary-btn{
  border:2px solid #00a3da;
  color:#00a3da;
}

.hero-image{
  position:relative;
  z-index:1;
}

/* IMAGE BASE */
.hero-image img{
  height:350px;
  object-fit:cover;
  border-radius:40px;
  transform:perspective(1000px) rotateY(-10deg);
  box-shadow:0 30px 60px rgba(0,0,0,0.18);
  transition:0.6s ease;
  
  /* ✨ floating animation */
  animation: floatImage 4s ease-in-out infinite;
}

/* HOVER EFFECT */
.hero-image img:hover{
  transform:perspective(1000px) rotateY(0deg) scale(1.05);
  box-shadow:0 40px 90px rgba(0,0,0,0.25);
}

/* FLOAT ANIMATION */
@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);
  }
}

/* GLOW BACK EFFECT */
.hero-image::before{
  content:"";
  position:absolute;
  top:20px;
  left:20px;
  width:100%;
  height:100%;
  border-radius:40px;
  background:linear-gradient(135deg,rgba(0,163,218,0.25),transparent);
  z-index:-1;
  filter:blur(10px);
}

.floating-card{
  position: absolute;
  padding: 15px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: floatUpDown 3s ease-in-out infinite;
   z-index: 10; /* 👈 ye important hai */
}

.floating-card h3{
  color:#00a3da;
  font-size:34px;
}

.card1{
  top:40px;
  left:-60px;
}

.card2{
  bottom:50px;
  right:-40px;
}
/* floating animation */
@keyframes floatUpDown{
  0%{
    transform: translateY(0px);
  }
  50%{
    transform: translateY(-15px);
  }
  100%{
    transform: translateY(0px);
  }
}
.blur{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
}

.blur1{
  width:350px;
  height:350px;
  background:#00a3da33;
  top:0;
  left:0;
}

.blur2{
  width:350px;
  height:350px;
  background:#3152702b;
  bottom:0;
  right:0;
}

/* HERO BUTTON */
.hero-buttons .donate-btn{
  padding:14px 26px;
  border-radius:50px;
  text-decoration:none;
  color:#fff;
  background:#00a3da;
  box-shadow:0 15px 30px rgba(0,163,218,0.35);
  display:inline-block;
  transition:0.3s;
  font-size:18px; /* 👈 font size increased */
  font-weight:600; /* optional: thodu bold look mate */
}

.hero-buttons .donate-btn:hover{
  transform:translateY(-4px);
}





/* ABOUT */
.about-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  align-items:center;
}

.about-image{
  position:relative;
}

/* IMAGE - CLEAN PREMIUM LOOK */
.about-image img{
  border-radius:35px;
  height:600px;
  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;
}

.small-title{
  color:#00a3da;
  font-weight:700;
  letter-spacing:2px;
  font-size:32px; /* 👈 add this */
}

.about-content h2{
  font-size:42px;
  margin:20px 0;
}

.about-content p{
  line-height:2;
  color:#657688;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
  margin-top:40px;
}

.about-card{
  background:#fff;
  padding:30px;
  border-radius:25px;
  transition:0.4s;
  box-shadow:0 20px 40px rgba(0,0,0,0.05);
}

.about-card:hover{
  transform:translateY(-10px) rotateX(6deg);
}

.about-card h3{
  margin-bottom:15px;
  color:#00a3da;
}


/* SECTION HEADER */
.section-header{
  text-align:center;
  margin-bottom:20px;
}

.section-header span{
  color:#00a3da;
  font-weight:700;
  letter-spacing:2px;
  font-size:40px; /* 👈 add this */
}

.section-header h2{
  font-size:42px;
  margin:18px 0;
}

.section-header p{
  color:#6b7d8f;
}

.light h2,
.light span{
  color:#fff;
}


/* HIGHLIGHTS */
.highlight-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.highlight-card{
  background:#fff;
  padding:20px 30px;
  border-radius:30px;
  transition:0.5s;
  position:relative;
  overflow:hidden;
  box-shadow:0 25px 40px rgba(0,0,0,0.05);
}

.highlight-card:hover{
  transform:translateY(-15px);
}

.number{
  font-size:60px;
  font-weight:700;
  color:#00a3da1e;
  position:absolute;
  right:20px;
  top:10px;
}

.highlight-card h3{
  margin-bottom:18px;
  position:relative;
  z-index:2;
  font-size:18px;
}

.highlight-card p{
  line-height:1.8;
  color:#6a7b8c;
  position:relative;
  z-index:2;
}
/* =========================
   HIGHLIGHT CARD HOVER EFFECT
   (BOTTOM TO TOP COLOR FILL)
========================= */

/* =========================
   HIGHLIGHT CARD HOVER (SINGLE COLOR FILL)
========================= */

.highlight-card{
  position:relative;
  overflow:hidden;
  cursor:pointer;
}

/* bottom to top fill with SINGLE COLOR */
.highlight-card::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:0%;
  background:#00a3da;   /* 👈 ONLY ONE COLOR */
  transition:0.5s ease;
  z-index:1;
}

/* fill animation */
.highlight-card:hover::before{
  height:100%;
}

/* content above layer */
.highlight-card h3,
.highlight-card p,
.highlight-card .number{
  position:relative;
  z-index:2;
  transition:0.4s ease;
}

/* text becomes white */
.highlight-card:hover h3,
.highlight-card:hover p{
  color:#fff;
}

/* number subtle fade */
.highlight-card:hover .number{
  color:#ffffff40;
}

/* hover lift */
.highlight-card:hover{
  transform:translateY(-15px);
}

/* IMPACT */
.impact-section{
  background:linear-gradient(135deg,#315270,#00a3da);
  border-radius:50px;
  margin:80px 5%;
}

.impact-wrapper{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.impact-box{
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  padding:40px 20px;
  border-radius:25px;
  text-align:center;
  color:#fff;
}

.impact-box h3{
  font-size:42px;
  margin-bottom:15px;
}


/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.gallery-card{
  overflow:hidden;
  border-radius:30px;
  height:420px;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.gallery-card img{
  height:100%;
  object-fit:cover;
  transition:0.6s;
}

.gallery-card:hover img{
  transform:scale(1.12);
}


/* DONATION */
/* FULL WIDTH SECTION */
.donation-section{
  width:100%;

  background:linear-gradient(135deg,#00a3da,#315270);
  padding:20px;
  color:#fff;
}

/* WRAPPER FLEX */
.donation-wrapper{
  max-width:1400px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

/* LEFT TEXT */
.donation-left{
  flex:1;
}

.donation-left span{
  font-size:14px;
  letter-spacing:2px;
}

.donation-left h2{
  font-size:28px;
  margin:10px 0;
}

.donation-left p{
  font-size:14px;
  line-height:1.5;
  max-width:600px;
}

/* RIGHT: button / iframe */
.donation-right{
  flex-shrink:0;
}



/* BUTTON */
.primary-btn{
  display:inline-block;
  padding:14px 28px;
  background:#fff;
  color:#00a3da;
  font-weight:bold;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s;
}

.primary-btn:hover{
  background:#f1f1f1;
  transform:translateY(-3px);
}
/* TESTIMONIALS */
* 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;
   grid-auto-rows:1fr;
}

.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;
  
  position:relative;
  z-index:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}


.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);
}


/* =========================
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);
}


/*************************************/


/* =========================
   GLOBAL CARD HOVER EFFECT (ADD ON ONLY)
   DO NOT DELETE OLD CSS
========================= */

/* ABOUT BOX */
.about-card{
  transition:0.4s ease;
  cursor:pointer;
}

.about-card:hover{
  background:#00a3da;
  transform:translateY(-10px);
}

.about-card:hover h3,
.about-card:hover p{
  color:#fff;
}



/* TESTIMONIAL BOX */
.testimonial-card{
  transition:0.4s ease;
  cursor:pointer;
}

.testimonial-card:hover{
  background:#00a3da;
}

.testimonial-card:hover p,
.testimonial-card:hover h4{
  color:#fff;
}

/* IMPACT BOX */
.impact-box{
  transition:0.4s ease;
  cursor:pointer;
}

.impact-box:hover{
  background:#ffffff;
  transform:translateY(-8px);
}

.impact-box:hover h3,
.impact-box:hover p{
  color:#00a3da;
}

/* FLOATING CARDS (optional smooth hover) */
.floating-card{
  transition:0.4s ease;
}

.floating-card:hover{
  transform:translateY(-8px) scale(1.05);
}