*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}
/* NAVBAR */
.navbar {
  width: 100%;
  padding: 12px 25px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  position: relative;
  z-index: 999;
}

/* LOGO */
.logo-link { text-decoration: none; }
.logo-box { display: flex; align-items: center; gap: 10px; }
.logo-box img { width: 52px; }
.logo-text h2 { font-size: 18px; color: #00a8ff; }
.logo-text p { font-size: 13px; color: #555; }

/* NAV LINKS (DESKTOP) */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #05b4ff;
  padding: 12px 22px;
  border-radius: 12px;
}

.nav-links li a,
.dropdown-btn {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* DROPDOWNS (Our Projects + Mandatory Disclosure) */
.dropdown-item {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: #333;
  font-size: 14px;
}

.dropdown-menu li a:hover {
  background: #05b4ff;
  color: #fff;
}

.dropdown-menu.show {
  display: block;
}

/* SCHOLARSHIP BUTTON */
.scholar-desktop {
  background: #00a8ff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE SCHOLAR */
.mobile-scholar { display: none; }

/* ================= MOBILE VIEW ================= */
@media (max-width: 900px) {
  .hamburger { display: block; }

  .nav-links {
    position: fixed;
    top: 88px;
    left: -100%;
    width: 100%;
    height: auto;
    background: #05b4ff;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    transition: 0.4s ease;
    border-radius: 0;
  }

  .nav-links.active { left: 0; }
  .nav-links li { margin: 1px 0; }

  .nav-links li a,
  .dropdown-btn {
    font-size: 17px;
    padding: 6px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    width: 90%;
    margin-top: 6px;
  }

  .scholar-desktop { display: none; }
  .mobile-scholar { display: block; margin-top: 10px; }

  .mobile-scholar-btn {
    background: #fff;
    color: #05b4ff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
  }
}



/* ===== Footer Section ===== */


.footer {
  position: relative;
  background: linear-gradient(135deg, #003c5f, #007BFF);
  color: #fff;
  padding: 60px 20px 30px;
  overflow: hidden;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-about,
.footer-programs,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
  margin: 20px;
  min-width: 250px;
}

.footer-about h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  color: #fff;
  font-size: 1.1rem;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffcc00;
  transform: translateY(-3px);
}

.footer-programs h3,
.footer-links h3,
.footer-contact h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  border-left: 4px solid #ffcc00;
  padding-left: 10px;
}

.footer-programs ul,
.footer-links ul {
  list-style: none;
}

.footer-programs ul li,
.footer-links ul li {
  margin-bottom: 10px;
}

.footer-programs ul li a,
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-programs ul li a:hover,
.footer-links ul li a:hover {
  color: #ffcc00;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-contact i {
  margin-right: 8px;
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.85;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.footer-bottom a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Floating Dot Effect */
.footer-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, rgba(255, 255, 255, 0.2));
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.07s ease-out;
  z-index: 1;
  opacity: 0;
  box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.footer:hover .footer-dot {
  opacity: 1;
}

/* Responsive Design - Improved for Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: left;
    gap: 15px; /* Add small gap instead of big margins */
  }

  .footer-about,
  .footer-programs,
  .footer-links,
  .footer-contact {
    margin: 10px 0; /* Reduce vertical margin */
    flex: 1 1 auto;
  }

  .footer-about h2 {
    font-size: 1.5rem;
  }

  .footer-about p,
  .footer-contact p,
  .footer-programs ul li a,
  .footer-links ul li a {
    font-size: 0.95rem; /* Slightly smaller text for mobile */
  }

  .footer-programs h3,
  .footer-links h3,
  .footer-contact h3 {
    border: none;
    padding-left: 0;
    margin-bottom: 8px;
    font-size: 1.1rem;
  }

  .footer-social a {
    margin-right: 8px;
    font-size: 1rem;
  }

  .footer-bottom {
    text-align: left;
    font-size: 0.8rem;
    margin-top: 20px;
    padding-top: 10px;
  }
}


