*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar-brand small {
  font-size: 11px;
  color: red;
  display: block;
  margin-top: -5px;
}

/* Mega Menu */
.navbar-dropdown-toggle::after {
  display: none;
}

.navbar-mega-menu {
  min-width: 720px;
  display: none;
  position: absolute;
  z-index: 1000;
  left: 0;
  top: 100%;
  background: white;
  border-radius: 8px;
}

@media (max-width: 991.98px) {
  .navbar-mega-menu {
    min-width: 100% !important;
  }
}

/* Sidebar Mobile */
.navbar-sidebar-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1040;
}

.navbar-sidebar {
  position: fixed;
  top: 0; left: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 1041;
  transition: all 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.navbar-sidebar.active {
  left: 0;
}

.navbar-submenu {
  display: none;
  flex-direction: column;
  max-height: 100vh;
  overflow-y: auto;
}

.navbar-submenu.active {
  display: flex;
}

.navbar-back-btn {
  font-weight: bold;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
  background: #f9f9f9;
  cursor: pointer;
}

.navbar-sidebar a {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f1f1f1;
}

@media (max-width: 991.98px) {
  .navbar-desktop {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .navbar-mobile,
  .navbar-sidebar,
  .navbar-sidebar-overlay {
    display: none !important;
  }
}

    /* home-hero-wrapper */
     .home-hero-wrapper {
    height: 80vh;
    background:
      url('https://www.nasca.edu.in/learning-centre/wp-content/uploads/2019/10/students-future.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
  }

  .home-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
  }

  .home-hero-subtitle {
    font-size: 1.2rem;
    margin: 10px 0 25px;
    color: white;
  }

  .home-hero-btn {
    padding: 12px 25px;
    background-color: #d62828;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
  }

  .home-hero-btn i {
    margin-left: 8px;
  }

  .home-hero-btn:hover {
    background-color: #b31c1c;
  }

  .home-hero-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border-radius: 12px;
    width: 95%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transition: all 0.4s ease;
    opacity: 0;
  }

  .home-hero-popup.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .home-hero-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 22px;
    color: #333;
  }

  .home-hero-popup h5 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #1d1d1f;
  }

  .home-hero-popup input,
  .home-hero-popup select {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
  }

  .home-hero-popup button {
    background-color: #d62828;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    width: 100%;
  }

  .home-hero-typewriter::after {
    content: '|';
    animation: blink 0.8s infinite;
  }

  @keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
  }

  @media (max-width: 767px) {
    .home-hero-title {
      font-size: 1.8rem;
    }
    .home-hero-subtitle {
      font-size: 1rem;
    }
  }
  /* home-about-section-wrapper */
  .home-about-section-wrapper {
      padding: 60px 0;
      background-color: #f9f9ff;
    }
    .home-about-section-title {
      font-size: 2.4rem;
      font-weight: 700;
      color: #1d1d1f;
      margin-bottom: 20px;
    }
    .home-about-section-text {
      font-size: 1rem;
      color: #444;
      margin-bottom: 16px;
      line-height: 1.7;
    }
    .home-about-section-btn {
      padding: 12px 30px;
      background-color: #d62828;
      color: white;
      font-weight: 600;
      border: none;
      border-radius: 30px;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }
    .home-about-section-btn:hover {
      background-color: #b31c1c;
      text-decoration: none;
      color: white;
    }
    .home-about-section-btn i {
      margin-left: 8px;
    }
    .home-about-section-img img {
      border-radius: 12px;
      width: 100%;
      object-fit: cover;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
    @media (max-width: 767px) {
      .home-about-section-title {
        font-size: 1.8rem;
        text-align: center;
      }
      .home-about-section-text {
        text-align: center;
      }
      .home-about-section-btn {
        display: block;
        margin: 0 auto;
      }
    }
    /* home-hightlight-section-wrapper */
    .home-hightlight-section-wrapper {
    background: linear-gradient(to right, #f0f4f8, #f8fbff);
    overflow: hidden;
  }

  .home-hightlight-section-title {
    font-size: 2.25rem;
  }

  .home-hightlight-section-card {
    transition: all 0.3s ease;
    border: 1px solid #eee;
  }

  .home-hightlight-section-card:hover {
    transform: scale(1.05);
    border-color: #d62828;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .home-hightlight-section-icon i {
    background-color: #e8f0fa;
    padding: 12px;
    border-radius: 12px;
  }
  /* home-cour-section-wrapper  */
  .home-cour-section-wrapper {
    background-color: #fdfdfd;
  }
  .home-cour-section-title {
    font-size: 2.2rem;
  }
  .home-cour-section-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .home-cour-section-card:hover .home-cour-section-img {
    transform: scale(1.05);
  }
  .home-cour-section-label {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #1d1d1f;
  }
  /* home-lang-section-wrapper */
  .home-lang-section-wrapper {
    background: #fdfdfd;
  }
  .home-lang-section-title {
    font-size: 2.25rem;
  }
  .home-lang-section-subtitle {
    font-size: 1rem;
    color: #555;
  }
  .home-lang-section-card img {
    transition: transform 0.3s ease;
  }
  .home-lang-section-card:hover img {
    transform: scale(1.03);
  }
  .gradient-card {
    background: linear-gradient(135deg, #2980b9, #6dd5fa);
  }
  .gradient-card-2 {
    background: linear-gradient(135deg, #7b4397, #dc2430);
  }
  .gradient-card-3 {
    background: linear-gradient(135deg, #f7971e, #ffd200);
  }
  /* home-it-section-wrapper */
   .home-it-section-carousel::-webkit-scrollbar {
    display: none;
  }
  .home-it-section-carousel {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    gap: 1rem;
  }
  .home-it-section-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    background: #d62828;
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    z-index: 2;
  }
  .home-it-section-nav.left {
    left: 0;
  }
  .home-it-section-nav.right {
    right: 0;
  }
  @media (max-width: 768px) {
    .home-it-section-nav.left {
      left: 5px;
    }
    .home-it-section-nav.right {
      right: 5px;
    }
  }
  /* home-Corporate-training-section */
  .home-Corporate-training-section {
  background: #fdfdfd;
}

.home-Corporate-training-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0c2138;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.home-Corporate-training-heading::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #0d6efd;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.home-Corporate-training-subheading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.home-Corporate-training-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  max-width: 95%;
}

.home-Corporate-training-img-wrapper {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.home-Corporate-training-img-wrapper:hover {
  transform: scale(1.03);
}

.home-Corporate-training-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 15px;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .home-Corporate-training-heading {
    font-size: 2.2rem;
  }
  .home-Corporate-training-subheading {
    font-size: 1.4rem;
  }
  .home-Corporate-training-text {
    font-size: 1rem;
  }
}
/* home-skillfiy-program-section-wrapper */
.home-skillfiy-program-section-wrapper {
  background-color: #03284e;
  color: #ffffff;
}

.home-skillfiy-program-section-title {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #ffffff;
  font-weight: 500;
}

.home-skillfiy-program-section-logos img {
  height: 50px;
  background: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  transition: transform 0.3s ease;
}

.home-skillfiy-program-section-logos img:hover {
  transform: scale(1.05);
}

/* Hexagon Image Container */
.home-skillfiy-program-section-hexagon {
  width: 300px;
  height: 260px;
  margin: auto;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  background: #fdd835;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.home-skillfiy-program-section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .home-skillfiy-program-section-title {
    font-size: 1.1rem;
  }

  .home-skillfiy-program-section-hexagon {
    width: 220px;
    height: 190px;
  }

  .home-skillfiy-program-section-logos img {
    height: 40px;
    margin-bottom: 10px;
  }
}
/* home-why-kochiva-section */
.home-why-kochiva-section {
  background: #fefefe;
}

.home-why-kochiva-heading {
  font-size: 2.7rem;
  font-weight: 800;
  color: #222;
  position: relative;
}

.home-why-kochiva-img-box {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.home-why-kochiva-img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.home-why-kochiva-feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.home-why-kochiva-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.home-why-kochiva-feature-card .icon {
  background: linear-gradient(135deg, #fc5c7d, #6a82fb);
  color: #fff;
  font-size: 1.5rem;
  padding: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.home-why-kochiva-feature-card h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.home-why-kochiva-feature-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .home-why-kochiva-heading {
    font-size: 2rem;
  }

  .home-why-kochiva-feature-card {
    padding: 16px;
  }
}
/* home-testimonials-section */
.home-testimonial-section-wrapper {
  background: linear-gradient(to right, #f9fafb, #eef2f7);
}

.home-testimonial-section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #1e293b;
}

.home-testimonial-section-card {
  text-align: center;
}

.home-testimonial-section-video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.home-testimonial-section-video video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
}

.home-testimonial-section-tagline {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 12px;
  font-size: 0.9rem;
  border-radius: 6px;
  font-weight: 500;
}

/* Swiper nav buttons */
.home-testimonial-section-nav {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 2px solid #ef4444;
  color: #ef4444;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.2);
  transition: 0.3s ease;
  top: 42%;
}

.home-testimonial-section-nav:hover {
  background: #ef4444;
  color: #fff;
  transform: scale(1.08);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: #ef4444;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background: #ef4444;
  opacity: 1;
}
/* home-cta-section */
/* CTA Section */
.home-cta-section {
  background: #d72638;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.home-cta-heading {
  font-size: 2rem;
  font-weight: bold;
}
.home-cta-button {
  background: #fff;
  color: #d72638;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.home-cta-button:hover {
  background: #f3f3f3;
}

/* MODAL OVERLAY */
.home-cta-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  padding: 20px;
  overflow-y: auto;
  box-sizing: border-box;
}

/* SHOW MODAL */
.home-cta-modal.active {
  display: block;
}

/* MODAL CONTENT */
.home-cta-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 500px;
  margin: 80px auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeSlide 0.3s ease;
}

/* CLOSE BUTTON */
.home-cta-close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

/* FORM STYLING */
.home-cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-cta-form-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.home-cta-form input,
.home-cta-form select {
  flex: 1;
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.home-cta-form input:focus,
.home-cta-form select:focus {
  border-color: #d72638;
}
.home-cta-submit {
  background: #d72638;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.home-cta-submit:hover {
  background: #ba1f2f;
}

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .home-cta-modal-content {
    margin: 40px auto;
    padding: 24px 16px;
  }
  .home-cta-form-group {
    flex-direction: column;
  }
}
/* footer */
/* ========================
   GENERAL FOOTER STYLING
========================= */
.footer-section {
  background: #0f172a;
  color: #e2e8f0;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 60px;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* ========================
   BRAND + DESCRIPTION
========================= */
.footer-brand {
  max-width: 700px;
  margin-bottom: 40px;
}
.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}
.footer-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ========================
   LINK GRID
========================= */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-links-grid h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #facc15;
}

