/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Cinzel:wght@700&family=Orbitron:wght@600;700;900&family=Playfair+Display:wght@700&family=Poppins:wght@600&family=Rajdhani:wght@700&display=swap');

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #0a1a3c;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  color: #00d4ff;
  text-decoration: none;
}
a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Navbar */
#mainNav {
  background: linear-gradient(180deg, rgba(10, 26, 60, 0.98) 0%, rgba(10, 26, 60, 0.85) 100%);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  z-index: 1500;
  width: 100%;
  max-width: 100vw;
  overflow: visible;
  position: fixed;
  top: 0;
}

.navbar {
  position: relative;
  z-index: 1500;
}
.navbar-nav {
  position: relative;
  z-index: 1501;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  color: #00d4ff !important;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}
.navbar-brand:hover {
  color: #fff !important;
  transform: scale(1.05);
}
.logo-img {
  display: block;
  margin: 0 auto;
  height: clamp(40px, 8vw, 60px);
  width: auto;
  max-width: clamp(150px, 40vw, 200px);
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.3));
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), filter 0.3s ease;
}
.navbar-brand .logo-img {
  height: clamp(36px, 7vw, 44px);
  margin: 0;
}
.footer .logo-img {
  height: clamp(40px, 8vw, 48px);
  margin-bottom: 0.5rem;
  margin-right: 0;
}
.logo-img:hover {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.5));
}
.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin-left: 0.5rem;
  transition: color 0.2s, transform 0.2s, text-shadow 0.2s;
  position: relative;
  z-index: 1;
  text-decoration: none !important;
  padding-bottom: 5px;
}
.nav-link:hover, .nav-link:focus {
  color: #00d4ff !important;
  text-shadow: 0 2px 16px #00d4ff99;
  transform: scale(1.13) perspective(300px) rotateX(6deg) rotateY(-6deg);
  text-decoration: none !important;
}
.nav-link:active {
  color: #00b6e0 !important;
  transform: scale(0.93) perspective(300px) rotateX(-4deg) rotateY(4deg);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00d4ff;
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link:focus::after {
  width: 100%;
}

/* Sign In Dropdown Custom Styles */
.navbar-nav .nav-item .nav-link.signin-animated {
  color: #00d4ff !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.25s cubic-bezier(.77,0,.18,1), text-shadow 0.25s cubic-bezier(.77,0,.18,1), transform 0.25s cubic-bezier(.77,0,.18,1);
  text-shadow: 0 2px 8px #00d4ff44;
  z-index: 1502;
}
.navbar-nav .nav-item .nav-link.signin-animated::after {
  content: '';
  display: block;
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 80%;
  height: 2.5px;
  background: linear-gradient(90deg, #00d4ff 0%, #fff0 100%);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.25s, transform 0.25s;
}
.navbar-nav .nav-item .nav-link.signin-animated:hover,
.navbar-nav .nav-item .nav-link.signin-animated:focus,
.navbar-nav .nav-item.show .nav-link.signin-animated {
  color: #fff !important;
  background: linear-gradient(90deg, #00d4ff 0%, #0a1a3c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 16px #00d4ff99;
  transform: scale(1.08) translateY(-2px);
}
.navbar-nav .nav-item .nav-link.signin-animated:hover::after,
.navbar-nav .nav-item .nav-link.signin-animated:focus::after,
.navbar-nav .nav-item.show .nav-link.signin-animated::after {
  opacity: 1;
  transform: scaleX(1);
}
.navbar-nav .dropdown-menu.signin-dropdown {
  background: linear-gradient(135deg, #0a1a3c 90%, #00d4ff22 100%);
  border: 1.5px solid #00d4ff55;
  border-radius: 1rem;
  box-shadow: 0 8px 32px 0 #00d4ff33;
  min-width: 180px;
  padding: 0.5rem 0.5rem;
  animation: signinDropdownFadeIn 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 1600;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(0);
}
.navbar-nav .dropdown-menu.signin-dropdown.show {
  display: block;
}
@keyframes signinDropdownFadeIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.navbar-nav .dropdown-menu.signin-dropdown .dropdown-item {
  color: #00d4ff;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.55rem 1.2rem;
  margin-bottom: 0.15rem;
  background: transparent;
  transition: background 0.22s cubic-bezier(.77,0,.18,1), color 0.22s cubic-bezier(.77,0,.18,1), transform 0.22s cubic-bezier(.77,0,.18,1);
  position: relative;
  overflow: hidden;
}
.navbar-nav .dropdown-menu.signin-dropdown .dropdown-item:last-child {
  margin-bottom: 0;
}
.navbar-nav .dropdown-menu.signin-dropdown .dropdown-item:hover,
.navbar-nav .dropdown-menu.signin-dropdown .dropdown-item:focus {
  color: #fff;
  background: linear-gradient(90deg, #00d4ff 0%, #0a1a3c 100%);
  transform: scale(1.04) translateX(4px);
  box-shadow: 0 2px 12px #00d4ff55;
}

/* Full-Page 3D Background */
.full-page-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.full-page-bg canvas {
  width: 100% !important;
  height: 100% !important;
  opacity: 0.75;
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 26, 60, 0.9) 0%, rgba(0, 212, 255, 0.1) 100%);
  width: 100%;
  max-width: 100vw;
  padding-left: 0.5rem;
}
.hero-content {
  z-index: 3;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
}
.hero-content h1 {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  font-size: clamp(2.2rem, 5.2vw, 3.6rem) !important;
  color: #fff;
  background: none;
  text-shadow: none;
  animation: none;
  max-width: 90vw !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  white-space: nowrap !important;
}

#hero-title {
  display: inline-flex; /* Keep welcome-to and cye-typing on the same line */
  gap: 0rem; /* Remove space between the two */
  align-items: baseline;
}

#hero-title #welcome-to {
  font-family: 'Audiowide', cursive !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  font-size: clamp(2.3rem, 3.2vw, 2.8rem) !important; /* Slightly increased */
  color: #00d4ff !important;
  text-transform: uppercase !important;
  background: none;
  max-width: 90vw !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  white-space: nowrap !important;
}

#hero-title #cye-typing {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 1000 !important;
  letter-spacing: 2px !important;
  font-size: clamp(2.6rem, 4.0vw, 3.2rem) !important; /* Slightly increased */
  color: #f59e1a !important;
  text-transform: uppercase !important;
  background: none !important;
  max-width: 90vw !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  white-space: nowrap !important;
  border-right: 2.5px solid #f59e1a;
  padding-left: 0.3rem; /* Reduced gap */
  white-space: pre;
  transition: color 0.2s;
}

