html,body{
  overflow-x:hidden;
}

*{
  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;              /* logo aur nav ke beech */
  position:relative;
}
.nav{
  margin-right:auto;    /* 🔥 key line */
}


.dropdown1{
  z-index: 9999;        /* 🔥 MOST IMPORTANT */
}

.header{
  position: relative;
  z-index: 10000;      /* 🔥 HEADER KO TOP PAR LAO */
}

.logo{
  font-weight:700;
  font-size:20px;
}
@media (max-width:768px){

  .header{
    padding:12px 16px;
    gap:20px;            /* 🔥 mobile me thoda zyada gap */
  }

  .nav a{
    margin-right:10px;   /* Opportunities aur ☰ ke beech space */
  }
}

.nav{
  display:flex;
  align-items:center;
}

.nav a{
  margin-right:0;
  text-decoration: underline;
  color:#1a8543;
  font-weight:500;
  font-size:18px;
}


.profile1{
  cursor:pointer;
  font-size:22px;
  border:1px solid #ddd;
  padding:6px 12px;
  border-radius:50%;
   margin-left:10px;
}

/* DROPDOWN */
.dropdown1{
  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;
}

.dropdown1 a{
  display:block;
  padding:12px 15px;
  text-decoration:none;
  color:#000;
  border-bottom:1px solid #eee;
}

.dropdown1 a:hover{
  background:#f5f5f5;
}

/* HERO */
.hero{
  min-height:85vh;
  height:auto; 
  background: url("../images/Banner.webp") center center / cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  position:relative;
   margin-bottom:0;
}


.hero-content{
  max-width:800px;
   padding-bottom:20px; 
}

.tagline{
  color:#e7c116;
  font-size:28px;
 font-weight: 600;
  margin-bottom:10px;
}

.hero h1{
  font-size:38px;
  max-width:650px;   /* 🔥 heading break yahin se */
  margin:0 auto 12px;
}

.sub{
  font-size:16px;
  margin-bottom:30px;
}

/* BUTTON */
.btn{
  background:#ffd000;
  color:#000;
  padding:14px 26px;
  border-radius:30px;
  cursor:pointer;
  font-weight:600;
  display:inline-block;
}
/* FEATURED IN */
.featured{
  background:#fff;

  text-align:center;
   padding:30px 0;
}

.featured h3{
  font-size:16px;
  color:#444;
  margin-bottom:20px;
  font-weight:600;
}

.featured-logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}

.logo-box{
  background:#fff;
  border:1px solid #e5e7eb;
  padding:18px 25px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
}

.logo-box img{
  max-height:40px;
  max-width:120px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:0.85;
}

.logo-box img{
  filter:none;
  opacity:1;
}
/* ===============================
   WHO WE ARE – FRESH CSS ONLY
   =============================== */

.who-we-are{
  background:#fff;
  padding:50px 40px;
}

.who-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
}

/* LEFT TEXT */
.who-text{
  flex:1;
}

.who-label{
  color:#f5b400;
  font-size:14px;
  font-weight:600;
}

.who-text h2{
  font-size:30px;
  line-height:1.25;
  margin:12px 0 22px;
  color:#0f172a;
}

.who-text h2 strong{
  font-weight:800;
}

.who-text p{
  font-size:18px;
  line-height:1.75;
  color:#475569;
  margin-bottom:16px;
}

/* STATS BOXES */
.stats{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
 
}

.stat-box{
  background:#fff;
  padding: 10px;
  border-radius:12px;
  box-shadow:0 8px 22px rgba(0,0,0,0.08);
}

.stat-box h3{
  font-size:22px;
  margin:0;
  color:#0f172a;
}

.stat-box p{
  font-size:13px;
  color:#64748b;
  margin-top:6px;
}

/* RIGHT IMAGES WRAPPER */
.who-images{
  flex:1;
  position:relative;
  min-height:600px;
  margin-left: 150px;
}

/* SMALL IMAGE – TOP */
.img-small{
  width:200px;
  border-radius:20px;
  position:absolute;
  top:0;
  left:0;
  z-index:1;
}

/* LARGE IMAGE – BOTTOM */
.img-large{
  width:250px;
  border-radius:24px;
  position:absolute;
  top:150px;
  left:130px;
  z-index:3;
}

/* ROTATING YELLOW CIRCLE */
.circle{
  position:absolute;
  width:95px;
  height:95px;
  border:3px dashed #f5b400;
  border-radius:50%;
  top:195px;
  left:175px;
  z-index:4;
  animation: spin 8s linear infinite;
  pointer-events:none;
}

/* ROTATION */
@keyframes spin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

/* MOBILE RESPONSIVE */
@media(max-width:900px){
  .who-container{
    flex-direction:column;
  }

  .who-images{
    min-height: 0;
    margin-top:0;
  }
@media(max-width:768px){
  .stats{
    grid-template-columns:1fr;
    gap:12px;
  }
}

  .img-small,
  .img-large{
    position:static;
    width:100%;
    margin-bottom:20px;
  }


}
/* ===============================
   HOW IT WORKS
   =============================== */