.footer-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-grid ul li {
  margin-bottom: 8px;
}

.footer-links-grid ul li a {
  color: #cbd5e1;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links-grid ul li a:hover {
  color: #facc15;
  text-decoration: underline;
}

/* ========================
   CONTACT AREA
========================= */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  margin-top: 40px;
}

.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #facc15;
}

.footer-address,
.footer-quick {
  flex: 1;
  min-width: 260px;
  font-size: 0.9rem;
}

.footer-quick i {
  color: #facc15;
  margin-right: 8px;
}

.footer-quick a {
  color: #e2e8f0;
  text-decoration: none;
}
.footer-quick a:hover {
  color: #facc15;
}

/* ========================
   BOTTOM BAR
========================= */
.footer-bottom {
  background: #0e1a2b;
  padding: 20px 10px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-bottom-inner p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin: 6px 0;
}

/* ========================
   SOCIAL ICONS
========================= */
.footer-social {
  margin-top: 10px;
}
.footer-social span {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-right: 8px;
}
.footer-social a {
  color: #cbd5e1;
  font-size: 1rem;
  margin: 0 6px;
  transition: color 0.3s ease;
}
.footer-social a:hover {
  color: #facc15;
}

/* ========================
   CREDIT LINE
========================= */
.footer-developed {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-top: 12px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.footer-developed .highlighted-link {
  color: #facc15;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}

.footer-developed .highlighted-link:hover {
  text-decoration: underline;
  color: #fff176;
}

.heart {
  display: inline-block;
  color: #ef4444;
  animation: beat 1.6s infinite ease-in-out;
}

@keyframes beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer-contact {
    flex-direction: column;
  }
}
/* skill-development page */
/* skill-development-section-hero */
/* Hero Section */
.skill-development-section-hero {
  background: url('https://cdn.sanity.io/images/cphrnle8/production/e2997ed610b117ed070215fd61ec5553f8ea9b94-2121x1414.jpg?w=2121&q=100&fit=max') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  color: #fff;
}

.skill-development-section-content {
  max-width: 700px;
}

.skill-development-section-content h1 {
  font-size: 2.5rem;
  color: #facc15;
}

.skill-development-section-content p {
  font-size: 1.2rem;
  color:#facc15;
  margin: 10px 0 20px;
}

.skill-development-section-btn {
  background: #d72638;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.skill-development-section-btn:hover {
  background: #ba1f2f;
}

/* Modal Styles */
.skill-development-section-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  overflow-y: auto;
  z-index: 9999;
  padding: 40px 20px;
}

