@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #0a0e27 0%,
    #1a1f3a 25%,
    #0f1a3d 50%,
    #1e1b4b 75%,
    #0a0e27 100%
  );
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  line-height: 1.6;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", "Poppins", sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  font-weight: 600;
}

p,
li {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.65;
  color: #b8c5d6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hero Video Background Styles */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

/* Ensure hero section has position relative */
.hero-gradient {
  position: relative;
  background: linear-gradient(
    135deg,
    #0a0e27 0%,
    #1a1f3a 25%,
    #0f1a3d 50%,
    #1e1b4b 75%,
    #0a0e27 100%
  );
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
}

/* Fallback background if video doesn't load */
.hero-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #0a0e27 0%,
    #1a1f3a 25%,
    #0f1a3d 50%,
    #1e1b4b 75%,
    #0a0e27 100%
  );
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-video-bg {
    display: none; /* Hide video on mobile for better performance */
  }
  
  /* Show gradient background on mobile instead */
  .hero-gradient::before {
    opacity: 1;
  }
}
.hero-title {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  overflow: hidden;
}

.hero-title .slide-left {
  display: inline-block;
  animation: slideFromLeft 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-title .slide-right {
  display: inline-block;
  animation: slideFromRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  opacity: 0;
}

@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-description {
  animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
  opacity: 0;
}

.hero-stats {
  animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards;
  opacity: 0;
}

/* Header Navigation - Fixed for All Devices Including Tablet */

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-sticky.scrolled {
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(0, 194, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* Logo */
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img:hover {
  transform: scale(1.02);
}

/* Desktop Navigation - Hidden on Mobile/Tablet */
.desktop-nav {
  display: none;
}

/* Show desktop nav on large screens (1024px and up) */
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

/* Tablet-specific adjustments (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem; /* Reduced gap for tablet */
  }
  
  .nav-link {
    font-size: 0.875rem; /* Smaller font for tablet */
    padding: 0.4rem 0;
  }
  
  /* Hide "Get Started" button on tablet to save space */
  .btn-primary {
    display: none !important;
  }
  
  /* Or make it smaller if you want to keep it */
  /* .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  } */
}

/* Navigation Links */
.nav-link {
  position: relative;
  font-weight: 500;
  color: #b8c5d6;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  text-decoration: none;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, #00c2ff 0%, #a855f7 100%);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #00c2ff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-link.active {
  color: #00c2ff;
}

.nav-link.active::after {
  width: 100%;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #00c2ff 0%, #a855f7 100%);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 194, 255, 0.3);
  text-decoration: none;
  display: inline-block;
}

/* Hamburger Menu - Show only on mobile and tablet */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 51;
}

/* Hide hamburger on desktop (1024px and up) */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #00c2ff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  border-bottom: 1px solid rgba(0, 194, 255, 0.1);
  padding: 1rem;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: #b8c5d6;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  width: auto;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: #00c2ff;
}

.mobile-nav a.active {
  color: #00c2ff;
}

