:root {
  font-family: "Nunito Sans", sans-serif;
  --color-primary: #00B2EE;
  --header-color: #170C68;
  --card-color: #2B579E;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; 
}

body {
  font-family: 'Nunito Sans', sans-serif;
  padding-top: 20px; 
}

/* ===================== POPUP ===================== */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup.show {
  display: flex;
  opacity: 1;
}

.popup-content {
  background: #fff;
  padding: 1.5rem;       
  border-radius: 10px;   
  width: 85%;            
  max-width: 400px;      
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

.popup-content h2 {
  color: var(--header-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;     
}

.popup-content p {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #555;
}

.popup-content label {
  display: block;
  margin-bottom: 0.5rem;
  text-align: left;
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;    
}

.popup-content input {
  width: 100%;
  padding: 0.55rem 0.7rem;  
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}

.popup-content .btn-submit {
  background: var(--color-primary, #00B2EE);
  color: #fff;
  border: none;
  padding: 0.7rem 1.2rem;  
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,178,238,0.3);
  width: 100%;
}

.popup-content .btn-submit:hover {
  background: var(--header-color, #170C68);
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(23,12,104,0.3);
}

.popup-content .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.3rem;      
  cursor: pointer;
  color: #888;
  transition: color 0.2s ease;
}

.popup-content .close-btn:hover {
  color: var(--color-primary);
}

.required {
  color: red;
}

/* ===================== MOBILE POPUP ===================== */
@media (max-width: 768px) {
  .popup-content {
    padding: 1rem;        
    width: 80%;           
    max-width: 320px;    
  }

  .popup-content h2 {
    font-size: 1.3rem;
  }

  .popup-content p,
  .popup-content label {
    font-size: 0.85rem;
  }

  .popup-content input {
    font-size: 0.9rem;
    padding: 0.5rem 0.6rem;
            width: 80%;
  }

  .popup-content .btn-submit {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .popup-content .close-btn {
    font-size: 1.2rem;
  }
}


nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      animation: slideDown 0.5s ease-out;
    }

    @keyframes slideDown {
      from {
        transform: translateY(-100%);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: .5rem 1rem;
    }

    .nav-logo img {
      height: 80px;
      transition: transform 0.3s ease;
    }

    .nav-logo:hover img {
      transform: scale(1.05) rotate(2deg);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 0.5rem;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      display: block;
      padding: 0.75rem 1.25rem;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .nav-links a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      transition: left 0.3s ease;
      z-index: -1;
      border-radius: 8px;
    }

    .nav-links a:hover::before {
      left: 0;
    }

    .nav-links a:hover {
      color: white;
      transform: translateY(-2px);
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      width: 30px;
      height: 25px;
      position: relative;
      transition: transform 0.3s ease;
    }

    .nav-toggle:hover {
      transform: scale(1.1);
    }

    .hamburger-bars {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .hamburger-bars span {
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      background: #333;
      border-radius: 3px;
      opacity: 1;
      left: 0;
      transform: rotate(0deg);
      transition: all 0.3s ease;
    }

    .hamburger-bars span:nth-child(1) {
      top: 0;
    }

    .hamburger-bars span:nth-child(2) {
      top: 11px;
    }

    .hamburger-bars span:nth-child(3) {
      top: 22px;
    }

    .nav-toggle.active .hamburger-bars span:nth-child(1) {
      top: 11px;
      transform: rotate(135deg);
    }

    .nav-toggle.active .hamburger-bars span:nth-child(2) {
      opacity: 0;
      left: -30px;
    }

    .nav-toggle.active .hamburger-bars span:nth-child(3) {
      top: 11px;
      transform: rotate(-135deg);
    }

    /* Demo content */
    .demo-content {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 2rem;
      text-align: center;
      color: white;
    }

    .demo-content h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      animation: fadeInUp 0.8s ease-out 0.3s backwards;
    }

    .demo-content p {
      font-size: 1.2rem;
      animation: fadeInUp 0.8s ease-out 0.5s backwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .nav-toggle {
        display: block;
      }
      .nav-logo img{
        height: 50px;
      }

      .nav-links {
        position: fixed;
        top: 50px;
        right: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 250px;
        padding: 2rem 1rem;
        gap: 0.5rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        border-radius: 10px 0 0 10px;
      }

      .nav-links.active {
        right: 0;
      }

      .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        animation: slideInRight 0.3s ease forwards;
      }

      .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
      .nav-links.active li:nth-child(2) { animation-delay: 0.15s; }
      .nav-links.active li:nth-child(3) { animation-delay: 0.2s; }
      .nav-links.active li:nth-child(4) { animation-delay: 0.25s; }
      .nav-links.active li:nth-child(5) { animation-delay: 0.3s; }
      .nav-links.active li:nth-child(6) { animation-delay: 0.35s; }

      @keyframes slideInRight {
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
    }


.hero {
  min-height: 80vh;
  background: url("images/TheBridge-04.png") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 0 1rem;
  margin-top:50px;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 1rem;
  padding-top: 70px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.primary-btn {
  background: var(--header-color);
  color: #fff;
}

.primary-btn:hover {
  background: var(--color-primary);
}

.secondary-btn {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.secondary-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
    min-height: 60vh;
    height: auto;
  }

  .hero h1 {
    font-size: 2rem;
    margin-top: 0;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }
}


.recognition {
  min-height: 40vh;
  background: var(--header-color) url("images/recognition-bg.jpg") center/cover no-repeat; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Nunito Sans', sans-serif;
  padding: 4rem 2rem;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

.recognition-container h2 {
  font-size: 2rem;
  max-width: 900px;
  line-height: 1.8;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
}

@media (max-width: 768px) {
  .recognition {
    padding: 6rem 1.5rem;
    min-height: auto;
  }

  .recognition-container h2 {
    font-size: 1.6rem;
    line-height: 1.9;
    max-width: 100%;
    padding: 0 1rem;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== WHY THE BRIDGE ===================== */
.why-bridge {
  margin: 3rem auto;
  padding: 2rem 1rem;
  font-family: 'Nunito Sans', sans-serif;
  max-width: 1000px;
  width: 100%;
  box-sizing: border-box;
}

.why-bridge h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #170C68;
  font-size: 2rem;
}

/* Menu */
.why-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  border-bottom: 2px solid #ddd;
  width: 100%;
  margin-bottom: 1rem;
}

.why-item {
  background: #f9fafb;
  border: 2px solid #ddd;
  border-bottom: none;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #170C68;
  font-weight: 600;
  border-radius: 6px 6px 0 0;
  flex: 1 1 auto;        
  max-width: 150px;     
  text-align: center;
  word-break: break-word;
}

.why-item.active {
  background: #fff;
  border-color: #00B2EE;
  color: #00B2EE;
}

/* Content box */
.why-content {
  background: #f2f7fc;
  padding: 2rem;
  border: 2px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  width: 100%;
  box-sizing: border-box;
}

.why-text {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap; 
}

.why-text.active {
  display: flex;
}

.why-text p {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #333;
  min-width: 200px; 
}

.why-text img {
  width: 220px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .why-bridge {
    padding: 1.5rem 1rem;
  }

  .why-item {
    flex: 1 1 45%;  
    max-width: none;
  }

  .why-text {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .why-text img {
    margin-top: 1rem;
    width: 160px;
  }

  .why-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .why-item {
    flex: 1 1 100%;  
  }
}

.featured-programs {
  position: relative;
  min-height: 100vh;
  padding: 2rem;
  font-family: 'Nunito Sans', sans-serif;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  overflow: visible;
  box-sizing: border-box;
}

.featured-programs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
    url('images/backgroundpng.png') center/cover no-repeat;
  opacity: 0.2;
  transform: scaleX(-1);
  transform-origin: center;
  z-index: -1;
}

.fp-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.fp-image {
  flex: 1;
  text-align: center;
}

.fp-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.fp-image img:hover {
  transform: scale(1);
}

.fp-text {
  flex: 1;
  color: #333;
}

.fp-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: var(--header-color, #170C68);
}

.fp-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.fp-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--header-color);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}

.fp-btn:hover {
  background: var(--color-primary);
}

@media (max-width: 768px) {
  .featured-programs {
    min-height: auto;
    height: auto;
    padding: 3rem 1rem;
    flex-direction: column;
    align-items: center;
  }

  .fp-container {
    flex-direction: column;
    text-align: center;
  }

  .fp-text {
    order: -1;
  }

  .fp-text h2 {
    font-size: 1.75rem;
  }
}

.cross-border {
  position: relative;
  height: 100vh;
  padding: 2rem 3rem;
  font-family: 'Nunito Sans', sans-serif;
  display: flex;
  align-items: center;
  overflow-x: hidden; 
}

.cross-border::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/backgroundpng.png') center/cover no-repeat;
  opacity: 0.2; 
  z-index: -1; 
}

.cross-border::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6); 
  z-index: -1;
}