.skill-development-section-modal.active {
  display: block;
}

.skill-development-section-modal-content {
  background: #fff;
  max-width: 700px;
  margin: auto;
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  animation: fadeIn 0.4s ease;
}

.skill-development-section-close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* Modal Content */
.skill-development-section-modal-title {
  text-align: center;
  font-size: 1.5rem;
  color: #d72638;
  margin-bottom: 10px;
}

.skill-development-section-subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #1e293b;
}

.skill-development-section-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-development-section-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.skill-development-section-form input,
.skill-development-section-form select {
  flex: 1;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.skill-development-section-actions {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  margin-top: 20px;
}

.skill-development-section-primary,
.skill-development-section-secondary {
  background: #d72638;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
}

.skill-development-section-primary:hover,
.skill-development-section-secondary:hover {
  background: #ba1f2f;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .skill-development-section-form-row {
    flex-direction: column;
  }

  .skill-development-section-modal-content {
    padding: 30px 20px;
  }

  .skill-development-section-content h1 {
    font-size: 2rem;
  }

  .skill-development-section-btn {
    width: auto;
  }
}
/* skill-development-impact-section */
.skill-development-impact-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.skill-development-impact-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1f2937;
}

.skill-development-impact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.skill-development-impact-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e5e7eb;
}

