:root {
  --deep-bg: #b0c8e0;
  --accent-glow: #00f0ff;
  --card-border: #0ff0ff33;
  --text-main: #ffffff;
  --text-soft: #b0c8e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  scroll-padding-top: 100px;
  background-color: azure;
  color: var(--text-main);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Grid Utility */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Header */
.header {
  background: #0b1a2f;
  color: white;
  padding: 1rem 0;
  position: sticky;
  box-shadow: 0px 2px 4px gold;
  top: 0;
  z-index: 1100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

.logo-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 3px;
  max-width: 40%;
  overflow: hidden;
  flex-shrink: 1;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 36px;
  font-weight: bold;
  color: #f1c40f;
  margin-right: 10px;
  position: relative;
}

.logo-text::after {
  content: '';
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 20px;
}

.company-name {
  font-size: 24px;
  font-weight: bold;
  color: white;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Nav Menu Desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1150;
  position: relative;
}

.nav ul {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav ul li {
  position: relative;
}

.nav ul li a {
  color: white;
  padding: 10px 14px;
  font-size: 15px;
  transition: color 0.3s ease;
  display: block;
}

.nav ul li a:hover {
  color: #f1c40f;
  background: transparent;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0b1a2f;
  padding: 1rem;
  flex-wrap: wrap;
  min-width: 400px;
  max-width: 600px;
  gap: 1rem;
  z-index: 1200;
  border-top: 2px solid #f1c40f;
  box-sizing: border-box;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  color: #ddd;
  flex: 1 0 45%;
  padding: 0.4rem;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.dropdown-menu a:hover {
  background: #f1c40f;
  color: #0b1a2f;
  transform: translateX(4px);
}

/* Menu toggle for mobile */
.menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1300;
}

/* Close menu button for mobile */
.close-menu {
  display: none;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  position: fixed; /* fix it on screen */
  top: 8px;        /* adjust so it's below or aligned with logo */
  right: 16px;
  font-size: 2.1rem;
  z-index: 1500;   /* higher than nav-logo-mobile's 1400 */
}

/* Responsive Fixes */
@media (max-width: 880px) {
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 700%;
  }

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 70%;
    box-shadow: 0px 4px 4px gold;
    border-radius: 5px;
    height: calc(100vh - 64px);
    background: #0b1a2f;
    flex-direction: column;
    gap: 0;
    padding-top: 3rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: block;
    z-index: 1150;
    overflow-y: auto;
  }

  .nav.active {
    transform: translateX(0);
  }

  .close-menu {
    display: block;
  }

  .nav ul {
    display: flex !important;
    flex-direction: column;
    padding: 0 1rem 1rem 1rem;
    overflow-x: hidden;
  }

  .nav ul li {
    display: block !important;
    margin-bottom: 1rem;
  }

  .nav ul li a {
    font-size: 18px;
    padding: 12px 10px;
  }

  .dropdown-menu {
    position: static;
    flex-direction: column;
    width: 70%;
    max-width: 70%;
    padding: 0.5rem 0 0 0;
    border-top: none;
    gap: 0.5rem;
    margin: 0;
    display: none;
  }

  .dropdown[aria-expanded="true"] > .dropdown-menu {
    display: flex;
  }

  .dropdown-menu a {
    flex: 1 0 70%;
    font-size: 16px;
    padding: 10px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .logo-wrapper {
    max-width: 100%;
    overflow: hidden;
  }

  .logo-text {
    font-size: 28px;
  }

  .logo-text::after {
    width: 12px;
    height: 12px;
    top: -6px;
    left: 12px;
  }

  .company-name {
    font-size: 16px;
  }
}


/* Logo image */
.logo img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
}
/* Hide logo inside nav on desktop */
.nav-logo-mobile {
  display: none;
  padding: 1rem;
  border-bottom: 1px solid var(--card-border);
}

/* Show logo inside nav on mobile */
@media (max-width: 880px) {
  .nav-logo-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    
    position: fixed;    /* Fix position to viewport */
    top: 2px;           /* 2px from top */
    left: 0;
    right: 0;
    background: #0b1a2f; /* match nav background or your preference */
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--card-border);
    z-index: 1400;       /* Higher than nav and other divs */
  }
  
  .nav-logo-mobile .logo img {
    height: 40px; /* adjust size as needed */
    width: auto;
    margin: 0;    /* remove top/bottom margin for fixed positioning */
  }
  
  .nav-logo-mobile .logo-text {
    font-size: 1.5rem;
    color: gold;
    font-weight: bold;
  }
}