.cb-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  overflow-x: hidden;
}

.cb-image img {
  width: 100%;
  max-width: 500px; 
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: scale(0.95);
  transition: transform 0.4s ease;
  display: block;
}

.cb-text {
  flex: 1;
  color: #333;
}

.cb-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: var(--header-color, #170C68);
}

.cb-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cb-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--header-color);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}

.cb-btn:hover {
  background: var(--color-primary);
}

.cb-image {
  flex: 1;
  text-align: center;
}

.cb-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.cb-image img:hover {
  transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
  .cross-border {
    height: auto; 
    padding: 3rem 1rem;
  }

  .cb-container {
    flex-direction: column;
    text-align: center;
  }

  .cb-text h2 {
    font-size: 1.75rem;
  }
}
.leadership {
  position: relative;
  min-height: 100vh;
  padding: 2rem;
  font-family: 'Nunito Sans', sans-serif;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.leadership::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
    url('images/backgroundpng.png') center/cover no-repeat;
  opacity: 0.2;
  transform: scaleX(-1);
  transform-origin: center;
  z-index: -1;
}

.lead-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.lead-text {
  flex: 1;
  color: #333;
}

.lead-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: var(--header-color, #170C68);
}

.lead-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.lead-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--header-color);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}

.lead-btn:hover {
  background: var(--color-primary);
}

