* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  background: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
}

.header {
  background: rgba(245, 247, 250, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.25rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  padding: 1rem 2rem;
}

/* Prevent layout shift */
body {
  padding-top: 90px;
}

body.header-scrolled {
  padding-top: 80px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
}

.logo-container a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container span {
  color: #000 !important;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
  flex: 1;
  justify-content: center;
  margin: 0 2rem;
}

.nav-item {
  position: relative;
}

/* Desktop hover behavior */
@media (min-width: 1025px) {
  .nav-item.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0ms;
  }

  .nav-item.has-dropdown .dropdown {
    transition-delay: 150ms;
  }

  .nav-item.has-dropdown:hover .chevron {
    transform: rotate(180deg);
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  color: #333;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover {
  color: #1E88E5;
  background: rgba(30, 136, 229, 0.08);
}

.chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-item.active .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
  min-width: 620px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  z-index: 1001;
  pointer-events: none;
}

.dropdown.show,
.nav-item:hover .dropdown,
.nav-item.active .dropdown {
  pointer-events: auto;
}

.nav-item.active .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem;
  color: #555;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  border: 1px solid transparent;
}

.dropdown-item:hover {
  background: #f0f7ff;
  color: #1E88E5;
  border-color: rgba(30, 136, 229, 0.15);
  transform: translateY(-1px);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
  border-radius: 8px;
  flex-shrink: 0;
  font-size: 0.875rem;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 136, 229, 0.3);
}

.dropdown-icon i {
  font-size: 0.875rem;
}

.dropdown-icon.flag-icon {
  background: transparent;
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-icon.flag-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
}

.dropdown-title {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.875rem;
  line-height: 1.4;
}

.dropdown-description {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* Mega Menu Styles */
.mega-menu .dropdown {
  min-width: 800px;
  max-width: 1000px;
}

.mega-dropdown {
  padding: 2rem;
}

.mega-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mega-section {
  display: flex;
  flex-direction: column;
}

.mega-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.mega-grid .dropdown-item {
  padding: 0.5rem;
  font-size: 0.8rem;
}

.mega-grid .dropdown-icon {
  width: 28px;
  height: 28px;
  font-size: 0.75rem;
}

.mega-grid .dropdown-title {
  font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Slide-in Menu */
.nav-menu.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  flex-direction: column;
  padding: 0;
  margin: 0;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-menu.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  width: 100%;
  /* border-bottom: 1px solid #e5e7eb; */
  /* background: #f8f9fa; */
}

.mobile-logo {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: #e5e7eb;
  color: #333;
}

/* Mobile Navigation Items */
.nav-menu.mobile-menu .nav-item {
  width: 100%;
  border-bottom: 1px solid #f1f3f4;
}

.nav-menu.mobile-menu .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0;
  background: none;
  transition: all 0.2s ease;
}

.nav-menu.mobile-menu .nav-link:hover {
  background: #f8f9fa;
  color: #2196F3;
}

.nav-menu.mobile-menu .nav-item:not(.has-dropdown) .nav-link {
  border-left: 4px solid transparent;
}

.nav-menu.mobile-menu .nav-item:not(.has-dropdown) .nav-link:hover {
  border-left-color: #2196F3;
}

/* Mobile Accordion Dropdowns */
.nav-menu.mobile-menu .dropdown {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0;
  background: #f8f9fa;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu.mobile-menu .nav-item.active .dropdown {
  max-height: 500px;
}

.nav-menu.mobile-menu .nav-item.active .chevron {
  transform: rotate(180deg);
}

/* Mobile Dropdown Items */
.nav-menu.mobile-menu .dropdown-grid {
  display: block;
  padding: 0;
}

.nav-menu.mobile-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0;
  background: none;
  font-size: 0.9rem;
  color: #555;
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
}

.nav-menu.mobile-menu .dropdown-item:hover {
  background: #fff;
  color: #1E88E5;
  border-left-color: #1E88E5;
}

