:root {
  --accent-glow: #00f0ff;
  --card-border: #004d59;
  --text-soft: rgba(255, 255, 255, 0.7);
  --white-clear: #ffffff;
  --background: #0b1a2f;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --dot-color: rgba(0, 240, 255, 0.15);
  --line-color: rgba(0, 240, 255, 0.1);
}

/* Reset and base styles */

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--background);
  scroll-padding-top: 100px; /* Match this to your fixed header height */
  color: var(--text-soft);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
}
/* 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;
}


 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


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 16px;
  }

  .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 {
  background: #0056b3;
  color: white;
  padding: 10px;
  border-radius: 50px;
  transition: background 0.3s ease;
  font-weight: 100;
  z-index: 3;
  position: relative;
}

.btn-primary: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;
}

.container_one {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.section {
  width: 95%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.015);
  padding: 3rem 4rem 3rem 5rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: inset 0 0 0 rgba(0, 240, 255, 0);
  cursor: pointer;
  transition: background-color 0.5s ease, transform 0.4s ease;
  color: var(--text-soft);
}

/* Typing effect keyframes for h2 on hover */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blinkCaret {
  0%, 100% { border-color: transparent }
  50% { border-color: var(--white-clear) }
}

/* General h2 styling */
h2 {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 1rem;
  overflow: hidden;       /* For typing effect */
  white-space: nowrap;
  border-right: 3px solid transparent;
  width: fit-content;
  max-width: 100%;
  transition: color 0.5s ease;
  user-select: none;
}

/* Paragraph style */
p {
  font-size: 1.3rem;
  max-width: 850px;
  line-height: 1.5;
  color: var(--text-soft);
}

/* Each section has unique design and hover */

/* 1. Join Team - Rounded cut edges + dotted vertical line */
.join-team {
  border-radius: 4rem 1rem 4rem 1rem;
  background: linear-gradient(135deg, rgba(0,240,255,0.05), transparent);
}
.join-team::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 5%;
  height: 110px;
  width: 4px;
  background: repeating-linear-gradient(
    to bottom,
    var(--dot-color),
    var(--dot-color) 3px,
    transparent 3px,
    transparent 6px
  );
  border-radius: 50%;
  opacity: 0.3;
}
.join-team:hover {
  background-color: rgba(0, 240, 255, 0.08);
  transform: scale(1.03) translateX(7px);
}
.join-team:hover h2 {
  color: var(--white-clear);
  animation: typing 1.5s steps(30, end) forwards, blinkCaret 0.75s step-end infinite;
  border-right: 3px solid var(--white-clear);
}

/* 2. Current Openings - Slanted parallelogram shape + floating lines */
.current-openings {
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  background: linear-gradient(90deg, rgba(0,240,255,0.03), transparent);
}
.current-openings::before {
  content: "";
  position: absolute;
  top: 15%;
  right: 20%;
  width: 6px;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--line-color), transparent);
  opacity: 0.25;
  border-radius: 5px;
}
.current-openings:hover {
  background-color: rgba(0, 240, 255, 0.07);
  transform: scale(1.02) translateY(-8px) skewX(3deg);
}
.current-openings:hover h2 {
  color: var(--white-clear);
  width: 0;
  animation: typing 1.8s steps(35, end) forwards, blinkCaret 0.6s step-end infinite;
  border-right: 3px solid var(--white-clear);
}

/* 3. Field Investigators - Asymmetrical circles background */
.field-investigators {
  border-radius: 3rem;
  background: radial-gradient(circle at 10% 20%, rgba(0,240,255,0.07), transparent 50%),
              radial-gradient(circle at 80% 75%, rgba(0,240,255,0.05), transparent 60%);
}
.field-investigators::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 15%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dot-color);
  box-shadow:
    50px 20px 0 var(--dot-color),
    90px 40px 0 var(--dot-color);
  opacity: 0.25;
}
.field-investigators:hover {
  background-color: rgba(0, 240, 255, 0.09);
  transform: scale(1.04) translateX(-6px);
}
.field-investigators:hover h2 {
  color: var(--white-clear);
  width: 0;
  animation: typing 1.7s steps(32, end) forwards, blinkCaret 0.7s step-end infinite;
  border-right: 3px solid var(--white-clear);
}