/* Tablet-specific logo size */
@media (min-width: 768px) and (max-width: 1023px) {
  .logo-img {
    height: 40px;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
  .logo-img {
    height: 36px;
  }
  
  .desktop-nav {
    display: none !important;
  }
  
  .btn-primary {
    display: none !important;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #00c2ff 0%, #a855f7 100%);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 194, 255, 0.3);
  text-decoration: none;
  display: inline-block;
  will-change: transform, box-shadow;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 194, 255, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-primary:focus-visible {
  outline: 2px solid #00c2ff;
  outline-offset: 2px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(0, 194, 255, 0.3);
  padding: 0.75rem 1.75rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-secondary:hover {
  background: rgba(0, 194, 255, 0.15);
  border-color: #00c2ff;
  color: #00c2ff;
  transform: translateY(-3px);
}

.gradient-text {
  background: linear-gradient(135deg, #00c2ff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

/* .page {
  display: none;
} */

.page.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

.services-section {
  /* background: linear-gradient(
          135deg,
          #0a0e27 0%,
          #1a1f3a 25%,
          #0f1a3d 50%,
          #1e1b4b 75%,
          #0a0e27 100%
        ); */
  background-color: transparent;
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Floating particles */
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image: radial-gradient(
            circle at 20% 30%,
            rgba(0, 194, 255, 0.1) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 70%,
            rgba(168, 85, 247, 0.1) 0%,
            transparent 50%
          ); */
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}
/* Tools & Technologies Section */
/* Tools & Technologies Section - Fixed */
.tools-section {
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* Tools Grid with row limitation */
.tools-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Show only 12 items initially (3 rows × 4 columns) */
.tools-grid:not(.expanded) .tool-card:nth-child(n + 13) {
  display: none;
}

/* Tablet: 3 columns, show 9 items (3 rows × 3 columns) */
@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tools-grid:not(.expanded) .tool-card:nth-child(n + 10) {
    display: none;
  }
}

/* Mobile: 2 columns, show 6 items (3 rows × 2 columns) */
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .tools-grid:not(.expanded) .tool-card:nth-child(n + 7) {
    display: none;
  }
}

.tools-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 30% 40%,
      rgba(168, 85, 247, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(0, 194, 255, 0.08) 0%,
      transparent 50%
    );
}

.tool-card {
  background: linear-gradient(
    135deg,
    rgba(20, 30, 60, 0.5) 0%,
    rgba(10, 14, 39, 0.7) 100%
  );
  border: 1px solid rgba(0, 194, 255, 0.15);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 194, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.tool-card:hover::before {
  left: 100%;
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 194, 255, 0.25);
  border-color: rgba(0, 194, 255, 0.4);
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.08) 0%,
    rgba(168, 85, 247, 0.08) 100%
  );
}

.tool-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.15) 0%,
    rgba(168, 85, 247, 0.15) 100%
  );
  border: 2px solid rgba(0, 194, 255, 0.3);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tool-card:hover .tool-icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.25) 0%,
    rgba(168, 85, 247, 0.25) 100%
  );
  border-color: rgba(0, 194, 255, 0.5);
  box-shadow: 0 8px 16px rgba(0, 194, 255, 0.3);
}

.tool-icon-wrapper svg,
.tool-icon-wrapper img {
  width: 40px;
  height: 40px;
  color: #00c2ff;
  transition: all 0.3s ease;
}

.tool-card:hover .tool-icon-wrapper svg,
.tool-card:hover .tool-icon-wrapper img {
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(0, 194, 255, 0.8));
}

.tool-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.tool-description {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.tool-card:hover .tool-description {
  color: #b8c5d6;
}

@media (max-width: 768px) {
  .tool-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .tool-icon-wrapper svg,
  .tool-icon-wrapper img {
    width: 32px;
    height: 32px;
  }
  
  .tool-name {
    font-size: 1rem;
  }
  
  .tool-description {
    font-size: 0.8125rem;
  }
  
  .tool-card {
    padding: 1.5rem 1rem;
  }
}

/* Enhanced service card */
.service-card {
  background: linear-gradient(
    135deg,
    rgba(20, 30, 60, 0.6) 0%,
    rgba(10, 14, 39, 0.8) 100%
  );
  border: 1px solid rgba(0, 194, 255, 0.15);
  border-radius: 1rem;
  padding: 1.5rem; /* Reduced from 2rem */
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 320px; /* Added minimum height */
}

.icon-circle {
  width: 48px; /* Reduced from 56px */
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.2) 0%,
    rgba(168, 85, 247, 0.2) 100%
  );
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-circle svg {
  width: 20px; /* Reduced from 24px */
  height: 20px;
  color: #00c2ff;
  stroke-width: 1.5;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 194, 255, 0.1),
    transparent
  );
  transition: left 0.7s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 194, 255, 0.25);
  border-color: rgba(0, 194, 255, 0.5);
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.08) 0%,
    rgba(168, 85, 247, 0.08) 100%
  );
}

