*{margin:0;padding:0;box-sizing:border-box;font-family:'Segoe UI',sans-serif;}
body{background:#000;color:#fff;line-height:1.6;}

/* HEADER */
.header{
  position:fixed;
  width:100%;
  padding:18px 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.8);
  backdrop-filter:blur(12px);
  z-index:1000;
}

.logo{
  font-weight:700;
  font-size:22px;
  letter-spacing:2px;
  background:linear-gradient(90deg,#ff2f92,#ff69b4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-decoration:none;
}

.hamburger{
  width:28px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.hamburger span{
  height:3px;
  background:white;
  border-radius:3px;
}

.nav{
  position:absolute;
  top:70px;
  right:0;
  width:220px;
  background:#0c0c0c;
  display:none;
  flex-direction:column;
}

.nav a{
  padding:18px;
  text-decoration:none;
  color:#fff;
  border-bottom:1px solid #111;
}

.nav.active{display:flex;}

/* HERO */
.hero{
  height:90vh;
  background:url('assets/hero.jpg') center 10%/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding-top:100px;
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(to bottom,rgba(0,0,0,.3),rgba(0,0,0,.8));
}

.hero-content{
  position:relative;
  max-width:700px;
}

.hero h1{
  font-size:42px;
}

.hero span{
  background:linear-gradient(90deg,#ff2f92,#ff69b4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* PAGE CONTENT */
.page{
  padding:120px 20px 60px;
  max-width:900px;
  margin:auto;
}

.page h2{
  font-size:32px;
  margin-bottom:20px;
  background:linear-gradient(90deg,#ff2f92,#ff69b4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

footer{
  padding:30px;
  text-align:center;
  background:#000;
  opacity:.6;
}
/* ===== FOUNDER PAGE ===== */

.founder-section{
  padding:140px 20px 80px;
  background:#000;
}

.founder-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
}

.founder-photo-wrapper{
  position:relative;
  width:320px;
  height:320px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.pink-circle{
  position:absolute;
  width:340px;
  height:340px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,47,146,0.5) 0%, transparent 70%);
  animation:pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow{
  0%{transform:scale(1);opacity:.6;}
  50%{transform:scale(1.1);opacity:1;}
  100%{transform:scale(1);opacity:.6;}
}

.founder-photo{
  width:280px;
  height:280px;
  border-radius:50%;
  object-fit:cover;
  position:relative;
  z-index:2;
  border:4px solid #ff2f92;
}

.founder-content{
  flex:1;
  min-width:280px;
}

.founder-content h1{
  font-size:40px;
  margin-bottom:15px;
  background:linear-gradient(90deg,#ff2f92,#ff69b4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.founder-content h3{
  font-size:22px;
  margin-bottom:25px;
  color:#fff;
  opacity:.85;
}

.founder-content p{
  font-size:18px;
  line-height:1.8;
  margin-bottom:20px;
  color:#ddd;
}

/* MOBILE */
@media(max-width:768px){

  .founder-container{
    flex-direction:column;
    text-align:center;
  }

  .founder-content h1{
    font-size:32px;
  }

  .founder-content p{
    font-size:17px;
  }

}
/* ===== ABOUT PAGE ENHANCEMENTS ===== */

.about-hero{
  padding:140px 20px 60px;
  text-align:center;
  background:#000;
}

.about-hero h1{
  font-size:42px;
  margin-bottom:20px;
  background:linear-gradient(90deg,#ff2f92,#ff69b4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.about-hero p{
  font-size:18px;
  color:#ddd;
  max-width:600px;
  margin:auto;
}

.about-section{
  padding:60px 20px;
  max-width:900px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:60px;
}

.about-block h2{
  font-size:28px;
  margin-bottom:20px;
  color:#ff2f92;
}

.about-block p{
  font-size:18px;
  line-height:1.8;
  color:#ddd;
}

.about-block ul{
  list-style:none;
  padding:0;
}

.about-block li{
  font-size:18px;
  margin-bottom:10px;
  position:relative;
  padding-left:20px;
}

.about-block li::before{
  content:"•";
  position:absolute;
  left:0;
  color:#ff2f92;
}

.about-quote{
  padding:80px 20px;
  text-align:center;
  background:#050505;
}

.about-quote blockquote{
  font-size:24px;
  font-style:italic;
  color:#fff;
  max-width:700px;
  margin:auto;
}

/* MOBILE */
@media(max-width:768px){

  .about-hero h1{
    font-size:32px;
  }

  .about-block p,
  .about-block li{
    font-size:17px;
  }

  .about-quote blockquote{
    font-size:20px;
  }

}
/* PAGE HERO */
.page-hero{
  padding:140px 20px 60px;
  text-align:center;
  background:#000;
}

.page-hero h1{
  font-size:42px;
  margin-bottom:15px;
  background:linear-gradient(90deg,#ff2f92,#ff69b4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.page-hero p{
  font-size:18px;
  color:#ddd;
  max-width:600px;
  margin:auto;
}

/* DONATION */
.donation-section{
  padding:60px 20px;
}

.donation-grid{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
  max-width:1100px;
  margin:auto;
}

.donation-card{
  background:#111;
  padding:30px;
  border-radius:12px;
  text-align:center;
  width:280px;
  transition:0.3s;
}

.donation-card.highlight{
  border:2px solid #ff2f92;
}

.donation-card h3{
  margin-bottom:10px;
  color:#ff2f92;
}

.donation-card p{
  font-size:26px;
  margin-bottom:10px;
}

.donate-btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 25px;
  border-radius:30px;
  background:#ff2f92;
  color:#000;
  text-decoration:none;
  font-weight:600;
}

/* COMMUNITY */
.community-section{
  padding:60px 20px;
  display:flex;
  gap:40px;
  justify-content:center;
  flex-wrap:wrap;
}

.community-card{
  background:#111;
  padding:40px;
  border-radius:12px;
  width:320px;
  text-align:center;
}

.community-card h2{
  margin-bottom:15px;
  color:#ff2f92;
}

.community-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 25px;
  border-radius:30px;
  background:#ff2f92;
  color:#000;
  text-decoration:none;
}

.page-content{
  padding:60px 20px;
  max-width:800px;
  margin:auto;
  font-size:18px;
  color:#ddd;
}

/* MOBILE */
@media(max-width:768px){
  .page-hero h1{font-size:32px;}
}
/* ===== FOOTER SOCIAL ===== */

.footer {
  padding: 40px 20px;
  text-align: center;
  background: #000;
}

.social-icons {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-icons a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  transition: 0.3s ease;
  position: relative;
}

.social-icons a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #ff2f92;
  transition: 0.3s;
  margin-top: 4px;
}

.social-icons a:hover {
  color: #ff2f92;
}

.social-icons a:hover::after {
  width: 100%;
}
/* ===== PINK PARTICLE GLOW ===== */

body::after {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,47,146,0.25) 0%, transparent 70%);
  top: 20%;
  left: 60%;
  z-index: -1;
  animation: floatGlow 25s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% { transform: translateY(0px) translateX(0px); }
  100% { transform: translateY(-80px) translateX(-60px); }
}
.team-grid{
  display:flex;
  justify-content:center;
  gap:40px;
  padding:60px 20px;
  flex-wrap:wrap;
}

.team-card{
  background:#111;
  padding:30px;
  border-radius:14px;
  width:260px;
  text-align:center;
}

.team-card img{
  width:150px;
  height:150px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #ff2f92;
}

.team-card h3{
  margin-top:15px;
  color:#ff2f92;
}

.team-social{
  margin-top:15px;
  display:flex;
  justify-content:center;
  gap:15px;
}

.team-social a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

.team-btn{
  display:inline-block;
  margin-top:15px;
  padding:8px 20px;
  background:#ff2f92;
  color:#000;
  border-radius:20px;
  text-decoration:none;
}
/* INITIATIVES */

.initiative-section{
padding:120px 20px 80px;
text-align:center;
}

.initiative-title{
font-size:38px;
color:#ff2f92;
margin-bottom:10px;
}

.initiative-subtitle{
color:#aaa;
margin-bottom:60px;
font-size:18px;
}


/* GRID */

.initiative-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:35px;
max-width:1000px;
margin:auto;
}


/* CARD */

.initiative-card{
background:#111;
padding:40px 30px;
border-radius:18px;
transition:0.35s;
position:relative;
}

.initiative-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(255,47,146,.35);
}


.initiative-card h2{
color:#ff2f92;
margin-bottom:15px;
font-size:22px;
}

.initiative-card p{
color:#ccc;
font-size:16px;
margin-bottom:20px;
line-height:1.6;
}


/* BUTTON */

.initiative-btn{
display:inline-block;
padding:10px 22px;
border-radius:25px;
background:#ff2f92;
color:#000;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.initiative-btn:hover{
background:#ff69b4;
}


/* FEATURED CARD */

.highlight{
border:2px solid #ff2f92;
}
/* ===== PARTNERS SECTION PREMIUM ===== */

.partners-section {
  padding: 100px 20px;
  text-align: center;
  background: #050505;
  position: relative;
}

.partners-section h2 {
  font-size: 30px;
  margin-bottom: 50px;
  background: linear-gradient(90deg,#ff2f92,#ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Slider */
.partners-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.partners-track {
  display: flex;
  gap: 70px;
  align-items: center;
  animation: scrollPartners 35s linear infinite;
}

/* LOGOS */
.partners-track img {
  height: 90px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

/* Hover effect */
.partners-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(255,47,146,0.3);
}

/* Pause animation on hover */
.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

/* Edge fade overlays */
.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #050505, transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #050505, transparent);
}

/* Animation */
@keyframes scrollPartners {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SPOTLIGHT */
.partner-spotlight {
  margin-top: 70px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.partner-spotlight h3 {
  color: #ff2f92;
  margin-bottom: 15px;
  font-size: 22px;
}

.partner-spotlight p {
  font-size: 17px;
  color: #ddd;
  line-height: 1.6;
}

/* CTA */
.partner-cta {
  margin-top: 40px;
}

.become-partner-btn {
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(90deg,#ff2f92,#ff69b4);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.become-partner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,47,146,0.4);
}

/* Mobile */
@media (max-width:768px){
  .partners-track img {
    height: 60px;
  }
}
@media (max-width:768px){

.page-hero h1{
  font-size:34px;
}

.page-hero p{
  font-size:18px;
}

.team-card h3{
  font-size:22px;
}

.team-card p{
  font-size:17px;
}

}
.volunteer-form{
display:flex;
flex-direction:column;
gap:16px;
max-width:500px;
margin:auto;
}

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea{
width:100%;
padding:14px;
border-radius:10px;
border:1px solid #333;
background:#111;
color:white;
font-size:16px;
}
.volunteer-form textarea{
min-height:120px;
resize:vertical;
}
/* ===== VOLUNTEER BUTTON ===== */

.volunteer-btn{
background:#ff2f92;
color:#fff;
border:none;
padding:14px;
border-radius:30px;
font-size:16px;
font-weight:600;
cursor:pointer;
transition:0.3s ease;
}

.volunteer-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(255,47,146,0.5);
}
.volunteer-section{
position:relative;
padding:80px 20px;
max-width:700px;
margin:auto;
text-align:center;
}

.volunteer-glow{
position:absolute;
width:600px;
height:600px;
background:radial-gradient(circle, rgba(255,47,146,0.45) 0%, transparent 70%);
top:120px;
right:-200px;
filter:blur(60px);
z-index:-1;
}
@media(max-width:768px){

.volunteer-glow{
width:450px;
height:450px;
right:-150px;
top:180px;
}
@keyframes glowMove{
0%{transform:translateY(0px);}
50%{transform:translateY(-30px);}
100%{transform:translateY(0px);}
}

.volunteer-glow{
animation:glowMove 8s ease-in-out infinite;
}
/* IMPACT STATS */

.impact-section{
padding:80px 20px;
text-align:center;
}

.impact-section h2{
font-size:32px;
margin-bottom:40px;
background:linear-gradient(90deg,#ff2f92,#ff69b4);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.impact-grid{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.impact-card{
background:#111;
padding:30px;
border-radius:14px;
width:160px;
transition:.3s;
}

.impact-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(255,47,146,.35);
}

.counter{
font-size:36px;
color:#ff2f92;
margin-bottom:6px;
}

.impact-card p{
color:#bbb;
font-size:15px;
}
/* EVENTS SECTION */

.events-section{
padding:100px 20px;
text-align:center;
background:#050505;
}

.events-section h2{
font-size:34px;
margin-bottom:50px;
background:linear-gradient(90deg,#ff2f92,#ff69b4);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.events-grid{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.event-card{
background:#111;
padding:30px;
border-radius:14px;
width:300px;
display:flex;
gap:20px;
align-items:center;
text-align:left;
transition:0.3s ease;
}

.event-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(255,47,146,0.35);
}

.event-date{
background:#ff2f92;
color:#000;
padding:12px;
border-radius:10px;
text-align:center;
width:60px;
}

.event-date span{
font-size:22px;
font-weight:700;
}

.event-date p{
font-size:12px;
}

.event-info h3{
color:#ff2f92;
margin-bottom:6px;
font-size:18px;
}

.event-info p{
font-size:14px;
color:#bbb;
margin-bottom:10px;
}

.event-btn{
text-decoration:none;
font-size:14px;
background:#ff2f92;
color:#000;
padding:8px 16px;
border-radius:20px;
}
.past-grid{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.past-card{
background:#111;
border-radius:12px;
overflow:hidden;
width:260px;
}

.past-card img{
width:100%;
}

.past-card h3{
padding:15px;
font-size:16px;
color:#ff2f92;
}
/* INTERNATIONAL WOMEN'S DAY SECTION */

.iwd-countdown{
padding:100px 20px;
text-align:center;
background:#050505;
position:relative;
}

.iwd-container{
max-width:800px;
margin:auto;
background:#111;
padding:50px 30px;
border-radius:20px;
box-shadow:0 20px 60px rgba(255,47,146,0.25);
}

.iwd-countdown h2{
font-size:36px;
margin-bottom:10px;
background:linear-gradient(90deg,#ff2f92,#ff69b4);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.iwd-subtitle{
color:#bbb;
margin-bottom:30px;
font-size:18px;
}

.countdown-timer{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:30px;
}

.time-box{
background:#000;
padding:20px;
border-radius:12px;
width:90px;
border:1px solid #222;
}

.time-box span{
font-size:30px;
font-weight:700;
color:#ff2f92;
display:block;
}

.time-box p{
font-size:13px;
color:#aaa;
}

/* REGISTER BUTTON */

.event-register-btn{
display:inline-block;
margin-top:10px;
padding:14px 28px;
border-radius:30px;
background:linear-gradient(90deg,#ff2f92,#ff69b4);
color:#000;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.event-register-btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 35px rgba(255,47,146,.5);
}
.iwd-countdown::before{
content:"";
position:absolute;
width:500px;
height:500px;
background:radial-gradient(circle, rgba(255,47,146,0.25), transparent 70%);
top:-150px;
left:50%;
transform:translateX(-50%);
filter:blur(50px);
z-index:-1;
}
/* EVENT REGISTRATION FORM */

.registration-section{
padding:80px 20px;
display:flex;
justify-content:center;
}

.event-form{
max-width:500px;
width:100%;
display:flex;
flex-direction:column;
gap:18px;
}

.event-form input,
.event-form select,
.event-form textarea{

padding:15px;
border-radius:10px;
border:1px solid #333;
background:#111;
color:#fff;
font-size:16px;

}

.event-form textarea{
min-height:120px;
resize:vertical;
}
/* EXECUTIVE TEAM IMPROVEMENTS */

.team-grid{
display:flex;
justify-content:center;
gap:50px;
padding:80px 20px;
flex-wrap:wrap;
}

.team-card{
background:#111;
padding:35px;
border-radius:18px;
width:300px;
text-align:center;
transition:0.3s ease;
box-shadow:0 15px 40px rgba(0,0,0,0.6);
}

.team-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(255,47,146,0.35);
}

/* PROFILE IMAGE */

.team-card img{
width:170px;
height:170px;
border-radius:50%;
object-fit:cover;
border:4px solid #ff2f92;
margin-bottom:15px;
}

/* NAME */

.team-card h3{
font-size:26px;
color:#ff2f92;
margin-bottom:8px;
}

/* ROLE */

.team-card p{
font-size:18px;
color:#ccc;
margin-bottom:15px;
}

/* SOCIAL LINKS */

.team-social{
margin-top:10px;
display:flex;
justify-content:center;
gap:18px;
}

.team-social a{
color:#fff;
text-decoration:none;
font-size:16px;
opacity:.8;
transition:.3s;
}

.team-social a:hover{
color:#ff2f92;
}

/* PROFILE BUTTON */

.team-btn{
display:inline-block;
margin-top:18px;
padding:12px 26px;
background:linear-gradient(90deg,#ff2f92,#ff69b4);
color:#000;
border-radius:30px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.team-btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 35px rgba(255,47,146,.4);
}
/* EXECUTIVE TEAM */

.team-section{
padding:140px 20px 80px;
text-align:center;
}

.team-title{
font-size:40px;
color:#ff2f92;
margin-bottom:10px;
}

.team-subtitle{
color:#aaa;
margin-bottom:70px;
font-size:18px;
}
/* ===== FOUNDER SPOTLIGHT ===== */

.founder-spotlight{
padding:80px 20px;
display:flex;
justify-content:center;
}

.founder-container{
max-width:900px;
display:flex;
align-items:center;
gap:50px;
flex-wrap:wrap;
}

/* IMAGE WRAPPER */

.founder-photo{
position:relative;
width:220px;
height:220px;
display:flex;
align-items:center;
justify-content:center;
}

/* HALO */

.halo{
position:absolute;
width:240px;
height:240px;
border-radius:50%;
background:radial-gradient(circle, rgba(255,47,146,0.55), transparent 70%);
animation:haloPulse 3s ease-in-out infinite;
z-index:1;
}

@keyframes haloPulse{

0%{transform:scale(1);opacity:.6;}
50%{transform:scale(1.1);opacity:1;}
100%{transform:scale(1);opacity:.6;}

}

/* PROFILE IMAGE */

.founder-photo img{
width:200px;
height:200px;
border-radius:50%;
object-fit:cover;
border:4px solid #ff2f92;
z-index:2;
position:relative;
}

/* TEXT */

.founder-info{
flex:1;
min-width:260px;
}

.founder-info h2{
font-size:32px;
color:#ff2f92;
margin-bottom:8px;
}

.founder-info h3{
font-size:18px;
color:#ccc;
margin-bottom:15px;
}

.founder-info p{
font-size:17px;
line-height:1.7;
color:#ddd;
}

/* TEAM GRID */

.team-grid{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.team-card{
background:#111;
padding:30px;
border-radius:16px;
width:260px;
text-align:center;
transition:0.3s;
}

.team-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(255,47,146,.35);
}

.team-card img{
width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
border:3px solid #ff2f92;
margin-bottom:10px;
}

.team-card h3{
color:#ff2f92;
font-size:22px;
margin-bottom:5px;
}

.team-card p{
color:#aaa;
margin-bottom:10px;
}


/* SOCIAL ICONS */

.team-social{
display:flex;
justify-content:center;
gap:15px;
margin-top:10px;
}

.team-social a{
background:#000;
padding:8px 12px;
border-radius:8px;
text-decoration:none;
color:#fff;
transition:0.3s;
}

.team-social a:hover{
background:#ff2f92;
color:#000;
}/* INITIATIVES */

.initiative-section{
padding:120px 20px 80px;
text-align:center;
}

.initiative-title{
font-size:38px;
color:#ff2f92;
margin-bottom:10px;
}

.initiative-subtitle{
color:#aaa;
margin-bottom:60px;
font-size:18px;
}


/* GRID */

.initiative-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:35px;
max-width:1000px;
margin:auto;
}


/* CARD */

.initiative-card{
background:#111;
padding:40px 30px;
border-radius:18px;
transition:0.35s;
position:relative;
}

.initiative-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(255,47,146,.35);
}


.initiative-card h2{
color:#ff2f92;
margin-bottom:15px;
font-size:22px;
}

.initiative-card p{
color:#ccc;
font-size:16px;
margin-bottom:20px;
line-height:1.6;
}


/* BUTTON */

.initiative-btn{
display:inline-block;
padding:10px 22px;
border-radius:25px;
background:#ff2f92;
color:#000;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.initiative-btn:hover{
background:#ff69b4;
}


/* FEATURED CARD */

.highlight{
border:2px solid #ff2f92;
}
/* GALLERY FILTER */

.gallery-filter{
display:flex;
justify-content:center;
gap:15px;
padding:40px 20px;
flex-wrap:wrap;
}

.gallery-filter button{
padding:10px 20px;
border-radius:25px;
border:none;
background:#111;
color:white;
cursor:pointer;
transition:0.3s;
}

.gallery-filter button:hover{
background:#ff2f92;
color:black;
}

/* GALLERY GRID */

.gallery-section{
padding:40px 20px 80px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
max-width:1100px;
margin:auto;
}

.gallery-grid img{
width:100%;
height:230px;
object-fit:cover;
border-radius:14px;
cursor:pointer;
transition:0.35s ease;
}

/* INSTAGRAM STYLE HOVER */

.gallery-grid img:hover{
transform:scale(1.07);
box-shadow:0 20px 40px rgba(255,47,146,.45);
}

/* LIGHTBOX */

.lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
z-index:2000;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:10px;
}
/* INTERVIEWS */

.interviews-section{
padding:80px 20px;
}

.interviews-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

/* VIDEO CARD */

.video-card{
background:#111;
padding:20px;
border-radius:14px;
transition:0.3s;
}

.video-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(255,47,146,.35);
}

/* VIDEO WRAPPER */

.video-wrapper{
position:relative;
padding-bottom:56.25%;
height:0;
overflow:hidden;
border-radius:10px;
margin-bottom:15px;
}

.video-wrapper iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

/* TEXT */

.video-card h3{
color:#ff2f92;
margin-bottom:8px;
}

.video-card p{
color:#ccc;
font-size:15px;
}

/* FILTER */

.interview-filter{
display:flex;
justify-content:center;
gap:15px;
padding:30px;
flex-wrap:wrap;
}

.interview-filter button{
padding:10px 20px;
border-radius:25px;
border:none;
background:#111;
color:#fff;
cursor:pointer;
}

.interview-filter button:hover

/* PODCAST */

.podcast-section{
text-align:center;
padding:80px 20px;
}

.podcast-section h2{
color:#ff2f92;
margin-bottom:15px;
}

/* GUESTS */

.guest-section{
padding:80px 20px;
text-align:center;
}

.guest-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
max-width:1000px;
margin:auto;
}

.guest-card{
background:#111;
padding:25px;
border-radius:14px;
transition:.3s;
}

.guest-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(255,47,146,.35);
}

.guest-card img{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
margin-bottom:10px;
}

/* FORM */

.interview-form{
padding:80px 20px;
max-width:600px;
margin:auto;
text-align:center;
}

.interview-form input,
.interview-form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
background:#111;
border:1px solid #333;
color:#fff;
border-radius:8px;
}

.interview-form button{
padding:12px 25px;
border:none;
background:#ff2f92;
border-radius:25px;
color:#000;
font-weight:600;
cursor:pointer;
}

/* FEATURED INTERVIEW */

.featured-interview{
padding:80px 20px;
background:#050505;
}

.featured-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

/* VIDEO */

.featured-video{
position:relative;
padding-bottom:56.25%;
height:0;
overflow:hidden;
border-radius:12px;
}

.featured-video iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

/* CONTENT */

.featured-content h2{
color:#ff2f92;
margin-bottom:10px;
}

.featured-content h3{
font-size:28px;
margin-bottom:10px;
}

.featured-content p{
color:#ccc;
margin-bottom:15px;
}

.guest{
color:#ff2f92;
font-weight:600;
}

/* BUTTONS */

.featured-buttons{
display:flex;
gap:12px;
flex-wrap:wrap;
}

.watch-btn{
padding:10px 20px;
background:#ff2f92;
color:#000;
border-radius:25px;
text-decoration:none;
font-weight:600;
}

.share-btn{
padding:10px 18px;
background:#111;
color:#fff;
border-radius:25px;
text-decoration:none;
}

/* MOBILE */

@media(max-width:768px){

.featured-container{
grid-template-columns:1fr;
}

.featured-content h3{
font-size:22px;
}

}

.trending-interviews{
padding:80px 20px;
text-align:center;
}

.trending-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.trend-card{
background:#111;
border-radius:14px;
padding:20px;
transition:.3s;
}

.trend-card img{
width:100%;
border-radius:10px;
margin-bottom:10px;
}

.trend-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(255,47,146,.35);
}

