:root {
  --primary: #0B3C5D;
  --accent: #1CA7A6;
  --light: #F5F7FA;
  --dark: #1F2937;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

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

.section {
  padding: 80px 0;
}

.bg-light {
  background: var(--light);
}

/* ================= HEADER ================= */
.header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

/* ================= HERO PARALLAX ================= */
.hero {
  position: relative;
  height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1584515933487-779824d29309');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax Effect */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 60, 93, 0.75); /* Dark overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-content p {
  margin-top: 20px;
}

.hero-buttons {
  margin-top: 30px;     /* space between text and buttons */
  display: flex;
  gap: 20px;            /* space between buttons */
  justify-content: center;
  flex-wrap: wrap;      /* prevents overflow on smaller screens */
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
/* ================= BUTTONS ================= */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 10px;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 10px;

}

/* ================= SERVICES ================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ================= APP SECTION ================= */
.app-content {
  display: flex;
  justify-content: center;
  text-align: center;
}

/* ================= WHY ================= */
.why-list {
  margin-top: 30px;
  list-style: none;
}

.why-list li {
  margin-bottom: 15px;
}

/* ================= CTA ================= */
.cta {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

/* ================= FOOTER ================= */
.footer {
  background: #0a2e47;
  color: var(--white);
  text-align: center;
  padding: 20px;
}
.footer-button {
  margin-top: 30px;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {
  

  .hero h2 {
    font-size: 30px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: 0.3s;
}

/* Animate Hamburger */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
#nav-menu {
  transition: 0.3s ease;
}

.mobile-btn {
  display: none;
}

.desktop-btn {
  display: inline-block;
}

/* ================= RESPONSIVE NAV DROPDOWN ================= */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .desktop-btn {
    display: none;
  }

  #nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    /* Animation Setup */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
  }

  #nav-menu.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    padding: 30px;
    gap: 20px;
  }

  .mobile-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
  }
}

/* Smooth Global Transitions */
a, button {
  transition: all 0.3s ease;
}

/* Button Hover Effects */
.btn-primary:hover {
  background: #169c9b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* Card Hover Animation */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Nav Link Hover */
.nav-links a:hover {
  color: var(--accent);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary);
}

.section-text {
  max-width: 900px;
  line-height: 1.8;
}

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

.division-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.division-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.division-card h4 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
  color: var(--primary);
}
.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.page-hero h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
}

.division-detail h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--primary);
}

.division-detail p {
  max-width: 900px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.small-btn {
  padding: 8px 18px;
  font-size: 14px;
}
/* Contact Hero */
.contact-hero {
  position: relative;
  height: 60vh;
  background: url('https://images.unsplash.com/photo-1588776814546-ec7e2e3b2d12') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
}

/* Contact Info */
.contact-info {
  display: flex;
  justify-content: space-between;
  margin: 80px auto;
  gap: 30px;
}

.info-card {
  flex: 1;
  background: white;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
}

/* Contact Form */
.contact-form-section {
  background: #f8f9fb;
  padding: 80px 0;
}

.form-container {
  max-width: 800px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

input, select, textarea {
  padding: 15px;
  border: 1px solid #ddd;
  width: 100%;
  font-size: 16px;
}

textarea {
  resize: none;
}

.btn-primary {
  background: #002c5f;
  color: white;
  padding: 15px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0056b3;
}

/* Map */
.map-section {
  margin-top: 60px;
}

/* Responsive */
@media(max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
}

.logo img {
  height: 40px;
  width: auto;
}

.logo span {
  letter-spacing: 1px;
}