/* Icon container */
.icon-container {
  width: 72px;
  height: 72px;
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.2) 0%,
    rgba(168, 85, 247, 0.2) 100%
  );
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-container::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #00c2ff, #a855f7);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover .icon-container {
  transform: scale(1.15) rotate(8deg);
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.35) 0%,
    rgba(168, 85, 247, 0.35) 100%
  );
}

.service-card:hover .icon-container::after {
  opacity: 0.3;
}

.icon-container svg {
  width: 32px;
  height: 32px;
  color: #00c2ff;
  transition: all 0.3s ease;
}

.service-card:hover .icon-container svg {
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(0, 194, 255, 0.8));
}

/* Stats badge */
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #00c2ff;
  margin-top: auto;
  transition: all 0.3s ease;
}

.service-card:hover .stat-badge {
  background: rgba(0, 194, 255, 0.2);
  border-color: rgba(0, 194, 255, 0.4);
  transform: translateX(4px);
}

/* Card content layout */
.card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.card-description {
  color: #9ca3af;
  line-height: 1.7;
  font-size: 0.9375rem;
  flex-grow: 1;
}

/* Reveal animation */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-item:nth-child(1) {
  animation-delay: 0.1s;
}
.reveal-item:nth-child(2) {
  animation-delay: 0.2s;
}
.reveal-item:nth-child(3) {
  animation-delay: 0.3s;
}
.reveal-item:nth-child(4) {
  animation-delay: 0.4s;
}

/* Pulse animation on icon */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.service-card:hover .icon-container {
  animation: pulse 2s ease-in-out infinite;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #00c2ff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating badge animation */
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.service-card:hover .stat-badge {
  animation: floatBadge 2s ease-in-out infinite;
}
/* Compact Team Cards */
.team-card-compact {
  background: linear-gradient(
    135deg,
    rgba(20, 30, 60, 0.6) 0%,
    rgba(10, 14, 39, 0.8) 100%
  );
  border: 1px solid rgba(0, 194, 255, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card-compact:hover {
  border-color: rgba(0, 194, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 194, 255, 0.15);
}

.team-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.2) 0%,
    rgba(168, 85, 247, 0.2) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 3px solid rgba(0, 194, 255, 0.4);
}

.team-avatar span {
  font-size: 3rem;
}

.team-summary {
  min-height: 3rem;
  line-height: 1.5;
}

.social-icons a {
  color: #00c2ff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #fff;
}

.btn-primary-small {
  background: linear-gradient(135deg, #00c2ff 0%, #a855f7 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Team Modal Styles */
.team-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.team-modal.hidden {
  display: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.modal-content-team {
  position: relative;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 1rem;
  padding: 2.5rem 3rem 2.5rem 2.5rem;
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #06b6d4;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 300;
}

.modal-close:hover {
  background: rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.5);
  transform: scale(1.05);
}

.modal-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.2));
  border: 2px solid rgba(6, 182, 212, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.modal-content-team h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.modal-content-team #modalRole {
  font-size: 1rem;
  color: #06b6d4;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.modal-content-team #modalLocation {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.modal-content-team #modalLocation::before {
  content: "📍";
  font-size: 0.75rem;
}

.modal-content-team h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-icon-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 0.5rem;
  color: #06b6d4;
  transition: all 0.3s ease;
}

