/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.5;
}

/* Toggle Menu Icon */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #111;
}

/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo Section */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 0px;
}

.navbar-left img {
  width: 35%;
  height: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}


/* Nav Menu */
.navbar-menu {
  display: flex;
  gap: 2em;
  align-items: center;
}

.navbar-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 450;
  transition: 0.3s;
  font-size: 14px;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: #1a72b2;
}

/* Right Section */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.2em;
  font-size: 14px;
}

.phone {
  font-weight: 450;
  color: #444;
  font-size: 14px;
}

.mobile-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;

  gap: 0.5em;
}

.get-started-btn {
  padding: 0.5em 1em;
  background-color: #1a72b2;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 550;
  cursor: pointer;
  transition: 0.3s;
  width: 120px;
}

.get-started-btn a {
  color: #fff;
  text-decoration: none;
}

.learn-more a {
  color: #000000;
  text-decoration: none;
}

.learn-more a:hover {
  color: #ffffff;
  text-decoration: none;
}


.get-started-btn:hover {
  background-color: #073278;
  color: #fff;
}

.get-started-btn a:hover {
  color: #fff;
  text-decoration: none;
}

/* Hamburger Icon */
.menu-icon {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}



/* Hero Section */
.hero {
  background-color: #1a72b2;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
  margin-top: 10px;
}

/* Mission Section */
.mission-section {
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  background: #fff;
}

.mission {
  max-width: 600px;
}

.mission h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.mission p {
  font-size: 16px;
  color: #000;
}

/* Stats Section */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.stat-box {
  background-color: #f1f3f9;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  width: 180px;
  font-size: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.stat-box strong {
  font-size: 24px;
  color: #1A72B2;
}

/* Core Values */
.core-values {
  background: #f9fafc;
  padding: 60px 20px;
  text-align: center;
}

.core-values h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111827;
}

.core-values p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.value-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.value-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.value-box img {
  width: 50px;
  margin-bottom: 15px;
}

.value-box h3 {
  font-size: 20px;
  color: #1A72B2;
  margin-bottom: 10px;
}

.value-box p {
  color: #555;
}

/* Experience Section */
.experience-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 60px 20px;
  background: #fff;
}

.experience-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.experience-text {
  max-width: 500px;
}

.experience-text h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.experience-text li {
  margin-bottom: 15px;
  color: #444;
}


#myBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 50px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  /* background-color: #007bff; */
  background-color: #25D366;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;

}

#myBtn:hover {
  background-color: #fff;
}

#myBtn img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

/* Responsive - Mobile & Tablet */
@media (max-width: 992px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    background: #fff;
    padding: 2em 1.5em;
    gap: 1.5em;
    transition: 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .navbar-menu.show {
    left: 0;
  }

  .navbar-right {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .mission h2 {
    font-size: 30px;
  }

  .core-values h2 {
    font-size: 30px;
  }

  .experience-text h2 {
    font-size: 22px;
  }

  .menu-icon {
    display: block;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
  }

  .navbar-menu.show {
    display: flex;
  }
}

@media (max-width: 576px) {
  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .menu-icon {
    display: block;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
  }

  .navbar-menu.show {
    display: flex;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .mission-section {
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
  }

  .mission h2 {
    font-size: 26px;
  }

  .value-box {
    width: 100%;
  }

  .experience-text h2 {
    font-size: 20px;
  }

  .stat-box {
    width: 100%;
  }
}