.hero {
  position: relative;
  background: #0b1a2f;
  color: white;
  padding: 7.5rem 1rem;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  padding: 7.5rem 1rem;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 7.5rem 1rem;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Text Effects */
.hero-slide h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  white-space-collapse: collapse;
  overflow-wrap: break-word;
  border-right: 2px solid white;
  font-family: 'Orbitron', sans-serif;
}

.hero-slide p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Button */
.btn-primary_one {
  background: #0056b3;
  color: white;
  padding: 10px;
  border-radius: 50px;
  transition: background 0.3s ease;
  font-weight: 100;
  z-index: 3;
  position: relative;
}

.btn-primary_one:hover {
  background: #003b82;
}

/* Navigation Arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 4;
  transform: translateY(-50%);
}

.hero-nav button {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-nav button:hover {
  background: white;
  color: #0b1a2f;
}

/* Animations */
.animate-fade { animation: fadeIn 1.2s ease; }
.animate-zoom { animation: zoomIn 1.2s ease; }
.animate-rise { animation: riseIn 1.2s ease; }
.animate-shift { animation: shiftIn 1.2s ease; }
.animate-blur { animation: blurIn 1.2s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes riseIn {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes shiftIn {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes blurIn {
  from { filter: blur(10px); opacity: 0; }
  to { filter: blur(0); opacity: 1; }
}

/* Responsive fix for smaller devices to keep button visible */
@media (max-width: 768px) {
  .hero-slide {
    padding: 4rem 1rem;
  }

  .hero-slide h1 {
    font-size: 1.8rem;
    border-right: none;
    margin-bottom: 1rem;
  }

  .hero-slide p {
    font-size: 1rem;
    max-width: 90%;
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    display: inline-block;
    margin-top: 0;
    white-space: nowrap;
  }
}

.btn-read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background: #05bef7; /* Bold red to suit theme */
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .btn-read-more:hover {
    background: rgb(1, 247, 247);
  }
/* Stats Section */
.stats {
  background: #69778a;
  padding: 2rem 1rem;
  text-align: center;
}

.stat h2 {
  font-size: 2rem;
  color: white;
}

.stat p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: white;
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

/* Base Theme */
:root {
  --deep-bg: #0b1a2f;
  --accent-glow: #00f0ff;
  --card-border: #0ff0ff33;
  --text-main: #ffffff;
  --text-soft: #b0c8e0;
}

/* Services Section Container */
.services {
  padding: 6rem 1.5rem;
  background-color: var(--deep-bg);
  color: var(--text-main);
  font-family: 'Orbitron', sans-serif;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-glow);
}

/* 2x2 Grid */
.grid-mystic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  justify-items: center;
  align-items: center;
}

/* Card Style */
.card-mystic {
  background: var(--deep-bg);
  border: 1px solid var(--card-border);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 0 transparent;
  transform-style: preserve-3d;
  isolation: isolate;
  z-index: 1;
  overflow: hidden;
}

/* Light Lines */
.card-mystic::before,
.card-mystic::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;
}

.card-mystic::before {
  border: 2px solid var(--accent-glow);
  transform: scale(1.03);
  opacity: 0.08;
  filter: brightness(1.5);
}

.card-mystic::after {
  background: radial-gradient(ellipse at top left, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.04;
  transform: rotate(30deg) scale(1.5);
}

/* Hover: Float + Neon Edge */
.card-mystic:hover {
  transform: rotateX(4deg) rotateY(-3deg) translateY(-10px);
  box-shadow:
    0 0 12px var(--accent-glow),
    0 0 25px rgba(0, 255, 255, 0.3);
}

/* Typography */
.card-mystic h3 {
  color: var(--text-main);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.card-mystic p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services h2 {
    font-size: 2rem;
  }
  .card-mystic h3 {
    font-size: 1.3rem;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

.insights {
  background-color: #69778a;
  padding: 4rem 1rem;
  font-family: 'Orbitron', sans-serif;
  overflow: hidden;
}

.insights h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: white;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255 255 255 / 0.25);
}

/* Grid container: dynamic polygonal layout for 5 cards */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  grid-gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

/* Card base styles */
.insight-card {
  position: relative;
  background: #0b1a2f;
  color: white;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Break the rectangle: unique polygonal clip-paths for each card */
.insight-card:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  clip-path: polygon(15% 0%, 85% 0%, 100% 25%, 90% 100%, 10% 100%, 0% 25%);
  box-shadow: 0 0 25px #0056b3aa;
}

.insight-card:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  clip-path: polygon(0% 10%, 90% 0%, 100% 90%, 70% 100%, 30% 80%, 10% 100%, 0% 90%);
  box-shadow: 0 0 25px #003b7ecc;
}

