/* -------------------------------------------
   GLOBAL & RESET STYLES
----------------------------------------------*/
:root {
  --bg-deep-dark: #0a0a0a; /* Main background color */
  --text-light: #eeeeee; /* Main text color */
  --accent-blue: #00ffff; /* Primary accent/neon color (Cyan) */
  --border-gray: #333333; /* Subtle border color */
  --primary-glow: rgba(0, 255, 255, 0.7); /* Neon glow effect */
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-deep-dark);
  color: var(--text-light);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s;
}

a:hover {
  color: var(--accent-blue);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-blue {
  color: var(--accent-blue);
  text-shadow: 0 0 5px var(--primary-glow);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-blue);
  box-shadow: 0 0 10px var(--primary-glow);
  margin: 10px auto 0;
}

/* -------------------------------------------
   HEADER & NAVIGATION
----------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(
    10,
    10,
    10,
    0.9
  ); /* Slightly transparent dark background */
  backdrop-filter: blur(5px);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
}

/* Sticky Header Effect (Activated by JS) */
header.sticky {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px var(--primary-glow);
  border-bottom: 1px solid var(--accent-blue);
  background-color: rgba(0, 0, 0, 0.95);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Desktop Navigation */
.nav-links ul {
  list-style: none;
  display: flex;
}

.nav-links ul li {
  margin-left: 30px;
}

.nav-links ul li a {
  padding: 10px 0;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Mobile Toggle Button */
.menu-toggle {
  display: none; /* Hide on desktop */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--accent-blue);
  border-radius: 10px;
  transition: all 0.3s linear;
}

/* Hamburger to X animation */
.menu-toggle.is-active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* -------------------------------------------
   CTA BUTTONS
----------------------------------------------*/
.cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}

.primary-cta {
  background-color: var(--accent-blue);
  color: var(--bg-deep-dark);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.primary-cta:hover {
  background-color: #ffffff;
  box-shadow: 0 0 25px var(--primary-glow);
}

.secondary-cta {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
  margin-left: 15px;
}

.secondary-cta:hover {
  background-color: var(--accent-blue);
  color: var(--bg-deep-dark);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* -------------------------------------------
   1. HERO SECTION
----------------------------------------------*/
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: var(--header-height);
  background: url("images/main_background.jpg") no-repeat center center/cover; /* Ensure you have this image in /images folder */
  background-attachment: fixed;
  /* Overlay for dark theme and readability */
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.7);
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-text .tagline {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* -------------------------------------------
   2. TRUST BAR (STATS)
----------------------------------------------*/
.trust-bar {
  background-color: #121212;
  padding: 2rem 0;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  position: relative;
  z-index: 10;
}

.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 10px 20px;
}

.stat-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-blue);
  text-shadow: 0 0 5px var(--primary-glow);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #999;
  text-transform: uppercase;
  margin-top: -5px;
}

/* -------------------------------------------
   3. SERVICES SECTION
----------------------------------------------*/
.services-section {
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #121212;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.service-card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  transform: translateY(-8px);
}

.service-card .icon-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 255, 255, 0.1);
  color: var(--accent-blue);
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-blue);
}

.service-card p {
  color: #ccc;
  font-size: 0.95rem;
}

/* -------------------------------------------
   4. WHY US / ABOUT SECTION
----------------------------------------------*/
.about-section {
  padding: 6rem 0;
  background-color: #0d0d0d;
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-content .text-side {
  flex: 1;
}

.about-content .image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content .image-placeholder {
  width: 100%;
  max-width: 450px;
  height: 350px;
  background-color: #1f1f1f;
  border: 3px solid var(--accent-blue);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.key-features {
  list-style: none;
  margin: 20px 0 30px;
  padding-left: 0;
}

.key-features li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #ccc;
}

.key-features li i {
  color: var(--accent-blue);
  margin-right: 10px;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* -------------------------------------------
   5. CONTACT SECTION
----------------------------------------------*/
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.contact-form {
  background-color: #121212;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
}

.contact-form h3,
.contact-info-details h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--accent-blue);
}

.contact-form form {
  display: grid;
  gap: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  background-color: var(--bg-deep-dark);
  color: var(--text-light);
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.contact-info-details p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.contact-info-details p i {
  color: var(--accent-blue);
  margin-right: 10px;
  font-size: 1.1rem;
}

.follow-heading {
  margin-top: 35px !important;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--accent-blue);
  color: var(--bg-deep-dark);
  box-shadow: 0 0 10px var(--primary-glow);
  transform: scale(1.1);
}

/* -------------------------------------------
   FOOTER
----------------------------------------------*/
.main-footer {
  background-color: #050505;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid var(--border-gray);
}

.main-footer a {
  color: #aaa;
  margin: 0 5px;
}

.main-footer a:hover {
  color: var(--accent-blue);
}

/* -------------------------------------------
   RESPONSIVENESS (MOBILE ADJUSTMENTS)
----------------------------------------------*/
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  /* Header/Nav Adjustments for Mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.98);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-gray);
    overflow: hidden;
    height: 0; /* Initial height for slide animation */
    transition: height 0.3s ease-in-out;
  }

  .nav-links.open {
    display: flex;
    height: 250px; /* Adjust height based on number of links */
  }

  .nav-links ul {
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links ul li {
    margin-left: 0;
    width: 100%;
  }

  .nav-links ul li a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #1f1f1f;
    font-size: 1rem;
    font-weight: 700;
  }

  .menu-toggle {
    display: flex; /* Show hamburger button */
  }

  /* Section Layouts */
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .secondary-cta {
    margin-left: 0;
  }

  .trust-bar .container {
    justify-content: space-around;
    gap: 30px 10px;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-content .image-side {
    order: -1; /* Image above text on mobile */
    margin-bottom: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stat-value {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}
