*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI, Arial, sans-serif;
}

body{
  background:#f4f6f8;
}

/* ===== HEADER ===== */
.header{
  background:#fff;
  padding:15px 40px;
  display:flex;
  align-items:center;
  gap:30px;
  position:relative;
}

.logo{
  font-weight:700;
  font-size:20px;
}

.nav{
  margin-right:auto;   /* 🔥 key line */
}

.nav a{
  text-decoration: underline;
  color:#1a8543;
  font-weight:500;
  font-size:18px;
}

.profile{
  cursor:pointer;
  font-size:22px;
  border:1px solid #ddd;
  padding:6px 12px;
  border-radius:50%;
}

/* Mobile header */
@media(max-width:768px){
  .header{
    padding:12px 16px;
  }

  .logo{
    font-size:16px;
  }

  .profile{
    font-size:20px;
    padding:6px 10px;
  }
}


/* DROPDOWN */
.dropdown{
  position:absolute;
  top:65px;
  right:40px;
  background:#fff;
  width:220px;
  border-radius:8px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  display:none;
}

.dropdown a{
  display:block;
  padding:12px 15px;
  text-decoration:none;
  color:#000;
  border-bottom:1px solid #eee;
}

.dropdown a:hover{
  background:#f5f5f5;
}



.about-section{
  background:#fff;
  padding:60px 40px;
}

.about-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
}

/* LEFT TEXT */
.about-text{
  flex:1;
}

.about-label{
  color:#0f172a;
  font-weight:600;
  font-size:15px;
}

.about-text h2{
  font-size:40px;
  line-height:1.25;
  margin:16px 0 20px;
}

.about-text p{
  font-size:15px;
  color:#475569;
  line-height:1.7;
  max-width:520px;
}

.about-btn{
  display:inline-block;
  margin-top:25px;
  background:#ffd000;
  color:#000;
  padding:14px 26px;
  border-radius:30px;
  font-weight:700;
  text-decoration:none;
}

/* RIGHT IMAGE */
.about-image{
  flex:1;
  display:flex;
  justify-content:center;
}

.about-image img{
  width:100%;
  max-width:520px;
  border-radius:24px;
  object-fit:cover;
}
@media(max-width:900px){
  .about-container{
    flex-direction:column;
    text-align:center;
  }

  .about-text p{
    margin:auto;
  }
}
.about-values{
  background:#fff;
  padding:60px 40px;
}

.values-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px;
}

/* CARD */
.value-card{
  text-align:left;
}

/* ICON */
.value-card img{
  width:60px;
  margin-bottom:20px;
}

/* HEADING */
.value-card h3{
  font-size:20px;
  margin-bottom:14px;
  color:#0f172a;
}

/* TEXT */
.value-card p{
  font-size:15px;
  line-height:1.7;
  color:#475569;
}
@media(max-width:900px){
  .values-container{
    grid-template-columns:1fr;
    gap:40px;
  }
}
.impact-section{
  background:#fff;
  padding:60px 40px;
}

.impact-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

/* COMMON BOX */
.impact-box{
  padding:40px;
  border-radius:20px;
  background:#fff;
}

/* ICON */
.impact-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}

.impact-icon img{
  width:28px;
}

/* COLOR THEMES */
.orange{
  background:#fff1df;
}

.green{
  background:#e9fdf1;
}

.happening h3{
  color:#ff7a00;
}

.helping h3{
  color:#22c55e;
}

/* TEXT */
.impact-box h3{
  font-size:22px;
  margin-bottom:20px;
}

.impact-box ul{
  padding-left:18px;
}

.impact-box li{
  font-size:15px;
  line-height:1.7;
  color:#475569;
  margin-bottom:16px;
}

.happening li::marker{
  color:#ff7a00;
}

.helping li::marker{
  color:#22c55e;
}
@media(max-width:900px){
  .impact-container{
    grid-template-columns:1fr;
    gap:40px;
  }
}
.join-section{
  position:relative;
  height:70vh;
  background:url("../images/aboutpage.png") center center / cover no-repeat;
  display:flex;
  align-items:center;
  padding:0 60px;
}

/* DARK OVERLAY */
.join-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

/* CONTENT */
.join-content{
  position:relative;
  max-width:650px;
  color:#fff;
  z-index:2;
}

.join-content h2{
  font-size:36px;
  margin-bottom:14px;
}

.join-content p{
  font-size:16px;
  line-height:1.7;
  margin-bottom:24px;
  color:#e5e7eb;
}

/* BUTTON */
.join-btn{
  display:inline-block;
  background:#22c55e;
  color:#fff;
  padding:12px 26px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  transition:.3s ease;
}

.join-btn:hover{
  background:#16a34a;
}
@media(max-width:768px){
  .join-section{
    height:auto;
    padding:80px 20px;
    text-align:center;
  }

  .join-content{
    max-width:100%;
  }

  .join-content h2{
    font-size:28px;
  }
}
/* ===========================
   REGISTER HERO + FOOTER
=========================== */

/* REGISTER HERO */
.register-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* NEW background – dark blue gradient */
  background: linear-gradient(135deg, #001829 0%, #022d4a 40%, #03455b 100%);
}




.register-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;            /* 60 se kam */
  padding: 60px 6vw;    /* 80 se kam */
  color: #fff;
  max-width: 1200px;    /* center me rakho */
  margin: 0 auto;
}


.hero-image img {
  max-width:380px;
  width:100%;
  height:auto;
}

.hero-content {
  max-width:540px;
}

.hero-title {
  font-size:42px;
  line-height:1.2;
  margin-bottom:18px;
}

.hero-text {
  font-size:16px;
  line-height:1.6;
  margin-bottom:20px;
}
/* ========== FINAL HERO FORM STYLING ========== */

/* Base (desktop + mobile) *//* ========== HERO EMAIL FORM (desktop + mobile same) ========== */
/* ========== EMAIL HERO FORM (search bar style) ========== */

.hero-form {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  width: 100%;
  margin: 18px auto 10px;
  padding: 8px 10px 8px 16px;
  background: #ffffff;
  border-radius: 999px;
}

/* left side group (icon + input) */
.hero-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

/* icon circle – same feel as search */
.hero-input-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #555;
  flex-shrink: 0;
}

.hero-form input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-size: 14px;
  height: 40px;
  background: transparent;
}

/* right side green button */
.hero-form button {
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  background: #9cd640;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

/* ✅ mobile ke liye alag rule ki zarurat nahi, yahi sab jagah chalega */


/* 👉 ab iske liye koi @media wali extra setting zarurat nahi */


/* Mobile tweak */
@media (max-width: 768px) {
  .hero-form {
    width: 100%;
    max-width: 100%;
    margin: 16px auto 10px;
    padding: 6px 8px 6px 18px;
  }
}



.hero-note {
  font-size:13px;
}

/* FOOTER */
.palghar-footer {
  background:#000;
  color:#fff;
  padding:30px 6vw 40px;
  position:relative;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.pf-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.pf-left img {
  max-width:190px;
  height:auto;
}

.pf-links {
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  justify-content:center;
}

.pf-links a {
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
}

.pf-links a:hover { text-decoration:underline; }

.pf-social {
  display:flex;
  gap:20px;
}

.pf-social a {
  color:#fff;
  font-size:20px;
  text-decoration:none;
}

.pf-bottom {
  text-align:center;
  font-size:14px;
  margin-top:18px;
}

.pf-bottom .pf-brand {
  color:#9cd640;
  text-decoration:none;
  font-weight:600;
}