.how-it-works{
  background:#f8fafc;
  padding:50px 30px;
  text-align:center;
}

.how-label{
  color:#f5b400;
  font-size:14px;
  font-weight:600;
}

.how-it-works h2{
  font-size:34px;
  margin:12px 0 20px;
  color:#0f172a;
  line-height:1.3;
}

.how-it-works h2 strong{
  font-weight:800;
}

.how-sub{
  max-width:850px;
  margin:0 auto 50px;
  font-size:16px;
  color:#475569;
  line-height:1.7;
}

/* STEPS GRID */
.steps{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

/* CARD */
.step-card{
  background:#fff;
  padding:35px 25px;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
  transition:transform .3s ease;
}

.step-card:hover{
  transform:translateY(-8px);
}

.step-icon{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  background:#fff7db;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.step-icon img{
  width:38px;
}

/* TEXT */
.step-card h3{
  font-size:18px;
  margin-bottom:12px;
  color:#0f172a;
}

.step-card p{
  font-size:14px;
  color:#64748b;
  line-height:1.6;
}

/* BUTTONS */
.how-buttons{
  margin-top:50px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn-outline{
  padding:14px 26px;
  border:2px solid #e5e7eb;
  border-radius:30px;
  text-decoration:none;
  color:#0f172a;
  font-weight:600;
}

.btn-primary{
  padding:14px 28px;
  background:#ffd000;
  border-radius:30px;
  text-decoration:none;
  color:#000;
  font-weight:700;
}

/* MOBILE */
@media(max-width:900px){
  .steps{
    grid-template-columns:1fr;
  }
}


.membership{
  padding:20px 0;
}

.membership-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 40px;
}

.membership-head h2{
  font-size:24px;
  font-display: block;
}

.membership-head p{
  color:#555;
}
@media(max-width:768px){
  .opp-slider{
    padding:0 15px;
  }

  .opp-card{
    min-width:240px;
  }

  .opp-arrow{
    display:none;
  }
}

/* SLIDER */
.slider{
  max-width:1200px;
  margin:auto;
  position:relative;
}

.viewport{
  overflow:hidden;                 /* 🔥 KEY */
}

.track{
  display:flex;
  transition:transform .6s ease;
}

/* SLIDE = FULL PAGE */
.slide{
  min-width:100%;
  display:flex;
  align-items:center;
  padding:0 40px;
  box-sizing:border-box;
}

/* LEFT */
.text{
  width:50%;
}

.text h3{
  font-size:28px;
}

.text button{
  margin-top:20px;
  background:#ffd000;
  border:none;
  padding:12px 24px;
  border-radius:30px;
  font-weight:700;
}

/* RIGHT IMAGE (THIS WAS MISSING BEFORE) */
.image{
  width:50%;
  min-height:350px;                /* 🔥 IMPORTANT */
  display:flex;
  align-items:center;
  justify-content:center;
}

.image img{
  width:100%;
  max-width:420px;
  display:block;
}

/* ARROWS */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  font-size:22px;
  background:#eee;
  cursor:pointer;
}

.arrow.left{ left:-60px; }
.arrow.right{ right:-60px; }

/* MOBILE */
@media(max-width:900px){
  .slide{
    flex-direction:column;
    text-align:center;
  }
  .text,.image{
    width:100%;
  }
  .arrow{
    display:none;
  }
}
.opportunities{
 
  background:#f8fafc;
}
@media(max-width:768px){

  .faq-section{
    flex-direction:column;
    padding:20px;
  }

  .faq-left,
  .faq-right{
    width:100%;
  }

  .faq-question{
    font-size:16px;
  }

  .faq-answer{
    font-size:14px;
  }
}


/* HEADER */
.opp-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 50px;
}
.small-title{
  color:#f4b400;
  font-weight:600;
}
.opp-head h2{
  font-size:32px;
  margin:10px 0;
}
.opp-head p{
  color:#555;
}

/* SLIDER */
.opp-slider{
  max-width:1150px;
  margin:auto;
  position:relative;
}

.opp-viewport{
  overflow:hidden;   /* 🔥 NEXT CARDS HIDE */
}

.opp-track{
  display:flex;
  gap:24px;
  transition:transform .5s ease;
}


/* CARD */
.opp-card{
  min-width:270px;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.opp-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.opp-body{
  padding:16px;
}

.location{
  font-size:12px;
  font-weight:600;
  color:#f4b400;
}

.opp-body h3{
  font-size:15px;
  margin:8px 0 12px;
}

.tags span{
  display:inline-block;
  background:#fff3c4;
  padding:4px 10px;
  border-radius:20px;
  font-size:12px;
  margin:4px 4px 0 0;
}

/* ARROWS */
.opp-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  background:#e5e7eb;
  font-size:22px;
  cursor:pointer;
}

.opp-arrow.left{ left:-60px; }
.opp-arrow.right{ right:-60px; }

