/* Global font and reset */
* {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

#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;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 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 {
  background-color: #1a72b2;
  color: #fff;
  text-align: center;
  padding: 60px 20px 40px;
  height: 250px;
  text-align: center;
  justify-content: center;
}

.hero h1 {
  margin-bottom: 10px;
  font-size: 52px;
  text-align: center;
  justify-content: center;
  margin-top: 20px;
}

.hero p {
  font-size: 22px;
  max-width: 800px;
  margin: auto;
  margin-top: 20px;
}


.services {
  display: grid;
  max-width: 1250px;
  margin: auto;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 50px 20px;
  background: #fff;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 40px 12px rgba(202, 201, 201, 0.05);
  padding: 25px;
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: var(--color);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #4B5563;
  line-height: 1.5;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
  font-size: 18px;
  color: #4B5563;
}

.service-card ul li::before {
  content: "✔";
  color: #28a745;
  margin-right: 8px;
  margin-bottom: 20px;
}

.service-card button {
  background: #fff;
  color: var(--color);
  border: 2px solid var(--color);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.process {
  text-align: center;
  padding: 60px 20px;
  background: #f1f3f9;
}

.process h2 {
  margin-bottom: 10px;
}

.process p {
  margin-bottom: 40px;
  color: #555;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.step {
  max-width: 220px;
  text-align: center;
}

.step .icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.step h4 {
  font-size: 18px;
  color: #1A72B2;
  margin-bottom: 10px;
}

.cta {
  background: #1a72b2;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons a {
  text-decoration: none;
  color: #1a72b2;
}

.cta-buttons button {
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.cta-buttons button:first-child {
  background: white;
  color: #0047ab;
  border: none;
}

.cta-buttons button:last-child {
  background: transparent;
  color: white;
  border: 2px solid white;
}

#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;
}



@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 250px;
    background: #fff;
    flex-direction: column;
    padding: 2em 1.5em;
    gap: 1.5em;
    transition: 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .navbar-menu.show {
    left: 0;
  }

  .navbar-right {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .mobile-contact {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
}

@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;
  }
}