/* =========================
   HERO SECTION
========================= */

.youth-hero {
    min-height: 100vh;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 7%;

    background-image: url("./Assets/Youth-Parliment/About-Youth-Parliment.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================
   OVERLAY
========================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 70, 110, 0.92),
            rgba(0, 130, 190, 0.72),
            rgba(135, 206, 235, 0.45)
        );
}


/* =========================
   MAIN CONTAINER
========================= */

.hero-container {
    position: relative;
    z-index: 2;

    max-width: 1250px;
    width: 100%;

    margin: auto;

    display: grid;
    grid-template-columns: 1.3fr 0.7fr;

    gap: 70px;

    align-items: center;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    color: white;
    max-width: 700px;
}


.hero-tag {
    display: inline-block;

    padding: 9px 18px;

    border: 1px solid rgba(255, 255, 255, 0.6);

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.5px;

    margin-bottom: 22px;

    background: rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(5px);
}


.hero-content h1 {
    font-size: clamp(45px, 6vw, 82px);

    line-height: 1.05;

    margin-bottom: 15px;

    font-weight: 800;
}


.hero-content h2 {
    font-size: clamp(22px, 3vw, 38px);

    line-height: 1.3;

    margin-bottom: 22px;

    font-weight: 600;
}


.hero-content h2 span {
    color: #dff8ff;
}


.hero-content p {
    font-size: 18px;

    line-height: 1.8;

    max-width: 650px;

    color: #f1fbff;

    margin-bottom: 32px;
}


/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


.btn {
    display: inline-block;

    text-decoration: none;

    padding: 14px 26px;

    border-radius: 8px;

    font-size: 15px;

    font-weight: 600;

    transition: 0.3s ease;
}


.primary-btn {
    background: white;

    color: #0077ad;
}


.primary-btn:hover {
    background: #dff8ff;

    transform: translateY(-3px);
}


.secondary-btn {
    color: white;

    border: 1px solid white;

    background: rgba(255, 255, 255, 0.1);
}


.secondary-btn:hover {
    background: white;

    color: #0077ad;

    transform: translateY(-3px);
}


/* =========================
   RIGHT HIGHLIGHT CARDS
========================= */

.hero-highlight {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


.highlight-card {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.17);

    border: 1px solid rgba(255, 255, 255, 0.35);

    backdrop-filter: blur(12px);

    color: white;

    transition: 0.3s ease;
}


.highlight-card:hover {
    transform: translateX(-8px);

    background: rgba(255, 255, 255, 0.25);
}


.highlight-card .icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    font-size: 25px;
}


.highlight-card h3 {
    font-size: 18px;

    margin-bottom: 5px;
}


.highlight-card p {
    font-size: 14px;

    color: #e5faff;
}


/* =========================
   STATS
========================= */

.hero-stats {
    position: relative;

    z-index: 2;

    max-width: 1100px;

    width: 100%;

    margin: 60px auto 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: rgba(255, 255, 255, 0.13);

    border: 1px solid rgba(255, 255, 255, 0.3);

    border-radius: 15px;

    backdrop-filter: blur(10px);

    overflow: hidden;
}


.stat {
    text-align: center;

    color: white;

    padding: 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.2);
}


.stat:last-child {
    border-right: none;
}


.stat strong {
    display: block;

    font-size: 32px;

    margin-bottom: 5px;
}


.stat span {
    font-size: 13px;

    color: #e5faff;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .youth-hero {
        padding: 70px 5%;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero-content {
        max-width: 750px;
    }

    .hero-highlight {
        max-width: 600px;
    }

    .hero-stats {
        margin-top: 45px;
    }
}