/* BUTTON */
.opp-btn-wrap{
  text-align:center;
  margin-top:30px;
}
.main-btn{
  background:#ffd000;
  border:none;
  padding:14px;
  border-radius:30px;
  font-weight:700;
 
}
.faq-section{
  margin:0 auto;
  display:flex;
  gap:40px;
  max-width:1200px;
  padding:40px 30px;
}
/* =========================
   FAQ MOBILE FIX
========================= */
@media (max-width:768px){

  .faq-section{
    flex-direction:column;
    padding:20px 15px;
    gap:20px;
  }

  .faq-left,
  .faq-right{
    width:100%;
  }

  .faq-box{
    padding:25px;
    text-align:center;
  }
@media (max-width:768px){

  .faq-box{
    width:100%;
    max-width:100%;
    padding:24px;
    text-align:center;
  }

}
@media (max-width:768px){

  .faq-image{
    display:block;
    margin:0 auto 20px;
    width:140px;
  }

  .faq-btn{
    margin:20px auto 0;
    display:block;
  }

}

  .faq-image{
    width:140px;
    margin:0 auto 20px;
  }

  .faq-btn{
    margin:20px auto 0;
    display:block;
  }

  .faq-question{
    font-size:16px;
  }

  .faq-answer{
    font-size:14px;
  }
}


/* LEFT */
.faq-box{
  background:#fff;
  padding:30px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.avatars{
  display:flex;
  gap:10px;
  margin-bottom:20px;
}

.avatars img{
  width:44px;
  height:44px;
  border-radius:50%;
}

.faq-btn{
  background:#ffd000;
  border:none;
  padding:20px 30px;
  border-radius:30px;
  font-weight:700;
  margin-top:20px;
}

/* RIGHT */
.faq-right{
  flex:1;
}

.faq-item{
  border-bottom:1px solid #e5e7eb;
}

.faq-question{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
  font-weight:600;
  cursor:pointer;
  font-size: 20px;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  font-size: 18px;
}

.faq-answer p{
  padding-bottom:20px;
  color:#555;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-item.active .icon{
  content:"–";
}

.faq-left{
  width:45%;
}

/* 🔥 mobile override */
@media (max-width:768px){
  .faq-left{
    width:100%;
  }
}


.faq-box{
  background:#fff;
  padding:40px;        /* 🔥 zyada space */
  border-radius:16px;
  box-shadow:0 14px 40px rgba(0,0,0,.1);
}


.faq-image{
  width:400px;          /* 🔥 size bada */
  max-width:100%;
  margin-bottom:25px;
  display:block;
}

@media(max-width:768px){
  .faq-image{
    width:150px;
    margin:0 auto 20px;
  }
}
/* =========================
   SLIDER ARROWS – MOBILE CENTER FIX
========================= */
@media (max-width:768px){

  .opp-arrow,
  .arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    font-size:20px;
    background:#ffffff;
    box-shadow:0 6px 16px rgba(0,0,0,0.25);
    border-radius:50%;
    z-index:99;

    top:70%;
    transform:translateY(-50%);   /* 🔥 BILKUL BEECH ME */
  }

  .opp-arrow.left,
  .arrow.left{
    left:8px;
  }

  .opp-arrow.right,
  .arrow.right{
    right:8px;
  }
}

/* ======================
   HERO MOBILE FIX
====================== */
@media(max-width:768px){

  .hero{
    min-height:80vh;
    padding:20px 15px;
  }

  .hero-content{
    max-width:100%;
  }

  .tagline{
    font-size:16px;
  }

  .hero h1{
    font-size:26px;
    line-height:1.3;
    max-width:100%;
  }

  .sub{
    font-size:14px;
  }

  .btn{
    padding:12px 22px;
    font-size:14px;
  }
}
@media (max-width:768px){

  .faq-section{
    display:flex;
    flex-direction:column;
    align-items:center;   /* 🔥 left card center */
    padding:20px 15px;
    gap:24px;
  }

}
/* =========================
   OPPORTUNITY ARROW – VISIBLE + CENTER (FINAL)
========================= */
@media (max-width:768px){

  .opp-slider{
    position:relative;
  }

  .opp-viewport{
    position:relative;
  }

  .opp-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    display:flex;                 /* 🔥 SHOW */
    align-items:center;
    justify-content:center;

    width:36px;
    height:36px;
    font-size:20px;

    background:#ffffff;
    border-radius:50%;
    box-shadow:0 6px 16px rgba(0,0,0,0.25);

    z-index:999;
  }

  .opp-arrow.left{
    left:8px;
  }

  .opp-arrow.right{
    right:8px;
  }
}
/* =========================
   MOBILE CENTER FIX
========================= */
@media (max-width:768px){

  .who-images{
    display:flex;
    justify-content:center;   /* 🔥 horizontal center */
    align-items:center;
    margin-left:0;            /* 🔥 desktop ka offset hatao */
  }

  .who-images img{
    display:block;
    margin:0 auto;            /* 🔥 image center */
  }

}
@media (max-width:768px){

  .who-images{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    margin-left:0;
    gap:20px;
  }

  .img-small{
    width:70%;              /* 🔥 thoda chhota */
    max-width:260px;
    border-radius:18px;
  }

  .img-large{
    width:80%;              /* 🔥 main image */
    max-width:300px;
    border-radius:22px;
  }
}
/* ===========================
   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;
}