.nav-menu.mobile-menu .dropdown-icon {
  width: 24px;
  height: 24px;
  font-size: 0.75rem;
  margin-right: 0.75rem;
}

.nav-menu.mobile-menu .dropdown-title {
  font-weight: 500;
  font-size: 0.9rem;
}

.nav-menu.mobile-menu .dropdown-description {
  display: none;
}

/* Mobile Mega Menu */
.nav-menu.mobile-menu .mega-dropdown {
  padding: 0;
}

.nav-menu.mobile-menu .mega-content {
  display: block;
}

.nav-menu.mobile-menu .mega-section {
  margin-bottom: 0;
}

.nav-menu.mobile-menu .mega-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E88E5;
  padding: 0.75rem 2rem 0.5rem;
  margin: 0;
  border-bottom: none;
  background: #f0f7ff;
}

.nav-menu.mobile-menu .mega-grid {
  display: block;
}

/* Mobile Auth Buttons */
.mobile-auth-buttons {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  background: #f8f9fa;
  margin-top: auto;
}

.mobile-auth-buttons .btn {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.875rem;
  font-weight: 600;
}

.mobile-auth-buttons .btn:last-child {
  margin-bottom: 0;
}

/* Body scroll lock */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}


.btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.auth-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn-sign-in {
  background: transparent;
  color: #333;
  border: 1.5px solid #ddd;
  transition: all 0.3s ease;
  padding: 0.625rem 1.25rem;
}

.btn-sign-in:hover {
  background: #fff;
  border-color: #1E88E5;
  color: #1E88E5;
}

.btn-get-started {
  background: #FF6B00;
  color: #fff;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

.btn-get-started:hover {
  background: #FF5722;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 0.125rem;
  }

  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }

  .dropdown {
    min-width: 560px;
  }

  .mega-menu .dropdown {
    min-width: 700px;
  }

  .mega-content {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu:not(.mobile-menu) {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 1.5rem;
  }

  .header.scrolled {
    padding: 0.625rem 1.5rem;
  }

  .logo-img {
    height: 38px;
  }

  .nav-container {
    gap: 1rem;
  }

  .auth-buttons {
    display: none;
  }

  body {
    padding-top: 70px;
  }

  body.header-scrolled {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .nav-menu.mobile-menu {
    width: 280px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 1rem;
  }

  .header.scrolled {
    padding: 0.625rem 1rem;
  }

  .logo-img {
    height: 35px;
  }

  .nav-container {
    gap: 0.75rem;
  }

  .mobile-menu-toggle {
    padding: 0.375rem;
  }

  .mobile-logo {
    height: 35px;
    max-width: 150px;
  }

  .mobile-menu-header {
    padding: 1.25rem 1.25rem 0.875rem;
  }

  body {
    padding-top: 65px;
  }

  body.header-scrolled {
    padding-top: 55px;
  }
}

@media (max-width: 480px) {
  .nav-menu.mobile-menu {
    width: 100%;
    max-width: 100vw;
  }

  .nav-container {
    padding: 0 0.5rem;
    gap: 0.5rem;
  }

  .logo-container a {
    gap: 5px;
  }

  .logo-img {
    height: 40px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.625rem 0.75rem;
  }

  .header.scrolled {
    padding: 1.5rem 0.75rem;
  }

  .mobile-menu-toggle {
    padding: 0.25rem;
  }

  .mobile-logo {
    height: 100%;
    max-width: 140px;
  }

  .mobile-menu-header {
    padding: 1rem 1rem 0.75rem;
  }

  body {
    padding-top: 60px;
  }

  body.header-scrolled {
    padding-top: 50px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  align-items: center;
}

.hero-content {
  max-width: 100%;
  text-align: left;
  color: #ffffff;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.98;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #FF6B00;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  }
}

.btn-hero-primary:hover {
  background: #FF5722;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
  animation: none;
}

.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Hero Form Wrapper */
.hero-form-wrapper {
  width: 100%;
}

.hero-form-wrapper .apply-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.hero-form-wrapper .apply-form-header h2 {
  color: #1f2937;
}

.hero-form-wrapper .apply-form-header p {
  color: #6b7280;
}

/* Hero Cards - moved to stats section */
.hero-cards-container {
  display: none;
  /* Hide in hero, will show in stats section */
}

.info-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.info-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(30, 136, 229, 0.1);
  border-radius: 12px;
}

.info-card .icon svg {
  width: 24px;
  height: 24px;
}

.info-card .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.info-card .subtitle {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.info-card .linkMore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #072713;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-card .linkMore:hover {
  gap: 0.75rem;
  color: #1E88E5;
}

.info-card .linkMore svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.info-card .linkMore:hover svg {
  transform: translateX(4px);
}

/* Logo Carousel Section */
.logo-carousel-section {
  background: #f8f9fa;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.logo-carousel-section .carousel-title {
  color: #1f2937;
}

.carousel-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.logo-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  -webkit-mask: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
}