.insight-card:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 25px #0062ccbb;
}

.insight-card:nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  clip-path: polygon(0 15%, 80% 0, 100% 30%, 85% 80%, 50% 100%, 10% 100%, 0 75%);
  box-shadow: 0 0 30px #004ea8cc;
}

.insight-card:nth-child(5) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  clip-path: polygon(15% 10%, 85% 0%, 100% 45%, 80% 90%, 40% 100%, 10% 80%, 0% 30%);
  box-shadow: 0 0 25px #0078ffbb;
}

/* Text Styles */
.insight-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #4c94e8, #b8d0ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.insight-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cfd8f7cc;
  font-weight: 500;
}

/* Hover effects */
.insight-card:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 15px 45px #0078ffcc;
  border-color: #4c94e8;
  z-index: 10;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ✅ Responsive: stack on smaller screens */
@media (max-width: 900px) {
  .insight-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .insight-card {
    width: 100%;
    max-width: 420px;
    height: auto;
    clip-path: none !important;
    border-radius: 20px;
    transform: none !important;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

.cta {
  margin-top: 30px;
  background: linear-gradient(135deg, #0b1a2f 0%, #00204a 100%);
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 4rem 2rem;
  gap: 2rem;
  font-family: 'Orbitron', sans-serif;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

/* Particle subtle background (using :before pseudo) */
.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 30%, #004ea8 15px, transparent 16px),
    radial-gradient(circle at 50% 70%, #0078ff 20px, transparent 22px),
    radial-gradient(circle at 80% 40%, #004ea8 18px, transparent 20px);
  background-repeat: repeat;
  background-size: 100px 100px;
  opacity: 0.05;
  animation: moveBackground 120s linear infinite;
  z-index: 0;
}

@keyframes moveBackground {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 500px 500px, 300px 700px, 700px 300px; }
}

.cta > .container {
  background: rgba(15, 30, 60, 0.9);
  border-radius: 20px;
  box-shadow:
    0 0 10px #0056b3cc,
    0 0 40px #004ea8bb;
  flex: 1 1 280px;
  max-width: 360px;
  padding: 2.8rem 2rem 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 2px solid transparent;
}

.cta > .container:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow:
    0 0 25px #0078ffee,
    0 0 70px #0093ffdd,
    inset 0 0 25px #0078ffaa;
  border-color: #0078ff;
}

.cta h2 {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #4c94e8, #8ac7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Animated underline */
.cta h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 60px;
  height: 3px;
  background: #0080ff;
  border-radius: 10px;
  transform: translateX(-50%);
  animation: underlinePulse 2.5s infinite ease-in-out;
}

@keyframes underlinePulse {
  0%, 100% {
    background-color: #0080ff;
    width: 60px;
  }
  50% {
    background-color: #00b0ff;
    width: 90px;
  }
}

.cta p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.4rem;
  color: #d2e2fdcc;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, #0078ff, #00b0ff);
  color: white;
  font-weight: 700;
  padding: 0.75rem 2.4rem;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  box-shadow:
    0 0 8px #00b0ffcc,
    0 0 20px #0078ffbb;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: inline-block;
  user-select: none;
  cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow:
    0 0 18px #00c3ffdd,
    0 0 45px #009effff,
    inset 0 0 25px #00d0ffcc;
  transform: scale(1.1);
  outline: none;
}

/* Responsive: stack vertically on smaller devices */
@media (max-width: 900px) {
  .cta {
    flex-direction: column;
    padding: 3rem 1rem;
  }
  .cta > .container {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');




.footer {
  background: #0b1a2f; /* Unified background */
  color: #e9ecf8cc;
  padding: 3rem 2rem 2rem;
  font-family: 'Orbitron', sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, gold, rgb(235, 220, 138), rgb(168, 150, 46), rgb(245, 209, 8), rgb(201, 171, 3)) 1;
  box-shadow: inset 0 0 30px #004ea8aa;
  user-select: none;
}

.footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 160%;
  height: 200%;
  background:
    radial-gradient(circle at 25% 25%, #0078ff33 60px, transparent 70px),
    radial-gradient(circle at 75% 75%, #00b0ff44 70px, transparent 90px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 15s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.12; }
  50% { opacity: 0.25; }
}

.footer .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  text-align: left;
}

.footer h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  position: relative;
  color: #b9dffa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00b0ff, #004ea8);
  border-radius: 6px;
  box-shadow: 0 0 12px #0078ffaa;
}

.footer p, .footer a, .footer li {
  color: #f7f8f8dd;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer a {
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer a:hover, .footer a:focus {
  color: gold;
  text-shadow: 0 0 6px goldenrod;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 0.8rem;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.footer .footer-links li {
  margin: 0;
}

.footer .footer-links a {
  font-weight: 600;
  color: #f4f6facc;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.footer .footer-links a:hover {
  color: gold;
  text-shadow: 0 0 10px goldenrod;
}

/* Social Icons Container */
.footer .social-icons {
  display: flex;
  gap: 1.6rem;
  margin-top: 0.4rem;
}

.footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #004ea833;
  box-shadow: 0 0 10px #004ea866;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  color: #e2eaf3;
  font-size: 1.6rem;
  cursor: pointer;
  user-select: none;
}

.footer .social-icons a:hover {
  background: rgb(153, 141, 71);
  box-shadow: 0 0 20px goldenrod;
  color: white;
  transform: scale(1.15);
}

/* Contact Info */
.footer .contact-info p {
  margin: 0.5rem 0;
}

/* Bottom copyright area */
.footer .bottom-bar {
  grid-column: 1 / -1;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #e5eef7aa;
  letter-spacing: 0.07em;
  border-top: 1px solid gold;
  padding-top: 1.5rem;
}

/* Logo image */
.logo_image{
    padding: 10px;
    margin-top: 5px;
    width: 250px;
    opacity: 1;
}

/* Scroll to top button */
.footer .scroll-top {
  position: fixed;
  right: 20px;
  bottom: 40px;
  background: gold;
  color: blue;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 15px #00b0ffdd;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  font-size: 1.6rem;
  user-select: none;
}

.footer .scroll-top:hover {
  background: rgb(247, 229, 130);
  box-shadow: 0 0 25px rgb(236, 203, 117);
}

/* Responsive */
@media (max-width: 720px) {
  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer .social-icons {
    justify-content: center;
  }

  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #0b1a2f;
    position: absolute;
    top: 70px;
    right: 1rem;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
  }

  .nav ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}






/* Base Variables */


/* Import Google Font Orbitron for that cyberpunk vibe */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');



/* Wrapper */
.megamind-wrapper {
  width: auto;
  margin: 6rem auto;
  padding: 0 2rem;
  display: flex;
  background-color: white;
  flex-direction: column;
  gap: 7rem;
}

/* Each block is a card */
.megamind-block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
  border-radius: 30px;
  background:  #0b1a2f;
  border: 1px solid var(--color-black-black);
  padding: 3rem 4rem;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  will-change: transform;
  cursor: pointer;
}

/* Reverse layout */
.megamind-block.reverse {
  flex-direction: row-reverse;
}

/* Image container with neon glow */
.megamind-image-container {
  flex: 1;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow:
    0 0 30px 8px var(--color-neon-black),
    0 0 60px 15px var(--color-neon-black);
  transition: box-shadow 0.3s ease;
  will-change: transform;
  transform-style: preserve-3d;

  /* Ensure container has height */
  min-height: 300px;

  /* Optional: center image inside */
  display: flex;
  justify-content: center;
  align-items: center;
}

.megamind-image-container img {
  width: 100%;
  height: auto;
  display: block;

  /* Optional: prevent accidental z-index or opacity bugs */
  position: relative;
  z-index: 1;
}

.megamind-image-container:hover {
  box-shadow:
    0 0 70px 15px var(--color-neon-black),
    0 0 110px 30px var(--color-neon-black);
  transform: translateZ(80px) rotateY(6deg);
}

/* Neon glow overlay */
.neon-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 25px;
  box-shadow:
    0 0 20px var(--color-neon-black),
    0 0 40px var(--color-neon-black),
    0 0 60px var(--color-neon-black),
    0 0 80px var(--color-neon-black);
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Kinetic flicker text */
.kinetic-text {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 3px;
  background: navy;
  -webkit-background-clip: text;
  position: relative;
  text-shadow:
    0 0 10px var(--color-neon-black),
    0 0 20px var(--color-neon-black);
  animation: flicker 2.5s infinite;
  user-select: none;
  margin-bottom: 1.5rem;
  font-family: 'Orbitron', sans-serif;
}

/* Paragraph text */
.megamind-text-container {
  flex: 1;
  font-size: 1.25rem;
  line-height: 1.8;
  color: mistyrose;
  transition: transform 0.3s ease;
  will-change: transform;
  transform-style: preserve-3d;
}

/* Hover effect on block */
.megamind-block:hover {
  transform: translateZ(40px) rotateX(4deg) rotateY(8deg);
}

.megamind-block:hover .megamind-text-container {
  color:  white;
  transform: translateZ(60px);
}

/* Image styling */
.megamind-image-container img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
  filter: drop-shadow(0 0 10px var(--color-neon-red));
  user-select: none;
  transition: transform 0.5s ease;
}