@media (max-width: 650px) {

    .youth-hero {
        min-height: auto;

        padding: 70px 20px 40px;
    }


    .hero-content {
        text-align: center;
    }


    .hero-tag {
        font-size: 11px;

        padding: 8px 14px;
    }


    .hero-content h1 {
        font-size: 48px;
    }


    .hero-content h2 {
        font-size: 24px;
    }


    .hero-content p {
        font-size: 15px;

        line-height: 1.7;
    }


    .hero-buttons {
        justify-content: center;

        flex-direction: column;
    }


    .btn {
        width: 100%;

        text-align: center;
    }


    .hero-highlight {
        width: 100%;
    }


    .highlight-card {
        padding: 16px;
    }


    .hero-stats {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 40px;
    }


    .stat {
        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }


    .stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }


    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: none;
    }


    .stat strong {
        font-size: 27px;
    }


    .stat span {
        font-size: 12px;
    }
}


@media (max-width: 400px) {

    .hero-content h1 {
        font-size: 40px;
    }


    .hero-content h2 {
        font-size: 21px;
    }


    .hero-stats {
        grid-template-columns: 1fr;
    }


    .stat,
    .stat:nth-child(odd) {
        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }


    .stat:last-child {
        border-bottom: none;
    }
}


/* =========================
   ABOUT YOUTH PARLIAMENT
========================= */

.about-youth {
    position: relative;

    padding: 100px 7%;

    background: #f2fbff;

    overflow: hidden;
}


/* Decorative Background */

.about-youth::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: #d8f4ff;

    top: -120px;
    left: -120px;

    opacity: 0.7;
}


.about-youth::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: #e1f7ff;

    bottom: -100px;
    right: -80px;
}


/* =========================
   CONTAINER
========================= */

.about-container {
    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}


/* =========================
   IMAGE
========================= */

.about-image {
    position: relative;

    display: flex;

    justify-content: center;
}


.image-frame {
    position: relative;

    width: 100%;

    max-width: 500px;

    padding: 12px;

    background: white;

    border-radius: 22px;

    box-shadow: 0 20px 50px rgba(0, 115, 160, 0.15);
}


.image-frame::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    border-radius: 15px;

    border: 5px solid #8edcf5;

    top: -25px;
    left: -25px;

    z-index: -1;
}


.image-frame img {
    display: block;

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 15px;
}


/* =========================
   BRAND BADGE
========================= */

.image-badge {
    position: absolute;

    right: -25px;
    bottom: 35px;

    padding: 18px 25px;

    display: flex;

    flex-direction: column;

    background: #0077ad;

    color: white;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 90, 130, 0.25);
}


.image-badge strong {
    font-size: 19px;

    letter-spacing: 0.5px;
}


.image-badge span {
    font-size: 12px;

    margin-top: 3px;

    color: #dff8ff;
}


/* =========================
   CONTENT
========================= */

.about-content {
    max-width: 700px;
}


.section-label {
    display: inline-block;

    color: #0086bd;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}


.about-content h2 {
    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.15;

    color: #003c5f;

    margin-bottom: 22px;
}


.about-content h2 span {
    display: block;

    color: #008dcc;

    font-size: 0.55em;

    margin-top: 10px;
}


.about-content p {
    color: #526d7a;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 15px;
}


.about-intro {
    font-size: 18px !important;

    color: #315d70 !important;
}


/* =========================
   FEATURES
========================= */

.about-features {
    margin-top: 30px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


.feature-item {
    display: flex;

    gap: 14px;

    padding: 18px;

    background: white;

    border: 1px solid #d9f1fa;

    border-radius: 12px;

    transition: 0.3s ease;
}


.feature-item:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0, 120, 170, 0.12);

    border-color: #9cdef2;
}


.feature-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #e2f7ff;

    font-size: 21px;
}


.feature-item h3 {
    color: #004b6d;

    font-size: 16px;

    margin-bottom: 6px;
}


