*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #03163E;
  --mid:     #315371;
  --cyan:    #00A2D9;
  --cyan-light: #33bce8;
  --green:   #2eb85c;
  --gold:    #D4AF37;
  --white:   #ffffff;
  --light-bg:#f4f7fb;
  --text-dark:#1a1a2e;
  --text-mid: #4a5568;
}

body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); overflow-x: hidden; }

/* ─── TAX BOX HEADING (matches Annapurna page style) ─── */
.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;
}
.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 h1{
  font-size:1.4rem;
  font-weight:700;
  line-height:1.6;
  font-family:'Montserrat',sans-serif;
  position:relative;
  z-index:2;
}
.tax-box:hover{
  transform:translateY(-5px) scale(1.01);
  box-shadow:0 25px 60px rgba(0,163,218,0.35);
}

/* ─── Nav bar ─── */
/* ─── Nav bar ─── */
/* ─── Nav bar ─── */




/* 1st */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #ffffff;
}

/* Section */
.sevak-section {
  padding: 20px 15px; /* less padding */
  text-align: center;
}

/* Header */
.sevak-header h1 {
  font-size: 32px;
  color: #00a3da;
  margin-bottom: 5px;
}

.sevak-header h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.tagline {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.subtag {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.desc {
  font-size: 14px;
  max-width: 700px;
  margin: auto;
  color: #444;
}

/* Container */
.sevak-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Box */
.sevak-box {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 15px;
  width: 500px;
  border-radius: 8px;
  transition: 0.3s ease;
  cursor: pointer;
}

/* Hover effect (cursor + color change from bottom feel) */
.sevak-box:hover {
  background: #00a3da;
  color: #fff;
  transform: translateY(-5px);
  
}

.sevak-box h3 {
  margin-bottom: 30px;
}

.sevak-box p {
  font-size: 20px;
  line-height: 1.5;
}
/* 2nd */
.about-sevak{
    padding:40px 4%;
    background:#fff;
}

.section-heading{
    text-align:center;
    max-width:1000px;
    margin:auto;
}

.section-heading h2{
    color:#00a3da;
    font-size:42px;
    margin-bottom:15px;
    font-weight:700;
}

.section-heading p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}

.facility-title{
    text-align:center;
    margin:40px 0 25px;
}

.facility-title h2{
    color:#00a3da;
    font-size:36px;
    font-weight:700;
}

.facility-wrapper{
    display:flex;
    gap:30px;
    align-items:flex-start;
}

/* LEFT CARD */

.donation-card{
    width:320px;
    flex-shrink:0;
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:
    0 15px 35px rgba(0,58,189,.08),
    0 5px 15px rgba(0,0,0,.05);
    transition:.4s;
    position:sticky;
    top:20px;
}

.donation-card:hover{
    transform:translateY(-8px);
}

.facility-image{
    overflow:hidden;
    border-radius:16px;
    margin-bottom:18px;
    transform:perspective(1000px) rotateX(4deg);
    box-shadow:
    0 20px 35px rgba(0,58,189,.15);
}

.facility-image img{
    width:100%;
    display:block;
    transition:.5s;
}

.donation-card:hover .facility-image img{
    transform:scale(1.08);
}

.donation-card h3{
    color:#00a3da;
    font-size:22px;
    margin-bottom:12px;
}

.donation-card p{
    color:#666;
    line-height:1.7;
}

.amount{
    font-size:34px;
    font-weight:700;
    color:#00a3da;
    margin:20px 0;
}

.donate-btn{
    display:block;
    text-align:center;
    background:#00a3da;
    color:#fff;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.donate-btn:hover{
    background:#00a3da;
}

/* RIGHT CONTENT */

.facility-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.facility-tag{
    display:inline-block;
    width:fit-content;
    background:#eef4ff;
    color:#00a3da;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.facility-content h3{
    font-size:42px;
    color:#00a3da;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:700;
}

.facility-content p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    max-width:700px;
}

/* MOBILE */

@media(max-width:991px){

    .facility-wrapper{
        flex-direction:column;
    }

    .donation-card{
        width:100%;
        position:relative;
        top:0;
    }

    .facility-content h3{
        font-size:30px;
    }
}

/* 3 */
.facility-section{
    padding:50px 6%;
    background:#fff;
}

.facility-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px; /* pehle zyada tha */
}

/* LEFT CONTENT */

.facility-content{
    flex:1;
    padding-right:20px;
}

.facility-tag{
    display:inline-block;
    background:#eef4ff;
    color:#00a3da;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.facility-content h2{
    font-size:42px;
    color:#00a3da;
    line-height:1.2;
    margin-bottom:18px;
    font-weight:700;
}

.facility-content p{
    font-size:18px;
    color:#555;
    line-height:1.8;
    max-width:700px;
}

/* RIGHT CARD */

.donation-card{
    width:360px;
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border:1px solid #eee;
    flex-shrink:0;
}

.facility-image{
    border-radius:15px;
    overflow:hidden;
    margin-bottom:15px;
}

.facility-image img{
    width:100%;
    display:block;
}

.donation-card h3{
    color:#00a3da;
    font-size:22px;
    margin-bottom:10px;
}

.donation-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:15px;
}

.amount{
    font-size:32px;
    font-weight:700;
    color:#00a3da;
    margin-bottom:18px;
}

.donate-btn{
    display:block;
    text-align:center;
    background:#00a3da;
    color:#fff;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.donate-btn:hover{
    background:#00a3da;
}

/* TABLET */

@media(max-width:991px){

    .facility-wrapper{
        gap:25px;
    }

    .facility-content h2{
        font-size:34px;
    }

    .donation-card{
        width:320px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .facility-wrapper{
        flex-direction:column;
        align-items:flex-start;
    }

    .facility-content{
        width:100%;
        padding-right:0;
    }

    .facility-content h2{
        font-size:30px;
    }

    .facility-content p{
        font-size:16px;
    }

    .donation-card{
        width:100%;
    }

}








/* ─── footer ─── */
/* ─── footer ─── */
/* ─── footer ─── */
.map-section {
  background: var(--light-bg);
  padding: 60px 24px;
}
.map-section .section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.map-section .section-label::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 10px auto 0;
  border-radius: 2px;
}
.map-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .page-hero h1 { font-size: 1.8rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  .map-wrap iframe { height: 280px; }
}

@media (max-width: 480px) {
  .page-hero { padding: 80px 18px 40px; }
  .page-hero h1 { font-size: 1.4rem; }
  .contact-container { padding: 40px 18px; }
}