/* 4. Digital Forensics - Zigzag border + diagonal lines */
.digital-forensics {
  border-radius: 2rem;
  border-style: solid;
  border-width: 4px 4px 4px 4px;
  border-image: linear-gradient(45deg, transparent 10%, var(--accent-glow) 50%, transparent 90%) 1;
  background: linear-gradient(45deg, rgba(0,240,255,0.04), transparent);
  position: relative;
  overflow: visible;
}
.digital-forensics::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  width: 120px;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    var(--line-color),
    var(--line-color) 8px,
    transparent 8px,
    transparent 12px
  );
  opacity: 0.3;
  transform: rotate(20deg);
}
.digital-forensics:hover {
  background-color: rgba(0, 240, 255, 0.1);
  transform: scale(1.03) translateY(5px);
}
.digital-forensics:hover h2 {
  color: var(--white-clear);
  width: 0;
  animation: typing 1.6s steps(28, end) forwards, blinkCaret 0.8s step-end infinite;
  border-right: 3px solid var(--white-clear);
}

/* 5. Risk Analysts - Double border and shadow */
.risk-analysts {
  border-radius: 3rem 3rem 1rem 4rem;
  border: 3px double var(--card-border);
  background-color: rgba(0, 240, 255, 0.01);
  box-shadow: 0 0 15px rgba(0,240,255,0.12);
  position: relative;
}
.risk-analysts::before {
  content: "";
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, var(--line-color), transparent);
  opacity: 0.25;
  border-radius: 10px;
}
.risk-analysts:hover {
  background-color: rgba(0, 240, 255, 0.08);
  transform: scale(1.05) translateX(-8px);
}
.risk-analysts:hover h2 {
  color: var(--white-clear);
  width: 0;
  animation: typing 1.9s steps(36, end) forwards, blinkCaret 0.7s step-end infinite;
  border-right: 3px solid var(--white-clear);
}

/* 6. Life at Singler - Soft glow and floating dots */
.life-at-singler {
  border-radius: 2rem;
  background-color: rgba(0, 240, 255, 0.02);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}
.life-at-singler::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 15%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-glow);
  box-shadow:
    25px 10px 0 var(--accent-glow),
    50px 20px 0 var(--accent-glow),
    75px 30px 0 var(--accent-glow);
  opacity: 0.15;
  animation: floatDots 3s ease-in-out infinite alternate;
}
@keyframes floatDots {
  0% { transform: translateY(0) }
  100% { transform: translateY(-10px) }
}
.life-at-singler:hover {
  background-color: rgba(0, 240, 255, 0.07);
  transform: scale(1.03) translateY(-5px);
}
.life-at-singler:hover h2 {
  color: var(--white-clear);
  width: 0;
  animation: typing 1.6s steps(31, end) forwards, blinkCaret 0.6s step-end infinite;
  border-right: 3px solid var(--white-clear);
}

/* 7. Training & Growth - Inner shadow + diagonal glow */
.training-growth {
  border-radius: 3rem 2rem 4rem 2rem;
  background: linear-gradient(135deg, transparent 40%, rgba(0,240,255,0.07) 90%);
  box-shadow: inset 0 0 15px rgba(0,240,255,0.3);
  position: relative;
}
.training-growth::before {
  content: "";
  position: absolute;
  bottom: 15%;
  left: 20%;
  width: 130px;
  height: 3px;
  background: linear-gradient(45deg, transparent, var(--accent-glow), transparent);
  opacity: 0.3;
  filter: blur(2px);
}
.training-growth:hover {
  background-color: rgba(0, 240, 255, 0.08);
  transform: scale(1.04) translateX(5px);
}
.training-growth:hover h2 {
  color: var(--white-clear);
  width: 0;
  animation: typing 1.7s steps(33, end) forwards, blinkCaret 0.7s step-end infinite;
  border-right: 3px solid var(--white-clear);
}