.feature-item p {
    font-size: 13px;

    line-height: 1.6;

    margin: 0;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .about-youth {
        padding: 80px 5%;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-image {
        order: 1;
    }

    .about-content {
        order: 2;

        max-width: 800px;

        margin: auto;
    }

    .image-frame {
        max-width: 600px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .about-youth {
        padding: 65px 20px;
    }


    .image-frame {
        padding: 8px;
    }


    .image-frame img {
        height: 380px;
    }


    .image-frame::before {
        width: 70px;
        height: 70px;

        top: -15px;
        left: -15px;

        border-width: 4px;
    }


    .image-badge {
        right: -5px;

        bottom: 20px;

        padding: 13px 17px;
    }


    .image-badge strong {
        font-size: 16px;
    }


    .image-badge span {
        font-size: 10px;
    }


    .about-content {
        text-align: left;
    }


    .about-content h2 {
        font-size: 36px;
    }


    .about-content h2 span {
        font-size: 20px;

        line-height: 1.4;
    }


    .about-content p {
        font-size: 15px;

        line-height: 1.7;
    }


    .about-intro {
        font-size: 16px !important;
    }


    .about-features {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .feature-item {
        padding: 15px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .about-youth {
        padding-left: 15px;
        padding-right: 15px;
    }


    .image-frame img {
        height: 320px;
    }


    .about-content h2 {
        font-size: 31px;
    }

}

/* ========================================
   WHY YOUTH PARLIAMENT MATTERS
======================================== */

.why-youth {
    position: relative;

    padding: 100px 7%;

    background: #ffffff;

    overflow: hidden;
}


/* ========================================
   DECORATIVE BACKGROUND
======================================== */

.why-youth::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: #e7f8ff;

    top: -180px;
    right: -120px;

    opacity: 0.8;
}


.why-youth::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: #effbff;

    bottom: -130px;
    left: -100px;
}


/* ========================================
   CONTAINER
======================================== */

.why-container {
    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: auto;
}


/* ========================================
   HEADING
======================================== */

.why-heading {
    max-width: 750px;

    margin: 0 auto 55px;

    text-align: center;
}


.why-label {
    display: inline-block;

    color: #0088bd;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}


.why-heading h2 {
    color: #003c5f;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.2;

    margin-bottom: 18px;
}


.why-heading h2 span {
    color: #008dcc;
}


.why-heading p {
    color: #607987;

    font-size: 16px;

    line-height: 1.8;

    max-width: 680px;

    margin: auto;
}


/* ========================================
   CARDS GRID
======================================== */

.why-cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* ========================================
   CARD
======================================== */

.why-card {
    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #dceff6;

    box-shadow: 0 10px 35px rgba(0, 100, 140, 0.08);

    transition: 0.4s ease;
}


.why-card:hover {
    transform: translateY(-10px);

    border-color: #9edff3;

    box-shadow: 0 20px 45px rgba(0, 120, 170, 0.16);
}


/* ========================================
   IMAGE
======================================== */

.why-image {
    position: relative;

    height: 220px;

    overflow: hidden;
}


.why-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.5s ease;
}


.why-card:hover .why-image img {
    transform: scale(1.08);
}


/* ========================================
   IMAGE OVERLAY
======================================== */

.why-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 50%,
            rgba(0, 60, 95, 0.35)
        );
}


/* ========================================
   NUMBER
======================================== */

.image-number {
    position: absolute;

    z-index: 2;

    top: 15px;
    left: 15px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.92);

    color: #007ead;

    font-size: 13px;

    font-weight: 700;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}


/* ========================================
   CARD CONTENT
======================================== */

.why-card-content {
    padding: 25px;
}


.why-card-content h3 {
    color: #004b6d;

    font-size: 19px;

    margin-bottom: 10px;

    line-height: 1.4;
}


