:root {
  --primary-color: #0165f6;
  --secondary-color: #182844;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #6b7280;
  --background-light: #ffffff;
  --background-dark: linear-gradient(135deg, var(--secondary-color) 0%, #3d465f 100%);
  --grey-bg: #f8fafc;
  --accent-gradient: linear-gradient(135deg, var(--primary-color), #0052cc);

  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  font-weight: 400;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--background-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo a:hover {
  opacity: 0.8;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* NAVIGATION MENU */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  z-index: 100;
}



.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  font-weight: 400;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(1, 101, 246, 0.1);
  color: var(--primary-color);
}

/* CTA BUTTON */
.cta-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: #0052cc;
  transform: translateY(-1px);
}

/* NAV ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hide mobile CTA on desktop */
.mobile-cta {
  display: none;
}

/* MOBILE STYLES */
@media (max-width: 992px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo-img {
    height: 28px;
  }

  /* Show hamburger */
  .mobile-menu-toggle {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  /* Mobile menu container */
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu > li:last-child {
    border-bottom: none;
  }

  .nav-menu > li > a {
    display: block;
    padding: 1rem 0;
    font-weight: 600;
    font-size: 1rem;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(1, 101, 246, 0.03);
    padding: 0;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .dropdown-menu li {
    padding-left: 1rem;
    border-bottom: none;
  }

  .dropdown-menu a {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-gray);
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: var(--primary-color);
  }



  /* Mobile CTA */
  .mobile-cta {
    display: block;
    margin-top: 1rem;
    border-bottom: none;
  }

  .mobile-cta .cta-btn {
    color:#fff;
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    display: block;
  }
}

/* DESKTOP DROPDOWN (hover only on desktop) */
@media (min-width: 993px) {
  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .nav-container {
    padding: 0.875rem 1rem;
  }

  .logo-img {
    height: 26px;
  }

  .nav-menu {
    top: 55px;
    max-height: calc(100vh - 55px);
  }
}

.hero-about {
  position: relative;
  min-height: calc(100vh - 75px);
  max-width: 1280px;
  margin: 75px auto 0;
  display: flex;
  align-items: flex-end;
  padding: 4rem 2rem;
  border-radius: 14px;
  overflow: hidden;

  background: url("http://helium1.co/wp-content/uploads/2026/02/about-us-scaled.jpg")
    center / cover no-repeat;
}


/* Dark gradient for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.15)
    ); */
}


/* Content positioning */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 2rem 2.2rem;
  border-radius: 14px;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


/* Typography adjustments for image background */
.hero-title {
  color: #fff;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
}

.stat-label {
  color: rgba(255, 255, 255, 0.75);
}

.stat-number {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
}

.highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1rem;
  color: #ffff;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number::after {
  content: '+';
  margin-left: 2px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
}


/* .hero-visual-column {
  position: relative;
  height: 400px;
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-card {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  animation: float 6s ease-in-out infinite;
}

.floating-card svg {
  width: 100%;
  height: 100%;
}

.card-1 {
  top: 35%;
  left: 0%;
  animation-delay: 0s;
}

.card-2 {
  top: 35%;
  right: 15%;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.card-3 {
  top:50%;
  left: 28%;
  animation-delay: 4s;
} */

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(2deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}




.section {
  padding: 3rem 0;
}

.section:nth-child(even) {
  background: var(--grey-bg);
}

.section-header {
  text-align: center;
}


.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  line-height: 1.3;
}


.section-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  margin-top: 1rem;
}


.content-grid {
  align-items: center;
  margin-bottom: 64px;
}

.content-text {
  font-size: 1rem;
  line-height: 1.9;
  text-align: center;
}

.lead-text {
  font-size: 1.50rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.content-text p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}



.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(1, 101, 246, 0.15);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

.vision-section {
  padding: 5rem 0;
  background: linear-gradient(
    to bottom,
    #ffffff,
    #f8fafc
  );
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

/* Content */
.vision-content {
  max-width: 520px;
}

.vision-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.vision-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--secondary-color);
}

.vision-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
  color: #2d2f33;
  margin-bottom: 1rem;
}

.vision-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-gray);
}

/* Image */
.vision-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.vision-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .vision-content {
    max-width: 100%;
  }

  .vision-image {
    max-width: 100%;
  }
}




.fade-in-up {
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vision-wrap h2 {
  animation: fadeUp 0.8s ease-out forwards;
}

.vision-lead {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.15s;
}

.vision-sub {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}
.vision-wrap h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 0.8rem auto 0;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}



.mission-section {
  padding: 6rem 0;
  background: var(--grey-bg);
}

.mission-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.mission-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.mission-header p {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.mission-item {
  padding: 2.5rem;
  border-radius: 18px;
  background: #ffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.mission-item span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.75rem;
}

.mission-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.mission-item p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}


.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.why-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(1, 101, 246, 0.15);
}

