:root {
  --brand-green: #36B24A;
  --brand-green-2: #CFEA63;
  --accent-yellow: #F5B400;
  --text-light: #ffffff;
  --nav-height: 84px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol", sans-serif;
  color: #222;
  background: #4BA42F;
}

/* ====== NAVBAR ====== */

/* ====== NAVBAR ====== */
.site-header {
  margin-top: 10px;
  position: fixed; inset: 0 0 auto 0; height: var(--nav-height);
  display: flex; align-items: center;
  padding: 0 clamp(18px, 4vw, 56px);
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, height .25s ease, padding .25s ease;
  background: transparent;
}

.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.nav {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}

.brand {
  font-family: Poppins, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 2.4vw, 35px);
  letter-spacing: .2px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-2));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  user-select: none;
}

.nav-links {
  display: flex; align-items: center; gap: clamp(42px, 2.8vw, 46px);
}
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--accent-yellow);
}
.nav-links .icons {
  margin-left: clamp(24px, 4vw, 60px);
  display: flex; gap: 22px;
}
.nav-links .icons a { font-size: 18px; }
.text-links a { margin: 10px; }

/* ====== MOBILE NAV STYLING ====== */
.menu-toggle {
  display: none; /* hidden by default */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--accent-yellow);
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Mobile view */
@media (max-width: 720px) {
  .site-header { padding: 0 16px; }

  .menu-toggle { display: flex; }
  .brand{font-size: 28px;}

  .nav-links {
    position: absolute;
    top: var(--nav-height);
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .text-links, .icons {
    flex-direction: column;
    gap: 15px;
    margin-left: 0;
  }

  /* Toggle animation to "X" */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}




/* ====== HERO (Banner) ====== */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex; align-items: center;
  padding: calc(var(--nav-height) + 40px) clamp(20px,6vw,80px) 160px;
  overflow: hidden;
  background: #4BA42F url(../images/training.jpg) center/cover no-repeat;
  isolation: isolate;

  /* 🔹 Curve the banner image itself */
  clip-path: ellipse(100% 85% at 50% 15%);
}

/* Dark overlay for text legibility */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1200px 600px at 20% 40%, rgba(0,0,0,.55), transparent 70%),
    linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.38) 45%, rgba(0,0,0,.25) 100%);
}



/* Hero inner content */
.hero-inner {
  position: relative; z-index: 2; max-width: 1180px; width: 100%;
  height: 270px;
}
.kicker {
  margin: 0 0 16px 0;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-2));
  -webkit-background-clip: text; background-clip: text;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: .2px;
}
.hero h1 {
  margin: 0 0 20px 0;
  color: var(--text-light);
  font-family: "Bitter", Sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.05;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 6px 18px rgba(0,0,0,.45);
  letter-spacing: -1.4px;
}
.hero p {
  max-width: 860px;
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  margin: 0 0 28px 0;
}

/* ====== CALL-TO-ACTION BUTTONS ====== */
.cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  width: 220px; text-align: center; justify-content: center;
  appearance: none; border: 0; cursor: pointer;
  font-weight: 800; letter-spacing: 0.3px;
  border-radius: 0; padding: 16px 40px; font-size: 1rem;
  transition: transform 0.08s ease, box-shadow 0.2s ease,
              background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  will-change: transform; text-decoration: none; display: inline-block;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent-yellow); color: #fff;
  box-shadow: 0 8px 20px rgba(245, 180, 0, 0.35);
  font-family: "Poppins", Sans-serif;
}
.btn-primary:hover {
  background: transparent; color: #fff;
  border: 3px solid var(--accent-yellow);
}
.btn-outline {
  background: rgba(0, 0, 0, 0.25); color: #fff;
  border: 3px solid var(--brand-green); font-weight: 500;
  backdrop-filter: blur(1px);
}
.btn-outline:hover { background-color: #4BA42F; border-color: #4BA42F; }

/* Animation keyframes */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initial hidden state */
.hero h1,
.hero .cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}