/* Pulsing glow keyframes */
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.6;
    box-shadow:
      0 0 20px var(--color-neon-red),
      0 0 40px var(--color-neon-pink),
      0 0 60px var(--color-neon-blue),
      0 0 80px var(--color-neon-pink);
  }
  50% {
    box-shadow:
      0 0 35px var(--color-neon-red),
      0 0 70px var(--color-neon-pink),
      0 0 90px var(--color-neon-blue),
      0 0 110px var(--color-neon-pink);
  }
}

/* Flicker animation for kinetic text */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
      0 0 10px var(--color-neon-red),
      0 0 20px var(--color-neon-pink);
  }
  20%, 22%, 24%, 55% {
    text-shadow:
      0 0 5px var(--color-neon-red),
      0 0 10px var(--color-neon-pink);
  }
}

/* Responsive for smaller devices */
@media (max-width: 1024px) {
  .megamind-wrapper {
    padding: 0 1rem;
  }
  .megamind-block {
    flex-direction: column !important;
    padding: 2rem;
  }
  .megamind-block.reverse {
    flex-direction: column !important;
  }
  .megamind-image-container {
    margin-bottom: 1.5rem;
    transform: none !important;
    box-shadow:
      0 0 20px 5px var(--color-neon-red);
  }
  .megamind-image-container:hover {
    transform: none !important;
    box-shadow:
      0 0 35px 10px var(--color-neon-red);
  }
  .kinetic-text {
    font-size: 2rem;
    text-align: center;
  }
  .megamind-text-container {
    text-align: center;
  }
}