.why-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(1, 101, 246, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.why-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.why-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.map-container {
  position: relative;
  padding-bottom: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Map image */
.map-container img {
  max-width: 1000px;
  width: 100%;
  height: auto;
  border-radius: 14px;

}

/* Overlay wrapper */
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding-bottom: 64px;
}

/* Text styling */
.closing-text {
  
  padding: 1rem ;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  line-height: 1.5;

  /* Glass effect */
  background: linear-gradient(
    135deg,
    rgba(1, 101, 246, 0.75),
    rgba(0, 212, 255, 0.65)
  );
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(1, 101, 246, 0.35);
  backdrop-filter: blur(6px);
}
/* Mobile & small tablets */
@media (max-width: 768px) {

  .map-container img {
    border-radius: 12px;
  }

  .closing-text {
    max-width: 90%;
    font-size: 1.15rem;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    line-height: 1.45;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .closing-text {
    font-size: 1rem;
    padding: 0.85rem 1rem;
    font-weight: 500;
  }
}






/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  padding: 40px 0;
  background: linear-gradient(180deg,#ffffff 0%, #f9fafb 100%);
  text-align: center;
  overflow: hidden;
}

.section-subtitle {
  display:inline-block;
  background: rgba(1,101,246,0.1);
  color: var(--primary-color);
  padding:6px 14px;
  font-size:12px;
  border-radius:20px;
  margin-bottom:15px;
}

.section-title-1 {
  font-size:40px;
  color: var(--secondary-color);
  margin-bottom:50px;
}
.section-title-1 span{
  font-style: italic;
}
.testimonial-wrapper {
  display:flex;
  flex-direction:column;
  gap:30px;
}



.testimonial-track {
  display:flex;
  gap:20px;
  padding: 10px;
  width: max-content;
}

.testimonial-card {
  background: var(--background-light);
  padding:14px;
  width:320px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  text-align:left;
  transition:0.3s;
}

.testimonial-card p {
  font-size:14px;
  color: var(--text-gray);
  margin-bottom:15px;
  line-height:1.6;
}

/* Profile */
.profile{
  display:flex;
  align-items:center;
  margin-bottom:15px;
}

.profile img{
  width:50px;
  height:50px;
  border-radius:50%;
  margin-right:15px;
}

.profile h4{
  font-size:16px;
  color: var(--secondary-color);
}

.profile p{
  font-size:13px;
  color: var(--text-gray);
}


.stars {
  color:#fbbf24;
}

/* Animation */
.scroll-left .testimonial-track {
  animation: scrollLeft 40s linear infinite;
}

/* RIGHT SCROLL */
.scroll-right .testimonial-track {
  animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause on hover */
.testimonial-row:hover .testimonial-track {
  animation-play-state: paused;
}

/* Responsive */
@media(max-width:768px){
  .testimonial-card {
    width:260px;
  }
  .section-title {
    font-size:28px;
  }
}








/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(1, 101, 246, 0.06),
    rgba(99, 102, 241, 0.04)
  );
  padding: 64px 0;
}

.cta-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}

.cta-container h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.cta-container p {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* CTA Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(1, 101, 246, 0.35);
}

.cta-secondary {
  border: 2px solid rgba(1, 101, 246, 0.25);
  color: var(--primary-color);
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(1, 101, 246, 0.08);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 320px;
    margin: auto;
  }
}







.footer {
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  
  flex-direction: column;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--text-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}
.footer-description {
  max-width: 360px;
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-primary);
  transform: translateY(-3px);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual-column {
    height: 300px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .content-grid,
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .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(5px, -5px);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .closing-text {
    font-size: 1.4rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section {
    padding: 4rem 0;
  }

  .service-card,
  .why-card,
  .vm-card {
    padding: 2rem 1.5rem;
  }
}

.visual-box svg {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {

  .hero-about {
    max-height: none;
    padding: 4rem 1.5rem;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .hero-visual-column {
    height: 350px;
  }

  .floating-card {
    width: 130px;
    height: 130px;
  }

}


@media (max-width: 768px) {

  .hero-about {
    margin-top: 40px;
    padding: 3rem 1.25rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text-column {
    animation: fadeInUp 0.8s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .stat-item {
    text-align: center;
  }

  .hero-visual-column {
    height: 300px;
  }

  .floating-card {
    width: 120px;
    height: 120px;
  }

  .card-1 {
    top: 20%;
    left: 5%;
  }

  .card-2 {
    top: 10%;
    right: 5%;
  }

  .card-3 {
    top: 55%;
    left: 30%;
  }

}


@media (max-width: 480px) {

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-visual-column {
    height: 120px;
  }

  .floating-card {
    width: 100px;
    height: 100px;
    border-radius: 16px;
  }

}


    .popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.popup-modal {
  background: #fff;
  width: 100%;
  max-width: 720px;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;
}

.popup-title {
  margin-bottom: 20px;
  text-align: center;
}

/* Form layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: span 2;
}

input, select, textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button[type="submit"] {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
}




.footer-newsletter {
  margin-top: 20px;
}

.newsletter-title {
  color: #fff !important;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  max-width: 320px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px;
  color: #333;
  font-size: 14px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #777;
}

.newsletter-btn {
  background: #0165f6 !important;
  border: none;
  width: 20% !important;
  border-radius: 6px;
  color: #111;
  font-size: 14px;
  height: 38px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 0px !important;
}

.newsletter-btn:hover {
  background: #bbcbe2;
}

.success-state {
  display: none;
  color: #0165f6;
  margin-top: 15px;
  font-size: 14px;
}