/* ====== WHO WE ARE Section ====== */
/* WHO WE ARE Section */
.who-we-are {
  height: 745px;
  border: 0;
  background: #4BA42F; /* Green background */
  padding: 30px 20px 100px; /* Top padding to make space for overlap */
  position: relative;
  z-index: 1;
}


.who-we-are .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* White Box Container */
.who-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(300px, auto);
  background: #fff; /* White base for the entire box */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  margin-top: -100px; /* Pull box upward into banner */
}


/* Hide initially Start */
.who-content {
  opacity: 0;
  transform: translateY(50px); /* slight downward shift */
  transition: all 0.8s ease-out; /* smooth animation */
}

/* Show when in view */
.who-content.show {
  opacity: 1;
  transform: translateY(0);
}
/* Hide initially End */


/* Image Cells */
.who-image1,
.who-image2 {
  background: #f5f5f5; /* Fallback bg */
}

.who-image1 img,
.who-image2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text Cells */
.who-text1,
.who-text2 {
  background: #fff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-text2 {
  background: #fff;
  padding: 20px 40px 0px 40px; /* Reduce padding */

  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Aligns content to the top */
}

.section-kicker {
  font-family: "Poppins", Sans-serif;
  color: #4BA42F;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}



.who-text1 h2,
.who-text2 h2 {
  font-family: "Bitter", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  margin-bottom: 16px;
  color: #111;
}

.who-text1 p,
.who-text2 p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}


/* Initial hidden state */
.who-we-are h4,
.who-we-are h2,
.who-we-are p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}





/* Responsive Design */
@media (max-width: 900px) {
  .who-we-are{
    height: 1295px;
  }
  .who-content {
    grid-template-columns: 1fr; /* Stack all cells */
    margin-top: -60px;
  }

  .who-text1,
  .who-text2 {
    padding: 30px 20px;
    text-align: center;
  }

  .who-image1 img,
  .who-image2 img {
    height: 300px;
  }
}



/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .hero { padding-bottom: 120px; }
}


/* ====== WHY OTF SECTION ====== */
.why-otf {
  position: relative;
  background: url('../images/otf-youth.png') center/cover no-repeat;
  color: #fff;
  padding: 100px 20px;
  text-align: left;
}

.why-otf .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.why-otf .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  margin-left: 80px;
}

.why-otf .section-kicker {
  font-family: "Poppins", Sans-serif;
  color: var(--accent-yellow);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.5em;
  letter-spacing: -0.1px;
}

.why-otf h2 {
  font-family: "Lora", Sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2em;
  letter-spacing: -1.9px;
  color: #ffffff;
}

.why-otf .intro-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.why-otf h3 {
  font-family: "Lora", Sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2em;
  letter-spacing: -1.9px;
  margin-bottom: 15px;
  color: #ffffff;
}

.otf-list {
  font-family: "Poppins", Sans-serif
  list-style: none;
  padding: 0;
  margin: 0;
}

.otf-list li {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.otf-list i {
  color: var(--accent-yellow);
  font-size: 10px;
  margin-right: 10px;
  margin-top: 8px;
}


/* Initial hidden state for WHY OTF section */
.why-otf h4,
.why-otf h2,
.why-otf p,
.why-otf h3,
.why-otf li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}




/* Responsive */
@media (max-width: 768px) {
  .why-otf h2 {
    font-size: 24px;
  }
  .why-otf h3 {
    font-size: 20px;
  }
  .why-otf .container {
    margin-left: 20px;
  }
}




/* === Approach layout (grid/flex) === */
.approach {
  background: #f7f7f7;
}
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 520px;
  align-items: stretch;
}