.why-card-content p {
    color: #607987;

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .why-youth {
        padding: 80px 5%;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .why-youth {
        padding: 65px 20px;
    }


    .why-heading {
        margin-bottom: 40px;
    }


    .why-heading h2 {
        font-size: 36px;
    }


    .why-heading p {
        font-size: 15px;

        line-height: 1.7;
    }


    .why-cards {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .why-image {
        height: 230px;
    }


    .why-card-content {
        padding: 22px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 380px) {

    .why-youth {
        padding-left: 15px;
        padding-right: 15px;
    }


    .why-heading h2 {
        font-size: 31px;
    }


    .why-image {
        height: 210px;
    }

}


/* ========================================
   OUR YOUTH PARLIAMENT INITIATIVE
======================================== */

.initiative-section {
    position: relative;

    padding: 100px 7%;

    background: #f1fbff;

    overflow: hidden;
}


/* ========================================
   BACKGROUND DECORATION
======================================== */

.initiative-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: #d9f5ff;

    top: -220px;
    left: -180px;

    opacity: 0.7;
}


.initiative-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: #e4f8ff;

    bottom: -160px;
    right: -120px;
}


/* ========================================
   CONTAINER
======================================== */

.initiative-container {
    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: auto;
}


/* ========================================
   HEADING
======================================== */

.initiative-heading {
    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;
}


.initiative-heading > span {
    display: inline-block;

    color: #0089bd;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}


.initiative-heading h2 {
    color: #003c5f;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.2;

    margin-bottom: 18px;
}


.initiative-heading h2 strong {
    color: #008dcc;
}


.initiative-heading p {
    color: #607987;

    font-size: 16px;

    line-height: 1.8;

    max-width: 700px;

    margin: auto;
}


/* ========================================
   MAIN EVENT AREA
======================================== */

.initiative-main {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 55px;

    align-items: center;
}


/* ========================================
   EVENT IMAGE
======================================== */

.initiative-image {
    position: relative;

    height: 520px;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 100, 140, 0.16);
}


.initiative-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: 0.6s ease;
}


.initiative-image:hover img {
    transform: scale(1.05);
}


/* ========================================
   IMAGE OVERLAY
======================================== */

.image-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 70px 30px 30px;

    color: white;

    background:
        linear-gradient(
            transparent,
            rgba(0, 48, 75, 0.9)
        );
}


.image-overlay span {
    display: inline-block;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 8px;
}


.image-overlay h3 {
    font-size: 30px;

    margin: 0;
}


/* ========================================
   CONTENT
======================================== */

.initiative-content {
    max-width: 600px;
}


.event-label {
    display: inline-block;

    color: #0089bd;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 10px;
}


.initiative-content > h3 {
    color: #003c5f;

    font-size: 42px;

    margin-bottom: 15px;
}


.initiative-description {
    color: #607987;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 28px;
}


/* ========================================
   EVENT DETAILS
======================================== */

.event-details {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}


.event-detail {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 17px;

    background: white;

    border: 1px solid #d9eff7;

    border-radius: 12px;

    transition: 0.3s ease;
}


.event-detail:hover {
    transform: translateY(-4px);

    border-color: #9ddff3;

    box-shadow: 0 10px 25px rgba(0, 120, 170, 0.1);
}


.detail-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #e2f7ff;

    font-size: 18px;
}


.event-detail span {
    display: block;

    color: #7a919c;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    margin-bottom: 4px;
}


.event-detail strong {
    display: block;

    color: #004b6d;

    font-size: 13px;

    line-height: 1.4;
}


/* ========================================
   BOTTOM BOXES
======================================== */

.initiative-bottom {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin-top: 45px;
}


.initiative-box {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    border-radius: 18px;

    background: white;

    border: 1px solid #d9eff7;

    box-shadow: 0 10px 30px rgba(0, 100, 140, 0.06);
}


.box-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #e0f6ff;

    font-size: 24px;
}


.initiative-box > div:last-child {
    flex: 1;
}


.initiative-box span {
    display: block;

    color: #0089bd;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.2px;

    margin-bottom: 7px;
}


.initiative-box h3 {
    color: #003c5f;

    font-size: 20px;

    margin-bottom: 10px;
}


.initiative-box p {
    color: #607987;

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}


/* ========================================
   ACTIVITIES LIST
======================================== */

.activities-box ul {
    margin: 10px 0 0;

    padding-left: 18px;
}


.activities-box li {
    color: #607987;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 5px;
}


.activities-box li::marker {
    color: #008dcc;
}


/* ========================================
   STATISTICS
======================================== */