.skill-development-impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.skill-development-impact-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.skill-development-impact-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.skill-development-impact-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

.skill-development-impact-more {
  display: none;
  color: #4b5563;
}

.skill-development-impact-readmore {
  color: #d72638;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s;
}

.skill-development-impact-readmore:hover {
  text-decoration: underline;
  color: #b91c1c;
}

@media (max-width: 768px) {
  .skill-development-impact-cards {
    flex-direction: column;
    align-items: center;
  }

  .skill-development-impact-card {
    max-width: 100%;
  }
}
/* skill-development-feature-section */
.skill-development-feature-heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1f2937;
  position: relative;
}

.skill-development-feature-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #0ea5e9;
  margin: 12px auto 0;
  border-radius: 2px;
}

.skill-development-feature-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.skill-development-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.skill-development-feature-course {
  background-color: #f9fafb;
  border-left: 4px solid #0ea5e9;
  padding: 20px 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.skill-development-feature-course:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.skill-development-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.4rem;
}

.skill-development-feature-desc {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
  .skill-development-feature-heading {
    font-size: 2.2rem;
  }

  .skill-development-feature-title {
    font-size: 1.1rem;
  }

  .skill-development-feature-desc {
    font-size: 0.9rem;
  }

  .skill-development-feature-course {
    text-align: center;
  }

  .skill-development-feature-image {
    max-height: 320px;
  }
}
/* skill-development-whychoose-section */
.skill-development-whychoose-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  position: relative;
}