/* Left image */
.approach-image {
  margin-left: -75px;
  position: relative;
  overflow: hidden;
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Panel wrapper (right column). It holds the SVG shape and content */
.approach-panel {
  position: relative;
  overflow: visible; /* allow SVG to protrude into left column */
  /* you can control width/padding here */
}

/* Inline SVG that draws the full white panel with bulging left edge.
   We position it to fill the right column but shift left so the bulge reaches into the image. */
.panel-shape {
  position: absolute;
  top: 0;
  left: -22%;            /* push the svg LEFT so the bulge overlaps the image */
  width: 122%;           /* make svg slightly wider than the panel so it covers bulge */
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
}

/* main content sits above the svg */
.approach-content {
  position: relative;
  z-index: 2;
  padding: 36px 56px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start; /* keep heading near top */
  background: transparent; /* svg supplies white panel */
}

/* typography and items */
.approach-content h2 {
    font-family: "Lora", Sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2em;
    letter-spacing: -1.9px;
    color: #000000;
}
.approach-content p { margin: 0 0 12px 0; color: #6b6b6b; }

.approach-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.approach-item i {
  width: 48px; height: 48px; min-width: 48px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background: var(--brand-green);
  color: #fff; font-size: 18px;
  flex-shrink:0;
  box-shadow: 0 8px 20px rgba(54,178,74,0.12);
}
.approach-item h4 {
  margin: 0; /* Remove extra spacing */
  font-family: "Lora", Sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #4BA42F;
  line-height: 1.2em;
 }
.approach-item p {
    font-family: "Poppins", Sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4em;
    color: #898181;
 }




/* ---------- Responsive: remove bulge on small screens and stack ---------- */
@media (max-width: 992px) {
  .approach-inner {
    grid-template-columns: 1fr;
  }

  /* Hide the complicated bulge on small screens for reliability */
  .panel-shape {
    display: none;
  }

  .approach-content {
    padding: 28px 20px;
    background: #fff; /* white background since bulge is hidden */
  }

  .approach-image img {
    width: 100%;       /* Fill container width */
    height: auto;      /* Scale height proportionally */
    object-fit: cover; /* Keep cover to crop edges neatly, switch to 'contain' if full image is needed */
    display: block;    /* Removes inline gaps */
  }
}





/* Default hidden state for animations */
.animate,
.hero h1,
.hero .cta,
.who-we-are h4,
.who-we-are h2,
.who-we-are p,
.why-otf h4,
.why-otf h2,
.why-otf p,
.why-otf li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When in view */
.in-view {
  opacity: 1;
  transform: translateY(0);
}


/*=========== What Participant Gain ===========*/
/* Section layout */
  .participants {
    background: #4BA42F;
    color: var(--text-white);
    padding: 48px 110px;
  }

  .participants .wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
  }

  /* Left text column */
  .pg-left {
    padding: 10px 14px;
  }

  .pg-left h1 {
    font-family: "Lora", Sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2em;
    letter-spacing: -1.9px;
    margin: 6px 0 18px 0;
    color: #FFFFFF;
    line-height: 1.02;
  }

  .pg-left .list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .pg-left .list-item {
    font-family: "Poppins", Sans-serif;
    display:flex;
    gap: 12px;
    align-items:flex-start;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 520px;
    color: #ffffff;
  }

  .pg-left .bullet {
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-yellow);
    color: #111;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size: 10px;
    margin-top: 6px;
    flex-shrink:0;
  }

  /* Apply button */
  .pg-left .btn-apply {
    font-family: "Poppins", Sans-serif;
    display:inline-block;
    padding: 12px 26px;
    color: #FFFFFF;
    border-color: #FFFFFF;
    border-radius: 0px 0px 0px 3px;
    padding: 15px 50px 15px 50px;
    border-style: solid;
    background-color: rgba(244, 221, 144, 0);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight:500;
    letter-spacing: 1px;
    fill: #FFFFFF;
    border-radius: 2px;
    transition: background .18s ease, color .18s ease, transform .08s;
  }

  .pg-left .btn-apply:hover {
    background: #FFFFFF;
    color: #4BA42F;

  }

  /* Right column: slider */
  .pg-right { padding: 10px 14px; }



  .carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    /*max-width: 300px;  /* change this to whatever container width you want */
    margin: 0 auto;
    background: transparent;
  }



  .carousel-track {
    display:flex;
    gap: 18px;
    transition: transform 420ms cubic-bezier(.2,.9,.2,1);
    will-change: transform;
    padding-bottom: 18px;
  }

  .carousel-slide {
    max-width: 250px;
    /*height: 300px;    /* adjust height as needed */
    background: #eee;
    height: 320px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12) inset;
  }


  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
  }

  /* Dots */
  .carousel-dots {
    display:flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.45);
    border-radius:50%;
    cursor:pointer;
    display:inline-block;
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform .18s, background .18s;
  }
  .carousel-dot.active {
    background: var(--text-white);
    transform: scale(1.25);
  }

  .scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: stagger list items for a smoother effect */