.logo-carousel {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scroll-logos 60s linear infinite;
  width: max-content;
}

/* Pause animation on hover for desktop */
.logo-carousel-wrapper:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.logo-item img {
  max-height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.logo-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Fade gradients for polish */
.carousel-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}

.carousel-fade-left {
  left: 0;
  background: linear-gradient(to right, #f8f9fa, transparent);
}

.carousel-fade-right {
  right: 0;
  background: linear-gradient(to left, #f8f9fa, transparent);
}

/* Infinite scroll animation */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* About WCE Section */

.about-section {
  padding: 60px 5%;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.about-header {
  text-align: left;
  margin-bottom: 60px;
}

.year-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #f0f7ff;
  color: #1E88E5;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
  text-align: left;
}

.subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 100%;
  margin: 0;
  line-height: 1.7;
  text-align: left;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  max-width: 1000px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1E88E5;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1E88E5, #64B5F6);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: #1E88E5;
  box-shadow: 0 8px 24px rgba(30, 136, 229, 0.12);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: #f0f7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.service-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-grid {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 5%;
  }

  .about-header {
    margin-bottom: 50px;
  }

  .main-title {
    font-size: 2.25rem;
  }

  .subtitle {
    font-size: 1.125rem;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 30px;
  }

  .about-content {
    margin-bottom: 0;
  }

  /* Team Image Responsive */
  .team-image-full {
    height: 450px;
    object-fit: contain;
    background: #f8f9fa;
  }

  .about-content-below p {
    font-size: 1rem;
  }

  .about-content-below .subtitle {
    font-size: 1.125rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 20px 0;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 30px 1rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  /* Team Image Mobile */
  .team-image-full {
    height: 280px;
    border-radius: 12px;
    object-fit: contain;
    background: #f8f9fa;
  }

  .about-content-below {
    padding: 0 1rem;
  }

  .about-content-below p {
    font-size: 0.9rem;
    line-height: 1.3 !important;
  }

  .about-content-below .subtitle {
    font-size: 1rem;
    line-height: 1.2;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 50px;
  }

  .about-content {
    margin-bottom: 0;
  }

  .about-content p {
    font-size: 0.9375rem;
  }

  .stats-grid {
    margin-bottom: 60px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .hero-cta {
    justify-content: center;
    align-items: center;
  }
}

/* Partners Section */
.partners-section {
  padding: 50px 5%;
  background: #ffffff;
}

.internships-section {
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 136, 229, 0.15);
  border-color: #1E88E5;
}

.partner-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #ffffff;
  font-size: 1.5rem;
}

.partner-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.5;
}

/* Expertise Section */
.expertise-section {
  padding: 50px 5%;
  background: #ffffff;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 30px 5%;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 20px 1rem;
  }
}

.expertise-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(30, 136, 229, 0.15);
  border-color: #1E88E5;
}

.expertise-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.expertise-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.expertise-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.expertise-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #4b5563;
  font-size: 0.9375rem;
}

.expertise-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1E88E5;
  font-weight: bold;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 80px;
  max-width: 1400px;
}