/* 8. Our Values - Soft glowing border + animated dots */
.our-values {
  border-radius: 4rem 1rem 1rem 4rem;
  border: 1.5px solid rgba(0, 240, 255, 0.2);
  position: relative;
  background-color: rgba(0, 240, 255, 0.01);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.15);
}
.our-values::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-glow);
  animation: pulseDots 2.5s infinite;
}
.our-values::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-glow);
  animation: pulseDots 3s infinite alternate 1s;
}
@keyframes pulseDots {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}
.our-values:hover {
  background-color: rgba(0, 240, 255, 0.09);
  transform: scale(1.03) translateY(5px);
}
.our-values:hover h2 {
  color: var(--white-clear);
  width: 0;
  animation: typing 1.5s steps(30, end) forwards, blinkCaret 0.75s step-end infinite;
  border-right: 3px solid var(--white-clear);
}

/* 9. Internships - Double diagonal lines + gradient glow */
.internships {
  border-radius: 3rem;
  background: linear-gradient(135deg, rgba(0,240,255,0.05), transparent);
  position: relative;
  overflow: visible;
  border: 1px solid var(--card-border);
}
.internships::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    45deg,
    var(--accent-glow),
    var(--accent-glow) 12px,
    transparent 12px,
    transparent 24px
  );
  opacity: 0.3;
}
.internships::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent-glow),
    var(--accent-glow) 12px,
    transparent 12px,
    transparent 24px
  );
  opacity: 0.3;
}
.internships:hover {
  background-color: rgba(0, 240, 255, 0.07);
  transform: scale(1.05) translateY(-6px);
}
.internships:hover h2 {
  color: var(--white-clear);
  width: 0;
  animation: typing 1.8s steps(34, end) forwards, blinkCaret 0.6s step-end infinite;
  border-right: 3px solid var(--white-clear);
}

/* 10. Apply Now - Neon glow with inner shadows */
.apply-now {
  border-radius: 3rem 3rem 2rem 2rem;
  background-color: rgba(0, 240, 255, 0.02);
  position: relative;
}
.apply-now::before {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 15%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.15;
  animation: pulseDots 4s infinite alternate;
}
.apply-now:hover {
  background-color: rgba(0, 240, 255, 0.12);
  transform: scale(1.06) translateX(4px);
}
.apply-now:hover h2 {
  color: var(--white-clear);
  width: 0;
  animation: typing 2s steps(38, end) forwards, blinkCaret 0.5s step-end infinite;
  border-right: 3px solid var(--white-clear);
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    padding: 2rem 1rem 3rem;
  }
  .section {
    padding: 2.5rem 3rem 2.5rem 3rem;
  }
  h2 {
    font-size: 2.1rem;
  }
  p {
    font-size: 1.1rem;
    max-width: 100%;
  }
}

/* ...Your existing CSS above remains unchanged... */

/* Responsive fixes for .section and text for smaller devices */
@media (max-width: 768px) {
  .container_one {
    padding: 2rem 1rem 3rem;
  }

  .section {
    padding: 2rem 1.5rem 2rem 1.5rem;
    width: 100%;
    margin: 0 auto;
    border-radius: 1.5rem;
    font-size: 1rem; /* slightly smaller font */
    text-align: left; /* less centered */
  }

  .section h2 {
    font-size: 1.8rem;
    white-space: normal; /* allow wrapping */
    border-right: none; /* remove typing effect border on small */
    max-width: 100%;
    margin-bottom: 0.75rem;
  }

  .section p {
    font-size: 1rem;
    max-width: 100%;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
}

/* Slightly adjust container_one for small-mid devices */
@media (max-width: 1024px) {
  .container_one {
    padding: 3rem 1.5rem 4rem;
  }
}


@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;
  }
}
