/* Theme Variables - Light Theme */
:root {
  --lux-gradient: linear-gradient(120deg, #f8f9fa 0%, #e3f2fd 100%);
  --primary-blue: #2196f3;
  --accent-purple: #9c27b0;
  --dark-text: #1a1a1a;
  --light-text: #555555;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-blur: blur(10px);
  --nav-shadow: 0 8px 32px rgba(33, 150, 243, 0.15);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Nunito", Arial, sans-serif;
  background: var(--lux-gradient);
  color: var(--dark-text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 90px;
  z-index: 1000;
  transition: height 0.3s;
}
.navbar.scrolled {
  height: 70px;
}
.navbar-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: var(--glass-bg);
  border-bottom-left-radius: 60px 30px;
  border-bottom-right-radius: 60px 30px;
  box-shadow: var(--nav-shadow);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  transition: height 0.3s, box-shadow 0.3s;
}
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 3vw;
  position: relative;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 2px;
}
.nav-links {
  display: flex;
  gap: 2vw;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.3s, background 0.3s;
}
.nav-links li a:hover {
  color: var(--primary-blue);
  background: rgba(33, 150, 243, 0.1);
}
.cta-btn {
  background: linear-gradient(
    90deg,
    var(--primary-blue) 60%,
    var(--accent-purple) 100%
  );
  color: var(--light-text);
  padding: 12px 32px;
  border-radius: 30px 10px 30px 10px;
  font-family: "Outfit", "Poppins", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 0 16px rgba(156, 39, 176, 0.3),
    0 2px 12px rgba(33, 150, 243, 0.2);
  text-decoration: none;
  border: none;
  transition: box-shadow 0.3s, transform 0.2s;
}
.cta-btn:hover {
  box-shadow: 0 0 32px rgba(33, 150, 243, 0.4),
    0 4px 24px rgba(156, 39, 176, 0.3);
  transform: scale(1.07);
}