.trend-card h3{
color:#ff2f92;
}

.trend-card a{
display:inline-block;
margin-top:10px;
background:#ff2f92;
color:#000;
padding:8px 16px;
border-radius:20px;
text-decoration:none;
}

.search-interviews{
text-align:center;
padding:40px;
}

.search-interviews input{
width:80%;
max-width:500px;
padding:14px;
border-radius:30px;
border:1px solid #333;
background:#111;
color:white;
font-size:16px;
}

.newsletter{
padding:80px 20px;
text-align:center;
background:#050505;
}

.newsletter h2{
color:#ff2f92;
margin-bottom:15px;
}

.newsletter input{
padding:12px;
border-radius:30px;
border:1px solid #333;
background:#111;
color:#fff;
width:250px;
margin-right:10px;
}

.newsletter button{
padding:12px 20px;
border:none;
background:#ff2f92;
color:#000;
border-radius:30px;
font-weight:600;
cursor:pointer;
}

.voices-map{
padding:80px 20px;
text-align:center;
}

#junubiaMap{
height:450px;
max-width:1000px;
margin:40px auto;
border-radius:12px;
overflow:hidden;
}

/* IMPACT DASHBOARD */

.impact-dashboard{
padding:100px 20px;
text-align:center;
background:#050505;
}

.impact-dashboard h2{
color:#ff2f92;
margin-bottom:10px;
font-size:34px;
}

.impact-dashboard p{
color:#ccc;
margin-bottom:40px;
}

.impact-stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
max-width:1000px;
margin:auto;
}

.impact-item{
background:#111;
padding:40px;
border-radius:14px;
transition:.3s;
}

.impact-item:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(255,47,146,.35);
}

.impact-item h3{
font-size:42px;
color:#ff2f92;
margin-bottom:10px;
}