.hero-content p {
  font-family: 'Audiowide', cursive !important;
  font-weight: 100 !important;
  letter-spacing: 0.5px !important;
  font-size: clamp(1.1rem, 2.8vw, 1.4rem) !important;
  color: #e0e6f6 !important;
  max-width: 90vw !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  white-space: normal !important;
  background: none !important; /* Highlight removed */
}

.sparkle {
  pointer-events: none;
  will-change: opacity, transform;
}
.slider {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 340px;
  object-fit: cover;
  opacity: 0;
  border-radius: 1.5rem;
  box-shadow: 0 6px 40px rgba(0, 212, 255, 0.2);
  transform: perspective(1000px) translateZ(0);
  transition: opacity 0.8s ease, transform 0.5s ease;
}
.slider-image.active {
  opacity: 1;
  z-index: 2;
  transform: perspective(1000px) translateZ(20px);
}

/* Hero Swiper Slider */
.hero-swiper {
  width: 100%;
  max-width: clamp(600px, 90vw, 900px);
  margin: 0 auto 2rem auto;
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px rgba(0,212,255,0.10);
  background: rgba(10,26,60,0.12);
  padding: 1.2rem 0 2.2rem 0;
  animation: heroSwiperFadeIn 1.2s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-swiper .hero-slider-img {
  width: 100%;
  max-width: clamp(400px, 85vw, 600px);
  height: clamp(200px, 35vw, 340px);
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(0,212,255,0.10);
  transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.55);
  margin: 0 auto;
  will-change: transform;
  background: #0a1a3c;
  loading: lazy;
}
.hero-swiper .swiper-slide-active .hero-slider-img {
  box-shadow: 0 8px 32px 0 rgba(0,212,255,0.18);
}

/* Section Headings Font and Effects */
.about-title,
.our-expertise-big-text,
.why-title,
.portfolio-title,
.process-title,
.careers .display-5,
.careers h2,
.footer-title {
  font-family: 'Cinzel', serif !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #00d4ff 10%, #0af0c7 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 32px #00d4ff55, 0 2px 8px #0af0c755;
  animation: titleGlow 2.5s ease-in-out infinite alternate;
}
@keyframes titleGlow {
  0% { text-shadow: 0 2px 8px #00d4ff55, 0 0 0 #0af0c755; }
  100% { text-shadow: 0 8px 32px #00d4ffcc, 0 2px 16px #0af0c7cc; }
}

/* Services Section */
.services {
  position: relative;
  background: transparent !important;
  overflow: hidden;
  z-index: 3;
  padding-left: 0.5rem;
}
.services .container {
  position: relative;
  z-index: 2;
}
.services-3d-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}

/* OUR EXPERTISE - Horizontal Scroll, Image-Focused, Animated */
.expertise-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 3.5rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  z-index: 2;
}
.expertise-row::-webkit-scrollbar {
  display: none;
}
.expertise-img-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: clamp(400px, 80vw, 540px);
  max-width: clamp(600px, 90vw, 700px);
  background: linear-gradient(120deg, #0a1a3c 80%, #00d4ff11 100%);
  border-radius: 2.5rem;
  padding: 2.2rem 3rem 2.2rem 1.2rem;
  margin-left: 0rem;
  scroll-snap-align: center;
  position: relative;
  transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.4s;
  z-index: 1;
  border: 1.5px solid #00d4ff22; /* Retained as requested */
  outline: 3.0px solid #00d4ff; /* Stronger dark border */
  box-shadow: 0 8px 48px rgba(0,212,255,0.2), 0 0 8px 2px #00d4ff33; /* outer glow */
  overflow: visible;
  opacity: 0.85;
}


.expertise-img-block.in-view {
  transform: scale(1.13) perspective(900px) rotateY(-7deg) rotateX(2deg) translateX(-40px);
  box-shadow: 0 16px 64px 0 #00d4ff77, 0 0 0 10px #00d4ff22;
  z-index: 2;
  border-color: #00d4ff55;
  opacity: 1;
}

.expertise-img-block:not(.in-view) {
  transform: scale(0.93) translateX(0);
  opacity: 0.7;
}

.expertise-img-block.in-view::before {
  opacity: 0.38;
  filter: blur(2px);
}

