/* ========== Global Reset ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(#2d2d2d, #000000);
  font-family: poppins, sans-serif;
  scroll-behavior: smooth;
}

.section {
  padding: 3.75rem 1.25rem;
}

.container {
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: orange;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: orange;
}

p {
  margin-bottom: 0.9375rem;
  font-size: 1rem;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================
 Navbar
================================ */
nvbr {
  font-family: poppins, sans-serif;
  background: black;
  min-height: 20dvh;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: 100%;
  position: fixed;
  top: 0;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.625rem);
  z-index: 999;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  max-width: 100rem;
}

.navbar-logo {
  height: 3.75rem;
}

.navbar-container .navbar-menu {
  display: flex;
  text-align: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar-container .navbar-menu li a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0.1875rem 1.25rem;
  border-radius: 1.25rem;
  transition: all 0.7s ease;
}

.navbar-container .navbar-menu li a:hover,
.navbar-container .navbar-menu li a.active {
  color: #162530;
  background: #ffa500;
  border: 0.125rem solid #fff;
}

.navbar-toggle {
  display: none;
  background: transparent;
  padding: 0.625rem;
  border: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 1.5625rem;
  height: 0.1875rem;
  margin: 0.3125rem auto;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

/* ========== Mobile Navbar ========== */
@media (max-width: 55rem) {
  .navbar-container .navbar-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.7rem;
    position: absolute;
    height: 100dvh;
    width: 15.625rem;
    top: 0;
    right: 0;
    padding: 5rem 1.5rem;
    background: rgba(0, 0, 0, 0.95);
  }

  .navbar-container .navbar-menu.active {
    display: flex;
  }

  .navbar-toggle {
    display: block;
    z-index: 999;
  }

  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .bar:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg);
  }

  .navbar-toggle.active .bar:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-45deg);
  }
}

@media (max-width: 30rem) {
  .navbar-container {
    padding: 0 1rem;
  }
  .navbar-container .navbar-menu li a {
    font-size: 1.1rem;
  }
}

/* ================================
 Hero Section
================================ */
.hero {
  position: relative;
  width: 100%;
  height: 70dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  filter: brightness(0.6);
}

.hero-content {
  z-index: 2;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: black;
  color: white;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 1.875rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  scale: 1.2;
}

/* Responsive Hero */
@media (max-width: 48rem) {
  .hero {
    height: 55dvh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* ================================
 Services / Cards
================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.875rem;
}

.service-card {
  background: #000;
  border: 0.25rem solid orange;
  border-radius: 0.75rem;
  padding: 1.875rem;
  transition: transform 0.3s ease;
}

.service-card img {
  width: 100%;
  border-radius: 0.625rem;
  margin-bottom: 1.25rem;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  border-color: white;
}

/* Animations */
.service-card {
  opacity: 0;
  transform: translateY(6.25rem);
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* ================================
 Mission & Vision
================================ */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.875rem;
}

.mission, .vision {
  background: #000;
  padding: 1.875rem;
  border: 0.125rem solid orange;
  border-radius: 0.5rem;
}

/* ================================
 Footer
================================ */
.footer {
  background: #111;
  color: #eee;
  padding: 3rem 2rem 1rem;
  text-align: center;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
  max-width: 68.75rem;
  margin: auto;
}

.footer-brand img {
  width: 7.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.5;
}

.footer-links h2,
.footer-contact h2 {
  color: orange;
  margin-bottom: 0.8rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #eee;
  font-size: 0.95rem;
}

.footer-contact p {
  font-size: 0.9rem;
}

.footer-contact .social-icons img {
  width: 2rem;
}

.footer-bottom {
  border-top: 0.0625rem solid #333;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #999;
}

/* ========== Extra Small Screens Fix ========== */
@media (max-width: 25rem) {
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}