.list-item.scroll-fade {
  transition-delay: calc(var(--delay, 0) * 0.15s);
}


  /* Responsive: single image view on small screens */
  @media (max-width: 860px) {
    .participants .wrap { grid-template-columns: 1fr; }
    .carousel-track { gap: 12px; }
    .carousel-slide { min-width: 100%; height: 280px; }
    .pg-left { order: 2; margin-top: 18px; }
    .pg-right { order: 1; }
  }

  @media (max-width: 480px) {
    .carousel-slide { height: 220px; }
    .pg-left h1 { font-size: 26px; }
  }



/* Community Section */
.community-section {
  background: #fff; /* clean white background */
  text-align: center;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}

.community-section h2 {
  font-family: "Lora", Sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2em;
  letter-spacing: -1.9px;
  color: #000;
  margin-bottom: 15px;
}

.community-section p {
  font-family: "Poppins", Sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #7A7A7A;
  max-width: 100%;
  margin: 0 auto 30px auto;
  line-height: 1.6em;
}

/* Subscribe Button */
.btn-subscribe {
  font-family: "Poppins", Sans-serif;
  display: inline-block;
  background: #EBB000; /* yellow like your screenshot */
  fill: #FFFFFF;
  color: #FFFFFF;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-style: solid;
  border-color: #EBB000;
  padding: 15px 50px 15px 50px;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.11);
}

.btn-subscribe:hover {
  background: #ffffff;
  color: #EBB000;
}

  .scrolldown-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.scrolldown-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .community-section h2 {
    font-size: 28px;
  }

  .community-section p {
    font-size: 15px;
    padding: 0 10px;
  }

  .btn-subscribe {
    padding: 12px 25px;
    font-size: 15px;
  }
}


/* ====== HERO APPLY (Banner) ====== */
.hero-apply {
  position: relative;
  height: 385px;
  display: flex; align-items: center;
  padding: calc(var(--nav-height) + 40px) clamp(20px,6vw,80px) 160px;
  overflow: hidden;
  background: #443129;
  isolation: isolate;

  /* 🔹 Curve the banner image itself */
  clip-path: ellipse(100% 85% at 50% 15%);
}


/* Hero Apply inner content */
.hero--apply-inner {
  position: relative; z-index: 2; max-width: 1180px; width: 100%;
  height: 370px;
}

.hero-apply h1 {
  margin-top: 200px;
  margin-bottom: 20px; /* reduce space below h1 */
  color: var(--text-light);
  font-family: "Bitter", Sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.05;
  text-wrap: balance;
  text-shadow: 0 6px 18px rgba(0,0,0,.45);
  letter-spacing: -1.4px;
}

.hero-apply p {
  margin-top: 0; /* ensure no extra space above p */
  margin-left: 20px;
  max-width: 860px;
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  margin-bottom: 35px;
}



/* ====== Footer ====== */
.site-footer {
  background: #111 url(../images/footer-bg.png) center/cover no-repeat;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.footer-logo img {
  max-width: 250px;
}

.footer-contact h3,
.footer-pages h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-family: "Lora", Sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #FFFFFF;
}

.footer-contact ul,
.footer-pages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li,
.footer-pages li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-contact li{color: var(--accent-yellow);}

.footer-contact i {
  color: var(--accent-yellow);
  margin-right: 10px;
}

.footer-pages a {
  color: var(--accent-yellow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-pages a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 30px;
  height: 30px;
  background: var(--accent-yellow);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background: #4BA42F;
  transform: translateY(-3px);
}

.footer-bottom {
  background: #000;
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}