.skill-development-whychoose-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.skill-development-whychoose-tab {
  border: none;
  background: #f3f4f6;
  color: #1f2937;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.skill-development-whychoose-tab.active {
  background: #0ea5e9;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* contact page */
/* contact-hero-section-wrapper */

     .contact-hero-section-wrapper {
      background: url('https://academic-services.providence.edu/files/2020/06/JM4_4790-1024x683.jpg') no-repeat center center/cover;
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .contact-hero-section-overlay {
   
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      text-align: center;
    }

    .contact-hero-section-content {
      color: #fff;
      max-width: 700px;
    }

    .contact-hero-section-title {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .contact-hero-section-title span {
      color: #0ea5e9;
      white-space: nowrap;
    }

    .contact-hero-section-subtitle {
      font-size: 1.1rem;
      color: #f3f4f6;
    }

    @media (max-width: 992px) {
      .contact-hero-section-wrapper {
        height: 80vh; /* enforce 80vh for tablets */
      }
    }

    @media (max-width: 768px) {
      .contact-hero-section-wrapper {
        height: 80vh;
        padding: 60px 0;
      }

      .contact-hero-section-title {
        font-size: 2rem;
      }

      .contact-hero-section-subtitle {
        font-size: 1rem;
      }
    }
    /* contact-form-section-wrapper */
    .contact-form-section-heading {
  font-size: 2rem;
  color: #004466;
}

.contact-form-section-subheading {
  font-size: 1rem;
  color: #666;
}
/* contact-looking-section-wrapper */
.contact-looking-section-wrapper {
  background-color: #0f172a;
}

.contact-looking-section-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
}

.contact-looking-section-card {
  background: #1e293b;
  border-radius: 16px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-looking-section-card:hover {
  background-color: #111827;
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.contact-looking-section-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.contact-looking-section-card:hover .contact-looking-section-icon-wrapper {
  transform: scale(1.1);
}

/* Custom Gradient Backgrounds */
.bg-gradient-courses {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.bg-gradient-hire {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.bg-gradient-language {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.contact-looking-section-title {
  color: #f8fafc;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-looking-section-icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  .contact-looking-section-title {
    font-size: 1rem;
  }
}
/* German page */
/* german-hero-section-wrapper */
/* Hero Section */
.german-hero-section-wrapper {
  background: url('https://images.elenasimic.net/public/upload/site/elenasimic/images/page-student-visa-germany-16_9_page_default.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.german-hero-section-overlay {
  background-color: rgba(15, 23, 42, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.german-hero-section-content {
  max-width: 700px;
  margin: auto;
}

.german-hero-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

#german-hero-section-typewriter {
  color: #facc15;
  display: inline-block;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
  line-height: 1.3;
}

.german-hero-section-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin: 15px 0;
  line-height: 1.6;
}

.german-hero-section-btn {
  background: #dc2626;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.german-hero-section-btn:hover {
  background: #b91c1c;
}

/* Popup */
.german-hero-section-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.german-hero-section-popup.active {
  display: flex;
}

.german-hero-section-popup-box {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 700px;
  padding: 30px;
  position: relative;
  max-height: 95vh;
  overflow-y: auto;
}

.german-hero-section-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
}

.german-hero-section-popup-header {
  text-align: center;
  margin-bottom: 20px;
}

.german-hero-section-popup-header img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.german-hero-section-popup-header h4 {
  font-size: 1.5rem;
  color: #1e293b;
  margin: 10px 0;
}

.german-hero-section-popup-header p {
  font-size: 0.95rem;
  color: #64748b;
}

/* Form */
.german-hero-section-form input,
.german-hero-section-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.95rem;
}

.german-hero-section-form button {
  width: auto;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .german-hero-section-title {
    font-size: 2rem;
  }

  #german-hero-section-typewriter {
    font-size: 1.2rem;
  }

  .german-hero-section-popup-box {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .german-hero-section-title {
    font-size: 1.6rem;
  }

  #german-hero-section-typewriter {
    font-size: 1rem;
  }

  .german-hero-section-btn {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}
/* german-how-do-section-wrapper */
.german-how-do-section-wrapper {
  background-color: #f9fafb;
  padding: 60px 0;
}

.german-how-do-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

.german-how-do-section-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.german-how-do-section-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.german-how-do-section-text {
  padding: 10px 15px;
}

.german-how-do-section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.german-how-do-section-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .german-how-do-section-title {
    font-size: 1.6rem;
  }

  .german-how-do-section-heading {
    font-size: 1.3rem;
    text-align: center;
  }

  .german-how-do-section-description {
    text-align: center;
    font-size: 0.95rem;
  }

  .german-how-do-section-text {
    text-align: center;
    padding: 0;
  }
}
/* german-group-class-wrapper */
.german-group-class-wrapper {
  background-color: #f9fafb;
  padding: 60px 0;
}

.german-group-class-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.german-group-class-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

.german-group-class-text {
  padding: 0 15px;
}

.german-group-class-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.german-group-class-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .german-group-class-heading {
    font-size: 1.3rem;
    text-align: center;
  }

  .german-group-class-description {
    font-size: 0.95rem;
    text-align: center;
  }

  .german-group-class-text {
    text-align: center;
  }
}
/* german-curriculum-section-wrapper */
/* Wrapper */
.german-curriculum-section-wrapper {
  background-color: #032e54;
  color: #fff;
}

.german-curriculum-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.german-curriculum-section-btn {
  background-color: #e11d48;
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 50px;
  transition: 0.3s ease;
}

.german-curriculum-section-btn:hover {
  background-color: #be123c;
}

.german-curriculum-section-image {
  max-width: 180px;
  height: auto;
}

/* Popup Styles */
.german-curriculum-section-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.german-curriculum-section-popup.active {
  display: flex;
}

.german-curriculum-section-popup-box {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  position: relative;
  max-height: 95vh;
  overflow-y: auto;
}

.german-curriculum-section-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
}

.german-curriculum-section-popup-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #032e54;
}

.german-curriculum-section-popup-header p {
  font-size: 0.95rem;
  color: #334155;
}

.german-curriculum-section-form input,
.german-curriculum-section-form select,
.german-curriculum-section-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.95rem;
}