.about-content {
  max-width: 100%;
  text-align: left;
}

.about-content p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* New Team Image Structure */
.team-image-wrapper {
  width: 100%;
  margin: 40px 0;
}

.team-image-full {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-content-below {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.about-content-below p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.about-content-below p:last-child {
  margin-bottom: 0;
}

.about-content-below .subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.4;
  margin-bottom: 2rem;
}

/* Bento Grid Features Section */
.features-bento {
  padding: 50px 5%;
  background: #f8f9fa;
}

.features-bento-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.features-bento-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
  line-height: 1.2;
}

.features-bento-header p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 350px);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: all 0.4s ease;
  z-index: 1;
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.bento-card:hover::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.bento-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #ffffff;
}

.bento-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.bento-card-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Typography adjustments for square cards */
.bento-card-square .bento-card-title {
  font-size: 1.5rem;
}

.bento-card-square .bento-card-description {
  font-size: 0.9375rem;
}

/* Bento Grid Layout - Card Sizes */
.bento-card-wide {
  grid-column: span 3;
  grid-row: span 1;
}

.bento-card-square {
  grid-column: span 1;
  grid-row: span 1;
}

/* Responsive Bento Grid */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-card-wide {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 350px;
  }

  .bento-card-square {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 350px;
  }

  .features-bento-header h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .features-bento {
    padding: 30px 5%;
  }

  .features-bento-header {
    margin-bottom: 1.5rem;
  }

  .features-bento-header h2 {
    font-size: 2rem;
  }

  .features-bento-header p {
    font-size: 1rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.25rem;
  }

  .bento-card-wide,
  .bento-card-square {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 350px;
  }

  .bento-card-content {
    padding: 1.5rem;
  }

  .bento-card-title {
    font-size: 1.5rem;
  }

  .bento-card-description {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .features-bento {
    padding: 20px 1rem;
  }

  .features-bento-header h2 {
    font-size: 1.75rem;
  }

  .bento-card {
    min-height: 300px;
  }

  .bento-card-content {
    padding: 1.25rem;
  }

  .bento-card-title {
    font-size: 1.25rem;
  }

  .bento-card-description {
    font-size: 0.875rem;
  }
}