.social-icon-modal:hover {
  background: rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Left-Right Content Division with Border */
.modal-content-team > div {
  display: flex;
  flex-direction: column;
  /* gap: 2rem; */
  flex: 1;
  overflow: hidden;
}

@media (min-width: 768px) {
  .modal-content-team > div {
    flex-direction: row;
    gap: 0;
  }
  
  .modal-content-team > div > div:first-child {
    border-right: 1px solid rgba(6, 182, 212, 0.2);
    padding-right: 2rem;
    flex-shrink: 0;
    overflow-y: visible;
  }
  
  .modal-content-team > div > div:last-child {
    padding-left: 2rem;
    overflow-y: auto;
    padding-right: 0.5rem;
  }
}

/* Custom Scrollbar for Right Content Only */
.modal-content-team > div > div:last-child::-webkit-scrollbar {
  width: 6px;
}

.modal-content-team > div > div:last-child::-webkit-scrollbar-track {
  background: rgba(6, 182, 212, 0.1);
  border-radius: 3px;
}

.modal-content-team > div > div:last-child::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.3);
  border-radius: 3px;
}

.modal-content-team > div > div:last-child::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 182, 212, 0.5);
}

/* Description Styling */
#modalDescription {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: left;
  white-space: pre-line;
}

/* Remove individual scrollbar from description */
#modalDescription::-webkit-scrollbar {
  display: none;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .modal-content-team {
    padding: 1.5rem;
    max-height: 90vh;
  }
  
  .modal-content-team > div {
    overflow-y: auto;
    padding-right: 0.5rem;
  }
  
  .modal-content-team > div::-webkit-scrollbar {
    width: 6px;
  }

  .modal-content-team > div::-webkit-scrollbar-track {
    background: rgba(6, 182, 212, 0.1);
    border-radius: 3px;
  }

  .modal-content-team > div::-webkit-scrollbar-thumb {
    background: rgba(6, 182, 212, 0.3);
    border-radius: 3px;
  }

  .modal-content-team > div::-webkit-scrollbar-thumb:hover {
    background: rgba(6, 182, 212, 0.5);
  }
  
  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }
  
  .modal-avatar {
    width: 100px;
    height: 100px;
  }
  
  .modal-content-team h2 {
    font-size: 1.5rem;
  }
  
  #modalDescription {
    font-size: 0.9rem;
  }
}
/* Hide scrollbar on description */
#modalDescription::-webkit-scrollbar {
  display: none;
}

#modalDescription::-webkit-scrollbar-track {
  background: rgba(6, 182, 212, 0.1);
  border-radius: 3px;
}

#modalDescription::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.3);
  border-radius: 3px;
}

#modalDescription::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 182, 212, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .modal-content-team {
    padding: 1.5rem;
    max-height: 90vh;
  }
  
  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }
  
  .modal-avatar {
    width: 100px;
    height: 100px;
  }
  
  .modal-content-team h2 {
    font-size: 1.5rem;
  }
  
  #modalDescription {
    font-size: 0.9rem;
    max-height: 300px;
  }
}

/* Social Icons */
#modalSocials {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.social-icon-modal {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.1);
  border: 2px solid rgba(0, 194, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c2ff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icon-modal:hover {
  background: rgba(0, 194, 255, 0.25);
  border-color: #00c2ff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 194, 255, 0.4);
}

.social-icon-modal svg {
  width: 20px;
  height: 20px;
}

/* Connect Header */
.modal-content-team h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.modal-content-team h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #00c2ff 0%, #a855f7 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content-team {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .modal-content-team .flex {
    flex-direction: column;
    /* gap: 0.5rem; */
  }

  .modal-content-team .text-center {
    min-width: 100%;
  }

  .modal-avatar {
    width: 120px;
    height: 120px;
  }

  .modal-avatar span {
    font-size: 3rem;
  }

  #modalName {
    font-size: 1.5rem;
  }

  #modalDescription {
    padding-right: 0;
    font-size: 0.875rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}

/* Scrollbar for modal (if content overflows) */
.modal-content-team::-webkit-scrollbar {
  width: 8px;
}

.modal-content-team::-webkit-scrollbar-track {
  background: rgba(0, 194, 255, 0.1);
  border-radius: 4px;
}

.modal-content-team::-webkit-scrollbar-thumb {
  background: rgba(0, 194, 255, 0.4);
  border-radius: 4px;
}