.german-curriculum-section-form textarea {
  resize: vertical;
}

.german-curriculum-section-privacy {
  font-size: 0.8rem;
  color: #64748b;
}

.german-curriculum-section-privacy a {
  color: #0ea5e9;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .german-curriculum-section-title {
    font-size: 1.4rem;
  }

  .german-curriculum-section-image {
    margin-bottom: 15px;
  }

  .german-curriculum-section-btn {
    font-size: 0.95rem;
  }

  .german-curriculum-section-popup-box {
    padding: 20px;
  }
}
/* german-snippet-section-wrapper */
.german-snippet-section-wrapper {
  background-color: #f9fafb;
  padding: 60px 0;
}

.german-snippet-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
}

.german-snippet-section-video-wrapper {
  max-width: 720px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.german-snippet-section-browser-bar {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: #e5e7eb;
  font-size: 0.85rem;
  color: #475569;
}

.german-snippet-section-browser-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.german-snippet-section-browser-bar .red { background: #ef4444; }
.german-snippet-section-browser-bar .yellow { background: #facc15; }
.german-snippet-section-browser-bar .green { background: #22c55e; }

.german-snippet-section-url {
  margin-left: auto;
  font-weight: 500;
  font-size: 0.9rem;
}

.german-snippet-section-video-box {
  position: relative;
}

.german-snippet-section-thumb {
  width: 100%;
  display: block;
  object-fit: cover;
}

.german-snippet-section-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0f172a;
  color: #fff;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.german-snippet-section-play-btn:hover {
  background: #1e40af;
}

/* Responsive */
@media (max-width: 768px) {
  .german-snippet-section-title {
    font-size: 1.6rem;
  }

  .german-snippet-section-play-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}
/* german-offering-section-wrapper */
.german-offering-section-wrapper {
  background: #032e54 url('https://img.freepik.com/free-vector/gradient-hexagonal-background_23-2148944164.jpg') center/cover no-repeat;
  padding: 80px 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.german-offering-section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
}

/* Glow circle with layered background */
.german-offering-section-image-frame {
  position: relative;
  display: inline-block;
}

.german-offering-section-glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(14,165,233,0.4) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.german-offering-section-image {
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
  border: 5px solid #ffffff10;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Cards */
.german-offering-section-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.german-offering-section-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.german-offering-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0ea5e9, #3b82f6);
  z-index: 0;
  transition: left 0.4s ease;
}

.german-offering-section-card:hover::before {
  left: 0;
}

.german-offering-section-card span,
.german-offering-section-card i {
  z-index: 1;
  position: relative;
}

.german-offering-section-card:hover {
  color: #ffffff;
  border-color: transparent;
}

.german-offering-section-card i {
  transition: transform 0.3s ease;
}

.german-offering-section-card:hover i {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 768px) {
  .german-offering-section-title {
    font-size: 1.8rem;
  }

  .german-offering-section-image {
    max-width: 320px;
  }

  .german-offering-section-glow-circle {
    width: 260px;
    height: 260px;
  }

  .german-offering-section-card {
    font-size: 1rem;
    padding: 12px 18px;
  }
}
/* german-why-do-section */
.german-why-do-section {
   background: #fdf4e5;

}

.german-why-do-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
}

.german-why-do-card {
  position: relative;
  height: 300px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.german-why-do-card:hover {
  transform: translateY(-5px);
}

.german-why-do-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  color: #ffffff;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.german-why-do-overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.german-why-do-overlay p {
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .german-why-do-card {
    height: 250px;
  }

  .german-why-do-overlay h4 {
    font-size: 1rem;
  }

  .german-why-do-overlay p {
    font-size: 0.9rem;
  }
}
/* german-faq-section-wrapper */
.german-faq-section-wrapper {
  background: #f9fafb;
}

.german-faq-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
}

.german-faq-section-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.german-faq-section-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.german-faq-section-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 16px 20px;
  color: #1e293b;
  cursor: pointer;
  position: relative;
}