/* Mobile ultra-compact */
@media (max-width: 480px) {
  .megamind-text-container {
    font-size: 1rem;
  }
  .megamind-block {
    padding: 1.5rem 1rem;
  }
  .kinetic-text {
    font-size: 1.5rem;
  }
}



/* Wrapper for vertical stacking */
.experience-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual card styling */
.experience-card {
  background: #0b1a2f;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 1fr 350px;
  padding: 30px 40px 30px 60px;
  position: relative;
  align-items: center;
  transition: transform 0.3s ease;
}

/* Hover effect for some interactivity */
.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

/* Vertical red line 20px from left */
.experience-card::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 30px;
  bottom: 30px;
  width: 4px;
  background: gold; /* Rich red */
  border-radius: 3px;
}

/* Content area */
.experience-content {
  padding-right: 30px;
}

/* Title */
.experience-content h1 {
  font-size: 2.1rem;
  margin-bottom: 15px;
  color: white;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Paragraph */
.experience-content p {
  font-size: 1.1rem;
  color: white;
  line-height: 1.65;
}

/* Image container */
.experience-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 350px;
  width: 100%;
  aspect-ratio: 4 / 3;
  transition: transform 0.4s ease;
}

/* Image styling */
.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image zoom on hover for flair */
.experience-card:hover .experience-image img {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

/* Responsive adjustments */

/* Medium screens */
@media (max-width: 960px) {

  .experience-card {
    grid-template-columns: 1fr 280px;
    padding-left: 50px;
    padding-right: 30px;
  }

  .experience-image {
    max-width: 280px;
  }
}

/* Small screens - stack content and image vertically */
@media (max-width: 640px) {
  .experience-card {
    display: flex;
    flex-direction: column;
    padding: 25px 30px 25px 50px;
    max-width: 100%;
  }

  .experience-card::before {
    left: 15px;
    top: 25px;
    bottom: auto;
    width: 4px;
    height: calc(100% - 50px);
  }

  .experience-content {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .experience-image {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }
}

/* Extra large screens */
@media (min-width: 1440px) {

  .experience-card {
    grid-template-columns: 1.4fr 400px;
    padding-left: 80px;
    padding-right: 50px;
  }

  .experience-content h1 {
    font-size: 2.6rem;
  }

  .experience-content p {
    font-size: 1.25rem;
  }

  .experience-image {
    max-width: 400px;
    aspect-ratio: 4 / 3;
  }
}
/* Fonts from Google - Orbitron for futuristic, Roboto for text */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Roboto:wght@400;500&display=swap');

/* Animated gradient background */
@keyframes bgGradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.genius-experience-wrapper {
  min-height: 100vh;
  padding: 60px 8vw;
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: auto;
  margin: 0 auto;
  background: linear-gradient(270deg, azure, white, rgb(245, 242, 236), white);
  background-size: 800% 800%;
  animation: bgGradient 25s ease infinite;
}

/* Card container */
.genius-experience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 60px;
  background: #0b1a2f;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(14, 13, 13, 0.25);
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: default;
}

.genius-experience-card:hover {
  transform: perspective(1000px) rotateY(6deg) scale(1.04);
  box-shadow: 0 30px 60px rgba(14, 13, 13, 0.5);
}

/* Glowing vertical bar */
.genius-experience-card::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  right: 20px;
  width: 6px;
  background: linear-gradient(180deg, #080808, #070707);
  border-radius: 4px;
  filter: drop-shadow(0 0 6px #161213);
  animation: pulseGlow 3.5s ease-in-out infinite;
  transition: width 0.3s ease;
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px hwb(330 92% 7%));
    background: linear-gradient(180deg, #d1d0d0, #fcf8f8);
  }
  50% {
    filter: drop-shadow(0 0 15px #fdfbfb);
    background: linear-gradient(180deg, #f7f0f0, #fdfdfd);
  }
}

/* Text content */
.genius-experience-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #f7f7f7;
  font-family: 'Roboto', sans-serif;
  padding: 0;
  margin: 0;
  text-align: left;
}

.genius-experience-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: azure;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.genius-experience-content p {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ddd;
  line-height: 1.8;
  letter-spacing: 0.5px;
  max-width: 100%;
  transition: color 0.3s ease;
}

/* Card hover effects on text */
.genius-experience-card:hover .genius-experience-content h1 {
  color: white;
  text-shadow: 0 0 18px gold;
}

.genius-experience-card:hover .genius-experience-content p {
  color: #fff;
}

/* Button style */
.genius-learn-more-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #05bef7;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.genius-learn-more-btn:hover {
  background-color: rgb(38, 235, 235);
  color: white;
 
}

/* ========== RESPONSIVE ========== */

/* Large screens 1600px+ */
@media (min-width: 1600px) {
  .genius-experience-wrapper {
    padding: 80px 18vw;
  }

  .genius-experience-card {
    padding: 70px 80px;
    gap: 60px;
  }

  .genius-experience-content h1 {
    font-size: 3.6rem;
    letter-spacing: 4px;
  }

  .genius-experience-content p {
    font-size: 1.5rem;
  }
}

/* Medium screens */
@media (max-width: 960px) {
  .genius-experience-wrapper {
    padding: 50px 10vw;
  }

  .genius-experience-card {
    padding: 40px 40px;
    gap: 40px;
  }

  .genius-experience-content h1 {
    font-size: 2.4rem;
    letter-spacing: 2.8px;
  }

  .genius-experience-content p {
    font-size: 1.1rem;
  }
}

/* Small devices */
@media (max-width: 640px) {
  .genius-experience-wrapper {
    padding: 40px 6vw;
  }

  .genius-experience-card {
    padding: 30px 25px;
    gap: 30px;
    border-radius: 20px;
  }

  .genius-experience-card::before {
    left: -9999px; /* Hide it visually without removing */
    opacity: 0.2;
    filter: blur(10px);
    pointer-events: none;
  }

  .genius-experience-content {
    text-align: center;
  }

  .genius-experience-content h1 {
    font-size: 2rem;
    letter-spacing: 1.8px;
  }

  .genius-experience-content p {
    font-size: 1rem;
  }
}