.initiative-stat {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 45px;

    background: #007eae;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0, 100, 140, 0.15);
}


.stat-item {
    text-align: center;

    padding: 25px 15px;

    color: white;

    border-right: 1px solid rgba(255, 255, 255, 0.2);
}


.stat-item:last-child {
    border-right: none;
}


.stat-item strong {
    display: block;

    font-size: 30px;

    margin-bottom: 5px;
}


.stat-item span {
    font-size: 12px;

    color: #dff7ff;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .initiative-section {
        padding: 80px 5%;
    }


    .initiative-main {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .initiative-image {
        height: 500px;
    }


    .initiative-content {
        max-width: 800px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .initiative-section {
        padding: 65px 20px;
    }


    .initiative-heading {
        margin-bottom: 40px;
    }


    .initiative-heading h2 {
        font-size: 36px;
    }


    .initiative-heading p {
        font-size: 15px;

        line-height: 1.7;
    }


    .initiative-image {
        height: 400px;

        border-radius: 16px;
    }


    .image-overlay {
        padding: 60px 20px 20px;
    }


    .image-overlay h3 {
        font-size: 25px;
    }


    .initiative-content > h3 {
        font-size: 34px;
    }


    .initiative-description {
        font-size: 15px;
    }


    .event-details {
        grid-template-columns: 1fr;
    }


    .initiative-bottom {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .initiative-box {
        padding: 22px;

        gap: 15px;
    }


    .initiative-stat {
        grid-template-columns: repeat(2, 1fr);
    }


    .stat-item {
        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }


    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }


    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 380px) {

    .initiative-section {
        padding-left: 15px;
        padding-right: 15px;
    }


    .initiative-heading h2 {
        font-size: 31px;
    }


    .initiative-image {
        height: 350px;
    }


    .initiative-content > h3 {
        font-size: 30px;
    }


    .initiative-stat {
        grid-template-columns: 1fr;
    }


    .stat-item,
    .stat-item:nth-child(odd) {
        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }


    .stat-item:last-child {
        border-bottom: none;
    }

}


/* ========================================
   OUR YOUTH PARLIAMENT INITIATIVE
======================================== */

.initiative-section {
    position: relative;

    padding: 100px 7%;

    background: #f1fbff;

    overflow: hidden;
}


/* ========================================
   BACKGROUND DECORATION
======================================== */

.initiative-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: #d9f5ff;

    top: -220px;
    left: -180px;

    opacity: 0.7;
}


.initiative-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: #e4f8ff;

    bottom: -160px;
    right: -120px;
}


/* ========================================
   CONTAINER
======================================== */

.initiative-container {
    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: auto;
}


/* ========================================
   HEADING
======================================== */

.initiative-heading {
    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;
}


.initiative-heading > span {
    display: inline-block;

    color: #0089bd;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}


.initiative-heading h2 {
    color: #003c5f;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.2;

    margin-bottom: 18px;
}


.initiative-heading h2 strong {
    color: #008dcc;
}


.initiative-heading p {
    color: #607987;

    font-size: 16px;

    line-height: 1.8;

    max-width: 700px;

    margin: auto;
}


/* ========================================
   MAIN EVENT AREA
======================================== */

.initiative-main {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 55px;

    align-items: center;
}


/* ========================================
   EVENT IMAGE
======================================== */

.initiative-image {
    position: relative;

    height: 520px;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 100, 140, 0.16);
}


.initiative-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: 0.6s ease;
}


.initiative-image:hover img {
    transform: scale(1.05);
}


/* ========================================
   IMAGE OVERLAY
======================================== */

.image-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 70px 30px 30px;

    color: white;

    background:
        linear-gradient(
            transparent,
            rgba(0, 48, 75, 0.9)
        );
}


.image-overlay span {
    display: inline-block;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 8px;
}


.image-overlay h3 {
    font-size: 30px;

    margin: 0;
}


/* ========================================
   CONTENT
======================================== */

.initiative-content {
    max-width: 600px;
}


.event-label {
    display: inline-block;

    color: #0089bd;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 10px;
}


