.contact-hero-content {
  position: relative;

  z-index: 2;
}

.contact-hero h1 {
  font-size: 3rem;
  margin: 20px 0;
  line-height: 1.3;
}

.contact-hero p {
  font-size: 1.1rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .contact-hero {
    min-height: 50vh;
    padding: 100px 6%;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 1.6rem;
  }

  .contact-hero p {
    font-size: 14px;
  }
}
.contact-section {
  padding: 100px 10%;
  background: #fff;
}

.contact-section .container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form-wrapper {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2.4rem;
  margin: 20px 0;
}

.contact-info p {
  color: #666;
  line-height: 1.8;
}

.contact-card {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 15px;
}

.contact-card i {
  font-size: 24px;
  color: #f4a825;
}

.contact-form {
  background: #f9f9f9;
  padding: 35px;
  border-radius: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
}

.contact-form button {
  width: 100%;
  border: none;
  background: #f4a825;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 70px 6%;
  }

  .contact-section .container {
    flex-direction: column;
  }

  .contact-info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-info h2 {
    font-size: 1.6rem;
  }

  .contact-form {
    padding: 25px;
  }
}
.map-section {
  padding: 100px 10%;
  background: #f9f9f9;
}

.map-container {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
}
@media (max-width: 768px) {
  .map-section {
    padding: 70px 6%;
  }

  .map-container iframe {
    height: 350px;
  }
}
.volunteer-cta {
  padding: 100px 10%;
  text-align: center;
  color: #fff;

  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../images/volunteer-bg.jpg");

  background-size: cover;
  background-position: center;
}

.volunteer-cta .cta-content {
  max-width: 850px;
  margin: auto;
}

.volunteer-cta h2 {
  font-size: 3rem;
  margin: 20px 0;
}

.volunteer-cta p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .volunteer-cta {
    padding: 70px 6%;
  }

  .volunteer-cta h2 {
    font-size: 2rem;
  }

  .volunteer-cta p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .volunteer-cta h2 {
    font-size: 1.6rem;
  }

  .volunteer-cta p {
    font-size: 14px;
  }
}
.contact-card a {
  color: inherit;

  text-decoration: none;

  transition: 0.3s;
}

.contact-card a:hover {
  color: #2e7d32;
}

.contact-form button {
  cursor: pointer;

  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

.contact-hero {
  position: relative;

  overflow: hidden;

  min-height: 65vh;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  padding: 120px 10%;

  background: linear-gradient(135deg, #07111d, #111827, #1f2937);

  color: #fff;
}

.contact-hero::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to bottom,

    rgba(255, 255, 255, 0.02),
    rgba(7, 17, 29, 0.25),
    rgba(7, 17, 29, 0.72)
  );

  z-index: 1;
}

/*==============================
    HERO CONTENT
==============================*/

.contact-hero-content {
  position: relative;

  z-index: 10;

  max-width: 850px;

  width: 100%;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  animation: heroFade 0.9s ease forwards;
}

.contact-hero h1 {
  font-size: 3rem;

  margin: 18px 0;

  line-height: 1.3;

  text-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

.contact-hero p {
  max-width: 700px;

  margin: 0 auto;

  line-height: 1.8;

  color: #d4d9df;

  line-height: 1.8;

  font-size: 1.08rem;
}

/*==============================
    HERO ANIMATION
==============================*/

@keyframes heroFade {
  from {
    opacity: 0;

    transform: translateY(35px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/*==============================
    AURORA
==============================*/

.aurora {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  opacity: 0.35;

  z-index: 2;

  animation:
    auroraFloat 12s ease-in-out infinite,
    auroraPulse 7s ease-in-out infinite;
}

.aurora-1 {
  width: 340px;

  height: 340px;

  left: -120px;

  top: -80px;

  background: #22c55e;
}

.aurora-2 {
  width: 280px;

  height: 280px;

  right: -80px;

  top: 25%;

  background: #f59e0b;

  animation-delay: 3s;
}

.aurora-3 {
  width: 250px;

  height: 250px;

  left: 45%;

  bottom: -100px;

  background: #3b82f6;

  animation-delay: 6s;
}

@keyframes auroraFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-45px);
  }
}

@keyframes auroraPulse {
  0%,
  100% {
    opacity: 0.3;

    transform: scale(1);
  }

  50% {
    opacity: 0.55;

    transform: scale(1.18);
  }
}

/*==============================
    FLOATING ICONS
==============================*/

#floating-icons {
  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

  overflow: hidden;
}

.contact-icon {
  position: absolute;

  font-size: 22px;

  opacity: 0.18;

  pointer-events: none;

  user-select: none;

  will-change: transform;

  transition:
    opacity 0.25s,
    filter 0.25s,
    transform 0.25s;
}

/*==============================
    CURSOR GLOW
==============================*/

.cursor-glow {
  position: absolute;

  width: 260px;

  height: 260px;

  border-radius: 50%;

  pointer-events: none;

  transform: translate(-50%, -50%);
  mix-blend-mode: screen;

  background: radial-gradient(
    rgba(34, 197, 94, 0.22),
    rgba(244, 168, 37, 0.1),
    transparent 70%
  );

  filter: blur(30px);

  z-index: 4;
}

/*==============================
    MOBILE
==============================*/

@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 7%;

    min-height: 55vh;
  }

  .contact-hero h1 {
    font-size: 2.1rem;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 1.75rem;
  }

  .contact-hero p {
    font-size: 14px;
  }
}

#network-lines {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  z-index: 2;

  pointer-events: none;
}


.connect-journey{
    padding:100px 10%;
    background:#fff;
}

.connect-journey .section-heading{
    max-width:760px;
    margin:auto;
    text-align:center;
}

.connect-journey .section-heading h2{
    font-size:2.6rem;
    margin:18px 0;
}

.connect-journey .section-heading p{
    color:#666;
    line-height:1.8;
}

.journey-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.journey-card{
    background:#fff;
    border-radius:22px;
    padding:35px 28px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    border:1px solid #eee;
}

.journey-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.journey-icon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    color:#fff;
    background:linear-gradient(#f4a825);
    margin-bottom:25px;
}

.journey-card h3{
    margin-bottom:15px;
}

.journey-card p{
    color:#666;
    line-height:1.8;
}

.journey-bottom{
    margin-top:80px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.journey-left{
    background:#f9f9f9;
    border-radius:25px;
    padding:40px;
}

.journey-left h3{
    margin-bottom:25px;
}

.journey-left ul{
    list-style:none;
    padding:0;
}

.journey-left li{
    margin:18px 0;
    font-size:17px;
}

.journey-left i{
    color:#2e7d32;
    margin-right:10px;
}

.journey-right h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.journey-right p{
    color:#666;
    line-height:1.9;
}

@media(max-width:992px){

.journey-grid{
grid-template-columns:repeat(2,1fr);
}

.journey-bottom{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.connect-journey{
padding:70px 6%;
}

.connect-journey .section-heading h2{
font-size:2rem;
}

.journey-grid{
grid-template-columns:1fr;
}

.journey-right h2{
font-size:2rem;
}

}

@media(max-width:480px){

.connect-journey .section-heading h2{
font-size:1.7rem;
}

.journey-left{
padding:30px;
}

}