* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; 
}

body {
  transition: opacity 0.6s ease;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
  background: linear-gradient(180deg, #0A082f 0%, #1a1a4d 25%, #2a2a6d 50%, #1a1a4d 75%, #0A082f 100%);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

h4 {
  font-size: clamp(1rem, 2vw, 1.4rem);
}

p {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

#header.scrolled {
  background: rgba(10, 8, 47, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

nav img {
  width: clamp(120px, 15vw, 150px);
  height: auto;
  transition: transform 0.3s ease;
}

nav img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links li {
  position: relative;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  background: linear-gradient(90deg, #4A90E2, #64B5F6);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li a:hover {
  color: #4A90E2;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links li a:hover::after {
  width: 80%;
}

.nav-links li a.active {
  color: #4A90E2;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links li a.active::after {
  width: 80%;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '▾';
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 8, 47, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 150px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #ffffff;
  text-align: left;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #4A90E2;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-icon .bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-icon.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-icon.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.close-menu {
  display: none;
}

.close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  line-height: 1;
}

.close-btn:hover {
  color: #4A90E2;
  transform: scale(1.1);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 2rem;
  background: linear-gradient(135deg, #0A082f 0%, #1a1a4d 20%, #2a2a6d 40%, #4a4a8d 60%, #2a2a6d 80%, #0A082f 100%);
  background-image: linear-gradient(rgba(10, 8, 47, 0.7), rgba(26, 26, 77, 0.7)), url('./assets/images/home/hero_section.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: background-image 0.5s ease-in-out;
}

.hero-section.loading {
  background-image: none;
  background: linear-gradient(135deg, #0A082f 0%, #1a1a4d 15%, #2a2a6d 30%, #4a4a8d 45%, #6a6aad 60%, #4a4a8d 75%, #2a2a6d 90%, #0A082f 100%);
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background: linear-gradient(135deg, #0A082f 0%, #1a1a4d 15%, #2a2a6d 30%, #4a4a8d 45%, #6a6aad 60%, #4a4a8d 75%, #2a2a6d 90%, #0A082f 100%);
  }
  50% {
    background: linear-gradient(135deg, #1a1a4d 0%, #2a2a6d 15%, #4a4a8d 30%, #6a6aad 45%, #8a8acd 60%, #6a6aad 75%, #4a4a8d 90%, #1a1a4d 100%);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(10, 8, 47, 0.3) 0%, rgba(26, 26, 77, 0.2) 50%, rgba(10, 8, 47, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1800px;
  margin-bottom: 3rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  opacity: 0.9;
  max-width: 1400px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-image-container {
  position: relative;
  z-index: 2;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.how-it-works {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(26, 26, 77, 0.95) 0%, rgba(30, 144, 255, 0.3) 25%, rgba(42, 42, 109, 0.8) 50%, rgba(30, 144, 255, 0.3) 75%, rgba(26, 26, 77, 0.95) 100%);
}

.working-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.working-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
}

.working-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.working-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.working-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.working-card:hover .working-image img {
  transform: scale(1.05);
}

.working-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.working-content h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

.working-content p {
  color: #E3F2FD;
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.working-underline {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #4A90E2, #64B5F6);
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.key-benefits {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(30, 144, 255, 0.4) 0%, rgba(42, 42, 109, 0.9) 25%, rgba(75, 0, 130, 0.7) 50%, rgba(42, 42, 109, 0.9) 75%, rgba(75, 0, 130, 0.6) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  text-align: center;
  min-height: 280px;
  justify-content: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.benefit-icon {
  width: 125px;
  height: 125px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: rgba(74, 144, 226, 0.2);
  transform: scale(1.1);
}

.benefit-icon svg {
  width: 100px;
  height: 100px;
  opacity: 0.8;
  fill: #fff;
}

.benefit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-content h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
}

.benefit-content p {
  color: #E3F2FD;
  line-height: 1.8;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.content-focus, .accessible-video {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(75, 0, 130, 0.6) 0%, rgba(42, 42, 109, 0.8) 25%, rgba(30, 144, 255, 0.4) 50%, rgba(42, 42, 109, 0.8) 75%, rgba(26, 26, 77, 0.95) 100%);
}

.content-showcase {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
}

.content-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.content-grid-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.content-grid-row .content-card {
  flex: 1 1 calc(50% - 2rem); 
}

.content-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
  min-height: 100px;
}

.content-card-column{
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.content-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.content-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 226, 0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.content-card:hover .content-icon {
  background: rgba(74, 144, 226, 0.25);
  transform: scale(1.1);
}

.content-icon svg {
  width: 28px;
  height: 28px;
  opacity: 0.9;
  fill: #fff;
}

.content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-text h3 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.content-text p {
  color: #E3F2FD;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.content-visual {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-visual-single{
  flex: 0 0 100%;
}

.content-visual img {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 19px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.content-visual-single img{
  max-width: 1000px;
}

.content-visual img:hover {
  transform: scale(1.02);
}

.market-opportunity, .team-section,.accessible-video {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0A082f 0%, #1a1a4d 20%, #2a2a6d 40%, #4a4a8d 60%, #2a2a6d 80%, #0A082f 100%);
  background-image: linear-gradient(rgba(10, 8, 47, 0.7), rgba(26, 26, 77, 0.7)), url('./assets/images/hero-section background_image.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

#ourteam{
  background-image: linear-gradient(rgba(10, 8, 47, 0.7), rgba(26, 26, 77, 0.7)), url('./assets/images/aboutus/ourteam.jpg');
}

#careers{
  background-image: linear-gradient(rgba(10, 8, 47, 0.7), rgba(26, 26, 77, 0.7)), url('./assets/images/aboutus/datacenterimg.jpg');
}

.market-opportunity::before, .team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(74, 144, 226, 0.15) 0%, transparent 60%), radial-gradient(circle at 70% 70%, rgba(100, 181, 246, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.opportunity-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.opportunity-content {
  flex: 1;
  text-align: left;
}

.opportunity-content h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}

.opportunity-content h4 {
  font-weight: 500;
  font-size: 2.2rem;
}

.opportunity-content h4 {
  font-weight: 500;
}

.opportunity-content p {
  font-size: 1.1rem;
}

.opportunity-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4A90E2, #64B5F6);
  border-radius: 2px;
}

.opportunity-content ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.opportunity-content li {
  position: relative;
  padding: 1rem 0 1rem 3rem;
  color: #E3F2FD;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.opportunity-content li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid #4A90E2;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.opportunity-content li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #4A90E2, #64B5F6);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
  transition: all 0.3s ease;
}

.opportunity-content li:hover::before {
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 0 0 5px rgba(74, 144, 226, 0.3);
}

.opportunity-content li.alt-style::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #4A90E2, #64B5F6);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.opportunity-content li:nth-child(1) {
  animation: slideInLeft 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.opportunity-content li:nth-child(2) {
  animation: slideInLeft 0.6s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.opportunity-content li:nth-child(3) {
  animation: slideInLeft 0.6s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.opportunity-visual {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.opportunity-image-container {
  position: relative;
  /* background: rgba(255, 255, 255, 0.05); */
  /* backdrop-filter: blur(20px); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 20px;
  /* padding: 0.8rem; */
  transition: all 0.4s ease;
}

.opportunity-visual img {
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  border-radius: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.opportunity-content {
  animation: fadeInUp 0.8s ease forwards;
}

.opportunity-visual {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

@media (max-width: 767px) {
  .market-opportunity {
    padding: 4rem 0;
    min-height: auto;
  }
  
  .opportunity-container {
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .opportunity-content{
    text-align: center;
  }

  .opportunity-content ul li{
    text-align: left;
  }
  
  
  .opportunity-content h4 {
    font-weight: 500;
    font-size: 1.2rem;
  }
  
  .opportunity-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .opportunity-content p {
    text-align: center;
    font-size: 1rem;
  }
  
  .opportunity-visual {
    flex: none;
    width: 100%;
    order: 1;
  }
  
  .opportunity-image-container {
    padding: 0.2rem;
    max-width: 100%;
    margin: 0 auto;
    background: none;
    background-color: none;
  }
}

.target-markets {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(26, 26, 77, 0.95) 0%, rgba(42, 42, 109, 0.8) 25%, rgba(75, 0, 130, 0.6) 50%, rgba(42, 42, 109, 0.8) 75%, rgba(10, 8, 47, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.target-markets::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(100, 181, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.market-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.market-segment {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.market-segment::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
  transition: left 0.6s ease;
}

.market-segment:hover::before {
  left: 100%;
}

.market-segment:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 40px rgba(74, 144, 226, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.market-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.market-info h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
}

.market-info h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4A90E2, #64B5F6);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.market-segment:hover .market-info h3::after {
  width: 60px;
}

.market-info p {
  color: #E3F2FD;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.9;
}

.market-visual {
  flex: 0 0 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.market-image-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 5%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(100, 181, 246, 0.1));
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.market-segment:hover .market-image-wrapper {
  transform: rotate(5deg) scale(1.1);
  border: 2px solid rgba(74, 144, 226, 0.4);
  box-shadow: 0 15px 30px rgba(74, 144, 226, 0.3);
}

.market-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(1.1) contrast(1.1);
}

.market-segment:hover .market-visual img {
  transform: scale(1.05);
}

.market-segment:nth-child(even) {
  flex-direction: row-reverse;
}

.market-segment:nth-child(even) .market-info h3::after {
  left: auto;
  right: 0;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.market-segment {
  animation: slideInUp 0.6s ease forwards;
}

.market-segment:nth-child(1) { animation-delay: 0.1s; }
.market-segment:nth-child(2) { animation-delay: 0.2s; }
.market-segment:nth-child(3) { animation-delay: 0.3s; }
.market-segment:nth-child(4) { animation-delay: 0.4s; }

.team-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.team-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
}

.team-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4A90E2, #64B5F6);
  border-radius: 2px;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.team-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
  border-left: 3px solid transparent;
}

.team-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid #4A90E2;
  transform: translateX(5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.team-item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  max-width: 80%;
  text-align: right;
  border-left: none;
  border-right: 3px solid transparent;
}

.team-item:nth-child(even):hover {
  border-right: 3px solid #4A90E2;
  border-left: none;
  transform: translateX(-5px);
}

.team-item:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
  max-width: 80%;
  text-align: left;
}

.team-item h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
}

.team-item h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4A90E2, #64B5F6);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.team-item:hover h3::after {
  width: 60px;
}

.team-item:nth-child(even) h3::after {
  left: auto;
  right: 0;
}

.team-item p {
  color: #E3F2FD;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
}

.team-item:nth-child(1) {
  animation: slideInLeft 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.team-item:nth-child(2) {
  animation: slideInRight 0.6s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.team-item:nth-child(3) {
  animation: slideInLeft 0.6s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.team-item:nth-child(4) {
  animation: slideInRight 0.6s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .team-section {
    padding: 4rem 0;
  }
  
  .team-container {
    padding: 0 1rem;
  }
  
  .team-item,
  .team-item:nth-child(even),
  .team-item:nth-child(odd) {
    max-width: 100%;
    margin: 0;
    text-align: left;
    border-left: 3px solid transparent;
    border-right: none;
  }
  
  .team-item:hover,
  .team-item:nth-child(even):hover {
    border-left: 3px solid #4A90E2;
    border-right: none;
    transform: translateX(5px);
  }
  
  .team-item h3::after,
  .team-item:nth-child(even) h3::after {
    left: 0;
    right: auto;
  }
  
  .team-item h3 {
    font-size: 1.3rem;
  }
  
  .team-item p {
    font-size: 1rem;
  }
}

.career-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.career-header {
  text-align: center;
  margin-bottom: 4rem;
}

.career-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
}

.career-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4A90E2, #64B5F6);
  border-radius: 2px;
}

.career-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.career-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
  border-left: 3px solid transparent;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.career-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid #4A90E2;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.career-item h3 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
}

.career-item h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4A90E2, #64B5F6);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.career-item:hover h3::after {
  width: 50px;
}

.career-item p {
  color: #E3F2FD;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
}

.career-item:nth-child(1) {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.career-item:nth-child(2) {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.career-item:nth-child(3) {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.career-item:nth-child(4) {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.career-item:nth-child(5) {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.career-item:nth-child(6) {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .career-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .career-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .career-item {
    min-height: 160px;
  }
}

@media (max-width: 767px) {
  .career-section {
    padding: 4rem 0;
  }
  
  .career-container {
    padding: 0 1rem;
  }
  
  .career-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .career-item {
    min-height: 140px;
    padding: 1.5rem;
  }
  
  .career-item h3 {
    font-size: 1.2rem;
  }
  
  .career-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .career-item {
    padding: 1.2rem;
    min-height: 120px;
  }
  
  .career-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .career-item p {
    font-size: 0.9rem;
  }
}

.contact-section {
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(10, 8, 47, 0.95) 0%, rgba(26, 26, 77, 0.9) 50%, rgba(10, 8, 47, 0.95) 100%);
}

.contact-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.contact-image {
  flex: 1;
}

.contact-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-info {
  flex: 0 0 400px;
  text-align: center;
}

.location-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
}

.location-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.location-card h3 {
  margin-bottom: 1rem;
}

.location-card p {
  color: #E3F2FD;
  line-height: 1.6;
}

.contact-button {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #4A90E2, #357ABD);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.contact-button:hover::before {
  left: 100%;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
  background: linear-gradient(135deg, #357ABD, #4A90E2);
}

.main-footer {
  background: linear-gradient(180deg, rgba(10, 8, 47, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  padding: 3rem 0 1rem;
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-brand .footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #E3F2FD;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: rgba(74, 144, 226, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.social-links a img {
  width: 20px;
  height: 20px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links ul,
.contact-list {
  list-style: none;
}

.footer-links ul li,
.contact-list li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a,
.contact-list li a {
  color: #E3F2FD;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links ul li a:hover,
.contact-list li a:hover {
  color: #4A90E2;
}

.contact-list img {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  text-align: center;
  /* padding-top: 2rem; */
}

.footer-bottom p {
  color: #B0BEC5;
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4A90E2, #357ABD);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.back-to-top img {
  width: 20px;
  height: 20px;
}

.underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4A90E2, #64B5F6);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
    padding: 0 3rem;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero-content p {
    font-size: 1.4rem;
  }
}

@media (max-width: 1399px) and (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .hero-section {
    padding: 6rem 2rem 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .hero-content {
    margin-bottom: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
  }

  .content-showcase {
    gap: 3rem;
  }
  
  .content-card {
    padding: 1.8rem;
    min-height: 90px;
  }
  
  .content-icon {
    width: 55px;
    height: 55px;
  }
  
  .content-icon img {
    width: 26px;
    height: 26px;
  }
  
  .content-text h3 {
    font-size: 1.3rem;
  }
  
  .content-text p {
    font-size: 1.05rem;
  }
  
  .content-visual {
    flex: 0 0 42%;
  }
  
  .market-showcase {
    gap: 2.5rem;
  }
  
  .market-segment {
    padding: 1.5rem;
    min-height: 160px;
  }
  
  .market-info h3 {
    font-size: 1.4rem;
  }
  
  .market-info p {
    font-size: 1.05rem;
  }
  
  .market-image-wrapper {
    width: 130px;
    height: 130px;
  }
  
  .market-visual {
    flex: 0 0 130px;
  }
  
  .contact-content {
    gap: 2.5rem;
  }
  
  .contact-info {
    flex: 0 0 380px;
  }
  
  .location-card {
    padding: 2rem;
  }
  
  .location-card h3 {
    font-size: 1.4rem;
  }
  
  .location-card p {
    font-size: 1.05rem;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-section {
    padding: 5rem 1.5rem 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-content {
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .working-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .working-card {
    max-width: none;
  }
  
  .working-image {
    height: 160px;
  }
  
  .working-content {
    padding: 1.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .benefit-card {
    padding: 2rem 1.5rem;
    min-height: 240px;
  }
  
  .benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
  
  .benefit-icon svg {
    width: 80px;
    height: 80px;
  }
  
  .content-focus {
    padding: 5rem 0;
  }
  
  .content-showcase {
    gap: 3rem;
  }
  
  .content-card {
    padding: 1.8rem;
    min-height: 85px;
  }
  
  .content-icon {
    width: 50px;
    height: 50px;
  }
  
  .content-icon img {
    width: 24px;
    height: 24px;
  }
  
  .content-text h3 {
    font-size: 1.2rem;
  }
  
  .content-text p {
    font-size: 1rem;
  }
  
  .content-visual {
    flex: 0 0 40%;
  }

    .target-markets {
    padding: 5rem 0;
  }
  
  .market-showcase {
    gap: 2rem;
  }
  
  .market-segment {
    padding: 2rem;
    min-height: 140px;
  }
  
  .market-info h3 {
    font-size: 1.3rem;
  }
  
  .market-info p {
    font-size: 1rem;
  }
  
  .market-image-wrapper {
    width: 100px;
    height: 100px;
  }
  
  .market-visual {
    flex: 0 0 120px;
  }
  
  .contact-content {
    gap: 2rem;
  }
  
  .contact-info {
    flex: 0 0 360px;
  }
  
  .location-card {
    padding: 1.8rem;
  }
}

@media (max-width: 767px) {
  .hero-section{
    background-image: linear-gradient(rgba(10, 8, 47, 0.7), rgba(26, 26, 77, 0.7)), url('./assets/images/home/hero_section_mobile.png');
  }
  
  .container {
    padding: 1rem 0;
  }

  nav {
    padding: 1rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 8, 47, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 3rem 0.25rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    min-width: 200px;
    text-align: center;
  }

  .nav-links li {
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0.5rem 0;
    display: block;
  }

  .dropdown-menu li{
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .dropdown-menu li a{
    font-size: 1rem;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-toggle::after {
    float: right;
  }

  .menu-icon {
    display: flex;
  }

  .close-menu {
    display: block !important;
    align-self: flex-end;
    margin-bottom: 1rem;
    margin-right: 1rem;
  }

  .hero-section {
    padding: 4rem 1rem 2rem;
    height: 100vh;
  }

  .small-hero{
    height: auto;
    flex-direction: column;
  }
  
  .hero-section.loading {
    animation: gradientShift 2s ease-in-out infinite;
  }

  .hero-content {
    margin-bottom: 2rem;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero-content p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .how-it-works,
  .key-benefits,
  .contact-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .working-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .working-card {
    min-width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .working-image {
    height: 180px;
  }

  .working-content {
    padding: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .content-focus {
    padding: 4rem 0;
    min-height: auto;
  }
  
  .content-showcase {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .content-grid {
    order: 2;
    gap: 1.5rem;
  }
  
  .content-visual {
    flex: none;
    width: 100%;
    order: 1;
  }
  
  .content-card {
    padding: 1.5rem;
    min-height: 80px;
  }
  
  .content-icon {
    width: 45px;
    height: 45px;
  }
  
  .content-icon img {
    width: 22px;
    height: 22px;
  }
  
  .content-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  
  .content-text p {
    font-size: 0.95rem;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .benefit-icon svg {
    width: 40px;
    height: 40px;
  }

  .target-markets {
    padding: 4rem 0;
    min-height: auto;
  }
  
  .market-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .market-segment {
    flex-direction: column !important;
    text-align: flex-start;
    padding: 1rem;
    min-height: auto;
    gap: 1.5rem;
    border-radius: 10px;
  }
  
  .market-segment:nth-child(even), .market-segment:nth-child(odd) {
    flex-direction: row !important;
  }

  .market-info h3::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }
  
  .market-segment:nth-child(even) .market-info h3::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }

  .market-segment:nth-child(odd) {
    flex-direction: row-reverse !important;
  }

  .market-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  
  .market-info p {
    font-size: 0.95rem;
  }
  
  .market-image-wrapper {
    width: 150px;
    height: 150px;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .social-links {
    justify-content: center;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.8rem;
  }

  nav {
    padding: 0.8rem;
  }

  .close-btn {
    font-size: 2rem;
    padding: 0.3rem;
  }

  .hero-section {
    padding: 3rem 0.8rem 2rem;
  }

  .hero-content {
    margin-bottom: 1.5rem;
  }

  .hero-content h1 {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: clamp(0.85rem, 4vw, 1rem);
  }

  .how-it-works,
  .key-benefits,
  .contact-section {
    padding: 2.5rem 0;
  }

  .section-header, .opportunity-content  {
    margin-bottom: 2rem;
  }

  .section-header h2, .opportunity-content  h2 {
    font-size: 1.2rem;
  }

  .section-header p, .opportunity-content p {
    font-size: 0.85rem;
  }

  .working-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .working-card {
    max-width: 450px;
    margin: 0 auto;
  }

  .working-image {
    height: 160px;
  }

  .working-content {
    padding: 1.2rem;
  }

  .working-content h3 {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .working-content p {
    font-size: clamp(0.8rem, 3vw, 0.95rem);
  }

  .content-focus {
    padding: 3rem 0;
  }
  
  .content-showcase {
    gap: 2rem;
  }
  
  .content-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
    min-height: auto;
  }
  
  .content-icon {
    align-self: center;
    width: 50px;
    height: 50px;
  }
  
  .content-icon img {
    width: 24px;
    height: 24px;
  }
  
  .content-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .content-text p {
    font-size: 0.9rem;
  }

  .target-markets {
    padding: 3rem 0;
  }
  
  .market-showcase {
    gap: 1.5rem;
  }
  
  .market-segment {
    padding: 0.5rem;
    gap: 0.8rem;
  }
  
  .market-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .market-info p {
    font-size: 0.9rem;
  }
  
  .market-image-wrapper {
    width: 150px;
    height: 150px;
  }

  .location-card {
    padding: 1.5rem 1rem;
  }

  .location-card h3 {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .location-card p {
    font-size: clamp(0.8rem, 3vw, 0.95rem);
  }

  .contact-button {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }

  .main-footer {
    padding: 2rem 0 1rem;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 0.8rem;
    right: 0.8rem;
  }

  .back-to-top img {
    width: 18px;
    height: 18px;
  }
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a:focus,
button:focus {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
}

.feature{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 6rem;
  background: linear-gradient(180deg, rgba(10, 8, 47, 0.95) 0%, rgba(26, 26, 77, 0.9) 50%, rgba(10, 8, 47, 0.95) 100%);
}

.feature-section {
  display: grid; 
  grid-template-columns: 65% 35%;
  gap: 2rem;
}

.feature-section-reverse{
  grid-template-columns: 35% 65%;
}

.feature-card {
  background: #10124d;
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  color: white;
}

.feature-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.feature-text p {
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.feature-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.column-layout{
  flex-direction: column;
  gap: 2rem;
}

.flixs-command .opportunity-content h2::after{
  display: none;
}

.flixs-command img{
  margin-top: -10rem;
}

.flixs-command .opportunity-content{
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  .feature{
    padding: 1rem;
  }

  .feature-section {
    grid-template-columns: 1fr; 
  }

  .feature-card{
    flex-direction: column;
    gap: 1rem;
  }

  .feature-text h2 {
    font-size: 1.5rem;
  }

  .content-grid-row .content-card {
    flex: 1 1 calc(100% - 2rem); 
  }
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  font-size: 1rem;
  color: #ddd;
  text-decoration: none;
  background: linear-gradient(to right, #2196F3, #4fc3f7);
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.learn-more-btn:active {
  transform: scale(0.97);
}

.email-container {
  display: flex;
  align-items: center;
  background-color: #0d0b27; 
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.75rem;
  width: 500px;
  font-family: sans-serif;
  margin-top: 0.25rem;
}

.email-container i {
  font-size: 1.2rem;
  color: #aaa;
  margin-left: 14px;
}

.email-container input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px;
  color: #ccc;
  font-size: 0.95rem;
}

.email-container input::placeholder {
  color: #888;
}

.email-btn {
  background-color: #2196F3;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.email-btn:hover {
  background-color: #4fc3f7;
}

.single-header{
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .learn-more-btn {
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 12px;
  }
  
  .email-container {
    padding: 0.25rem;
    width: 92vw;
    font-family: sans-serif;
    margin-top: 0.25rem;
  }
  
  .email-container i {
    font-size: 1.2rem;
    margin-left: 14px;
  }

  .email-container input {
    padding: 10px;
    font-size: 0.95rem;
  }

  .email-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .flixs-command img{
    margin-top: -5rem;
  }

  .single-header{
    margin-top: 2.5rem !important;
  }

  .footer-content{
    flex-direction: column;
    gap: 1rem;
  }
}

#loader {
  position: fixed;
  inset: 0;
  background: #111; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 6px solid #444;
  border-top: 6px solid #00BFFF;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-out {
  animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}