.modal-content-team::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 194, 255, 0.6);
}
.service-card:hover .icon-circle {
  transform: scale(1.12) rotate(6deg);
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.3) 0%,
    rgba(168, 85, 247, 0.3) 100%
  );
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  color: #00c2ff;
  stroke-width: 1.5;
}

.section-py {
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.section-px {
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item:nth-child(1) {
  transition-delay: 0ms;
}
.reveal-item:nth-child(2) {
  transition-delay: 60ms;
}
.reveal-item:nth-child(3) {
  transition-delay: 120ms;
}
.reveal-item:nth-child(4) {
  transition-delay: 180ms;
}
.reveal-item:nth-child(5) {
  transition-delay: 240ms;
}
.reveal-item:nth-child(6) {
  transition-delay: 300ms;
}
/* Reviews Marquee Styles */
/* Reviews Marquee Styles */
.reviews-section {
  background: transparent;
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(0, 194, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(168, 85, 247, 0.05) 0%,
      transparent 50%
    );
}
.swiper {
  padding: 2rem 3rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: #00c2ff;
  background: rgba(0, 194, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(0, 194, 255, 0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 194, 255, 0.2);
}

.swiper-pagination-bullet {
  background: #00c2ff;
}
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.marquee-content {
  display: flex;
  gap: 1.5rem;
  animation: marquee 60s linear infinite;
  will-change: transform;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Reviews Section - Improved Spacing and Styling */
.review-card {
  flex: 0 0 320px;
  background: linear-gradient(
    135deg,
    rgba(30, 41, 75, 0.85) 0%,
    rgba(20, 30, 60, 0.95) 100%
  );
  border: 1.5px solid rgba(0, 194, 255, 0.25);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 194, 255, 0.08),
    transparent
  );
  transition: left 0.6s ease;
}

.review-card:hover::before {
  left: 100%;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 194, 255, 0.3);
  border-color: rgba(0, 194, 255, 0.6);
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.15) 0%,
    rgba(168, 85, 247, 0.15) 100%
  );
}

.review-top {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.upwork-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #14b8a6;
  width: fit-content;
  flex-shrink: 0;
}

.review-date {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 9999px;
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 500;
  flex-shrink: 0;
}

.review-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 1.4em;
  margin-bottom: 0.35rem;
  word-break: break-word;
}

.rating-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.star {
  color: #fbbf24;
  font-size: 1.4rem;
  line-height: 1;
}

.review-text {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.5;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word;
  max-height: 2.625em;
}

.review-card:hover .review-text {
  color: #f1f5f9;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .review-card {
    flex: 0 0 280px;
    height: 280px;
    padding: 1.25rem;
  }

  .review-title {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    height: 1.33em;
  }

  .star {
    font-size: 1.25rem;
  }

  .rating-stars {
    margin-bottom: 0.6rem;
  }

  .review-text {
    font-size: 0.8125rem;
  }
}
footer {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  padding: 3rem 0 0;
  margin-top: 0;
  border-top: 1px solid rgba(0, 194, 255, 0.2);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 194, 255, 0.5),
    rgba(168, 85, 247, 0.5),
    transparent
  );
}
.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem) 2.5rem;
}

.footer-brand {
  grid-column: 1;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}

.footer-section a {
  color: #b8c5d6;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  position: relative;
  width: fit-content;
}

.footer-section a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #00c2ff 0%, #a855f7 100%);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-section a:hover {
  color: #00c2ff;
  transform: translateX(4px);
}