.initiative-content > h3 {
    color: #003c5f;

    font-size: 42px;

    margin-bottom: 15px;
}


.initiative-description {
    color: #607987;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 28px;
}


/* ========================================
   EVENT DETAILS
======================================== */

.event-details {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}


.event-detail {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 17px;

    background: white;

    border: 1px solid #d9eff7;

    border-radius: 12px;

    transition: 0.3s ease;
}


.event-detail:hover {
    transform: translateY(-4px);

    border-color: #9ddff3;

    box-shadow: 0 10px 25px rgba(0, 120, 170, 0.1);
}


.detail-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #e2f7ff;

    font-size: 18px;
}


.event-detail span {
    display: block;

    color: #7a919c;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    margin-bottom: 4px;
}


.event-detail strong {
    display: block;

    color: #004b6d;

    font-size: 13px;

    line-height: 1.4;
}


/* ========================================
   BOTTOM BOXES
======================================== */

.initiative-bottom {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin-top: 45px;
}


.initiative-box {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    border-radius: 18px;

    background: white;

    border: 1px solid #d9eff7;

    box-shadow: 0 10px 30px rgba(0, 100, 140, 0.06);
}


.box-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #e0f6ff;

    font-size: 24px;
}


.initiative-box > div:last-child {
    flex: 1;
}


.initiative-box span {
    display: block;

    color: #0089bd;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.2px;

    margin-bottom: 7px;
}


.initiative-box h3 {
    color: #003c5f;

    font-size: 20px;

    margin-bottom: 10px;
}


.initiative-box p {
    color: #607987;

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}


/* ========================================
   ACTIVITIES LIST
======================================== */

.activities-box ul {
    margin: 10px 0 0;

    padding-left: 18px;
}


.activities-box li {
    color: #607987;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 5px;
}


.activities-box li::marker {
    color: #008dcc;
}


/* ========================================
   STATISTICS
======================================== */

.initiative-stat {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 45px;

    background: #007eae;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0, 100, 140, 0.15);
}


.stat-item {
    text-align: center;

    padding: 25px 15px;

    color: white;

    border-right: 1px solid rgba(255, 255, 255, 0.2);
}


.stat-item:last-child {
    border-right: none;
}


.stat-item strong {
    display: block;

    font-size: 30px;

    margin-bottom: 5px;
}


.stat-item span {
    font-size: 12px;

    color: #dff7ff;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .initiative-section {
        padding: 80px 5%;
    }


    .initiative-main {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .initiative-image {
        height: 500px;
    }


    .initiative-content {
        max-width: 800px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .initiative-section {
        padding: 65px 20px;
    }


    .initiative-heading {
        margin-bottom: 40px;
    }


    .initiative-heading h2 {
        font-size: 36px;
    }


    .initiative-heading p {
        font-size: 15px;

        line-height: 1.7;
    }


    .initiative-image {
        height: 400px;

        border-radius: 16px;
    }


    .image-overlay {
        padding: 60px 20px 20px;
    }


    .image-overlay h3 {
        font-size: 25px;
    }


    .initiative-content > h3 {
        font-size: 34px;
    }


    .initiative-description {
        font-size: 15px;
    }


    .event-details {
        grid-template-columns: 1fr;
    }


    .initiative-bottom {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .initiative-box {
        padding: 22px;

        gap: 15px;
    }


    .initiative-stat {
        grid-template-columns: repeat(2, 1fr);
    }


    .stat-item {
        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }


    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }


    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 380px) {

    .initiative-section {
        padding-left: 15px;
        padding-right: 15px;
    }


    .initiative-heading h2 {
        font-size: 31px;
    }


    .initiative-image {
        height: 350px;
    }


    .initiative-content > h3 {
        font-size: 30px;
    }


    .initiative-stat {
        grid-template-columns: 1fr;
    }


    .stat-item,
    .stat-item:nth-child(odd) {
        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }


    .stat-item:last-child {
        border-bottom: none;
    }

}