/* Base styles for all devices */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: black;
    font-size: 16px;
  }
  
  body, html {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
  }
  

  .navbar {
    background: transparent;
    background-color: transparent;
    padding: 1rem 2rem;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 10;
    margin-bottom: 0;
    color: #000;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
  }
  
  .navbar-brand:hover {
    color: #000;
  }
  
  .nav-link {
    color: #000;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
  }
  
  .nav-link.active {
    color: #000;
    font-weight: bold;
  }
  
  .nav-link:hover {
    color: #b98f2c;
  }
  
  .nav-link.disabled {
    color: black;
    pointer-events: none;
  }
  
  .navbar-toggler {
    border: none;
    background-color: #b98f2c;
    padding: 0.5rem;
  }
  
  .navbar-toggler-icon {
    filter: invert(1);
  }
  
  .collapse {
    flex-grow: 1;
    justify-content: end;
  }
  
  .navbar-nav {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .nav-button {
    border-radius: 5px;
    background-color: white;
    text-decoration: white;
    color: black;
    padding: 10px 20px;
    border-radius: 35px;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: transparent;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #04144f;
  }
  
  .dot {
    color: #04144f;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
  }
  
  .login-btn {
    background: none;
    border: 2px solid white;
    border-radius: 8px;
    padding: 8px 16px;
    color: white;
    cursor: pointer;
  }
  
  .hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 5% 10%;
    background-color: #FFF8E1;
  }
  
  .hero-text {
    flex: 1;
    min-width: 300px;
  }
  
  .hero-text h1 {
    font-family: "Orbitron", sans-serif;
    font-size: 48px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .typo {
    color: white;
  }
  
  .hero-text p {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
    font-family: poppins, sans-serif;
  }

  .cta-button {
    margin: 20px 0 10px 0;
    background-color: #D4AF37;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
  }

  .cta-button:hover {
    background-color: #b98f2c;
  }

  .partner-btn {
    padding: 14px 28px;
    border: none;
    background-color: #b98f2c;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.2);
  }
  
  .hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* ===================== Responsive Design ===================== */

  /* Very small devices (320px - 360px) */
  @media (max-width: 360px) {
    .hero-text h1 {
      font-size: 22px;
    }
    .hero-text p {
      font-size: 13px;
    }
    .cta-button {
      padding: 10px 18px;
      font-size: 13px;
    }
    .partner-btn {
      padding: 10px 16px;
      font-size: 13px;
    }
    .section-title {
      font-size: 20px;
    }
    .navbar {
      padding: 10px 3%;
    }
    .nav-link {
      font-size: 0.9rem;
      padding: 0.4rem 0.6rem;
    }
  }

  /* Small devices (up to 480px) */
  @media (max-width: 480px) {
    body {
      font-size: 14px;
    }
  
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 12px 4%;
    }

    /* Navbar collapse needs background so links are readable */
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
      background-color: #FFF8E1;
      padding: 10px 15px;
      border-radius: 8px;
      margin-top: 8px;
    }

    .navbar-nav {
      flex-direction: column;
      gap: 5px;
      width: 100%;
    }

    .nav-link {
      padding: 8px 5px;
      display: block;
    }

    .partner-btn {
      width: 100%;
      text-align: center;
      margin-top: 5px;
    }

    /* Hero on mobile – stack vertically and center */
    .hero-section {
      flex-direction: column;
      text-align: center;
      padding: 8% 6%;
    }

    .hero-text {
      min-width: unset;
      width: 100%;
    }

    .hero-text h1 {
      font-size: 26px;
    }
  
    .hero-text p {
      font-size: 14px;
    }

    .cta-wrapper {
      display: flex;
      justify-content: center;
    }

    .hero-image {
      min-width: unset;
      width: 100%;
      margin-top: 20px;
    }
  
    .footer-links {
      gap: 15px;
      font-size: 12px;
    }
  }
  
  /* Tablets (481px to 768px) */
  @media (min-width: 481px) and (max-width: 768px) {
    body {
      font-size: 15px;
    }
  
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 14px 4%;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
      background-color: #FFF8E1;
      padding: 10px 15px;
      border-radius: 8px;
      margin-top: 8px;
      width: 100%;
    }

    .navbar-nav {
      flex-direction: column;
      gap: 5px;
      width: 100%;
    }

    .nav-link {
      padding: 8px 5px;
      display: block;
    }
  
    .hero-section {
      flex-direction: column;
      text-align: center;
      padding: 7% 8%;
    }

    .hero-text {
      min-width: unset;
      width: 100%;
    }
  
    .hero-text h1 {
      font-size: 32px;
    }
  
    .hero-text p {
      font-size: 15px;
    }

    .cta-wrapper {
      display: flex;
      justify-content: center;
    }
  
    .hero-image {
      margin-top: 20px;
      min-width: unset;
      width: 80%;
    }
  }

  /* Medium screens (769px - 1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    body {
      font-size: 16px;
    }

    .hero-text h1 {
      font-size: 36px;
    }

    .hero-text p {
      font-size: 16px;
    }

    .hero-image {
      padding-left: 30px;
    }

    .container {
      padding: 20px;
      margin: 0 auto;
      max-width: 1024px;
    }
  }

  /* Laptops and desktops (769px and up) */
  @media (min-width: 769px) {
    body {
      font-size: 18px;
    }
  
    .container {
      padding: 30px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .hero-image {
      padding-left: 80px;
    }
  }

  /* Large desktops (1400px+) */
  @media (min-width: 1400px) {
    .hero-text h1 {
      font-size: 56px;
    }
    .hero-text p {
      font-size: 20px;
    }
    .container-fluid {
      max-width: 1400px;
    }
  }


  /* ===================== About Section ===================== */

  .about-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    background-color: #111;
    color: white;
  }
  
  .section-title {
    font-family: "Orbitron", sans-serif;
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: white;
    text-decoration: underline;
    text-decoration-color: #b98f2c;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
  }
  
  .about-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .about-text {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .about-text .box {
    background-color: transparent;
    padding: 10px;
  }
  
  .green-heading {
    font-family: "Orbitron", sans-serif;
    color: #b98f2c;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-image img {
    max-width: 250px;
    height: auto;
  }

  /* Very small */
  @media (max-width: 360px) {
    .section-title {
      font-size: 18px;
    }
    .about-text {
      gap: 15px;
    }
  }
  
  /* Small devices (up to 480px) */
  @media (max-width: 480px) {
    .section-title {
      font-size: 22px;
    }
  
    .about-content {
      flex-direction: column;
      align-items: center;
    }
  
    .about-text {
      text-align: center;
      gap: 20px;
      width: 100%;
    }
  
    .about-image img {
      max-width: 200px;
      border-radius: 20px;
    }
  }
  
  /* Tablets (481px to 768px) */
  @media (min-width: 481px) and (max-width: 768px) {
    .section-title {
      font-size: 26px;
    }
  
    .about-content {
      flex-direction: column;
      align-items: center;
    }
  
    .about-text {
      text-align: center;
      width: 100%;
    }
  
    .about-image img {
      max-width: 220px;
      border-radius: 20px;
    }
  }

  /* Medium screens */
  @media (min-width: 769px) and (max-width: 1024px) {
    .section-title {
      font-size: 28px;
    }
    .about-content {
      flex-direction: row;
    }
  }
  
  /* Laptops and desktops (769px and up) */
  @media (min-width: 769px) {
    .about-content {
      flex-direction: row;
    }
  
    .about-text {
      text-align: left;
    }

    .about-image {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .about-image img {
      margin-top: 20px;
      max-width: 220px;
      border-radius: 20px;
      width: 100%;
      height: auto;
      object-fit: cover;
    }
  }
  

  /* ===================== Problem Section ===================== */

  .problem-section {
    padding: 40px 40px;
    max-width: 100%;
    margin: auto;
    background-color: #EDEDED;
  }
  
  .problem-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  
  .problem-header h2 {
    font-size: 32px;
    margin: 0;
  }
  
  .highlight-green {
    font-family: "Orbitron", sans-serif;
    color: black;
    text-decoration: underline;
    text-decoration-color: #b98f2c;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }
  
  .problem-header p {
    flex: 1;
    font-size: 16px;
    color: black;
    line-height: 1.6;
    max-width: 700px;
  }
  
  .problem-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  
  .card {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #000;
  }
  
  .green-card {
    background-color: #13c38b;
    color: #fff;
  }
  
  .yellow-card {
    background-color: #dad900;
  }
  
  .blue-card {
    background-color: #2196f3;
    color: #fff;
  }
  
  /* Very small */
  @media (max-width: 360px) {
    .problem-section {
      padding: 25px 15px;
    }
    .problem-header h2 {
      font-size: 18px;
    }
    .problem-header p {
      font-size: 12px;
    }
  }

  /* Small Devices (Mobile) */
  @media (max-width: 480px) {
    .problem-section {
      padding: 30px 20px;
    }
    .problem-header {
      flex-direction: column;
      text-align: center;
    }
  
    .problem-header h2 {
      font-size: 22px;
    }
  
    .problem-header p {
      font-size: 14px;
      padding-top: 10px;
    }
  
    .problem-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      width: 100%;
      font-size: 14px;
      min-width: unset;
    }
  }
  
  /* Tablets */
  @media (min-width: 481px) and (max-width: 768px) {
    .problem-section {
      padding: 35px 25px;
    }
    .problem-header {
      flex-direction: column;
      text-align: center;
    }
  
    .problem-header h2 {
      font-size: 26px;
    }
  
    .problem-header p {
      font-size: 15px;
    }
  
    .problem-cards {
      justify-content: center;
    }
  
    .card {
      flex: none;
      width: 90%;
      min-width: unset;
    }
  }

  /* Medium */
  @media (min-width: 769px) and (max-width: 1024px) {
    .problem-header {
      flex-direction: row;
      align-items: flex-start;
    }
    .problem-header h2 {
      font-size: 28px;
    }
    .problem-cards {
      flex-direction: row;
    }
  }
  
  /* Laptops & Desktops */
  @media (min-width: 769px) {
    .problem-header {
      flex-direction: row;
      align-items: flex-start;
    }
  
    .problem-header h2 {
      font-size: 32px;
    }
  
    .problem-cards {
      flex-direction: row;
    }
  
    .card {
      flex: 1;
    }
  }


  /* ===================== Alternating Sections ===================== */

  .alternating-section {
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    gap: 40px;
  }
  
  .normal-layout {
    flex-direction: row;
  }
  
  .reverse-layout {
    flex-direction: row-reverse;
  }
  
  .section-text {
    flex: 1;
  }
  
  .section-heading {
    font-family: "Orbitron", sans-serif;
    color: #b98f2c;
    font-size: 2rem;
    margin-bottom: 15px;
    text-decoration: underline;
  }
  
  .section-description {
    font-size: 1.1rem;
    color: #444;
  }
  
  .section-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* Very small */
  @media (max-width: 360px) {
    .alternating-section {
      padding: 25px 15px;
      gap: 20px;
    }
    .section-heading {
      font-size: 1.2rem;
    }
    .section-description {
      font-size: 0.9rem;
    }
  }
  
  /* Mobile: up to 480px */
  @media (max-width: 480px) {
    .alternating-section {
      flex-direction: column !important;
      text-align: center;
      padding: 30px 20px;
      gap: 25px;
    }
  
    .section-heading {
      font-size: 1.4rem;
    }
  
    .section-description {
      font-size: 0.95rem;
    }

    .section-image {
      width: 100%;
    }

    .section-image img {
      max-width: 100%;
    }
  }
  
  /* Tablets: 481px - 768px */
  @media (min-width: 481px) and (max-width: 768px) {
    .alternating-section {
      flex-direction: column !important;
      text-align: center;
      padding: 40px 30px;
      gap: 30px;
    }
  
    .section-heading {
      font-size: 1.6rem;
    }

    .section-image {
      width: 80%;
    }
  }

  /* Medium screens */
  @media (min-width: 769px) and (max-width: 1024px) {
    .alternating-section {
      padding: 50px 30px;
      gap: 30px;
    }
    .section-heading {
      font-size: 1.6rem;
    }
    .section-description {
      font-size: 1rem;
    }
  }
  
  /* Laptops/Desktops: 769px and up */
  @media (min-width: 769px) {
    .alternating-section {
      text-align: left;
    }
  }


  /* ===================== Core Values ===================== */

  .core-values-wrapper {
    padding: 60px 40px;
    background-color: #fff;
  }
  
  .core-values-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
  }
  
  .core-title {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 15px;
  }
  
  .core-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  .core-values-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .core-item {
    flex: 1 1 calc(25% - 30px);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .core-icon {
    width: 70px;
    height: auto;
    margin-bottom: 15px;
  }
  
  .core-label {
    font-family: "Orbitron", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #b98f2c;
  }
  
  .core-note {
    font-size: 0.95rem;
    color: #333;
  }

  /* Very small */
  @media (max-width: 360px) {
    .core-values-wrapper {
      padding: 25px 15px;
    }
    .core-label {
      font-size: 1rem;
    }
    .core-note {
      font-size: 0.85rem;
    }
    .core-icon {
      width: 50px;
    }
  }
  
  /* Mobile */
  @media (max-width: 480px) {
    .core-values-wrapper {
      padding: 35px 20px;
    }
  
    .core-values-list {
      flex-direction: column;
      gap: 30px;
    }
  
    .core-item {
      flex: 1 1 100%;
    }
  
    .core-title {
      font-size: 1.6rem;
    }
  
    .core-description {
      font-size: 0.9rem;
    }
  }
  
  /* Tablets */
  @media (min-width: 481px) and (max-width: 768px) {
    .core-values-wrapper {
      padding: 40px 25px;
    }
    .core-values-list {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .core-item {
      flex: 1 1 calc(50% - 30px);
    }
  
    .core-title {
      font-size: 2rem;
    }
  
    .core-description {
      font-size: 1rem;
    }
  }

  /* Medium screens */
  @media (min-width: 769px) and (max-width: 1024px) {
    .core-item {
      flex: 1 1 calc(33.33% - 30px);
    }
    .core-label {
      font-size: 1rem;
    }
    .core-note {
      font-size: 0.9rem;
    }
  }
  
  /* Desktops */
  @media (min-width: 769px) {
    .core-item {
      text-align: center;
    }
  }

  /* Large desktops */
  @media (min-width: 1200px) {
    .core-item {
      flex: 1 1 calc(30% - 30px);
    }
  }


  /* ===================== Partner Section ===================== */

  .partner-section {
    background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
                      url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .partner-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.95);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .partner-title {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
  }

  .partner-mission {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .partner-benefits {
    list-style-type: none;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .partner-benefits-item {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
    color: #444;
  }

  .partner-benefits-item::before {
    content: "✓";
    color: #004aad;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 12px;
    font-weight: bold;
  }

  .partner-cta {
    display: block;
    width: 220px;
    margin: 0 auto;
    padding: 15px 25px;
    background-color: #004aad;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .partner-cta:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  /* Very small */
  @media (max-width: 360px) {
    .partner-section {
      padding: 20px 10px;
      background-attachment: scroll;
    }
    .partner-content {
      padding: 20px 12px;
    }
    .partner-title {
      font-size: 1.5rem;
    }
    .partner-mission {
      font-size: 0.9rem;
    }
  }

  /* Mobile */
  @media only screen and (max-width: 480px) {
    .partner-section {
      padding: 30px 15px;
      background-attachment: scroll;
    }
    .partner-content {
      padding: 25px 18px;
    }
    .partner-title {
      font-size: 1.7rem;
      margin-bottom: 18px;
    }
    .partner-mission {
      font-size: 0.95rem;
      margin-bottom: 25px;
    }
    .partner-benefits-item {
      font-size: 0.9rem;
      padding-left: 28px;
    }
    .partner-cta {
      width: 170px;
      padding: 11px 18px;
      font-size: 0.95rem;
    }
  }

  /* Tablets */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .partner-section {
      padding: 40px 20px;
      background-attachment: scroll;
    }
    .partner-content {
      padding: 35px 28px;
    }
    .partner-title {
      font-size: 2rem;
    }
    .partner-mission {
      font-size: 1.05rem;
    }
  }

  /* Medium */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .partner-content {
      padding: 40px;
    }
    .partner-title {
      font-size: 2.2rem;
    }
  }

  /* Large Screens */
  @media only screen and (min-width: 1200px) {
    .partner-content {
      padding: 60px;
    }
    .partner-title {
      font-size: 3rem;
    }
    .partner-mission {
      font-size: 1.3rem;
    }
  }


  /* ===================== Process Section ===================== */

  .process-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
  }

  .process-title {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
  }

  .process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }

  .process-step {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }

  .step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #004aad;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50%;
    line-height: 60px;
    margin-bottom: 20px;
  }

  .step-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .step-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  /* Very small */
  @media (max-width: 360px) {
    .process-title {
      font-size: 1.5rem;
    }
    .step-title {
      font-size: 1.1rem;
    }
    .step-description {
      font-size: 0.9rem;
    }
  }

  /* Small Devices (Mobile) */
  @media only screen and (max-width: 480px) {
    .process-section {
      padding: 35px 15px;
    }
    .process-title {
      font-size: 1.7rem;
      margin-bottom: 35px;
    }
    .process-steps {
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }
    .process-step {
      min-width: 100%;
      padding: 22px 15px;
    }
    .step-number {
      width: 48px;
      height: 48px;
      font-size: 1.4rem;
      line-height: 48px;
    }
    .step-title {
      font-size: 1.2rem;
    }
    .step-description {
      font-size: 0.95rem;
    }
  }

  /* Tablets */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .process-section {
      padding: 45px 20px;
    }
    .process-title {
      font-size: 2rem;
      margin-bottom: 45px;
    }
    .process-steps {
      gap: 20px;
    }
    .process-step {
      min-width: calc(50% - 20px);
      flex: none;
    }
  }

  /* Medium */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .process-step {
      min-width: 200px;
    }
  }

  /* Laptops/Desktops */
  @media only screen and (min-width: 769px) {
    .process-step {
      max-width: 300px;
    }
  }


  /* ===================== Leadership Section ===================== */

  .leadership-section {
    background-color: #f5f7fa;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
  }

  .leadership-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
  }

  .leadership-title {
    font-family: "Orbitron", sans-serif;
    color: black;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #b98f2c;
    text-decoration-thickness: 3px;
    text-underline-offset: px;
  }

  .leadership-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    flex: 1 1 300px;
    max-width: 350px;
  }

  .team-member:hover {
    transform: translateY(-10px);
  }

  .member-image {
    height: 400px;
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
  }

  .member-info {
    padding: 25px;
  }

  .member-name {
    font-family: "Orbitron", sans-serif;
    color: #b98f2c;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .member-title {
    color: black;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
  }

  .member-bio {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Very small */
  @media (max-width: 360px) {
    .leadership-section {
      padding: 35px 12px;
    }
    .leadership-title {
      font-size: 1.4rem;
    }
    .member-image {
      height: 280px;
    }
    .member-name {
      font-size: 1.1rem;
    }
    .member-bio {
      font-size: 0.85rem;
    }
  }

  /* Small Devices (Mobile) */
  @media only screen and (max-width: 480px) {
    .leadership-section {
      padding: 45px 15px;
    }
    .leadership-title {
      font-size: 1.7rem;
      margin-bottom: 12px;
    }
    .leadership-description {
      font-size: 0.95rem;
    }
    .team-members {
      gap: 20px;
    }
    .team-member {
      flex: 1 1 100%;
      max-width: 100%;
    }
    .member-image {
      height: 320px;
    }
    .member-info {
      padding: 18px;
    }
    .member-name {
      font-size: 1.2rem;
    }
  }

  /* Tablets */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .leadership-section {
      padding: 55px 20px;
    }
    .leadership-title {
      font-size: 2rem;
    }
    .team-member {
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
    }
    .member-image {
      height: 350px;
    }
  }

  /* Medium screens */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .team-member {
      flex: 1 1 calc(33.333% - 30px);
      max-width: 300px;
    }
    .member-image {
      height: 350px;
    }
    .member-name {
      font-size: 1.2rem;
    }
    .member-bio {
      font-size: 0.9rem;
    }
  }

  /* Laptops/Desktops */
  @media only screen and (min-width: 769px) {
    .team-member {
      flex: 1 1 calc(33.333% - 30px);
    }
  }

  /* Large desktops */
  @media only screen and (min-width: 1400px) {
    .leadership-section {
      padding: 100px 40px;
    }
    .team-member {
      max-width: 380px;
    }
  }


  /* ===================== Collection Section ===================== */

  .collection-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
  }

  .collection-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .collection-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
  }

  .collection-subtitle {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: 500;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .project-image {
    height: 220px;
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
  }

  .project-info {
    padding: 25px;
  }

  .project-name {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .project-description {
    color: #555;
    line-height: 1.6;
  }

  /* Very small */
  @media (max-width: 360px) {
    .collection-section {
      padding: 30px 12px;
    }
    .collection-title {
      font-size: 1.6rem;
    }
  }

  /* Small Devices (Mobile) */
  @media only screen and (max-width: 480px) {
    .collection-section {
      padding: 45px 15px;
    }
    .collection-title {
      font-size: 1.8rem;
    }
    .collection-subtitle {
      font-size: 1.1rem;
    }
    .projects-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .project-image {
      height: 200px;
    }
    .project-info {
      padding: 18px;
    }
    .project-name {
      font-size: 1.2rem;
    }
  }

  /* Tablets */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .collection-section {
      padding: 60px 20px;
    }
    .collection-title {
      font-size: 2.2rem;
    }
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }

  /* Medium */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
    .collection-title {
      font-size: 2.4rem;
    }
  }

  /* Laptops/Desktops */
  @media only screen and (min-width: 1025px) {
    .projects-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }


  /* ===================== Image Grid ===================== */

  .grid-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    box-sizing: border-box;
    background-color: #f8f9fa;
  }

  .image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .grid-item {
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .grid-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .grid-item:hover img {
    transform: scale(1.08);
  }

  /* Very small */
  @media (max-width: 360px) {
    .grid-container {
      padding: 10px;
    }
    .image-grid {
      gap: 10px;
    }
    .grid-item {
      padding-bottom: 100%;
    }
  }

  /* Small Devices (Mobile) */
  @media only screen and (max-width: 480px) {
    .grid-container {
      padding: 15px;
    }
    .image-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .grid-item {
      padding-bottom: 100%;
    }
  }

  /* Tablets */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .image-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .grid-item {
      padding-bottom: 100%;
    }
  }

  /* Medium screens */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .image-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .grid-item {
      padding-bottom: 80%;
    }
  }

  /* Laptops */
  @media only screen and (min-width: 1025px) and (max-width: 1199px) {
    .image-grid {
      gap: 20px;
    }
    .grid-item {
      padding-bottom: 80%;
    }
  }

  /* Large Desktops */
  @media only screen and (min-width: 1200px) {
    .image-grid {
      gap: 28px;
    }
  }


  /* ===================== Footer ===================== */

  .footer-container {
    background-color: black;
    color: #ecf0f1;
    padding: 60px 40px 30px;
    line-height: 1.6;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-about {
    padding-right: 20px;
  }
  
  .footer-logo {
    font-family: "Orbitron", sans-serif;
    color: #D4AF37;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .footer-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .footer-links-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Orbitron", sans-serif;
    color: #D4AF37;
  }
  
  .footer-links-list {
    list-style: none;
    padding: 0;
  }
  
  .footer-links-list li {
    margin-bottom: 12px;
  }
  
  .footer-links-list a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links-list a:hover {
    color: #D4AF37;
  }
  
  .footer-form {
    grid-column: 1 / -1;
    margin-top: 30px;
    background-color: #111;
    padding: 20px;
    border-radius: 8px;
  }
  
  .footer-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-form .form-row {
    display: flex;
    gap: 15px;
  }
  
  .footer-form input,
  .footer-form textarea {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #222;
    color: #ecf0f1;
    width: 100%;
    font-size: 1rem;
  }
  
  .footer-form input::placeholder,
  .footer-form textarea::placeholder {
    color: #999;
  }
  
  .footer-submit {
    background-color: #b98f2c;
    color: black;
    padding: 12px 20px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .footer-submit:hover {
    background-color: wheat;
  }
  
  .footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.9rem;
  }
  
  .footer-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    margin-right: 15px;
    margin-bottom: 10px;
  }
  
  .footer-bottom a:hover {
    color: #77c265;
  }

  /* Very small */
  @media (max-width: 360px) {
    .footer-container {
      padding: 30px 12px 15px;
    }
    .footer-logo {
      font-size: 1.3rem;
    }
    .footer-links-title {
      font-size: 1rem;
    }
    .footer-description,
    .footer-links-list a {
      font-size: 0.85rem;
    }
  }
  
  /* Small Devices (Mobile) */
  @media only screen and (max-width: 480px) {
    .footer-container {
      padding: 35px 18px 18px;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 25px;
    }
  
    .footer-about {
      padding-right: 0;
    }

    .footer-logo {
      font-size: 1.5rem;
    }

    .footer-form {
      grid-column: 1;
      margin-top: 15px;
      padding: 15px;
    }
  
    .footer-form .form-row {
      flex-direction: column;
    }
  
    .footer-bottom {
      flex-direction: column;
      margin-top: 25px;
    }
  
    .footer-bottom a {
      margin-bottom: 8px;
      display: block;
    }
  }
  
  /* Tablets */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .footer-container {
      padding: 45px 25px 22px;
    }
  
    .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 25px;
    }

    .footer-about {
      grid-column: 1 / -1;
      padding-right: 0;
    }

    .footer-form {
      grid-column: 1 / -1;
    }
  
    .footer-form .form-row {
      flex-direction: row;
    }
  }

  /* Medium screens */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 30px;
    }
    .footer-logo {
      font-size: 1.5rem;
    }
  }
  
  /* Laptops/Desktops */
  @media only screen and (min-width: 769px) {
    .footer-content {
      grid-template-columns: 2fr 1fr 1fr;
    }
  }

  /* Large desktops */
  @media only screen and (min-width: 1400px) {
    .footer-content {
      max-width: 1400px;
    }
  }


  /* ===================== Success Popup ===================== */

  .az-success-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .az-popup-box {
    background: black;
    padding: 25px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
    color: white;
    max-width: 90%;
  }
  
  .az-success-icon {
    font-size: 40px;
    color: #2ecc71;
    display: block;
    margin-bottom: 10px;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  

  /* ===================== Gallery Section ===================== */

  .gallery-section {
    padding: 60px 20px;
    text-align: center;
  }

  .gallery-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
  }

  .gallery-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }

  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .gallery-item {
    flex: 1 1 calc(33.33% - 20px);
    max-width: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
  }

  .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  /* Lightbox styles */
  .lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 90%;
  }

  .lightbox.active {
    display: flex;
  }

  /* Very small */
  @media (max-width: 360px) {
    .gallery-section {
      padding: 35px 10px;
    }
    .gallery-title {
      font-size: 1.6rem;
    }
    .gallery-item {
      flex: 1 1 100%;
      max-width: 100%;
    }
    .gallery-item img {
      height: 180px;
    }
  }

  /* Mobile */
  @media only screen and (max-width: 480px) {
    .gallery-section {
      padding: 40px 15px;
    }
    .gallery-title {
      font-size: 2rem;
    }
    .gallery-item {
      flex: 1 1 calc(50% - 12px);
      max-width: calc(50% - 12px);
    }
    .gallery-item img {
      height: 160px;
    }
  }

  /* Tablets */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .gallery-item {
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
    }
    .gallery-item img {
      height: 200px;
    }
  }

  /* Medium screens */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .gallery-item {
      flex: 1 1 calc(33.33% - 20px);
      max-width: 280px;
    }
  }

  /* Desktops */
  @media only screen and (min-width: 769px) {
    .gallery-item {
      flex: 1 1 calc(33.33% - 20px);
    }
  }

  /* Large desktops */
  @media only screen and (min-width: 1400px) {
    .gallery-section {
      padding: 80px 40px;
    }
    .gallery-item {
      flex: 1 1 calc(25% - 20px);
      max-width: 340px;
    }
    .gallery-item img {
      height: 250px;
    }
  }


  /* ===================== Donate Popup ===================== */

  .popup-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
  }

  .popup-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }

  .popup-close {
    color: #444;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
  }

  /* Very small */
  @media (max-width: 360px) {
    .popup-content {
      width: 95%;
      padding: 15px 12px;
      margin: 20% auto;
    }
    .popup-content h2 {
      font-size: 16px;
    }
  }

  /* Small Devices (Mobile) */
  @media (max-width: 480px) {
    .popup-content {
      width: 92%;
      padding: 18px 14px;
      font-size: 13px;
    }
    .popup-close {
      font-size: 20px;
      top: 10px;
      right: 10px;
    }
    .popup-content h2 {
      font-size: 17px;
    }
  }

  /* Tablets */
  @media (min-width: 481px) and (max-width: 768px) {
    .popup-content {
      width: 78%;
      font-size: 15px;
    }
    .popup-content h2 {
      font-size: 20px;
    }
  }

  /* Laptops/Desktops */
  @media (min-width: 769px) {
    .popup-content {
      width: 400px;
      font-size: 17px;
    }
    .popup-content h2 {
      font-size: 24px;
    }
  }