:root {
  --deep-bg: #0b1a2f;
  --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;
  font-family: 'Segoe UI', sans-serif;
  scroll-padding-top: 100px; /* Match this to your fixed header height */
  background-color: var(--deep-bg);
  color: var(--text-main);
  scroll-behavior: smooth;
}
/* 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;
}

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;
}




h1, h2, h3 {
  color: white;
  font-weight: 700;
}
a {
  text-decoration: none;
  color: #58a6ff;
}

/* Header */
.header_second {
  text-align: center;
  padding: 2rem 1rem;
  background: #0b1a2f;
  box-shadow: 0 2px 10px rgba(88, 166, 255, 0.3);
}

/* Tech Rows */
.tech-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

:root {
  --deep-bg: #0b1a2f;
  --accent-glow: #00f0ff;
  --card-border: #0ff0ff33;
  --text-main: #ffffff;
  --text-soft: #b0c8e0;
}
.tech-div {
  background-color: var(--deep-bg);
  border-radius: 20px;
  padding: 1.8rem;
  flex: 1;
  border: 1px solid var(--card-border);
  min-width: 280px;
  position: relative;
  box-shadow: 0 0 0 transparent;
  transform-style: preserve-3d;
  isolation: isolate;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #2a2d37; /* subtle border instead */
  transition: background-color 0.25s ease, transform 0.3s ease;
  color: white;
}
.tech-div::before,
.tech-div::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;
}

.tech-div::before {
  border: 2px solid var(--accent-glow);
  transform: scale(1.03);
  opacity: 0.08;
  filter: brightness(1.5);
}

.tech-div::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 */
.tech-div: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);
}
.tech-div h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}
.tech-div p {
  font-size: 1rem;
  color: white;
  line-height: 1.5;
}

/* Background Image Section */
.bg-image-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  height: 350px;
  margin: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.bg-text-container {
  position: relative;
  color: white;
  text-align: center;
  cursor: pointer;
  user-select: none;
}
.bg-text {
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 0 0 10px black;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.bg-text-container:hover .bg-text {
  transform: scale(1.1);
  text-shadow:
    0 0 20px #02060abb,
    0 0 40px #131416dd,
    0 0 60px #0a0d11ee;
}

/* Hover popup (drastic futuristic div) */
.hover-popup {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, 10%) scale(0);
  background: #0b1a2f;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  width: 320px;
  box-shadow: 0 0 20px #58a6ffcc;
  color: white;
  font-weight: 600;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 10;
  user-select: none;
}
.bg-text-container:hover .hover-popup {
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

/* Bottom tech row same as top but margin bottom */
.bottom-tech {
  margin-bottom: 3rem;
}

/* Accordion + Creative Text 70/30 */
.accordion-section {
  display: flex;
  max-width: 1200px;
  margin: 0 auto 3rem;
  gap: 2rem;
  padding: 0 1rem;
  flex-wrap: nowrap; /* force 70/30 on desktop */
}



/* Card Style */
.info-side {
  background: var(--deep-bg);
  border: 1px solid var(--card-border);
  padding: 2rem;
  max-width: 500px;
  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 */
.info-side::before,
.info-side::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;
}

.info-side::before {
  border: 2px solid var(--accent-glow);
  transform: scale(1.03);
  opacity: 0.08;
  filter: brightness(1.5);
}

.info-side::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 */
.info-side: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);
}

.accordion-side {
  flex-basis: 70%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Accordion style */
.accordion {
  background: var(--deep-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: none;
  border: 1px solid #2a2d37;
  transition: background-color 0.3s ease;
}
.accordion.active {
  background-color: #69778a;
}
.accordion-header {
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toggle-icon {
  font-weight: 900;
  font-size: 1.5rem;
  color: gold;
  transition: transform 0.3s ease;
  user-select: none;
}
.accordion.active .toggle-icon {
  transform: rotate(45deg); /* plus to X */
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: white;
  background: var(--deep-bg);
  transition: max-height 0.35s ease, padding 0.35s ease;
  line-height: 1.5;
}
.accordion.active .accordion-content {
  max-height: 200px;
  padding: 1rem 1.5rem;
}

/* Team Section */
.team-section {
  text-align: center;
  padding: 60px 30px;
  background: var(--deep-bg);
  border: 1px solid var(--card-border);
  color: white;
  border-radius: 20px;
  box-shadow: 0 0 2px rgb(221, 198, 69);
  margin: 40px auto;
  max-width: 1000px;
}

#team-profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 40px;
  position: relative;
}

.team-profile {
  display: flex;
  background: var(--deep-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: 0 0 5px rgb(241, 227, 146);
  padding: 20px;
  max-width: 800px;
  width: 90%;
  align-items: center;
  animation: fadeIn 1s ease-in-out;
}

.team-profile img {
  width: 50%;
  height: auto;
  max-height: 300px;
  box-shadow: 0 0 1px rgb(241, 227, 146);
  border-radius: 15px;
  object-fit: cover;
  margin-right: 20px;
}

.team-profile .info {
  width: 50%;
  text-align: left;
}

.team-profile h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: gold;
}

.team-profile h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.team-profile p {
  font-size: 1rem;
  line-height: 1.4;
  color: #ccc;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .team-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
  }

  .team-profile img {
    width: 80%;
    margin: 0 0 20px 0;
  }

  .team-profile .info {
    width: 100%;
    text-align: center;
  }

  .team-profile h3 {
    font-size: 1.5rem;
  }

  .team-profile h4 {
    font-size: 1.1rem;
  }

  .team-profile p {
    font-size: 0.95rem;
  }

  #team-profile-container {
    padding: 0 10px;
  }

  .team-section {
    padding: 40px 15px;
  }
}


/* Join Us Section */
.join-us {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 2rem 1rem;
  background: var(--deep-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  box-shadow: 0 2px 5px gold;
  text-align: center;
}
.join-us h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.join-us p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #8b949e;
  line-height: 1.5;
}
.cta-button {
  background-color: #58a6ff;
  color: #0d1117;
  padding: 0.85rem 2.5rem;
  font-weight: 700;
  border-radius: 40px;
  box-shadow: 0 6px 15px #58a6ff99;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.cta-button:hover {
  background-color: #1c5ed6;
  box-shadow: 0 8px 20px #1c5ed699;
}

/* Responsive */
@media (max-width: 1024px) {
  .tech-row {
    flex-direction: column;
  }
  .accordion-section {
    flex-direction: column;
  }
  .info-side, .accordion-side {
    flex-basis: 100%;
  }
  #team-profile-container {
    height: 400px;
  }
  .team-profile {
    width: 80vw;
    max-width: none;
  }
}

/* Additional styles to fix layout */

    /* Accordion plus/minus icons */
    .accordion-header {
      cursor: pointer;
      position: relative;
      padding-right: 30px;
      user-select: none;
    }
    .accordion-header::after {
      content: "+";
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      font-weight: bold;
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }
    .accordion.active .accordion-header::after {
      content: "−"; /* minus sign */
      color: gold; /* accent color */
    }

    /* Ensure accordion-content is hidden by default */
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0 15px;
    }
    .accordion.active .accordion-content {
      max-height: 200px; /* or enough for content */
      padding-top: 10px;
      padding-bottom: 10px;
    }

    /* Join Us button */
    .join-us {
      margin-top: 40px;
      text-align: center;
    }
    .cta-button {
      background-color: #05bef7;
      color: white;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s ease;
      display: inline-block;
      margin-top: 10px;
    }
    .cta-button:hover {
      background-color: rgb(1, 247, 247);
    }

@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;
  }
}