.expertise-img {
  width: clamp(180px, 35vw, 220px);
  height: clamp(200px, 40vw, 260px);
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px 0 rgba(0,212,255,0.08), 0 1px 8px 0 rgba(0,212,255,0.04);
  margin-right: 3rem;
  margin-left: 1rem;
  transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.4s, filter 0.3s;
  will-change: transform, box-shadow, filter;
  border: 1px solid #00d4ff33;
  background: #0a1a3c;
  position: relative;
  z-index: 1;
  loading: lazy;
}
.expertise-img-block.in-view .expertise-img {
  transform: scale(1.18) perspective(800px) rotateY(-7deg) rotateX(2deg);
  box-shadow: 0 10px 20px 0 #00d4ff55, 0 0 0 8px #00d4ff11;
  border-color: #00d4ff;
  filter: brightness(1.08) drop-shadow(0 0 24px #00d4ff55);
}
.expertise-img-block:not(.in-view) .expertise-img {
  filter: grayscale(0.2) blur(0.5px) brightness(0.85);
}
.expertise-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  min-width: 200px;
  opacity: 0.7;
  transition: opacity 0.4s, transform 0.4s;
}
.expertise-img-block.in-view .expertise-text-content {
  opacity: 1;
  transform: translateX(0px);
}
.expertise-img-block:not(.in-view) .expertise-text-content {
  opacity: 0.5;
  transform: translateX(24px);
}
.our-expertise-big-text {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.service-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #00d4ff !important; /* Retain original color */
  background: linear-gradient(90deg, #00d4ff 10%, #0af0c7 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.1rem;
  margin-top: 0;
  text-align: left;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,212,255,0.3);
  transition: text-shadow 0.3s;
}
.expertise-img-block.in-view .service-title {
  text-shadow: 0 4px 24px #00d4ff99;
  animation: serviceTitlePop 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes serviceTitlePop {
  0% { transform: scale(1); }
  60% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.service-description {
  font-size: clamp(0.9rem, 2vw, 1.13rem);
  color: #e0e6f6 !important; /* Retain original color */
  margin-top: 0.7rem;
  margin-bottom: 0;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.expertise-img-block.in-view .service-description {
  font-weight: 500;
  letter-spacing: 0.2px;
}
.lottie-container {
  width: 54px;
  height: 54px;
  margin: 0.5rem 0 0 0;
  background: rgba(0,212,255,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  pointer-events: none;
  box-shadow: 0 2px 12px 0 #00d4ff22;
  transition: opacity 0.3s;
}
.expertise-img-block.in-view .lottie-container {
  opacity: 1;
  filter: drop-shadow(0 0 8px #00d4ff88);
}
.svg-accent {
  width: 60px;
  height: 8px;
  margin: 0.7rem 0 1.2rem 0;
  display: block;
}
.expertise-img-block.in-view .svg-accent path {
  stroke: #00d4ff;
  stroke-width: 4;
  stroke-dasharray: 120;
  stroke-dashoffset: 0;
  animation: accentLineAnim 1s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes accentLineAnim {
  from { stroke-dashoffset: 120; }
  to { stroke-dashoffset: 0; }
}

/* Why Choose Us Section */
.why-choose-us {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  overflow: hidden;
  z-index: 3;
  padding: 5rem 0 5rem 0.5rem;
}
.why-choose-us .container {
  position: relative;
  z-index: 2;
}
.why-choose-us-3d-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
.why-choose-us-inner {
  min-height: 70vh;
  align-items: center;
  justify-content: center;
}
.image-wrapper {
  position: relative;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}
.section-img {
  width: 100%;
  max-width: clamp(250px, 70vw, 400px);
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 8px 48px rgba(0, 212, 255, 0.18), 0 2px 16px rgba(0, 212, 255, 0.08);
  border: 2px solid #00d4ff33;
  background: #0a1a3c;
  transition: transform 0.8s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.4s, filter 0.3s;
  will-change: transform, box-shadow, filter;
  loading: lazy;
}
.section-img.in-view {
  transform: scale(1.1) perspective(800px) rotateY(10deg) rotateX(5deg);
  box-shadow: 0 16px 64px rgba(0, 212, 255, 0.5), 0 0 0 12px #00d4ff22;
}
.why-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  opacity: 0;
  transform: translateY(-80px) scale(0.8);
  filter: blur(8px);
  transition: opacity 0.7s, transform 0.7s, filter 0.7s;
}
.why-title.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.why-texts {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.feature-lead {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: #e0e6f6;
  opacity: 0;
  transform: translateX(-120px);
  filter: blur(8px);
  transition: color 0.3s, transform 0.7s, opacity 0.7s, filter 0.7s;
}
.feature-lead.in-view {
  color: #fff;
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.feature-card {
  background: linear-gradient(120deg, #0a1a3c 80%, #00d4ff11 100%);
  border-radius: 1rem;
  border: 1.5px solid #00d4ff22;
  transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.4s, opacity 0.4s, filter 0.7s;
  opacity: 0;
  transform: translateX(120px);
  filter: blur(12px);
  position: relative;
  z-index: 2;
}
.feature-card.in-view {
  transform: scale(1.05) perspective(600px) rotateY(-5deg) translateX(0);
  box-shadow: 0 12px 48px rgba(0, 212, 255, 0.3), 0 0 0 8px #00d4ff22;
  opacity: 1;
  filter: blur(0);
}
.feature-card .card-body {
  padding: 1.5rem;
}
.feature-card .card-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
  transition: color 0.3s, text-shadow 0.3s;
}
.feature-card.in-view .card-title {
  color: #fff;
  text-shadow: 0 4px 24px #00d4ff99;
  animation: cardTitlePop 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cardTitlePop {
  0% { color: #00d4ff; transform: scale(1); }
  60% { color: #fff; transform: scale(1.12); }
  100% { color: #fff; transform: scale(1); }
}
.feature-card .card-text {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: #e0e6f6;
  line-height: 1.6;
  transition: color 0.3s;
}
.feature-card.in-view .card-text {
  color: #fff;
  font-weight: 500;
}

/* Our Process Section */
.our-process {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  overflow: hidden;
  z-index: 3;
  padding: 5rem 0 5rem 0.5rem;
}
.our-process .container {
  position: relative;
  z-index: 2;
}
.our-process-3d-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
.process-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  opacity: 0;
  transform: translateY(-80px) scale(0.8);
  filter: blur(8px);
  transition: opacity 0.7s, transform 0.7s, filter 0.7s;
}
.process-title.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.process-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.process-card {
  background: linear-gradient(120deg, #0a1a3c 80%, #00d4ff11 100%);
  border-radius: 1.5rem;
  border: 1.5px solid #00d4ff22;
  box-shadow: 0 8px 48px rgba(0, 212, 255, 0.18);
  transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.4s, opacity 0.4s, filter 0.7s;
  opacity: 0;
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  perspective: 1000px;
}
.process-card.in-view {
  opacity: 1;
  transform: scale(1.05) perspective(600px) rotateY(5deg) rotateX(3deg);
  box-shadow: 0 12px 48px rgba(0, 212, 255, 0.3), 0 0 0 8px #00d4ff22;
  filter: blur(0);
}
.process-card .card-body {
  padding: 1rem;
}
.process-card .card-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
  transition: color 0.3s, text-shadow 0.3s;
}
.process-card.in-view .card-title {
  color: #fff;
  text-shadow: 0 4px 24px #00d4ff99;
  animation: cardTitlePop 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
.process-card .card-text {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: #e0e6f6;
  line-height: 1.6;
  transition: color 0.3s;
}
.process-card.in-view .card-text {
  color: #fff;
  font-weight: 500;
}

/* Footer Section */
.footer {
  position: relative;
  background: transparent !important;
  overflow: hidden;
  z-index: 3;
  padding: 4rem 0 4rem 0.5rem;
}
.footer .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
}
.footer-3d-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
  border-bottom: 1.5px solid #00d4ff22;
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
}
.footer-logo-link {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.footer-logo {
  height: clamp(40px, 8vw, 54px);
  width: auto;
  max-width: clamp(120px, 30vw, 140px);
  object-fit: contain;
  margin-bottom: 0.7rem;
  filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.3));
  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55), filter 0.3s;
  cursor: pointer;
  display: block;
}
.footer-logo:hover {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.5));
}
.footer-col {
  flex: 1 1 0;
  min-width: 250px;
  max-width: 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 0 0.5rem;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 0.7s, transform 0.7s, filter 0.7s;
}
.footer-col.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.footer-title {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}
.footer-text {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: #e0e6f6;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  word-break: break-word;
}
.footer-col.in-view .footer-text {
  color: #fff;
}
.footer-link {
  color: #00d4ff;
  transition: color 0.3s;
  word-break: break-all;
  text-decoration: none !important;
}
.footer-link:hover {
  color: #fff;
  text-decoration: none !important;
}
.footer-icons {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.5rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
  border: 1.5px solid #00d4ff22;
}
.social-icon:hover {
  transform: scale(1.15);
  background: rgba(0, 212, 255, 0.18);
  border-color: #00d4ff55;
}
.icon-svg {
  fill: #00d4ff;
  transition: fill 0.3s;
}
.social-icon:hover .icon-svg {
  fill: #fff;
}
.footer-subscribe {
  display: flex;
  width: 100%;
  margin-top: 0.5rem;
}
.footer-subscribe .form-control {
  background: #0a1a3c;
  border: 1px solid #00d4ff33;
  color: #fff;
  border-radius: 0.5rem 0 0 0.5rem;
  font-size: clamp(0.8rem, 2vw, 1rem);
  padding: 0.7rem 1rem;
}
.footer-subscribe .btn-primary {
  background: #00d4ff;
  border: none;
  border-radius: 0 0.5rem 0.5rem 0;
  transition: background 0.3s, transform 0.3s;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
}
.footer-subscribe .btn-primary:hover {
  background: #fff;
  color: #0a1a3c;
  transform: scale(1.05);
}
.footer-bottom {
  margin-top: 0;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: opacity 0.7s, transform 0.7s, filter 0.7s;
}
.footer-bottom.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.footer-bottom .footer-text {
  margin-bottom: 0.2rem;
  color: #b8eaff;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}
.footer-bottom .footer-link {
  color: #00d4ff;
  font-weight: 500;
  margin: 0 0.3rem;
}
.footer-bottom .footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Operation & Other Locations Footer Styling */
.footer-location-block {
  margin-bottom: 1.3rem;
  padding: 1.5rem;
  background: linear-gradient(120deg, #0a1a3c 90%, #00d4ff11 100%);
  border-radius: 1rem;
  border: 1.5px solid #00d4ff22;
  box-shadow: 0 2px 12px 0 #00d4ff11;
  word-break: break-word;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
}
.footer-location-block strong {
  color: #00d4ff;
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  margin-bottom: 0.2rem;
}
.footer-location-block .footer-link {
  color: #00d4ff;
  word-break: break-all;
  text-decoration: none !important;
  transition: color 0.3s;
}
.footer-location-block .footer-link:hover {
  color: #fff;
  text-decoration: none !important;
}
.footer-location-block .footer-phone {
  display: flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 0.1em;
}
.footer-location-block .footer-phone i {
  transform: none !important;
  margin-right: 0.3em;
  color: #00d4ff;
}
.footer-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  color: #00d4ff;
  margin-right: 0.3em;
  vertical-align: middle;
}

/* Portfolio Section */
.portfolio-section {
  position: relative;
  background: transparent !important;
  overflow: hidden;
  z-index: 3;
  padding: 5rem 0 5rem 0.5rem;
}
.portfolio-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.portfolio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.portfolio-col {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}
.portfolio-card-3d {
  background: linear-gradient(135deg, #0a1a3c 70%, #00d4ff15 100%);
  border-radius: 1.8rem;
  border: 2px solid #00d4ff33;
  box-shadow: 0 10px 50px rgba(0, 212, 255, 0.15);
  overflow: hidden;
  min-height: 240px;
  width: 100%;
  perspective: 1500px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s, border-color 0.6s;
}
.portfolio-card-3d:hover,
.portfolio-card-3d:focus-within {
  transform: translateY(-8px) rotateX(4deg) rotateY(4deg);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4), 0 0 0 8px #00d4ff11;
  border-color: #00d4ff66;
}
.portfolio-img-3d-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 1.6rem;
  background: #0a1a3c;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 40px rgba(0, 212, 255, 0.1);
  transition: box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-card-3d:hover .portfolio-img-3d-wrapper,
.portfolio-card-3d:focus-within .portfolio-img-3d-wrapper {
  box-shadow: 0 12px 48px rgba(0, 212, 255, 0.3);
}
.portfolio-img-3d {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  loading: lazy;
}
.portfolio-card-3d:hover .portfolio-img-3d,
.portfolio-card-3d:focus-within .portfolio-img-3d {
  transform: scale(1.05);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 60, 0.8) 0%, rgba(0, 212, 255, 0.6) 100%);
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(-20px);
  pointer-events: none;
}
.portfolio-card-3d:hover .portfolio-overlay,
.portfolio-card-3d:focus-within .portfolio-overlay {
  opacity: 1;
  transform: translateZ(0);
}
.portfolio-overlay-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 212, 255, 0.5);
  margin-bottom: 0.5rem;
  text-align: center;
}
.portfolio-overlay-text {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: #e0e6f6;
  text-align: center;
  max-width: 80%;
}

/* About Us Section */
.about-us {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  overflow: hidden;
  z-index: 3;
  padding: 5rem 0 5rem 0.5rem;
}
.about-us-3d-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
.about-us .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-title {
  font-family: "Lucida Console", Courier, monospace;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}
.about-content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  gap: 2rem;
}
.about-image-container {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}
.about-main-img {
  width: 100%;
  max-width: clamp(300px, 80vw, 500px);
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 12px 48px #00d4ff33, 0 0 0 12px #00d4ff11;
  border: 3px solid #00d4ff66;
  background: #0a1a3c;
  opacity: 0;
  transform: scale(0.8) rotateY(20deg);
  transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow 0.4s, filter 0.3s, border 0.3s;
  loading: lazy;
}
.about-main-img.in-view {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
  box-shadow: 0 16px 64px rgba(0, 212, 255, 0.5), 0 0 0 12px #00d4ff22;
  filter: brightness(1.08) drop-shadow(0 0 24px #00d4ff55);
}
.about-content {
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.about-content-left, .about-content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-item {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.about-content-left .about-item {
  transform: translateX(-50px);
}
.about-item.in-view {
  opacity: 1;
  transform: translateX(0);
}
.about-subtitle {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 12px #00d4ff88, 0 2px 8px #00d4ff55, 0 0 24px #00d4ff33;
  letter-spacing: 0.5px;
  transition: color 0.3s, text-shadow 0.3s, transform 0.3s;
}
.about-item.in-view .about-subtitle {
  color: #fff;
  text-shadow: 0 0 24px #00d4ffcc, 0 4px 24px #00d4ff99, 0 0 32px #00d4ff77;
  animation: aboutSubtitlePop 0.7s cubic-bezier(.68,-0.55,.27,1.55);
  transform: scale(1.07);
}
@keyframes aboutSubtitlePop {
  0% { color: #00d4ff; transform: scale(1); text-shadow: 0 0 12px #00d4ff88; }
  60% { color: #fff; transform: scale(1.13); text-shadow: 0 0 32px #00d4ffcc; }
  100% { color: #fff; transform: scale(1.07); text-shadow: 0 0 24px #00d4ffcc; }
}
.about-text {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: #e0e6f6;
  line-height: 1.6;
  transition: color 0.3s;
}
.about-item.in-view .about-text {
  color: #fff;
  font-weight: 500;
}
.about-main-text {
  background: linear-gradient(90deg, #0a1a3c 80%, #00d4ff11 100%);
  border-radius: 1.2rem;
  padding: 1.2rem 2rem;
  box-shadow: 0 4px 24px rgba(0,212,255,0.10);
  margin-bottom: 2.2rem;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: #e0e6f6;
  position: relative;
  z-index: 2;
  gap: 1.5rem;
}
.about-main-text .about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  min-width: 40px;
}
.about-main-text .about-main-desc {
  flex: 1;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #e0e6f6;
  line-height: 1.7;
}
.about-main-text i.fas {
  margin: 0 0.18em;
  vertical-align: middle;
  opacity: 0.85;
}
.about-main-text .about-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

/* Alternate Our Expertise Layout */
.expertise-alt-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.expertise-alt-row {
  min-height: 280px;
}
.expertise-row {
  display: none !important;
}

/* Careers Form Container Styling */
.careers-form-container {
  background: rgba(10,26,60,0.75);
  border-radius: 1.2rem;
  box-shadow: 0 8px 48px 0 #00d4ff33, 0 0 0 8px #00d4ff11;
  border: 1.5px solid #00d4ff33;
  padding: 2.2rem 2rem 2rem 2rem;
  margin: 0 auto;
  width: 100%;
  max-width: clamp(400px, 90vw, 480px);
  z-index: 2;
  position: relative;
  transition: box-shadow 0.3s, border 0.3s;
}
.careers .image-wrapper {
  width: 100%;
  max-width: clamp(400px, 90vw, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.careers .image-wrapper img {
  width: 100%;
  max-width: clamp(400px, 90vw, 100%);
  height: auto;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 8px 48px 0 #00d4ff33;
  transition: max-width 0.3s, width 0.3s;
  loading: lazy;
}

/* Service Detail */
.service-detail {
  min-height: 120px;
  background: linear-gradient(120deg, #0a1a3c 80%, #00d4ff22 100%);
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px 0 #00d4ff22;
  color: #fff;
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin: 0.5rem 0 0.5rem 0;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(.77,0,.18,1), transform 0.45s cubic-bezier(.77,0,.18,1), box-shadow 0.45s cubic-bezier(.77,0,.18,1), border-color 0.45s cubic-bezier(.77,0,.18,1);
  position: relative;
  z-index: 2;
  border-left: 4px solid #00d4ff;
  box-sizing: border-box;
  min-width: clamp(200px, 80vw, 260px);
  max-width: clamp(360px, 90vw, 420px);
  display: none;
  filter: blur(8px);
}
.service-detail.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1.03);
  display: block;
  animation: serviceDetailFadeIn 0.6s cubic-bezier(.77,0,.18,1);
  filter: blur(0);
  box-shadow: 0 8px 48px 0 #00d4ff55, 0 0 0 6px #00d4ff33;
  border-left: 6px solid #00d4ff;
  animation: serviceDetailGlow 1.2s infinite alternate;
}
@keyframes serviceDetailFadeIn {
  from { opacity: 0; transform: translateY(40px) scale(0.96); filter: blur(12px); }
  to { opacity: 1; transform: translateY(0) scale(1.03); filter: blur(0); }
}
@keyframes serviceDetailGlow {
  from { box-shadow: 0 8px 48px 0 #00d4ff33, 0 0 0 6px #00d4ff33; border-left-color: #00d4ff; }
  to { box-shadow: 0 12px 64px 0 #00d4ff77, 0 0 0 10px #00d4ff44; border-left-color: #fff; }
}
.service-detail strong {
  color: #00d4ff !important; /* Apply color to service detail title */
  background: linear-gradient(90deg, #00d4ff 10%, #0af0c7 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(0.9rem, 2vw, 1.13rem);
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 12px #00d4ff55;
  animation: detailTitlePop 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes detailTitlePop {
  0% { transform: scale(1); }
  60% { transform: scale(1.13); }
  100% { transform: scale(1); }
}
.service-detail::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 24px;
  width: 8px;
  height: 48px;
  background: linear-gradient(180deg, #00d4ff 0%, #0a1a3c 100%);
  border-radius: 8px;
  opacity: 0.7;
  z-index: 1;
  display: block;
  filter: blur(1px);
  transition: opacity 0.3s;
}
.service-detail.active::before {
  opacity: 1;
  animation: detailBarGlow 1.2s infinite alternate;
}
@keyframes detailBarGlow {
  from { box-shadow: 0 0 8px #00d4ff55; }
  to { box-shadow: 0 0 24px #00d4ffcc; }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .footer .container {
    max-width: 98vw;
  }
  .footer-col {
    max-width: 50%;
    min-width: 240px;
    padding: 0 0.5rem;
  }
}

@media (max-width: 991px) {
  .footer-row {
    flex-wrap: wrap;
    gap: 0;
  }
  .footer-col {
    max-width: 50%;
    min-width: 220px;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  .about-content-wrapper {
    flex-direction: column !important;
    gap: 1.2rem !important;
    align-items: stretch !important;
  }
  .about-content-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: stretch;
  }
  .about-content-left, .about-content-right {
    flex-direction: column;
    gap: 0.7rem;
    align-items: stretch;
  }
  .about-image-container {
    margin: 1.2rem 0 !important;
    width: 100%;
    justify-content: center !important;
  }
  .about-main-img {
    max-width: clamp(300px, 98vw, 500px) !important;
    width: 100% !important;
  }
  .about-main-text {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    gap: 0.8rem;
  }
  .about-main-text .about-connector {
    display: none;
  }
  .expertise-alt-row {
    flex-direction: column !important;
    min-height: unset;
  }
  .expertise-alt-row > .col-lg-6 {
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }
  .portfolio-col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .portfolio-card-3d {
    min-height: 200px;
  }
  .portfolio-img-3d-wrapper {
    height: 200px;
  }
  .portfolio-overlay-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  }
  .portfolio-overlay-text {
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
  }
  .hero-swiper {
    max-width: clamp(500px, 90vw, 700px);
  }
  .navbar-nav .dropdown-menu.signin-dropdown {
    min-width: 100vw;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0.5rem;
    margin-top: 0.3rem;
    z-index: 1600;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: translateY(0);
  }
  .careers-form-container,
  .careers .image-wrapper {
    max-width: clamp(400px, 90vw, 600px);
  }
  .careers .image-wrapper img {
    max-width: clamp(400px, 90vw, 600px);
  }
  .service-detail {
    margin: 1.2rem auto 0 auto;
    min-width: clamp(160px, 80vw, 180px);
    max-width: clamp(300px, 95vw, 400px);
    font-size: clamp(0.8rem, 2vw, 1rem);
    padding: 1.2rem 1rem 1rem 1rem;
  }
  .service-detail::before {
    display: none;
  }
}

/* iPad Pro View (1024px) */
@media (min-width: 992px) and (max-width: 1024px) {
  #mainNav {
    padding: 0.3rem 0.5rem; /* Reduced padding for tighter layout */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100vw;
    flex-wrap: nowrap;
  }
  .navbar-brand {
    margin: 0;
    flex: 0 0 auto;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem); /* Reduced font size */
  }
  .navbar-brand .logo-img {
    height: clamp(32px, 6vw, 40px); /* Smaller logo */
    max-width: clamp(120px, 30vw, 160px);
  }
  .navbar-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    width: auto;
  }
  .nav-item {
    margin-left: 0.3rem; /* Reduced spacing */
  }
  .nav-link {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem); /* Smaller nav links */
    padding: 0.4rem 0.6rem; /* Reduced padding */
    margin-left: 0.3rem;
  }
  .nav-link.signin-animated {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem); /* Smaller sign-in link */
    padding: 0.4rem 0.6rem;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .navbar-nav .dropdown-menu.signin-dropdown {
    min-width: 160px; /* Smaller dropdown */
    right: 0;
    left: auto;
    transform: translateX(0);
    margin-top: 0.4rem;
    border-radius: 0.8rem;
    z-index: 1600;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    transform: translateY(0);
  }
  .navbar-nav .dropdown-menu.signin-dropdown .dropdown-item {
    font-size: clamp(0.75rem, 1.6vw, 0.9rem); /* Smaller dropdown items */
    padding: 0.4rem 1rem;
  }
/*   .hero {
    padding: 0 0 0 0.5rem;
    min-height: 80vh;
  }
  .hero-content {
    padding: 0 0.5rem;
    max-width: 960px;
    overflow: hidden; Prevent text overflow
  } */
 #hero-title {
    max-width: 85vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left : 1rem;
  }
  .expertise-img-block {
    min-width: clamp(360px, 75vw, 480px); /* Smaller container */
    max-width: clamp(360px, 75vw, 480px);
    padding: 1.8rem 2rem 1.8rem 1rem; /* Adjusted padding */
  }
  .expertise-img {
    width: clamp(140px, 25vw, 180px); /* Smaller image */
    height: clamp(160px, 30vw, 200px);
    margin-right: 2rem;
    margin-left: 0.8rem;
  }
  .expertise-text-content {
    min-width: 180px; /* Ensure space for description */
  }
  .service-description {
    font-size: clamp(0.8rem, 1.8vw, 1rem); /* Slightly smaller text */
  }
  .process-card {
  min-width: clamp(150px, 45vw, 250px);
  padding: 2rem;
  margin: 1rem; /* Add spacing between cards */
  background-color: rgba(255, 255, 255, 0.05); /* Optional for visibility */
  border-radius: 1rem;
}
  .process-card .card-title {
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  }
  .process-card .card-text {
    font-size: clamp(0.8rem, 1.8vw, 1.0rem);
  }
}
/* Tablet View (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
.hero {
    padding: 70px 0 0 0.5rem;
    min-height: 80vh;
  }
  .hero-content {
    padding: 0 0.5rem;
    max-width: 750px;
  }
  .hero-swiper {
    max-width: clamp(500px, 90vw, 700px);
  }
  .navbar-nav .dropdown-menu.signin-dropdown {
    z-index: 1600;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(0);
  }
  .expertise-img-block {
    min-width: clamp(360px, 80vw, 460px); /* Uniform size */
    max-width: clamp(360px, 80vw, 460px);
    padding: 1.8rem 2rem 1.8rem 1rem;
  }
  .expertise-img {
    width: clamp(140px, 30vw, 180px); /* Uniform image size */
    height: clamp(160px, 35vw, 200px);
    margin-right: 2rem;
    margin-left: 0.8rem;
  }
  .expertise-text-content {
    min-width: 180px;
  }
  .service-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem); /* Larger description */
    line-height: 1.7;
  }
  .service-detail {
    min-width: clamp(200px, 85vw, 300px); /* Larger service detail */
    max-width: clamp(320px, 90vw, 400px);
    padding: 1.5rem 1.2rem;
    }
  .process-row {
    gap: 12.5rem; /* Adjusted gap for better spacing */
  }
  .process-card {
    min-width: clamp(240px, 45vw, 320px); /* Uniform size for clarity */
    max-width: clamp(320px, 90vw, 400px);
    padding: 1.8rem; /* Increased padding */
    margin-right : 10rem;
    margin-left : -5.0rem;
    align-items : center;
    justify-content : center;
  }
  .process-card .card-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  }
  .process-card .card-text {
    font-size: clamp(0.8rem, 1.8vw, 1rem);
  }
  .portfolio-col {
    flex: 0 0 50%; /* Two columns for better layout */
    max-width: 40%;
  }
  .portfolio-card-3d {
    min-height: 180px;
  }
  .portfolio-img-3d-wrapper {
    height: 180px;
  }
  .footer-col {
    max-width: 50%;
    min-width: 200px;
    margin-bottom: 1.5rem;
  }
}
/* Mobile View */
@media (max-width: 767px) {
  .hero {
    padding: 72px 0 0 0.5rem !important;
    min-height: 80vh !important;
  }
  .hero-content {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
    padding: 0 0.5rem !important;
    width: 100% !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .hero-content h1 {
    font-size: clamp(1.0rem, 3vw, 1.3rem) !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
    margin-bottom: 0.7rem !important;
    text-align: center !important;
    max-width: 90vw !important;
    white-space: nowrap !important;
  }
  
  .hero-content p {
    font-family: 'Audiowide', cursive !important;
    font-weight: 100 !important;
    letter-spacing: 0.5px !important;
    font-size: clamp(0.8rem, 2.8vw, 1.0rem) !important;
    color: #e0e6f6 !important;
    max-width: 90vw !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    white-space: normal !important;
    background: none !important; /* Highlight removed */
  }
  #hero-title #welcome-to {
    color: #00d4ff !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    font-size: clamp(0.9rem, 2vw, 1rem) !important;
    max-width: 90vw !important;
    white-space: nowrap !important;
  }
  #hero-title #cye-typing {
    color: #f59e1a !important;
    font-weight: 900;
    letter-spacing: 1.5px;
    font-size: clamp(1.5rem, 2.5vw, 1.2rem) !important;
    max-width: 90vw !important;
    white-space: nowrap !important;
  }
  .hero-swiper {
    margin-top: 0.2rem !important;
    margin-bottom: 0 !important;
    padding-top: 0.5rem !important;
    padding-bottom: 1.2rem !important;
    border-radius: 0.8rem !important;
    max-width: clamp(300px, 98vw, 500px);
  }
  .hero-swiper .hero-slider-img {
    height: clamp(220px, 35vw, 170px) !important;
    max-width: clamp(280px, 98vw, 500px) !important;
  }
  #hero-title {
    margin-top: 2.2rem !important;
  }
  .about-us {
    padding: 3rem 0 3rem 0.5rem !important;
  }
  .about-title {
    font-size: clamp(2.0rem, 3vw, 1.3rem) !important;
    margin-bottom: 0.7rem !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    word-break: break-word !important;
  }
  .about-main-text {
    font-size: clamp(0.8rem, 2vw, 0.9rem) !important;
    padding: 0.6rem 0.6rem !important;
    margin-bottom: 0.7rem !important;
    gap: 0.5rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .about-main-text .about-connector {
    display: none !important;
  }
  .about-main-text .about-main-desc {
    font-size: clamp(0.85rem, 2vw, 1rem) !important;
    line-height: 1.5 !important;
    max-width: 90vw !important;
  }
  .services {
    padding: 3rem 0 3rem 0.5rem !important;
  }
  .expertise-img-block {
    min-width: clamp(300px, 95vw, 400px) !important;
    max-width: clamp(300px, 95vw, 400px) !important;
    padding: 1.5rem 1rem 1.5rem 0.8rem !important;
    margin-left: 0 !important;
    gap: 1.5rem !important;
  }
  .expertise-img {
    width: clamp(120px, 30vw, 180px) !important;
    height: clamp(140px, 35vw, 200px) !important;
    margin-right: 1.5rem !important;
    margin-left: 0.5rem !important;
  }
  .expertise-text-content {
    min-width: 150px !important;
  }
  .our-expertise-big-text {
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    margin-bottom: 0.7rem !important;
  }
  .service-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem) !important;
    margin-bottom: 0.5rem !important;
  }
  .service-description {
    font-size: clamp(0.7rem, 1.8vw, 0.9rem) !important;
  }
  .lottie-container {
    width: 44px !important;
    height: 44px !important;
    margin: 0.3rem 0 0 0 !important;
  }
  .svg-accent {
    width: 50px !important;
    height: 6px !important;
    margin: 0.5rem 0 0.8rem 0 !important;
  }
  .why-choose-us {
    padding: 3rem 0 3rem 0.5rem !important;
  }
  .why-title {
    font-size: clamp(1.8rem, 3vw, 1.3rem) !important;
    margin-bottom: 0.7rem !important;
  }
  .feature-lead {
    font-size: clamp(0.8rem, 2vw, 0.9rem) !important;
  }
  .feature-card .card-title {
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
  }
  .feature-card .card-text {
    font-size: clamp(0.7rem, 1.8vw, 0.9rem) !important;
  }
  .our-process {
    padding: 3rem 0 3rem 0.5rem !important;
  }
  .process-title {
    font-size: clamp(2.0rem, 3vw, 1.3rem) !important;
    margin-bottom: 3.0rem !important;
  }
  .process-card .card-title {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem) !important;
  }
  .process-card .card-text {
    font-size: clamp(0.7rem, 1.8vw, 0.9rem) !important;
  }
  .portfolio-section {
    padding: 3rem 0 3rem 0.5rem !important;
  }
  .portfolio-title {
    font-size: clamp(2.0rem, 3vw, 1.3rem) !important;
    margin-bottom: 2.5rem !important;
  }
  .portfolio-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .portfolio-card-3d {
    min-height: 180px !important;
  }
  .portfolio-img-3d-wrapper {
    height: 180px !important;
  }
  .portfolio-overlay-title {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem) !important;
  }
  .portfolio-overlay-text {
    font-size: clamp(0.6rem, 1.5vw, 0.8rem) !important;
  }
  .footer {
    padding: 3rem 0 3rem 0.5rem !important;
  }
  .footer-title {
    font-size: clamp(0.9rem, 2vw, 1rem) !important;
  }
  .footer-text {
    font-size: clamp(0.7rem, 1.8vw, 0.85rem) !important;
  }
  .footer-bottom .footer-text {
    font-size: clamp(0.7rem, 1.8vw, 0.8rem) !important;
  }
  .footer-location-block {
    padding: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .footer-location-block strong {
    font-size: clamp(0.8rem, 2vw, 0.95rem) !important;
  }
  .footer-subscribe .form-control {
    font-size: clamp(0.7rem, 1.8vw, 0.85rem) !important;
    padding: 0.5rem 0.8rem !important;
  }
  .footer-subscribe .btn-primary {
    font-size: clamp(0.7rem, 1.8vw, 0.85rem) !important;
    padding: 0.5rem 0.8rem !important;
  }
  .footer-icons {
    gap: 0.5rem !important;
  }
  .social-icon {
    width: 32px !important;
    height: 32px !important;
  }
  .navbar-brand {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding-left: 0.5rem !important;
    margin-top: 0.5rem !important;
  }
  .nav-item {
    margin-left: 0 !important;
    margin-bottom: 0.5rem !important;
  }
  .nav-link {
    padding: 0.5rem 0 !important;
    font-size: clamp(0.9rem, 2vw, 1rem) !important;
  }
  .navbar-nav .nav-item .nav-link.signin-animated {
    font-size: clamp(0.9rem, 2vw, 1rem) !important;
    padding: 0.5rem 0 !important;
  }
  .navbar-nav .dropdown-menu.signin-dropdown {
    min-width: 100vw !important;
    margin-top: 0 !important;
    border-radius: 0.5rem !important;
    left: 0 !important;
    right: 0 !important;
    top: 100% !important;
    transform: translateY(0) !important;
  }
  .navbar-nav .dropdown-menu.signin-dropdown .dropdown-item {
    font-size: clamp(0.8rem, 2vw, 0.95rem) !important;
    padding: 0.4rem 1rem !important;
  }
  #mainNav {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    z-index: 1500 !important;
    transition: transform 0.3s ease-in-out !important;
  }
  #mainNav.hidden {
    transform: translateY(-100%) !important;
  }
  #mainNav.visible {
    transform: translateY(0) !important;
  }
  .footer-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .footer-logo-link {
    justify-content: flex-start !important;
    margin-bottom: 1.5rem !important;
  }
  .footer-col {
    max-width: 100% !important;
    min-width: 100% !important;
    margin-bottom: 2rem !important;
    padding: 0 !important;
  }
  .footer-subscribe {
    width: 100% !important;
    margin-top: 0.3rem !important;
  }
}