/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fbff;
  color: #111;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: #10459c;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  color: #FFECDB;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo img {
  height: 50px;
}

.main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav .nav-list li {
  position: relative;
}

.main-nav .nav-list a {
  text-decoration: none;
  color: #10459c;
  font-weight: 500;
  line-height: 1.2;
  padding: 8px 0;
}

.dropdown .mega-menu {
  display: none; /* hide by default */
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  gap: 40px;
  z-index: 1000;
  width: 600px;
}

/* Show on hover */
.dropdown:hover .mega-menu {
  display: flex;
}

/* Show on hover */
.nav-item:hover .mega-menu {
  display: flex;
}
.menu-column h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #10459c;
}

.menu-column ul {
  list-style: none;
  padding-left: 0;
}

.menu-column ul li a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 4px 0;
  transition: 0.3s;
}

.menu-column ul li a:hover {
  color: #10459c;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary {
  background: #10459c;
  color: #fff;
}

.btn-secondary {
  background: #e6f0ff;
  color: #10459c;
  margin-left: 10px;
}

.btn-outline {
  border: 2px solid #10459c;
  color: #10459c;
  background: transparent;
}

.btn-small {
  font-size: 0.9rem;
  padding: 8px 16px;
}

/* Hero Section */
.hero-section {
  background: url('/assets/img/hero-bg.jpg') no-repeat center center/cover;
  padding: 100px 0;
  text-align: center;
}

.hero-content .highlight {
  color: #2a5fe1;
}

.hero-cta {
  margin-top: 20px;
}

/* Services Section */
.services-preview {
  padding: 60px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background: #f5faff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  height: 60px;
  margin-bottom: 15px;
}

/* Why Us */
.why-us {
  background: #e6f0ff;
  padding: 60px 0;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* CTA Section */
.cta-contact {
  background: #f8f9fb;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta-contact h3 {
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  background: #0c387a;
  color: #fff;
  padding: 40px 20px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-wrapper h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2754a3;
  font-size: 0.9rem;
}

/* WhatsApp Floating */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: transparent;
  z-index: 999;
}

/* Mobile Navigation */
.mobile-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #10459c;
}

/* Responsive */
@media (max-width: 768px) {
  .header-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  .logo img {
    height: 55px; /* Reduce logo size for mobile */
  }

  .main-nav {
    position: relative;
  }

  .main-nav .nav-list {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px; /* Adjust to match reduced header height */
    right: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 1000;
    border-radius: 8px;
    width: 200px;
  }

  .main-nav.active .nav-list {
    display: flex;
  }

  .main-nav .nav-list li {
    margin-bottom: 10px;
  }

  .main-nav .nav-list a {
    padding: 5px 0;
    color: #10459c;
  }

  .mobile-toggle {
    display: block;
    font-size: 26px;
    color: #10459c;
    cursor: pointer;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* for bottom mobile menu */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  color: #10459c;
}

.bottom-nav .nav-item img {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
}

/* Show only on mobile */
@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .bottom-nav {
    display: flex;
  }
}

.stats-counter {
  background: #f8f9fb;
  padding: 60px 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.stat-box .number {
  font-size: 36px;
  font-weight: bold;
  color: #10459c;
}

.stat-box p {
  margin-top: 8px;
  font-size: 15px;
  color: #333;
}



