
/* Remove horizontal scrollbar */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  padding: 0;
}

/* Hide scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(18, 22, 24, 0.8);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #00B5D8, #A7F3F3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #A7F3F3, #00B5D8);
}

/* Hide horizontal scrollbar specifically */
::-webkit-scrollbar:horizontal {
  display: none;
}

/* Mouse Tail Effect */
.mouse-tail {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(167, 243, 243, 0.8) 0%, rgba(0, 181, 216, 0.6) 30%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease-out;
  box-shadow: 
    0 0 20px rgba(167, 243, 243, 0.5),
    0 0 40px rgba(0, 181, 216, 0.3),
    0 0 60px rgba(167, 243, 243, 0.2);
}

.mouse-tail::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: rgba(167, 243, 243, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(167, 243, 243, 0.8);
}

.tail-segment {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, rgba(167, 243, 243, 0.6) 0%, rgba(0, 181, 216, 0.4) 50%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.2s ease-out;
  box-shadow: 0 0 15px rgba(167, 243, 243, 0.4);
}

.tail-segment:nth-child(2) {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(167, 243, 243, 0.5) 0%, rgba(0, 181, 216, 0.3) 50%, transparent 80%);
  transition-delay: 0.05s;
}

.tail-segment:nth-child(3) {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(167, 243, 243, 0.4) 0%, rgba(0, 181, 216, 0.2) 50%, transparent 80%);
  transition-delay: 0.1s;
}

.tail-segment:nth-child(4) {
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(167, 243, 243, 0.3) 0%, rgba(0, 181, 216, 0.15) 50%, transparent 80%);
  transition-delay: 0.15s;
}

.tail-segment:nth-child(5) {
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(167, 243, 243, 0.2) 0%, rgba(0, 181, 216, 0.1) 50%, transparent 80%);
  transition-delay: 0.2s;
}

@media (hover: none) {
  .mouse-tail,
  .tail-segment {
    display: none;
  }
}


.expertise-card {
  background: rgba(18,22,24,0.92);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,181,216,0.13);
  border: 1px solid rgba(255,255,255,0.13);
  overflow: hidden;
  padding: 1.1rem 1rem 1.1rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  position: relative;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.expertise-card:hover {
  background: rgba(18,22,24,0.98);
  box-shadow: 0 12px 48px #00B5D8, 0 0 24px #A7F3F3;
  transform: translateY(-4px) scale(1.03);
}
.expertise-card-icon {
  margin-bottom: 0.5rem;
  background: none;
  border-radius: 50%;
  padding: 0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.expertise-card-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #A7F3F3;
  letter-spacing: 0.5px;
  margin-bottom: 0.1rem;
  text-shadow: 0 2px 12px rgba(0,181,216,0.13);
}
.expertise-card-subtitle {
  font-size: 0.92rem;
  color: #e0f7fa;
  letter-spacing: 0.2px;
}
/* Expertise Section Custom Classes */
.expertise-container {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  position: relative;
}

/* Expertise Section */
.area-of-expertise {
  position: relative;
}

