/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.3s ease;
}


a {
  text-decoration: none;
  color: inherit;
}

/* TOP BAR */
.top-bar {
  background-color: #1A237E;
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-bar span {
  margin: 3px 0;
}

.top-bar a {
  color: #ffcc00;
}

/* HEADER */
.horizontal-header {
  background: #fff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-transparent {
  height: 70px;
}

/* NAV */
.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: #400080;
  font-weight: 500;
  position: relative;
}

.nav-menu a:hover {
  color: #0080ff;
}

/* underline hover */
.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffcc00;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* BUTTON */
.quote-btn {
  background-color: #F4C430;
  color: #3D1F5C;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
}

.quote-btn:hover {
  background-color: #e6b800;
  color: #fff;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #1A237E;
}

/* HERO */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  animation: fadeZoom 1s ease forwards;
}

.hero-overlay h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  background: #ffcc00;
  padding: 12px 20px;
  border-radius: 5px;
  color: #003366;
  font-weight: bold;
}

.btn-outline {
  border: 2px solid #ffcc00;
  color: #ffcc00;
  background: transparent;
}

.btn:hover {
  background: #e6b800;
  color: #fff;
}

/* SERVICES */
.services-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 20px;
  background: #f9f9f9;
}

.service-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box i {
  font-size: 40px;
  color: #1A237E;
  margin-bottom: 10px;
}

/* ABOUT */
.about-section {
  padding: 60px 20px;
  text-align: center;
}

.about-header h2 {
  color: #400040;
  margin-bottom: 10px;
}

.about-content {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

/* STATS */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  padding: 50px 20px;
  text-align: center;
}

.stat-box {
  background: #B3E5FC;
  padding: 20px;
  border-radius: 10px;
}

.stat-box img {
  height: 80px;
}

.stat-box h3 {
  font-size: 28px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.whatsapp-float img {
  width: 60px;
}

/* FOOTER */
.footer {
  background: #003366;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.footer-box h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.footer-box ul {
  list-style: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
}

/* ANIMATION */
@keyframes fadeZoom {
  from {opacity:0; transform: scale(0.8);}
  to {opacity:1; transform: scale(1);}
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    padding: 15px;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .nav-menu.active {
    display: flex;
  }

  .quote-btn {
    display: none;
  }

  .hero-section {
    height: auto;
  }

  .hero-bg {
    height: 300px;
  }

  .hero-overlay h1 {
    font-size: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .services-section {
    padding: 20px 10px;
  }

  .stat-box h3 {
    font-size: 22px;
  }
}