/* Hero Section */
.hero {
  width: 100vw;
  min-height: 100vh;
  background: var(--lux-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 120px 0 80px 0;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-svg-bg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.floating-shape {
  position: absolute;
  animation: floatingAnim 6s ease-in-out infinite;
}
#float1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}
#float2 {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}
#float3 {
  bottom: 20%;
  right: 15%;
  animation-delay: 4s;
}
@keyframes floatingAnim {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.hero-inner {
  display: flex;
  max-width: 1400px;
  width: 100vw;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 0 3vw;
}
.hero-left {
  flex: 1;
  min-width: 320px;
}
.hero-headline {
  font-family: "Outfit", "Poppins", Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  color: var(--dark-text); /* Fallback color */
  background: linear-gradient(
    90deg,
    var(--dark-text) 40%,
    var(--primary-blue) 70%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subheading {
  font-family: "Inter", "Nunito", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--light-text);
  line-height: 1.6;
}
.accent {
  color: var(--primary-blue);
  font-weight: 600;
}
.hero-cta-btn {
  background: linear-gradient(
    90deg,
    var(--primary-blue) 60%,
    var(--accent-purple) 100%
  );
  color: var(--light-text);
  padding: 14px 36px;
  border-radius: 30px 10px 30px 10px;
  font-family: "Outfit", "Poppins", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 0 18px rgba(156, 39, 176, 0.3),
    0 2px 14px rgba(33, 150, 243, 0.2);
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.2s;
}
.hero-cta-btn:hover {
  box-shadow: 0 0 36px rgba(33, 150, 243, 0.4),
    0 4px 28px rgba(156, 39, 176, 0.3);
  transform: scale(1.08);
}
.hero-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Services Section */
.services-section {
  width: 100vw;
  background: var(--lux-gradient);
  padding: 80px 0 64px 0;
  position: relative;
  z-index: 2;
}
.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3vw;
}
.services-heading {
  font-family: "Outfit", "Poppins", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  background: linear-gradient(
    90deg,
    var(--dark-text) 40%,
    #2196f3 80%,
    #9c27b0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--dark-text);
  text-shadow: none;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInServicesHeading 1.2s 0.2s cubic-bezier(0.77, 0.2, 0.25, 1)
    forwards;
  text-align: center;
  margin-bottom: 56px;
}
@keyframes fadeInServicesHeading {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 32px;
  justify-content: center;
  align-items: flex-end;
}
.service-box {
  width: 290px;
  min-height: 340px;
  background: var(--glass-bg);
  border-radius: 18px;
  box-shadow: 0 0 18px 0 rgba(33, 150, 243, 0.2);
  border: 3px solid var(--accent-purple);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 38px 24px 28px 24px;
  margin-bottom: 0;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
  opacity: 0;
  transform: translateY(60px);
}
.service-box.angle-1 {
  margin-top: 0px;
  animation: fadeInServiceBox 1.1s 0.5s cubic-bezier(0.77, 0.2, 0.25, 1)
    forwards;
}
.service-box.angle-2 {
  margin-top: 48px;
  animation: fadeInServiceBox 1.1s 0.7s cubic-bezier(0.77, 0.2, 0.25, 1)
    forwards;
}
.service-box.angle-3 {
  margin-top: 24px;
  animation: fadeInServiceBox 1.1s 0.9s cubic-bezier(0.77, 0.2, 0.25, 1)
    forwards;
}
.service-box.angle-4 {
  margin-top: 72px;
  animation: fadeInServiceBox 1.1s 1.1s cubic-bezier(0.77, 0.2, 0.25, 1)
    forwards;
}
@keyframes fadeInServiceBox {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hex-glass {
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.service-box:hover {
  box-shadow: 0 0 48px rgba(33, 150, 243, 0.3),
    0 4px 24px rgba(156, 39, 176, 0.2);
  border-color: var(--primary-blue);
  transform: scale(1.06);
}
.service-icon {
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(33, 150, 243, 0.3));
  animation: pulseServiceIcon 2.2s infinite alternate;
}
@keyframes pulseServiceIcon {
  0% {
    filter: drop-shadow(0 0 0px rgba(33, 150, 243, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 18px rgba(156, 39, 176, 0.4));
  }
}
.service-title {
  font-family: "Outfit", "Poppins", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary-blue); /* Fallback color */
  background: linear-gradient(90deg, #2196f3 60%, #9c27b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 12px;
}
.service-desc {
  font-family: "Inter", "Nunito", Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--light-text);
  font-weight: 400;
  text-align: center;
  margin-bottom: 18px;
}
.learn-more-link {
  font-family: "Inter", "Nunito", Arial, sans-serif;
  font-size: 1rem;
  color: #2196f3;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  position: relative;
}
.learn-more-link .arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.25, 1);
}
.learn-more-link:hover {
  color: #9c27b0;
}
.learn-more-link:hover .arrow {
  transform: translateX(8px) scale(1.2);
  color: #9c27b0;
}
/* Responsive Services Section */
@media (max-width: 1100px) {
  .services-list {
    gap: 32px 18px;
  }
  .service-box {
    width: 220px;
    min-height: 280px;
    padding: 28px 12px 18px 12px;
  }
}
@media (max-width: 800px) {
  .services-list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .service-box {
    width: 90vw;
    min-height: 220px;
    margin-top: 0 !important;
    padding: 18px 8px 12px 8px;
  }
}
/* Angled Separator */
.angled-separator {
  width: 100vw;
  height: 32px;
  background: linear-gradient(120deg, #1f0e3e 60%, #2e1b55 100%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  margin-top: -8px;
  margin-bottom: -8px;
  box-shadow: 0 0 24px 0 #9c27b0;
}

/* About Us Section */
.premium-about {
  width: 100vw;
  min-height: 600px;
  background: var(--lux-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 64px 0 48px 0;
}
.about-inner {
  display: flex;
  max-width: 1400px;
  width: 100vw;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.about-left {
  flex: 1;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#about-globe {
  width: 320px;
  height: 320px;
  max-width: 90vw;
  max-height: 60vw;
  animation: rotateGlobe 12s linear infinite;
}
@keyframes rotateGlobe {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.about-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 6vw;
}
.gradient-heading {
  font-family: "Outfit", "Poppins", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  background: linear-gradient(
    90deg,
    var(--dark-text) 40%,
    #2196f3 80%,
    #9c27b0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--dark-text);
  text-shadow: none;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInAboutHeading 1.2s 0.2s cubic-bezier(0.77, 0.2, 0.25, 1)
    forwards;
}
@keyframes fadeInAboutHeading {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-desc {
  font-family: "Inter", "Nunito", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 38px;
  color: var(--light-text);
  background: var(--glass-bg);
  border-radius: 12px;
  padding: 16px 28px;
  display: inline-block;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpAboutDesc 1.2s 0.5s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
@keyframes fadeUpAboutDesc {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.feature-card {
  background: rgba(44, 28, 84, 0.22);
  border-radius: 18px;
  box-shadow: 0 0 12px 0 #2196f3;
  border: 2px solid #9c27b0;
  padding: 24px 18px 18px 18px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
  opacity: 0;
  transform: translateY(40px);
}
.feature-card:nth-child(1) {
  animation: fadeInFeature 1.1s 0.7s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
.feature-card:nth-child(2) {
  animation: fadeInFeature 1.1s 0.9s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
.feature-card:nth-child(3) {
  animation: fadeInFeature 1.1s 1.1s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
.feature-card:nth-child(4) {
  animation: fadeInFeature 1.1s 1.3s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
@keyframes fadeInFeature {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feature-card:hover {
  box-shadow: 0 0 32px #2196f3, 0 4px 24px #9c27b0;
  border-color: #2196f3;
  transform: scale(1.08);
}
.feature-icon {
  margin-bottom: 10px;
  display: block;
  animation: pulseIcon 2s infinite alternate;
}
@keyframes pulseIcon {
  0% {
    filter: drop-shadow(0 0 0px #2196f3);
  }
  100% {
    filter: drop-shadow(0 0 12px #9c27b0);
  }
}
.feature-text {
  font-family: "Inter", "Nunito", Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--light-text);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}
/* Responsive About Section */
@media (max-width: 1100px) {
  .about-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .about-left,
  .about-right {
    padding: 0;
    min-width: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #about-globe {
    margin: 0 auto;
    max-width: 80vw;
    max-height: 40vw;
  }
}
@media (max-width: 700px) {
  .gradient-heading {
    font-size: 1.5rem;
  }
  .about-desc {
    font-size: 0.95rem;
    padding: 10px 14px;
  }
  .feature-card {
    min-width: 120px;
    padding: 12px 8px 8px 8px;
  }
  #about-globe {
    width: 180px;
    height: 180px;
    max-width: 90vw;
    max-height: 60vw;
  }
}
/* Immersive About Us Section */
.immersive-about {
  width: 100vw;
  min-height: 100vh;
  background: var(--lux-gradient);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0;
}
.about-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}
.about-bg-circuit,
.about-bg-wave {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  pointer-events: none;
}
.about-panels {
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 80px 0 80px 0;
}
.about-panel {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(44, 28, 84, 0.22);
  border-radius: 24px;
  box-shadow: 0 0 24px 0 #9c27b0;
  border: 2px solid #2196f3;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(60px);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
}
.about-panel:hover {
  box-shadow: 0 0 48px #2196f3, 0 4px 32px #9c27b0;
  border-color: #9c27b0;
  transform: translateY(-4px) scale(1.03);
}
.about-panel-mission {
  animation: fadeInPanel 1.1s 0.2s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
.about-panel-tech {
  animation: fadeInPanel 1.1s 0.7s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
.about-panel-stats {
  animation: fadeInPanel 1.1s 1.2s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
@keyframes fadeInPanel {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gradient-heading {
  font-family: "Outfit", "Orbitron", "Poppins", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  background: linear-gradient(
    90deg,
    var(--dark-text) 40%,
    #2196f3 80%,
    #9c27b0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--dark-text);
  text-shadow: none;
  text-align: center;
}
.about-desc,
.tech-desc {
  font-family: "Inter", "Nunito", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--light-text);
  background: rgba(44, 28, 84, 0.12);
  border-radius: 12px;
  padding: 16px 28px;
  display: inline-block;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 18px;
}
.glassmorphic-box {
  background: rgba(44, 28, 84, 0.32);
  border-radius: 24px;
  box-shadow: 0 0 32px 0 #2196f3;
  border: 2px solid #9c27b0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-bottom: 12px;
}
.tech-heading {
  font-family: "Outfit", "Orbitron", "Poppins", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #2196f3 60%, #9c27b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--dark-text);
  text-align: center;
  margin-bottom: 10px;
}
.stats-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.stat-card {
  background: rgba(44, 28, 84, 0.22);
  border-radius: 18px;
  box-shadow: 0 0 12px 0 #2196f3;
  border: 2px solid #9c27b0;
  padding: 24px 18px 18px 18px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInStat 1.1s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
.stat-card:nth-child(1) {
  animation-delay: 1.4s;
}
.stat-card:nth-child(2) {
  animation-delay: 1.6s;
}
.stat-card:nth-child(3) {
  animation-delay: 1.8s;
}
.stat-card:hover {
  box-shadow: 0 0 32px #2196f3, 0 4px 24px #9c27b0;
  border-color: #2196f3;
  transform: scale(1.08);
}
.stat-icon {
  margin-bottom: 10px;
  display: block;
  animation: pulseIcon 2s infinite alternate;
}
.stat-number {
  font-family: "Orbitron", "Outfit", "Poppins", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #2196f3;
  text-shadow: none;
  margin-bottom: 6px;
}
.stat-label {
  font-family: "Inter", "Nunito", Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--light-text);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}
/* Responsive stacking for panels */
@media (max-width: 900px) {
  .about-panels {
    padding: 40px 0 40px 0;
    gap: 32px;
  }
  .about-panel {
    padding: 32px 12px;
    max-width: 98vw;
  }
  .stats-row {
    gap: 18px;
  }
  .stat-card {
    min-width: 120px;
    padding: 12px 8px 8px 8px;
  }
}
@media (max-width: 700px) {
  .immersive-about {
    min-height: 1200px;
    padding: 0;
  }
  .about-panels {
    padding: 20px 0 20px 0;
    gap: 18px;
  }
  .about-panel {
    padding: 18px 6px;
    max-width: 99vw;
  }
  .stats-row {
    flex-direction: column;
    gap: 12px;
  }
}
/* Futuristic About Us Center Layout */
.futuristic-about {
  width: 100vw;
  min-height: 700px;
  background: var(--lux-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 80px 0 80px 0;
}
.about-center-layout {
  width: 100vw;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-heading {
  font-family: "Outfit", "Poppins", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  background: linear-gradient(
    90deg,
    var(--dark-text) 40%,
    #2196f3 80%,
    #9c27b0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--dark-text);
  text-shadow: none;
  opacity: 0;
  transform: scale(0.8);
  animation: zoomInAboutHeading 1.2s 0.2s cubic-bezier(0.77, 0.2, 0.25, 1)
    forwards;
}
@keyframes zoomInAboutHeading {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.curved-desc {
  font-family: "Inter", "Nunito", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 38px;
  color: var(--light-text);
  background: var(--glass-bg);
  border-radius: 12px;
  padding: 16px 28px;
  display: inline-block;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpAboutDesc 1.2s 0.5s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
  text-align: center;
  /* Simulate curve with text-shadow */
  text-shadow: none;
}
.about-core-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#about-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  z-index: 2;
  animation: rotateCore 16s linear infinite;
}
@keyframes rotateCore {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#corePulse {
  filter: drop-shadow(0 0 24px #9c27b0);
  animation: pulseCore 2.2s infinite alternate;
}
@keyframes pulseCore {
  0% {
    stroke-width: 6;
    filter: drop-shadow(0 0 24px #9c27b0);
  }
  100% {
    stroke-width: 12;
    filter: drop-shadow(0 0 48px #2196f3);
  }
}
#coreWave {
  animation: morphWaveCore 3.5s infinite alternate
    cubic-bezier(0.77, 0.2, 0.25, 1);
}
@keyframes morphWaveCore {
  0% {
    d: path("M160 120 Q180 160 160 200 Q140 160 160 120 Z");
  }
  100% {
    d: path("M160 130 Q190 160 160 190 Q130 160 160 130 Z");
  }
}
.about-cards {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  pointer-events: none;
}
.about-card {
  position: absolute;
  width: 140px;
  height: 120px;
  background: rgba(44, 28, 84, 0.22);
  border-radius: 18px;
  box-shadow: 0 0 12px 0 #2196f3;
  border: 2px solid #9c27b0;
  padding: 24px 12px 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: auto;
}
.about-card .card-icon {
  margin-bottom: 10px;
  display: block;
  animation: pulseIcon 2s infinite alternate;
}
@keyframes pulseIcon {
  0% {
    filter: drop-shadow(0 0 0px #2196f3);
  }
  100% {
    filter: drop-shadow(0 0 12px #9c27b0);
  }
}
.about-card .card-text {
  font-family: "Inter", "Nunito", Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--light-text);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}
.about-card:hover {
  box-shadow: 0 0 32px #2196f3, 0 4px 24px #9c27b0;
  border-color: #2196f3;
  transform: scale(1.08) rotate(-2deg);
  z-index: 10;
}
/* Circular arrangement for cards */
.about-card:nth-child(1) {
  --card-angle: 0deg;
}
.about-card:nth-child(2) {
  --card-angle: 72deg;
}
.about-card:nth-child(3) {
  --card-angle: 144deg;
}
.about-card:nth-child(4) {
  --card-angle: 216deg;
}
.about-card:nth-child(5) {
  --card-angle: 288deg;
}
.about-card {
  /* Place cards in a circle around the core */
  left: calc(50% + 160px * cos(var(--card-angle)) - 70px);
  top: calc(50% + 160px * sin(var(--card-angle)) - 60px);
  animation: fadeInCard 1.1s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
  animation-delay: calc(0.7s + 0.2s * (var(--card-angle) / 72));
}
@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Parallax effect for cards */
.about-card[data-parallax] {
  will-change: transform;
}
/* Responsive stacking for cards */
@media (max-width: 900px) {
  .about-core-wrapper {
    width: 100vw;
    height: 520px;
    min-height: 420px;
  }
  .about-cards {
    width: 100vw;
    height: 520px;
    min-height: 420px;
  }
  .about-card {
    width: 120px;
    height: 100px;
    left: calc(50% + 120px * cos(var(--card-angle)) - 60px);
    top: calc(50% + 120px * sin(var(--card-angle)) - 50px);
  }
}
@media (max-width: 700px) {
  .futuristic-about {
    min-height: 900px;
    padding: 40px 0 40px 0;
  }
  .about-core-wrapper {
    width: 100vw;
    height: 320px;
    min-height: 220px;
  }
  #about-core {
    width: 180px;
    height: 180px;
  }
  .about-cards {
    width: 100vw;
    height: 320px;
    min-height: 220px;
  }
  .about-card {
    width: 100px;
    height: 80px;
    left: 50%;
    top: calc(60px + 90px * (var(--card-angle) / 72));
    transform: translate(-50%, 0) scale(1);
    position: static;
    margin: 12px auto;
    animation-delay: calc(0.7s + 0.2s * (var(--card-angle) / 72));
  }
  .about-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: static;
    margin-top: 24px;
  }
}
/* Angled Separator */
.angled-separator {
  width: 100vw;
  height: 32px;
  background: linear-gradient(120deg, #1f0e3e 60%, #2e1b55 100%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  margin-top: -8px;
  margin-bottom: -8px;
  box-shadow: 0 0 24px 0 #9c27b0;
}

/* About Us Section */
.premium-about {
  width: 100vw;
  min-height: 600px;
  background: var(--lux-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 64px 0 48px 0;
}
.about-inner {
  display: flex;
  max-width: 1400px;
  width: 100vw;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.about-left {
  flex: 1;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#about-globe {
  width: 320px;
  height: 320px;
  max-width: 90vw;
  max-height: 60vw;
  animation: rotateGlobe 12s linear infinite;
}
@keyframes rotateGlobe {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.about-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 6vw;
}
.gradient-heading {
  font-family: "Outfit", "Poppins", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  background: linear-gradient(
    90deg,
    var(--dark-text) 40%,
    #2196f3 80%,
    #9c27b0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--dark-text);
  text-shadow: none;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInAboutHeading 1.2s 0.2s cubic-bezier(0.77, 0.2, 0.25, 1)
    forwards;
}
@keyframes fadeInAboutHeading {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-desc {
  font-family: "Inter", "Nunito", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 38px;
  color: var(--light-text);
  background: var(--glass-bg);
  border-radius: 12px;
  padding: 16px 28px;
  display: inline-block;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpAboutDesc 1.2s 0.5s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
@keyframes fadeUpAboutDesc {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.feature-card {
  background: rgba(44, 28, 84, 0.22);
  border-radius: 18px;
  box-shadow: 0 0 12px 0 #2196f3;
  border: 2px solid #9c27b0;
  padding: 24px 18px 18px 18px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
  opacity: 0;
  transform: translateY(40px);
}
.feature-card:nth-child(1) {
  animation: fadeInFeature 1.1s 0.7s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
.feature-card:nth-child(2) {
  animation: fadeInFeature 1.1s 0.9s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
.feature-card:nth-child(3) {
  animation: fadeInFeature 1.1s 1.1s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
.feature-card:nth-child(4) {
  animation: fadeInFeature 1.1s 1.3s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
@keyframes fadeInFeature {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feature-card:hover {
  box-shadow: 0 0 32px #2196f3, 0 4px 24px #9c27b0;
  border-color: #2196f3;
  transform: scale(1.08);
}
.feature-icon {
  margin-bottom: 10px;
  display: block;
  animation: pulseIcon 2s infinite alternate;
}
@keyframes pulseIcon {
  0% {
    filter: drop-shadow(0 0 0px #2196f3);
  }
  100% {
    filter: drop-shadow(0 0 12px #9c27b0);
  }
}
.feature-text {
  font-family: "Inter", "Nunito", Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--light-text);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}
/* Responsive About Section */
@media (max-width: 1100px) {
  .about-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .about-left,
  .about-right {
    padding: 0;
    min-width: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #about-globe {
    margin: 0 auto;
    max-width: 80vw;
    max-height: 40vw;
  }
}
@media (max-width: 700px) {
  .gradient-heading {
    font-size: 1.5rem;
  }
  .about-desc {
    font-size: 0.95rem;
    padding: 10px 14px;
  }
  .feature-card {
    min-width: 120px;
    padding: 12px 8px 8px 8px;
  }
  #about-globe {
    width: 180px;
    height: 180px;
    max-width: 90vw;
    max-height: 60vw;
  }
}
/* Premium Hero Section Layout */
.premium-hero {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.hero-inner {
  display: flex;
  width: 100vw;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.hero-left {
  flex: 1;
  padding-left: 6vw;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.premium-headline {
  font-family: "Outfit", "Poppins", Arial, sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 0.22em;
  background: linear-gradient(
    90deg,
    var(--dark-text) 40%,
    #2196f3 80%,
    #9c27b0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--dark-text);
  text-shadow: none;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpHeadline 1.2s 0.2s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
@keyframes fadeUpHeadline {
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.22em;
  }
}
.premium-headline span {
  color: #2196f3;
  background: none;
  -webkit-text-fill-color: #2196f3;
}
.premium-subheading {
  font-family: "Inter", "Nunito", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 38px;
  color: var(--light-text);
  background: var(--glass-bg);
  border-radius: 12px;
  padding: 16px 28px;
  display: inline-block;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSub 1.2s 0.5s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
@keyframes fadeUpSub {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.premium-subheading .accent {
  color: #9c27b0;
  font-weight: 600;
}
.premium-cta {
  background: linear-gradient(90deg, #9c27b0, #2196f3);
  color: var(--light-text);
  padding: 16px 48px;
  border-radius: 30px 10px 30px 10px;
  font-family: "Outfit", "Poppins", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  box-shadow: 0 0 18px #9c27b0, 0 2px 12px #2196f3;
  text-decoration: none;
  border: none;
  transition: box-shadow 0.3s, transform 0.2s, background 0.3s;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpCTA 1.2s 0.8s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
@keyframes fadeUpCTA {
  to {
    opacity: 1;
    transform: translateY(0) scale(1.08);
  }
}
.premium-cta:hover {
  box-shadow: 0 0 32px #2196f3, 0 4px 24px #9c27b0;
  background: linear-gradient(90deg, #2196f3, #9c27b0);
  transform: scale(1.12);
}
.hero-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 6vw;
}
#circuit-svg {
  width: 340px;
  height: 340px;
  max-width: 90vw;
  max-height: 60vw;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInCircuit 1.2s 1.1s cubic-bezier(0.77, 0.2, 0.25, 1) forwards;
}
@keyframes fadeInCircuit {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Floating SVG Shapes */
.floating-shape {
  position: absolute;
  z-index: 1;
  transition: transform 0.7s cubic-bezier(0.77, 0.2, 0.25, 1);
}
#float1 {
  top: 12vh;
  left: 8vw;
}
#float2 {
  bottom: 18vh;
  right: 10vw;
}
#float3 {
  top: 60vh;
  left: 60vw;
}
/* Responsive Design */
@media (max-width: 1100px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .hero-left,
  .hero-right {
    padding: 0;
    min-width: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #circuit-svg {
    margin: 0 auto;
    max-width: 80vw;
    max-height: 40vw;
  }
}
@media (max-width: 700px) {
  .premium-headline {
    font-size: 2.1rem;
  }
  .premium-subheading {
    font-size: 1rem;
    padding: 10px 14px;
  }
  .premium-cta {
    font-size: 1rem;
    padding: 10px 20px;
  }
  #circuit-svg {
    width: 220px;
    height: 220px;
    max-width: 90vw;
    max-height: 60vw;
  }
}

/* --- Contact Us Section: NEW 2-COLUMN DESIGN --- */

/* Portfolio Section */
.portfolio-section {
  width: 100vw;
  background: var(--lux-gradient);
  padding: 100px 0;
  position: relative;
}

.portfolio-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3vw;
}

.section-heading {
  font-family: "Outfit", "Poppins", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-text); /* Fallback color */
  background: linear-gradient(
    90deg,
    var(--dark-text) 40%,
    var(--primary-blue) 70%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subheading {
  font-size: 1.2rem;
  text-align: center;
  color: var(--light-text);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.portfolio-card {
  background: var(--glass-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(33, 150, 243, 0.1);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(33, 150, 243, 0.2);
}

.portfolio-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-title {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.portfolio-desc {
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
  color: white;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Contact Section */
.contact-section {
  width: 100vw;
  background: var(--lux-gradient);
  padding: 100px 0;
  position: relative;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3vw;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background: var(--glass-bg);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(33, 150, 243, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(33, 150, 243, 0.15);
}

.contact-icon {
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon svg {
  stroke: white;
  fill: none;
}

.contact-title {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.contact-detail {
  color: var(--light-text);
  font-size: 1rem;
}

.contact-form {
  background: var(--glass-bg);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(33, 150, 243, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(33, 150, 243, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-family: "Inter", Arial, sans-serif;
  color: var(--dark-text);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.contact-btn {
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-text) 0%, #333 100%);
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3vw;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-left: 12px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list a:hover {
  color: var(--primary-blue);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading {
    font-size: 2.5rem;
  }
}