.expertise-header {
  max-width: 700px;
  margin: 0 auto 2.2rem auto;
  padding: 0 1rem;
}
.expertise-title {
  font-size: 2rem;
  text-align: center;
  color: #A7F3F3;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}
.expertise-desc {
  font-size: 1.08rem;
  text-align: center;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* --- Expertise Card Grid and Card Styles --- */
.expertise-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .expertise-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 700px) {
  .expertise-card-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
}
.expertise-card {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,181,216,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.expertise-card:hover {
  background: rgba(167,243,243,0.13);
  box-shadow: 0 4px 16px #A7F3F3;
  transform: translateY(-4px) scale(1.03);
}
.expertise-card-icon {
  margin-bottom: 0.5rem;
}
.expertise-card-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #A7F3F3;
}
.expertise-card-subtitle {
  font-size: 0.92rem;
  color: #e0f7fa;
}
/* Custom About Us Section Heading */
.about-us-heading {
  font-size: 2rem;
  color: #A7F3F3;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,181,216,0.13);
}

/* Custom About Us Section Intro Paragraph */
.about-us-intro {
  font-size: 1.05rem;
  color: #e0f7fa;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 1.2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.navbar {
  min-height: unset;
  height: auto;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.container.nav-flex {
  min-height: 44px;
  height: 44px;
  display: flex;
  align-items: center;
}
.nav-logo img.logo-img {
  height: 44px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  align-self: center;
  opacity: 0.7;
  filter: brightness(0.85);
}
.nav-links {
  gap: 1.5rem;
}
.nav-links a {
  font-size: 1.08rem;
  line-height: 1.7;
  padding: 0.25rem 0.7rem;
}
.nav-social-link svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}
/* --- About Us Card Reference Style --- */
.about-us-card-ref {
  position: relative;
  margin: 0.7rem 0.7rem 0.7rem 0;
  max-width: 340px;
  width: 100%;
  min-width: 260px;
  padding: 0;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 181, 216, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(18, 22, 24, 0.92);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
  /* Removed misplaced properties outside selector block */
.about-us-col-2, .about-us-col-3 {
  justify-content: flex-start;
}
.about-us-card-mastery,
.about-us-card-capabilities {
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .about-us-row-3col {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: stretch;
  }
  .about-us-col {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .about-us-card-mastery,
  .about-us-card-capabilities {
    min-height: unset;
  }
}
/* --- About Us 3-Column Row Layout --- */
.about-us-row-3col {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  align-items: stretch;
  justify-content: center;
  margin-top: 2rem;
    height: 100%;
}
  /* Force equal height for About Us columns and card fill */
  .about-us-col-1,
  .about-us-col-2 {
    /* flex: 1 1 0;*/
    height: auto; 
  }
  .about-us-col-2 > .why-vowsit-card {
    min-height: 0;
    display: flex;
    flex-direction: column;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: unset;
}
.about-us-col-2, .about-us-col-3 {
  justify-content: center;
}
@media (max-width: 900px) {
  .about-us-row-3col {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .about-us-col {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}
/* Glassy Panel Utility */
.glassy {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 2rem;
  z-index: 100;
  background: var(--bg-dark-alt);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
}
.nav-logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--teal2);
  text-shadow: 0 2px 12px var(--teal1);
  letter-spacing: 2px;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #D0D0D0;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 0.2rem 0.5rem;
  border-radius: 0;
  font-size: 16px;
  line-height: 28px;
  transition: color 0.2s, box-shadow 0.2s;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover {
  color: #A7F3F3;
  box-shadow: 0 0 8px #00E0FF;
  border-bottom: 2px solid #00E0FF;
}
.nav-cta {
  margin-left: 2rem;
  padding-bottom: 0.3rem;
  font-size: 1rem;
}
.about-us-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
/* Removed misplaced properties outside selector block */
  border-bottom: 1.5px solid rgba(167,243,243,0.18);
  position: relative;
  z-index: 1;
  min-height: 38px;
  padding: 0.18rem 0.7rem 0.18rem 0.7rem;
}
/* --- About Us Section Styles --- */
.about-us-section {
  padding: 2.2rem 0 1.5rem 0;
  background: linear-gradient(135deg, rgba(18,22,24,0.97) 70%, rgba(0,181,216,0.09) 100%);
  box-shadow: 0 8px 32px rgba(0,181,216,0.09);
  border-radius: 18px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.about-us-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #A7F3F3;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.about-us-description {
  font-size: 1.08rem;
  color: #e0f7fa;
  margin-bottom: 2.2rem;
  text-align: left;
  line-height: 1.7;
}
.about-us-highlight {
  color: #A7F3F3;
}
.about-us-accent {
  color: #00B5D8;
  font-weight: 600;
}
.about-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  justify-content: center;
}
.about-us-grid.grid-2-cols-gap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 1.2rem 0 2.5rem 0;
  justify-items: center;
}
@media (max-width: 900px) {
  .about-us-grid.grid-2-cols-gap {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.about-us-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
.about-us-card-wrapper {
  width: 300px;
  position: relative;
  margin: 0.5rem 0.4rem;
  box-shadow: 0 4px 16px rgba(0,181,216,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(18,22,24,0.92);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.about-us-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.2rem 0.7rem 1.2rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid rgba(167,243,243,0.18);
  position: relative;
  z-index: 1;
}
.about-us-card-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #A7F3F3;
  letter-spacing: 0.5px;
}
.about-us-card-content {
  padding: 1.2rem 1.2rem 1.7rem 1.2rem;
  z-index: 1;
}
.about-us-card-content-sm {
  padding: 1.2rem 1.2rem 1.7rem 1.2rem;
}
.about-us-card-desc {
  font-size: 1rem;
  color: #e0f7fa;
  margin-bottom: 0.7rem;
}
.about-us-card-note {
  margin-top: 0.7rem;
  font-size: 0.98rem;
  color: #A7F3F3;
}
.about-us-card-list {
  padding-left: 1.2rem;
  color: #e0f7fa;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.about-us-card-note-list {
  margin-top: 0.7rem;
  font-size: 0.98rem;
  color: #A7F3F3;
  padding-left: 1.2rem;
}
@media (max-width: 900px) {
  .about-us-row {
    flex-direction: column;
    align-items: center;
  }
  .about-us-card-wrapper {
    width: 95%;
    max-width: 340px;
  }
}
.nav-links a {
  color: #181A1B;
  text-decoration: none;
  font-weight: 500;
  padding: 0.3em 0.7em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover {
  background: rgba(0,181,216,0.08);
  color: #A7F3F3;
  box-shadow: 0 0 8px #00B5D8;
  border-bottom: 2px solid #00B5D8;
}
.nav-links a {
  color: #181A1B;
  text-decoration: none;
  font-weight: 500;
  padding: 0.3em 0.7em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.nav-links a:hover {
  background: rgba(0,181,216,0.08);
  color: #A7F3F3;
  box-shadow: 0 0 8px #00B5D8;
}
.navbar.glassy {
  min-height: 56px;
  display: flex;
  align-items: center;
}
.container.nav-flex {
  min-height: 44px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Legacy header visual fidelity */
.navbar.glassy {
  position: relative;
  border-bottom: none;
  box-shadow: 0 6px 24px rgba(0, 181, 216, 0.10);
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(12px);
  z-index: 10;
}
.container.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}
.nav-logo {
/* About Us heading matches oldhtml */
/* About Us heading matches oldhtml */
.about-us-title {
  font-size: 2rem;
  color: #A7F3F3;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,181,216,0.13);
  font-family: var(--font-main);
}
.about-us-title-center {
  text-align: center;
}
.about-us-desc {
  font-size: 1.05rem;
  color: #e0f7fa;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 1.2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-main);
}
.about-us-accent {
  color: #A7F3F3;
}
.about-us-highlight {
  color: #A7F3F3;
  font-weight: 600;
}
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  align-self: center;
  opacity: 0.6;
  filter: brightness(0.8);
}
.nav-links {
  display: flex;
  gap: 1rem;
}
.nav-social-flex {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-social-link {
  display: inline-block;
  vertical-align: middle;
}
.nav-bottom-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(0,181,216,0.18), rgba(167,243,243,0.18));
  border-radius: 1px;
}
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem 2rem;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(0, 181, 216, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(167, 243, 243, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 30%, rgba(44, 62, 80, 0.15) 0%, transparent 70%),
    linear-gradient(135deg, #0f1419 0%, #1a1d23 40%, #252b36 70%, #2c3e50 100%);
  overflow: hidden;
}

/* Subtle star field */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(0, 181, 216, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 35% 15%, rgba(167, 243, 243, 0.3) 0.5px, transparent 0.5px),
    radial-gradient(circle at 65% 45%, rgba(0, 181, 216, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 85% 75%, rgba(167, 243, 243, 0.4) 0.8px, transparent 0.8px),
    radial-gradient(circle at 25% 85%, rgba(0, 181, 216, 0.2) 1.2px, transparent 1.2px),
    radial-gradient(circle at 75% 35%, rgba(167, 243, 243, 0.3) 0.6px, transparent 0.6px);
  background-size: 
    250px 250px, 180px 180px, 220px 220px, 200px 200px, 160px 160px, 190px 190px;
  background-position: 
    0 0, 80px 40px, 160px 80px, 40px 120px, 120px 160px, 200px 20px;
  animation: elegantFloat 20s ease-in-out infinite;
  opacity: 0.6;
  pointer-events: none;
}

/* Gentle cosmic accent */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    linear-gradient(45deg, transparent 49%, rgba(0, 181, 216, 0.03) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(167, 243, 243, 0.02) 50%, transparent 51%);
  background-size: 300px 300px, 250px 250px;
  background-position: 0 0, 100px 100px;
  animation: subtleFlow 25s linear infinite;
  opacity: 0.7;
  pointer-events: none;
}

/* Elegant SVG stars */
.hero-bg-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  animation: gentleStarGlow 12s ease-in-out infinite alternate;
}

.glow1 {
  fill: #A7F3F3;
  filter: url(#glow1);
  animation: subtleStarPulse 6s ease-in-out infinite;
}

.glow2 {
  fill: #00B5D8;
  filter: url(#glow2);
  animation: subtleStarPulse 8s ease-in-out infinite reverse;
}

/* Refined nebula effect */
.hero-bg-globe {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 280px;
  background: 
    radial-gradient(ellipse at center, rgba(0, 181, 216, 0.12) 0%, rgba(167, 243, 243, 0.06) 40%, transparent 80%);
  filter: blur(50px);
  opacity: 0.7;
  border-radius: 50%;
  z-index: 0;
  animation: gentleNebula 18s ease-in-out infinite;
}

/* Subtle overlay */
.hero-bg-blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(15, 20, 25, 0.15);
  backdrop-filter: blur(1px);
}

/* Ensure content stays above backgrounds */
.hero > * {
  position: relative;
  z-index: 2;
}

/* Elegant animations */
@keyframes elegantFloat {
  0%, 100% { 
    transform: translateY(0px);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-3px);
    opacity: 0.8;
  }
}

@keyframes subtleFlow {
  0% { 
    transform: rotate(0deg);
  }
  100% { 
    transform: rotate(360deg);
  }
}

@keyframes gentleStarGlow {
  0% { 
    opacity: 0.7;
  }
  100% { 
    opacity: 0.9;
  }
}

@keyframes subtleStarPulse {
  0%, 100% { 
    opacity: 0.8;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes gentleNebula {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 0.8;
  }
}

/* Satellite and Technology Animations */
@keyframes satelliteOrbit {
  0% { 
    transform: rotate(0deg) translateX(200px) rotate(0deg);
    opacity: 0.6;
  }
  50% { 
    opacity: 0.9;
  }
  100% { 
    transform: rotate(360deg) translateX(200px) rotate(-360deg);
    opacity: 0.6;
  }
}

@keyframes signalPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: scale(1.5);
    opacity: 0.7;
  }
}

@keyframes dataTransmission {
  0% { 
    transform: translateX(-100px);
    opacity: 0;
  }
  20% { 
    opacity: 0.8;
  }
  80% { 
    opacity: 0.8;
  }
  100% { 
    transform: translateX(100px);
    opacity: 0;
  }
}

@keyframes circuitPulse {
  0%, 100% { 
    opacity: 0.2;
  }
  50% { 
    opacity: 0.6;
  }
}

@keyframes techGridFlow {
  0% { 
    transform: translateY(0px);
  }
  100% { 
    transform: translateY(-50px);
  }
}
.multi-gradient-title.hero-title-lg {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 1.5rem;
  white-space: normal;
  letter-spacing: 0.5px;
  overflow: visible;
  word-wrap: break-word;
  color: #A7F3F3; /* fallback color */
  background: linear-gradient(90deg,#00B5D8,#A7F3F3,#e0f7fa,#A7F3F3,#00B5D8);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
}

/* Ensure gradient text works in all browsers */
@supports not (-webkit-background-clip: text) {
  .multi-gradient-title.hero-title-lg,
  .multi-gradient-title {
    color: #A7F3F3 !important;
    background: none !important;
  }
}

/* Hero Section Alignment Utilities */
.align-center-space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 440px;
}
.flex-col-gap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
  min-width: 0;
}
.flex-row-gap-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-title-lg {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
}
.btn-lg {
  padding: 0.7rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}
.hero-mission-lg {
  font-size: 1.08rem;
  color: #e0f7fa;
  max-width: 420px;
}
.card-glassy {
  position: relative;
      margin: 0.7rem 0.7rem 0.7rem 0;
  max-width: 340px;
  padding: 0;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,181,216,0.13);
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(18,22,24,0.92);
  overflow: hidden;
}
.flex-row-gap-center {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
  padding: 0.9rem 1.2rem 0.7rem 1.2rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid rgba(167,243,243,0.18);
}
.grid-2-cols-gap {
  padding: 1.2rem 1.2rem 2.5rem 1.2rem;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.card-feature {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,181,216,0.08);
}
/* Full-bleed hero section override */
.hero .container {
  max-width: 100vw;
  width: 100vw;
  padding-left: 0;
  padding-right: 0;
}
/* Hero Section Backgrounds */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #181A1B;
}
.hero-bg-dark {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(24,26,27,0.18);
  backdrop-filter: blur(6px);
}
.hero-bg-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.glow1 {
  fill: #A7F3F3;
  filter: url(#glow1);
}
.glow2 {
  fill: #00B5D8;
  filter: url(#glow2);
}
.hero-bg-globe {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 520px;
  height: 320px;
  background: radial-gradient(circle,rgba(0,181,216,0.22) 0%,rgba(24,26,27,0.01) 80%);
  filter: blur(32px);
  opacity: 0.85;
  border-radius: 50%;
  z-index: -1;
}
.hero-bg-blur {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(24,26,27,0.18);
  backdrop-filter: blur(6px);
}

/* Hero Layout */
.container.hero-columns {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  min-height: 440px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 10;
  text-align: center;
  align-items: center;
}
.multi-gradient-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: #A7F3F3; /* fallback color */
  background: linear-gradient(90deg,#00B5D8,#A7F3F3,#e0f7fa,#A7F3F3,#00B5D8);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  word-wrap: break-word;
  overflow: visible;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 10;
  justify-content: center;
}
.btn-gradient {
  padding: 0.7rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(90deg,#00B5D8,#A7F3F3);
  color: #181A1B;
  box-shadow: 0 2px 12px rgba(0,181,216,0.13);
  transition: background 0.2s, color 0.2s;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 15;
  cursor: pointer;
}
.btn-gradient:hover {
  background: linear-gradient(90deg,#A7F3F3,#00B5D8);
  color: #00B5D8;
}
.btn-outline {
  padding: 0.7rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  background: none;
  color: #A7F3F3;
  border: 2px solid #A7F3F3;
  box-shadow: 0 2px 12px rgba(0,181,216,0.13);
  transition: background 0.2s, color 0.2s;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 15;
  cursor: pointer;
}
.btn-outline:hover {
  background: #A7F3F3;
  color: #181A1B;
}
.hero-mission {
  font-size: 1.08rem;
  color: #e0f7fa;
  max-width: 420px;
  text-align: center;
  margin: 0 auto;
  line-height: 1.6;
}
.hero-right {
  flex: 0 0 360px;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

/* Why VowsIT Card */
.why-vowsit-card {
  position: relative;
  margin: 2.2rem 0.7rem 2.2rem 0;
  max-width: 340px;
  padding: 0;
  margin-bottom: 0.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,181,216,0.13);
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(18,22,24,0.92);
  overflow: hidden;
}
.why-vowsit-card.card-glassy,
.about-us-card.card-glassy {
  position: relative;
  margin: 0.7rem 0.7rem 0.7rem 0;
  max-width: 340px;
  width: 100%;
  min-width: 260px;
  padding: 0;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,181,216,0.13);
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(18,22,24,0.92);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.why-vowsit-accent {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  filter: blur(24px);
  z-index: 0;
}
.why-vowsit-accent-top {
  top: -32px;
  left: -32px;
  background: rgba(0,181,216,0.18);
}
.why-vowsit-accent-bottom {
  bottom: -32px;
  right: -32px;
  background: rgba(167,243,243,0.18);
}
.why-vowsit-header {
  position: relative;
  z-index: 1;
  padding: 0.9rem 1.2rem 0.7rem 1.2rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid rgba(167,243,243,0.18);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.why-vowsit-header span {
  font-size: 1.13rem;
  font-weight: 700;
  color: #A7F3F3;
  letter-spacing: 0.5px;
}
.why-vowsit-grid {
  padding: 1.2rem 1.2rem 2.5rem 1.2rem;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-vowsit-box {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,181,216,0.08);
}
.why-vowsit-icon {
  margin-bottom: 0.5rem;
}
.why-vowsit-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #A7F3F3;
}
.why-vowsit-desc {
  font-size: 0.92rem;
  color: #e0f7fa;
}

/* Header and Navbar Styles (no inline styles) */
.navbar.glassy {
  position: relative;
  border-bottom: none;
  box-shadow: 0 6px 24px rgba(0, 181, 216, 0.15);
  background: linear-gradient(135deg, rgba(18, 22, 24, 0.95) 0%, rgba(15, 26, 31, 0.98) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(167, 243, 243, 0.1);
  z-index: 10;
}
.nav-relative {
  position: relative;
}
.nav-shadow {
  box-shadow: 0 6px 24px rgba(0, 181, 216, 0.10);
}
.nav-no-border {
  border-bottom: none;
}
.container.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}
.nav-logo.nav-logo-flex {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.05;
  text-align: left;
  margin-bottom: 0.1rem;
  white-space: nowrap;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 44px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  align-self: center;
  opacity: 0.6;
  filter: brightness(0.8);
}
.nav-links.nav-gap {
  display: flex;
  gap: 1rem;
}
.nav-links a {
  color: #00b5d8;
  text-decoration: none;
  font-weight: 500;
  padding: 0.3em 0.7em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  background: rgba(0,181,216,0.08);
  color: #A7F3F3;
}
.nav-social-flex {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-social-link {
  display: inline-block;
  vertical-align: middle;
}
.nav-hamburger {
  background: none;
  border: none;
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #00b5d8;
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-bottom-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(0,181,216,0.18), rgba(167,243,243,0.18));
  border-radius: 1px;
}
.hero {
  position: relative;
  background: linear-gradient(120deg, #181A1B 60%, #0f1a1f 100%);
  color: #f5f7fa;
  padding: 5rem 0 3rem 0;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-split {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-left {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 280px;
  z-index: 1;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00B5D8, #A7F3F3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}
.hero-mission {
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  color: #e0f7fa;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.btn-gradient {
  padding: 0.7rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #00B5D8 0%, #A7F3F3 100%);
  color: #fff;
  box-shadow: 0 0 16px #00B5D8;
  border: none;
  transition: box-shadow 0.2s, background 0.2s;
}
.btn-gradient:hover {
  box-shadow: 0 0 32px #00B5D8;
  background: linear-gradient(90deg, #A7F3F3 0%, #00B5D8 100%);
}
.btn-outline {
  padding: 0.7rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  background: transparent;
  color: #00B5D8;
  border: 2px solid #00B5D8;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: #A7F3F3;
  color: #A7F3F3;
}
.hero-right {
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  z-index: 1;
}
.why-choose-panel {
  background: rgba(18,22,24,0.92);
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(0,181,216,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  color: #A7F3F3;
  font-size: 1.12rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
  min-width: 260px;
  max-width: 340px;
}
@media (max-width: 1024px) {
  .hero-split {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .hero-right {
    justify-content: flex-start;
    margin-top: 2rem;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.feature-box {
  background: rgba(18,22,24,0.92);
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(0,181,216,0.18);
  border: 2px solid;
  border-image: linear-gradient(90deg, #00B5D8, #A7F3F3) 1;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  color: #A7F3F3;
  font-size: 1.12rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
}
.feature-box:hover {
  background: rgba(167,243,243,0.13);
  box-shadow: 0 8px 48px #A7F3F3;
  border-color: #00B5D8;
  transform: translateY(-6px) scale(1.04);
}
.feature-box > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.feature-box {
  background: rgba(18,22,24,0.92);
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(0,181,216,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  color: #A7F3F3;
  font-size: 1.12rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.feature-box:hover {
  background: rgba(167,243,243,0.13);
  box-shadow: 0 4px 16px #A7F3F3;
  transform: translateY(-4px) scale(1.03);
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
:root {
  --bg-dark: #0f1a1f;
  --bg-darker: #0a1418;
  --teal: #00bfa5;
  --white: #ffffff;
  --gray: #cccccc;
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

/* Global font optimization */
* {
  font-family: inherit;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--white);
  /* Enhanced font rendering for all browsers */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
  font-display: swap;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background-color: var(--bg-darker);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--teal);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #0f1a1f, #1c2e35);
  padding: 0rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: left;
  
}

.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.btn.primary {
  background-color: var(--teal);
  color: var(--bg-dark);
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}

/* Why Choose */
.why-choose {
  padding: 3rem 0;
  text-align: center;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-box {
  background-color: #1c2e35;
  padding: 1.5rem;
  border-radius: 8px;
  width: 30%;
  min-width: 250px;
}

/* About */
.about {
  padding: 3rem 0;
  text-align: center;
}

/* Info Grid */
.info-grid {
  padding: 3rem 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-box {
  background-color: #1c2e35;
  padding: 1.5rem;
  border-radius: 8px;
}

.info-box h3 {
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.info-box ul {
  padding-left: 1rem;
}

.info-box li {
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background-color: var(--bg-darker);
  text-align: center;
  padding: 1rem 0;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 80%;
  }
}

.btn-gradient,
.btn-outline {
  box-shadow: 0 0 8px #00B5D8, 0 0 4px #A7F3F3;
}

/* Lifecycle Support Section */
.lifecycle-support-section {
  padding: 3rem 0 2.5rem 0;
  background: linear-gradient(135deg,rgba(18,22,24,0.97) 70%,rgba(0,181,216,0.09) 100%);
  box-shadow: 0 8px 32px rgba(0,181,216,0.09);
  border-radius: 18px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}


.lifecycle-support-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.lifecycle-support-title,
.lifecycle-support-section h2 {
  font-size: 2.2rem;
  color: #A7F3F3;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,181,216,0.13);
}
.lifecycle-support-desc,
.lifecycle-support-section p {
  font-size: 1.12rem;
  color: #e0f7fa;
  line-height: 1.65;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

/* Lifecycle Support Steps Container */
.lifecycle-support-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Connector Line */
.lifecycle-support-connector {
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 8px;
  z-index: 0;
  pointer-events: none;
}

/* Individual Lifecycle Step */
.lifecycle-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 0 0.5rem;
}

.lifecycle-step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(18,22,24,0.95), rgba(0,181,216,0.08));
  box-shadow: 0 4px 20px rgba(0,181,216,0.15), 0 0 0 3px rgba(167,243,243,0.1);
  border: 2px solid rgba(167,243,243,0.2);
  position: relative;
  transition: all 0.3s ease;
  z-index: 3;
}

.lifecycle-step-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0,181,216,0.25), 0 0 0 5px rgba(167,243,243,0.2);
}

.lifecycle-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #A7F3F3;
  margin-bottom: 0.8rem;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 8px rgba(0,181,216,0.13);
  font-family: var(--font-main);
  line-height: 1.3;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifecycle-step-desc {
  font-size: 0.9rem;
  color: #e0f7fa;
  line-height: 1.5;
  font-family: var(--font-main);
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .lifecycle-support-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .lifecycle-support-connector {
    display: none;
  }
  .lifecycle-step {
    padding: 1.5rem 1rem;
    background: rgba(18,22,24,0.6);
    border-radius: 16px;
    border: 1px solid rgba(167,243,243,0.15);
    backdrop-filter: blur(10px);
  }
}

@media (max-width: 900px) {
  .lifecycle-support-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .lifecycle-step-title {
    font-size: 0.95rem;
    min-height: 2.4rem;
  }
  .lifecycle-step-desc {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .lifecycle-support-steps {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .lifecycle-step {
    max-width: 100%;
    padding: 1.2rem 0.8rem;
  }
  .lifecycle-step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
  .lifecycle-support-title {
    font-size: 1.8rem;
  }
  .lifecycle-support-desc {
    font-size: 1rem;
  }
}

/* Icon specific styling */
.lifecycle-step-icon-1 { background: linear-gradient(135deg, rgba(0,181,216,0.15), rgba(18,22,24,0.95)); }
.lifecycle-step-icon-2 { background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(18,22,24,0.95)); }
.lifecycle-step-icon-3 { background: linear-gradient(135deg, rgba(167,243,243,0.15), rgba(18,22,24,0.95)); }
.lifecycle-step-icon-4 { background: linear-gradient(135deg, rgba(0,181,216,0.15), rgba(18,22,24,0.95)); }
.lifecycle-step-icon-5 { background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(18,22,24,0.95)); }
.lifecycle-step-icon-6 { background: linear-gradient(135deg, rgba(167,243,243,0.15), rgba(18,22,24,0.95)); }

/* Vertical Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 8px;
  background: rgba(18, 22, 24, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(167, 243, 243, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 181, 216, 0.15);
}

.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(167, 243, 243, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(167, 243, 243, 0.1);
}

.scroll-dot:hover {
  background: rgba(167, 243, 243, 0.6);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(167, 243, 243, 0.4);
}

.scroll-dot.active {
  background: linear-gradient(135deg, #00B5D8, #A7F3F3);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(0, 181, 216, 0.6);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(18, 22, 24, 0.8);
  z-index: 1001;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00B5D8, #3B82F6, #A7F3F3);
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(0, 181, 216, 0.5);
}

/* Hide scroll indicator on mobile */
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

/* Services Combined Section */
.services-combined-section {
  padding: 2.5rem 0 2rem 0;
  background: linear-gradient(135deg, rgba(18,22,24,0.97) 70%, rgba(0,181,216,0.09) 100%);
  box-shadow: 0 8px 32px rgba(0,181,216,0.09);
  position: relative;
  overflow: hidden;
}



@keyframes streamFlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(300px, 300px); }
}

.services-combined-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-combined-title {
  font-size: 2rem;
  color: #A7F3F3;
  font-weight: 700;
  margin-bottom: 2.2rem;
  letter-spacing: 0.5px;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,181,216,0.18);
}

.service-card {
  width: 100%;
  position: relative;
  background: rgba(18,22,24,0.93);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,181,216,0.13);
  border: 1.5px solid rgba(167,243,243,0.13);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  margin-bottom: 2.5rem;
}

.service-card.managed-services {
  min-height: 520px;
}

.service-card.embedded-software {
  min-height: 420px;
}

.service-card-accent-1 {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 90px;
  height: 90px;
  background: rgba(0,181,216,0.18);
  border-radius: 50%;
  filter: blur(32px);
  z-index: 0;
}

.service-card-accent-2 {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 90px;
  height: 90px;
  background: rgba(167,243,243,0.18);
  border-radius: 50%;
  filter: blur(32px);
  z-index: 0;
}

.service-card-decoration {
  position: absolute;
  top: 60px;
  right: -30px;
  z-index: 0;
  opacity: 0.5;
}

.service-card-header {
  position: relative;
  z-index: 1;
  padding: 1.1rem 1.5rem 0.7rem 1.5rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(167,243,243,0.18);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.service-card-header-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #A7F3F3;
  letter-spacing: 0.5px;
}

.service-card-content {
  padding: 1.3rem 1.5rem 2rem 1.5rem;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-content.centered {
  align-items: center;
}

.service-card-description {
  font-size: 1.09rem;
  color: #e0f7fa;
  line-height: 1.6;
  margin-bottom: 0.7rem;
  text-align: center;
}

.service-card-highlight {
  color: #A7F3F3;
  font-weight: 600;
}

.service-icons-row {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.service-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon-label {
  font-size: 0.95rem;
  color: #A7F3F3;
  margin-top: 0.3rem;
}

.embedded-software-intro {
  font-size: 1.09rem;
  font-family: var(--font-main);
  color: #A7F3F3;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.embedded-software-tagline {
  color: #e0f7fa;
  font-style: italic;
}

.embedded-software-description {
  font-size: 1.09rem;
  font-family: var(--font-main);
  color: #e0f7fa;
  line-height: 1.6;
  margin-bottom: 0.7rem;
}

.embedded-software-features {
  margin-top: 2.2rem;
}

.embedded-software-features h3 {
  color: #A7F3F3;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
}

.embedded-features-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 90%;
}

.embedded-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.embedded-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(0,181,216,0.13);
  border-radius: 50%;
}

.embedded-feature-text {
  font-size: 1.08rem;
  color: #e0f7fa;
}

.embedded-feature-title {
  color: #A7F3F3;
  font-weight: 700;
}

/* Founder News Contact Section */
.founder-news-contact-section {
  background: linear-gradient(135deg, rgba(18,22,24,0.97) 70%, rgba(0,181,216,0.09) 100%);
  box-shadow: 0 8px 32px rgba(0,181,216,0.09);
  padding: 2.5rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}



@keyframes neuralFlow {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(50px, 50px) rotate(360deg); }
}

.founder-news-contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.founder-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.founder-card {
  width: 100%;
  position: relative;
  background: rgba(18,22,24,0.93);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,181,216,0.13);
  border: 1.5px solid rgba(167,243,243,0.13);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  min-height: 520px;
  margin-bottom: 2.5rem;
}

.founder-card-accent {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 90px;
  height: 90px;
  background: rgba(0,181,216,0.18);
  border-radius: 50%;
  filter: blur(32px);
  z-index: 0;
}

.founder-card-decoration {
  position: absolute;
  top: 60px;
  right: -30px;
  z-index: 0;
  opacity: 0.5;
}

.founder-card-header {
  position: relative;
  z-index: 1;
  padding: 1.1rem 1.5rem 0.7rem 1.5rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(167,243,243,0.18);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.founder-card-header-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #A7F3F3;
  letter-spacing: 0.5px;
}

.founder-card-content {
  padding: 1.3rem 1.5rem 2rem 1.5rem;
  z-index: 1;
  flex: 1;
}

.founder-profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.founder-avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}

.founder-avatar {
  display: inline-flex;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(0,181,216,0.13);
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,181,216,0.13);
  border: 3px solid #A7F3F3;
}

.founder-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.founder-bio {
  font-size: 1rem;
  color: #e0f7fa;
  text-align: left;
}

.founder-name {
  font-weight: bold;
}

.founder-email {
  color: #A7F3F3;
  text-decoration: none;
  font-size: 0.98rem;
  margin-left: 1rem;
  vertical-align: middle;
}

.founder-achievements {
  font-size: 0.9rem;
}

.founder-achievement {
  margin-bottom: 0.3rem;
}

.founder-icon {
  font-size: 1.1rem;
  vertical-align: middle;
  margin-right: 0.3rem;
}

.founder-card-spacer {
  height: 12px;
}

.contact-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.contact-form-card {
  flex: 1 1 340px;
  min-width: 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: rgba(18,22,24,0.97);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,181,216,0.13);
  border: 1.5px solid rgba(167,243,243,0.13);
  overflow: hidden;
}

.contact-details-card {
  flex: 2 1 420px;
  min-width: 320px;
  max-width: 100%;
  background: rgba(18,22,24,0.93);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,181,216,0.13);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 0;
  overflow: hidden;
}

.contact-card-header {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(167,243,243,0.18);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-card-header.contact-details-header {
  padding: 1rem 2rem;
}

.contact-card-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #A7F3F3;
  letter-spacing: 0.5px;
}

.contact-form-content {
  width: 100%;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-input {
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #A7F3F3;
  background: rgba(255,255,255,0.07);
  color: #A7F3F3;
  font-size: 1rem;
}

.contact-textarea {
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #A7F3F3;
  background: rgba(255,255,255,0.07);
  color: #A7F3F3;
  font-size: 1rem;
  resize: vertical;
}

.contact-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 0.3rem;
  font-family: var(--font-main);
}

.numbers-challenge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.challenge-text {
  color: #A7F3F3;
  font-size: 1rem;
  font-family: var(--font-main);
}

.challenge-input {
  width: 60px;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #A7F3F3;
  background: rgba(255,255,255,0.07);
  color: #A7F3F3;
  font-size: 1rem;
}

.contact-submit {
  padding: 0.7rem 2rem;
  border-radius: 8px;
  background: linear-gradient(90deg, #00B5D8, #A7F3F3);
  color: #181A1B;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
}

.form-success {
  color: #A7F3F3;
  font-size: 0.95rem;
  display: none;
  margin-top: 0.5rem;
  font-family: var(--font-main);
}

.contact-details-content {
  padding: 2.5rem 2rem;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.office-info {
  flex: 1 1 320px;
  min-width: 320px;
}

.office-title {
  color: #A7F3F3;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.office-address {
  color: #e0f7fa;
  margin-bottom: 0.3rem;
}

.office-contact {
  color: #A7F3F3;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.office-contact a {
  color: #A7F3F3;
  text-decoration: none;
}

.contact-icon {
  vertical-align: middle;
  margin-right: 0.3rem;
}

.map-container {
  margin-top: 2.5rem;
}

.map-image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,181,216,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  background: #181A1B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Footer Styles */
.site-footer {
  background: rgba(18,22,24,0.97);
  border-top: 2px solid rgba(167,243,243,0.13);
  box-shadow: 0 -4px 16px rgba(0,181,216,0.09);
  padding: 1.5rem 0 1rem 0;
}

@keyframes footerNetworkPulse {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
  50% { transform: translateY(-10px) rotate(180deg); opacity: 0.12; }
}

@keyframes footerGlow {
  0% { opacity: 0.05; transform: scale(1); }
  100% { opacity: 0.08; transform: scale(1.1); }
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  color: #A7F3F3;
  font-size: 1rem;
  font-weight: 600;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-social-link {
  display: inline-block;
  transition: transform 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
}

/* Go to Top Button */
.go-to-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: rgba(24, 26, 27, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  box-shadow: rgba(0, 181, 216, 0.13) 0px 4px 16px;
  border: 2px solid rgb(167, 243, 243);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0;
}

.go-to-top-btn:hover {
  transform: translateY(-2px);
  box-shadow: rgba(0, 181, 216, 0.25) 0px 6px 20px;
}

.go-to-top-btn.visible {
  opacity: 1;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .go-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ============================================ */
/*            COMPREHENSIVE RESPONSIVE         */
/* ============================================ */

/* Large Desktops and up (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-title-lg {
    font-size: 3.5rem;
  }
  
  .expertise-card-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Large Tablets and Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding: 0 1.5rem;
  }
  
  .hero-columns {
    gap: 2rem;
  }
  
  .lifecycle-support-steps {
    gap: 1.2rem;
  }
  
  .lifecycle-step-title {
    font-size: 0.95rem;
    min-height: 2.4rem;
  }
  
  .services-combined-container {
    padding: 0 1.5rem;
  }
  
  .founder-news-contact-container {
    padding: 0 1.2rem;
  }
}

/* Medium Tablets (768px - 991px) */
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  /* Navigation */
  .navbar {
    padding: 1rem 0;
  }
  
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 22, 24, 0.98);
    backdrop-filter: blur(16px);
    border-top: 2px solid rgba(167, 243, 243, 0.2);
    box-shadow: 0 8px 32px rgba(0, 181, 216, 0.2);
    padding: 1.5rem 2rem;
    gap: 1rem;
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links a {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: rgba(167, 243, 243, 0.05);
    text-align: center;
    font-size: 1.1rem;
  }
  
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
  }
  
  .nav-hamburger:hover {
    background: rgba(167, 243, 243, 0.1);
  }
  
  .nav-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #A7F3F3;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Hero Section */
  .hero {
    padding: 2rem 1rem;
    min-height: 380px;
    overflow: visible;
  }
  
  .container.hero-columns {
    padding: 0 1rem;
    gap: 2rem;
    min-height: auto;
  }
  
  .hero-columns {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    min-height: auto;
    padding: 1rem 0;
  }
  
  .hero-left {
    flex: 1 1 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
    order: 1;
  }
  
  .hero-right {
    flex: 1 1 100%;
    max-width: 100%;
    justify-content: center;
    order: 2;
  }
  
  .hero-title-lg {
    font-size: 2.2rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow: visible;
  }
  
  .hero-mission-lg {
    font-size: 1.05rem;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-ctas {
    justify-content: center;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .why-vowsit-card {
    max-width: 100%;
    margin: 1rem auto 0 auto;
  }
  
  /* About Us Section */
  .about-us-row-3col {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .about-us-col {
    max-width: 100%;
  }
  
  /* Expertise Section */
  .expertise-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  /* Services Section */
  .service-card-content {
    padding: 1rem 1.2rem 1.5rem 1.2rem;
  }
  
  .service-icons-row {
    gap: 1rem;
  }
  
  /* Founder Section */
  .founder-profile {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .founder-details {
    align-items: center;
  }
  
  .founder-bio {
    text-align: center;
  }
  
  .contact-form-row {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-form-card,
  .contact-details-card {
    max-width: 100%;
    flex: 1 1 auto;
  }
  
  .office-details {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Small Tablets (576px - 767px) */
@media (max-width: 767px) {
  .container {
    max-width: 540px;
    padding: 0 1rem;
  }
  
  /* Navigation */
  .navbar {
    padding: 0.8rem 0;
  }
  
  .container.nav-flex {
    padding: 0 1rem;
    min-height: 50px;
  }
  
  .logo-img {
    height: 38px;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .nav-links {
    padding: 1.2rem 1.5rem;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 0.7rem 0.8rem;
  }
  
  /* Typography */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  /* Hero Section */
  .hero {
    padding: 1.5rem 0;
    min-height: 340px;
    overflow: visible;
  }
  
  .container.hero-columns {
    padding: 0 1rem;
  }
  
  .hero-columns {
    gap: 1.5rem;
    padding: 0.8rem 0;
  }
  
  .hero-title-lg {
    font-size: 1.9rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-align: center;
    word-wrap: break-word;
    overflow: visible;
  }
  
  .hero-mission-lg {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .btn-lg {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 0.8rem 1.5rem;
    display: inline-block;
    box-sizing: border-box;
  }
  
  /* About Us */
  .about-us-intro {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .about-us-card-content {
    padding: 1rem;
  }
  
  /* Expertise */
  .expertise-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .expertise-card {
    padding: 1rem 0.8rem;
    min-height: 100px;
  }
  
  .expertise-card-title {
    font-size: 1rem;
  }
  
  .expertise-card-subtitle {
    font-size: 0.85rem;
  }
  
  /* Services */
  .services-combined-title {
    font-size: 1.8rem;
  }
  
  .service-card {
    min-height: auto;
    margin-bottom: 2rem;
  }
  
  .service-card-header {
    padding: 1rem 1.2rem 0.6rem 1.2rem;
  }
  
  .service-card-header-title {
    font-size: 1.1rem;
  }
  
  .service-icons-row {
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
  }
  
  .service-icon-item {
    min-width: 70px;
  }
  
  .embedded-features-list {
    max-width: 100%;
  }
  
  /* Founder */
  .founder-card {
    min-height: auto;
  }
  
  .founder-card-header {
    padding: 1rem 1.2rem 0.6rem 1.2rem;
  }
  
  .founder-achievements {
    font-size: 0.85rem;
  }
  
  /* Contact Form */
  .contact-card-header {
    padding: 1rem 1rem;
  }
  
  .contact-form-content {
    padding: 1.2rem 1rem 1rem 1rem;
  }
  
  .numbers-challenge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .challenge-input {
    width: 100px;
  }
  
  .contact-details-content {
    padding: 2rem 1.5rem;
  }
}

/* Large Mobile Phones (480px - 575px) */
@media (max-width: 575px) {
  .container {
    max-width: 100%;
    padding: 0 0.75rem;
  }
  
  /* Navigation */
  .nav-flex {
    padding: 0 0.75rem;
  }
  
  .logo-img {
    height: 35px;
  }
  
  .nav-hamburger span {
    width: 22px;
    height: 2.5px;
  }
  
  /* Hero */
  .hero {
    padding: 1.2rem 0;
    min-height: 320px;
    overflow: visible;
  }
  
  .container.hero-columns {
    padding: 0 0.75rem;
  }
  
  .hero-columns {
    gap: 1.2rem;
  }
  
  .hero-title-lg {
    font-size: 1.7rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-align: center;
    word-wrap: break-word;
    overflow: visible;
  }
  
  .hero-mission-lg {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .hero-ctas {
    gap: 0.7rem;
    flex-direction: column;
  }
  
  .btn-lg {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    max-width: 250px;
    display: inline-block;
    box-sizing: border-box;
  }
  
  .why-vowsit-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1rem 1rem 1.5rem 1rem;
  }
  
  /* About Us */
  .about-us-heading {
    font-size: 1.8rem;
  }
  
  .about-us-intro {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* Expertise */
  .expertise-title {
    font-size: 1.6rem;
  }
  
  .expertise-desc {
    font-size: 1rem;
  }
  
  .expertise-card {
    min-height: 90px;
    padding: 0.8rem 0.6rem;
  }
  
  /* Lifecycle Support */
  .lifecycle-support-title {
    font-size: 1.6rem;
  }
  
  .lifecycle-support-desc {
    font-size: 0.95rem;
  }
  
  /* Services */
  .services-combined-title {
    font-size: 1.6rem;
  }
  
  .service-card-description {
    font-size: 1rem;
  }
  
  .embedded-software-description {
    font-size: 1rem;
  }
  
  /* Founder */
  .founder-avatar {
    width: 80px;
    height: 80px;
  }
  
  .founder-bio {
    font-size: 0.95rem;
  }
  
  .founder-achievement {
    margin-bottom: 0.5rem;
  }
  
  /* Contact */
  .office-info {
    min-width: 100%;
  }
  
  .map-container {
    margin-top: 1.5rem;
  }
}

/* Small Mobile Phones (320px - 479px) */
@media (max-width: 479px) {
  .container {
    padding: 0 0.5rem;
  }
  
  /* Navigation */
  .container.nav-flex {
    padding: 0 0.5rem;
  }
  
  .logo-img {
    height: 32px;
  }
  
  .nav-links {
    padding: 1rem 1rem;
  }
  
  .nav-links a {
    font-size: 0.95rem;
    padding: 0.6rem 0.7rem;
  }
  
  /* General */
  .card-glassy,
  .service-card,
  .founder-card,
  .contact-form-card,
  .contact-details-card {
    border-radius: 16px;
  }
  
  /* Hero */
  .hero {
    padding: 1rem 0;
    min-height: 300px;
    overflow: visible;
  }
  
  .container.hero-columns {
    padding: 0 0.5rem;
  }
  
  .hero-title-lg {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    text-align: center;
    word-wrap: break-word;
    overflow: visible;
  }
  
  .hero-mission-lg {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .btn-lg {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    max-width: 220px;
    display: inline-block;
    box-sizing: border-box;
  }
  
  /* Expertise */
  .expertise-card-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .expertise-card {
    min-height: 80px;
  }
  
  /* Services */
  .service-icons-row {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 0.8rem;
  }
  
  .service-icon-label {
    font-size: 0.85rem;
  }
  
  /* Embedded Features */
  .embedded-feature-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .embedded-feature-icon {
    align-self: center;
  }
  
  /* Contact Form */
  .contact-input,
  .contact-textarea,
  .challenge-input {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .contact-submit {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Footer */
  .footer-social {
    margin-top: 0.5rem;
  }
  
  /* Go to Top */
  .go-to-top-btn {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}

/* Extra Small Devices (max-width: 360px) */
@media (max-width: 360px) {
  /* Navigation */
  .container.nav-flex {
    padding: 0 0.4rem;
  }
  
  .logo-img {
    height: 30px;
  }
  
  /* Hero */
  .hero {
    padding: 0.8rem 0;
    min-height: 280px;
    overflow: visible;
  }
  
  .container.hero-columns {
    padding: 0 0.4rem;
  }
  
  .hero-title-lg {
    font-size: 1.3rem;
    line-height: 1.1;
    margin-bottom: 0.7rem;
    text-align: center;
    word-wrap: break-word;
    overflow: visible;
  }
  
  .hero-mission-lg {
    font-size: 0.85rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .btn-lg {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    max-width: 200px;
    display: inline-block;
    box-sizing: border-box;
  }
  
  .why-vowsit-grid {
    padding: 0.8rem 0.8rem 1.2rem 0.8rem;
  }
  
  .expertise-card {
    padding: 0.6rem 0.4rem;
  }
  
  .service-card-header {
    padding: 0.8rem 1rem 0.5rem 1rem;
  }
  
  .service-card-content {
    padding: 0.8rem 1rem 1.2rem 1rem;
  }
  
  .contact-form-content,
  .contact-details-content {
    padding: 1rem 0.8rem;
  }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  
  .map-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .scroll-indicator,
  .scroll-progress,
  .go-to-top-btn,
  .hero-bg,
  .hero-bg-dark,
  .hero-bg-svg,
  .hero-bg-globe,
  .hero-bg-blur {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .site-footer {
    border-top: 1px solid #ccc;
    background: white !important;
  }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 1rem 0;
  }
  
  .hero-title-lg {
    font-size: 1.8rem;
  }
  
  .hero-mission-lg {
    font-size: 0.9rem;
  }
  
  .go-to-top-btn {
    bottom: 10px;
    right: 10px;
  }
}
