/* =====================
   GLOBAL VARIABLES
===================== */
:root {
  --primary-blue: #0a7cff;
  --dark-blue: #064a9f;
  --light-blue: #eaf3ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: #ec7e3a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 124, 255, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.logo img {
  height: 60px;
  border-radius: 70%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.navbar.scrolled .nav-links a {
  color: white;
}

.navbar.scrolled .nav-links a:hover {
  color: #eaf3ff;
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 12px;
  margin-left: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: transparent;
  box-shadow: none;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
  z-index: 1001;
}

.dropdown-menu li {
  background: white;
  border: 1px solid #ddd;
  margin-bottom: 2px;
}

.dropdown-menu li:first-child {
  border-top: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #eaf3ff;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a:hover {
  background: var(--light-blue);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-images img {
  width: 33.33%;
  height: 100%;
  object-fit: cover;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(10, 124, 255, 0.75);
  padding: 35px 45px;
  border-radius: 10px;
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* =====================
   BUTTONS
===================== */
.cta {
  display: inline-block;
  padding: 14px 30px;
  background: white;
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.cta:hover {
  background: var(--light-blue);
}

/* =====================
   SERVICES
===================== */
.services-section {
  padding: 70px 50px;
  background: var(--light-blue);
  text-align: center;
}

.services-section h2 {
  color: var(--dark-blue);
  margin-bottom: 40px;
}

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

.service-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.service-item img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.service-item h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

/* =====================
   CTA SECTION
===================== */
/* .cta-section {
  padding: 70px 50px;
  background: var(--primary-blue);
  color: white;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 10px;
}

.cta-section p {
  margin-bottom: 30px;
} */
/* FOOTER */
/* footer {
  background: #ec7e3a;
  color: white;
  padding: 40px 30px 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 20px;
}
.footer-content h3 {
  margin-bottom: 10px;
}
.footer-content a {
  color: white;
  text-decoration: none;
}
.footer-content a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-size: 14px;
} */