.footer-section a:hover::after {
  width: 100%;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

.footer-description {
  color: #b8c5d6;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 0;
}

.footer-social a::after {
  display: none;
}

.footer-social a:hover {
  background: rgba(0, 194, 255, 0.2);
  border-color: #00c2ff;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 194, 255, 0.3);
}

.footer-social a svg {
  transition: all 0.3s ease;
}

.footer-social a:hover svg {
  filter: drop-shadow(0 0 8px rgba(0, 194, 255, 0.6));
}

.footer-divider {
  border-top: 1px solid rgba(0, 194, 255, 0.15);
  padding: 1.25rem clamp(1.5rem, 4vw, 2.5rem);
  font-size: 0.875rem;
  color: #9ca3af;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  margin-top: 0;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 2.5rem 3rem;
    padding: 0 2rem 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / 2; /* First column only */
    grid-row: 1 / 3; /* Spans 2 rows */
  }

  .footer-section:nth-of-type(1) {
    grid-column: 2 / 3; /* Second column */
    grid-row: 1; /* First row */
  }

  .footer-section:nth-of-type(2) {
    grid-column: 2 / 3; /* Second column */
    grid-row: 2; /* Second row */
  }

  .footer-section:nth-of-type(3) {
    grid-column: 1 / 2; /* First column */
    grid-row: 3; /* Third row */
  }

  .footer-description {
    max-width: 100%;
  }
}

/* Tablet screens (769px to 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer-content {
    grid-template-columns: 1fr 1fr; /* Simple 2 columns */
    gap: 2.5rem;
    padding: 0 2rem 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1; /* Spans full width - first row */
    margin-bottom: 1rem;
  }

  .footer-description {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    height: 40px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }

  .footer-social a svg {
    width: 18px;
    height: 18px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 51;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #00c2ff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 1px;
}

.hamburger:focus-visible {
  outline: 2px solid #00c2ff;
  outline-offset: 2px;
}

.hamburger {
  position: relative;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  border-bottom: 1px solid rgba(0, 194, 255, 0.1);
  padding: 1rem;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: #b8c5d6;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  width: auto;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: #00c2ff;
  /* background: rgba(0, 194, 255, 0.1); */
}
.mobile-nav a.active {
  color: #00c2ff;
  /* border: 1px solid rgba(0, 194, 255, 0.3); */
}

input,
textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  min-height: 48px;
}

input::placeholder,
textarea::placeholder {
  padding: 2px;
  color: rgba(255, 255, 255, 0.4);
}

textarea {
  resize: none;
  min-height: 140px;
  padding: 1rem 1.25rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #00c2ff;
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}
label {
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
}
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .logo-img {
    height: 40px;
  }

  .section-py {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  footer {
    padding: 3rem 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .section-px {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .logo-img {
    height: 32px;
  }
}

:focus-visible {
  outline: 2px solid #00c2ff;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* Swiper Carousel Styles for About Page - Fixed Overlay */
.aboutCarouselSwiper {
  width: 100%;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.aboutCarouselSwiper .swiper-wrapper {
  align-items: center;
}

.aboutCarouselSwiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aboutCarouselSwiper .swiper-slide-active {
  opacity: 1;
}

.aboutCarouselSwiper .swiper-slide .carousel-image-swiper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

/* Add background gradient directly to carousel-image-swiper */
.carousel-image-swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.25) 0%,
    rgba(168, 85, 247, 0.25) 100%
  );
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s ease;
}

.carousel-image-swiper:hover::before {
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.4) 0%,
    rgba(168, 85, 247, 0.4) 100%
  );
}

.carousel-image-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.carousel-image-swiper:hover img {
  transform: scale(1.05);
}

/* Pagination Styling */
.aboutCarouselSwiper .swiper-pagination {
  bottom: 20px !important;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.aboutCarouselSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0, 194, 255, 0.3);
}

.aboutCarouselSwiper .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #00c2ff 0%, #a855f7 100%);
  width: 32px;
  border-radius: 4px;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(0, 194, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .aboutCarouselSwiper {
    height: 300px;
  }
  
  .aboutCarouselSwiper .swiper-pagination {
    bottom: 15px !important;
  }
  
  .aboutCarouselSwiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  
  .aboutCarouselSwiper .swiper-pagination-bullet-active {
    width: 24px;
  }
}

@media (max-width: 480px) {
  .aboutCarouselSwiper {
    height: 250px;
  }
}