.german-faq-section-question::after {
  content: "\25BC"; /* down arrow */
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.german-faq-section-item.active .german-faq-section-question::after {
  transform: rotate(180deg);
}

.german-faq-section-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 0.95rem;
  color: #475569;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.german-faq-section-item.active .german-faq-section-answer {
  max-height: 300px;
  padding: 12px 20px 16px;
}
/* spanish language page */
/* spanish-language-hero-section-wrapper */
/* Wrapper */
.spanish-language-hero-section-wrapper {
  background: #fef3c7 url('https://i.ibb.co/ZVVSD6z/bg-city.png') bottom repeat-x;
  background-size: cover;
  padding: 80px 0;
}

.spanish-language-hero-section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e293b;
}

#spanish-language-hero-section-typewriter {
  color: #e11d48;
  white-space: normal;
}

.spanish-language-hero-section-subtitle {
  font-size: 1.1rem;
  color: #334155;
  margin-top: 12px;
  margin-bottom: 25px;
}

.spanish-language-hero-section-btn {
  background: #e11d48;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease;
}

.spanish-language-hero-section-btn:hover {
  background: #be123c;
}

.spanish-language-hero-section-image {
  max-width: 320px;
  height: auto;
}

/* Popup */
.spanish-language-hero-section-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.spanish-language-hero-section-popup.active {
  display: flex;
}

.spanish-language-hero-section-popup-box {
  background: white;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  position: relative;
  overflow-y: auto;
  max-height: 95vh;
  text-align: center;
}

.spanish-language-hero-section-popup-img {
  max-width: 180px;
  margin-bottom: 15px;
}

.spanish-language-hero-section-popup-box h4 {
  font-weight: 700;
  color: #1e293b;
  font-size: 1.5rem;
}

.spanish-language-hero-section-popup-box p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 20px;
}

.spanish-language-hero-section-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  border: none;
  background: none;
  color: #000;
  cursor: pointer;
}

/* Form Styles */
.spanish-language-hero-section-form input,
.spanish-language-hero-section-form select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
}