.lead-image {
  flex: 1;
  text-align: center;
}

.lead-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.lead-image img:hover {
  transform: scale(1);
}

@media (max-width: 768px) {
  .leadership {
    height: auto;
    padding: 3rem 1rem;
  }

  .lead-container {
    flex-direction: column;
    text-align: center;
  }

  .lead-text {
    order: -1;
  }

  .lead-text h2 {
    font-size: 1.75rem;
  }
}

.scholarships {
  min-height: 100vh;
  padding: 2rem 3rem;
  background: #f9fafb;
  font-family: 'Nunito Sans', sans-serif;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}

.scholar-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.scholar-text {
  flex: 1;
  color: #333;
}

.scholar-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--header-color, #170C68);
  font-weight: bold;
}

.scholar-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.scholar-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--header-color);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}

.scholar-btn:hover {
  background: var(--color-primary);
}

.scholar-image {
  flex: 1;
  text-align: center;
}

.scholar-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: scale(0.95);
  transition: transform 0.4s ease;
  display: block;
}

.scholar-image img:hover {
  transform: scale(1);
}

@media (max-width: 768px) {
  .scholarships {
    min-height: auto;
    padding: 3rem 1rem;
  }

  .scholar-container {
    flex-direction: column;
    text-align: center;
  }

  .scholar-text {
    order: -1;
  }

  .scholar-text h2 {
    font-size: 1.75rem;
  }
}

/* 🌇 CTA Section */
.cta {
  position: relative;
  min-height: 80dvh;
  background: url("images/TheBridge-02.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito Sans', sans-serif;
  overflow: hidden;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 178, 238, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cta-content {
  color: #fff;
  max-width: 700px;
  z-index: 2;
  padding: 1rem;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* 🎯 Buttons */
.cta-content a {
  margin: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #170C68, #2B579E);
  color: #fff;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  background: #fff;
  color: #170C68;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.webinar {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s ease;
}

.webinar:hover {
  background: #fff;
  color: #170C68;
}

/* 📱 Responsive Tweaks */
@media (max-width: 768px) {
  .cta {
    min-height: 70dvh;
    background-position: center top;
    padding: 3rem 1.5rem;
  }

  .cta-overlay {
    background: rgba(0, 178, 238, 0.75);
    padding: 2rem 1rem;
  }

  .cta-content {
    max-width: 90%;
    padding: 1rem 0.5rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-content a {
    display: block;
    width: 70%;
    max-width: 320px;
    margin: 0.75rem auto;
  }

  .cta-btn,
  .webinar {
    font-size: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 40px;
  }
}

@media (max-width: 480px) {
  .cta {
    min-height: 55dvh;
    background-position: center;
    padding: 2rem 1rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .cta-btn,
  .webinar {
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
  }
}



/* 🌍 Footer Base */
.footer {
  background-color: #fefefe;
  color: #000000;
  padding: 3rem 1.5rem 1rem;
  font-family: 'Nunito Sans', sans-serif;
}
.social-icons a {
  text-decoration: none;
}

.social-icons a::before,
.social-icons a::after {
  content: none !important;
}
.footer-container {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* 🏷️ Logo & About */
.footer-logo img {
  width: 100px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 🔗 Links & Legal */
.footer-links h3,
.footer-legal h3,
.footer-socials h3 {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-legal ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a,
.footer-legal ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
  color: #00B2EE;
}

/* 🌐 Social Icons */
.footer-socials .social-icons {
  display: flex;
  gap: 12px;
}

.footer-socials .social-icons a {
  color: #00B2EE;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials .social-icons a:hover {
  color: #0984ad;
  transform: translateY(-3px);
}



/* ⚖️ Bottom Bar */
.footer-bottom {
  text-align: center;
  color: #000000;
  font-size: 0.9rem;
}

/* 📱 Responsive Styles */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-legal,
  .footer-socials {
    align-items: center;
  }

  .footer-socials .social-icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links,
  .footer-legal,
  .footer-socials {
    margin-top: 1.5rem;
  }

  .footer-links ul li,
  .footer-legal ul li {
    margin-bottom: 0.8rem;
  }

  .footer-logo img {
    width: 130px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .social-icons a {
    margin: 0 0.5rem;
  }
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}