/* Testimonials Carousel Section */
.testimonials-section {
  padding: 50px 5%;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(30, 136, 229, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 107, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.testimonials-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
  line-height: 1.2;
}

.testimonials-header p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  padding: 3.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(30, 136, 229, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(30, 136, 229, 0.1);
  line-height: 1;
  font-weight: bold;
}

.testimonial-card.active {
  opacity: 1;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1f2937;
  position: relative;
  z-index: 1;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #FF6B00;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: #4b5563;
  font-style: italic;
  padding-left: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(30, 136, 229, 0.1);
}

.testimonial-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.testimonial-designation {
  font-size: 0.9375rem;
  color: #6b7280;
  font-weight: 500;
}

.testimonial-details {
  font-size: 1rem;
  color: #6b7280;
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border: 2px solid #1E88E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #1E88E5;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(30, 136, 229, 0.2);
}

.carousel-arrow:hover {
  background: #1E88E5;
  border-color: #1E88E5;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.3);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow.prev {
  left: -25px;
}

.carousel-arrow.next {
  right: -25px;
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(30, 136, 229, 0.3);
  color: rgba(30, 136, 229, 0.3);
}

.carousel-arrow:disabled:hover {
  background: #ffffff;
  transform: translateY(-50%);
}

/* Pagination Dots */
.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(30, 136, 229, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.pagination-dot.active {
  background: #1E88E5;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(30, 136, 229, 0.4);
}

.pagination-dot:hover {
  background: rgba(30, 136, 229, 0.4);
}

.pagination-dot.active:hover {
  background: #1565C0;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
  .testimonials-section {
    padding: 80px 5%;
  }

  .testimonials-header h2 {
    font-size: 2.25rem;
  }

  .testimonial-card {
    padding: 2.5rem;
  }

  .testimonial-card::before {
    font-size: 6rem;
    top: 0.5rem;
    left: 1.5rem;
  }

  .testimonial-text {
    font-size: 1.125rem;
  }

  .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 30px 5%;
  }

  .testimonials-header {
    margin-bottom: 3rem;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }

  .testimonials-header p {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-card::before {
    font-size: 5rem;
    top: 0.5rem;
    left: 1rem;
  }

  .testimonial-content {
    align-items: flex-start;
  }

  .testimonial-rating {
    justify-content: flex-start;
  }

  .testimonial-text {
    font-size: 1rem;
    padding-left: 0.5rem;
  }

  .testimonial-author {
    align-items: center;
  }

  .testimonial-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-arrow.prev {
    left: 5px;
  }

  .carousel-arrow.next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 20px 1rem;
  }

  .testimonials-header h2 {
    font-size: 1.75rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-card::before {
    font-size: 4rem;
    top: 0.25rem;
    left: 0.75rem;
  }

  .testimonial-text {
    font-size: 0.9375rem;
    padding-left: 0.25rem;
  }

  .testimonial-name {
    font-size: 1.125rem;
  }

  .testimonial-designation {
    font-size: 0.875rem;
  }

  .testimonial-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    transition: none;
  }

  .testimonial-card {
    transition: none;
  }
}

/* Footer */
footer {
  background: #000000;
  color: white;
  padding: 80px 5% 40px;
  margin-top: 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col-desc {
  max-width: 100%;
  padding-right: 14%;
}

.footer-col img {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col p {
  opacity: 0.9;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  margin-top: 15px;
}

.footer-col ul li {
  padding: 8px 0;
  opacity: 0.9;
  /* cursor: pointer; */
  transition: opacity 0.3s ease;
}

.footer-col ul li:hover {
  opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.9375rem;
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
  max-width: 720px;
}

.copyright span {
  display: block;
  margin-top: 0.5rem;
  opacity: 0.85;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9375rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-legal-links a:hover {
  opacity: 1;
}

.newsletter {
  display: flex;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  padding: 15px;
  border-radius: 8px 0 0 8px;
  border: none;
  font-size: 1rem;
}

.newsletter button {
  padding: 15px 25px;
  background: var(--text-dark);
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter button:hover {
  background: #222;
}

/* FAQ Section */
.faq-section {
  padding: 50px 5%;
  background: #ffffff;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 2rem;
}

.faq-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 0.75rem;
}

.faq-header p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
  max-width: 850px;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0.25rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s ease;
}

.faq-item:hover summary {
  color: #3b82f6;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(30, 136, 229, 0.10);
  color: #1E88E5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item[open] summary::after {
  content: '–';
  transform: rotate(180deg);
  background: rgba(30, 136, 229, 0.20);
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: #6b7280;
  line-height: 1.7;
  animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  margin: 0;
}

/* Apply Now Form Section */
.apply-form-section {
  padding: 50px 5%;
  background: #ffffff;
}

.apply-form-container {
  max-width: 1200px;
  margin: 0 auto;
}

.apply-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Image Placeholder */
.apply-form-image {
  height: 100%;
  min-height: 600px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.apply-form-image-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.apply-form-image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Form Styling */
.apply-form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.apply-form-header {
  margin-bottom: 2rem;
}

.apply-form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.apply-form-header p {
  font-size: 1rem;
  color: #6b7280;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: #FF6B00;
  margin-left: 0.25rem;
}

.form-input-wrapper {
  position: relative;
}

.form-input-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1rem;
  z-index: 1;
}

.form-input-wrapper input,
.form-input-wrapper select {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #1f2937;
  background: #ffffff;
  transition: all 0.3s ease;
  outline: none;
}

.form-input-wrapper input:focus,
.form-input-wrapper select:focus {
  border-color: #1E88E5;
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.form-input-wrapper input::placeholder {
  color: #9ca3af;
}

.form-input-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.form-input-wrapper select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231E88E5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.form-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: #FF6B00;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
  margin-top: 0.5rem;
  animation: pulse 2s infinite;
}

.form-submit-btn:hover {
  background: #FF5722;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
  animation: none;
}

.form-submit-btn:active {
  transform: translateY(0);
}

/* Responsive Apply Form */
@media (max-width: 1024px) {
  .apply-form-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .apply-form-image {
    min-height: 400px;
    order: -1;
  }

  .apply-form-wrapper {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .apply-form-section {
    padding: 30px 5%;
  }

  .apply-form-wrapper {
    padding: 2rem;
  }

  .apply-form-header h2 {
    font-size: 1.75rem;
  }

  .apply-form-image {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .apply-form-section {
    padding: 20px 1rem;
  }

  .apply-form-wrapper {
    padding: 1.5rem;
  }

  .apply-form {
    gap: 1.25rem;
  }
}

/* Logo Carousel Responsive */
@media (max-width: 1024px) {
  .carousel-title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .logo-track {
    gap: 3rem;
    animation-duration: 45s;
  }

  .logo-item {
    height: 70px;
    padding: 0.875rem 1.25rem;
  }

  .logo-item img {
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .logo-carousel-section {
    padding: 60px 0;
  }

  .carousel-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .logo-track {
    gap: 2rem;
    animation-duration: 35s;
  }

  .logo-item {
    height: 60px;
    padding: 0.75rem 1rem;
  }

  .logo-item img {
    max-width: 120px;
  }

  .carousel-fade {
    width: 80px;
  }
}

/* Hero Responsive Styles */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-form-wrapper .apply-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 65px);
    height: auto;
    padding: 2rem 0;
    display: flex;
    align-items: flex-start;
  }

  .hero-content-wrapper {
    padding: 2rem 5%;
    min-height: calc(100vh - 65px);
    align-items: flex-start;
    padding-top: 3rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-content {
    text-align: center;
    padding: 0;
  }

  .hero-form-wrapper .apply-form-wrapper {
    padding: 2rem;
  }

  .info-cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(100vh - 60px);
    height: auto;
    padding: 1.5rem 0;
    display: flex;
    align-items: flex-start;
  }

  .hero-content-wrapper {
    padding: 1.5rem;
    min-height: calc(100vh - 60px);
    align-items: flex-start;
    padding-top: 2rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.9375rem;
  }

  .btn-hero-primary {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .hero-form-wrapper .apply-form-wrapper {
    padding: 1.5rem;
  }

  .carousel-title {
    font-size: 1.3rem;
  }

  .logo-track {
    gap: 2rem;
    animation-duration: 30s;
  }

  .logo-item {
    height: 50px;
    padding: 0.5rem 0.75rem;
  }

  .logo-item img {
    max-width: 120px;
  }

  .carousel-fade {
    width: 60px;
  }

  /* Info Cards responsive styles */
  .info-card {
    padding: 1.5rem;
  }

  .info-card .title {
    font-size: 1.25rem;
  }

  .info-card .subtitle {
    font-size: 0.875rem;
  }

  /* Other responsive styles */

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col-desc {
    max-width: 100%;
    padding-right: 0;
  }

  .footer-col-desc {
    max-width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-legal-links {
    justify-content: center;
    gap: 1.5rem;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter input,
  .newsletter button {
    border-radius: 8px;
    margin-bottom: 10px;
  }
}

/* Reduced motion support for logo carousel */
@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }

  .logo-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .logo-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  .logo-track {
    justify-content: flex-start;
    padding: 0 2rem;
  }
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  padding: 8px 0;
}

.sticky-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #6b7280;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 70px;
}

.sticky-item:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.sticky-item.whatsapp {
  color: #25D366;
}

.sticky-item.phone {
  color: #3b82f6;
}

.sticky-item.email {
  color: #ef4444;
}

.sticky-item svg {
  margin-bottom: 4px;
}

.sticky-item span {
  font-size: 0.75rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  body {
    padding-bottom: 70px;
  }
}