

* {
  box-sizing: border-box;
  padding: 0;
  
}
body {
  margin: 0px;
  font-family: Arial, sans-serif;
  background: #f0f0f5;
  color:#333;
  padding: 0;
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: rgb(12, 12, 71);
  color:white;
  flex-wrap: wrap;
  max-width: 100%;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

#consultBtn {
  background-color:green;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s;
  margin-top: 15px;
}

#consultBtn:hover {
  transform: scale(1.2);
}


  .nav {
      display: flex;
      width: 100%;
      background-color: rgb(18, 18, 136);
      
    }

.nav.active {
  display: flex;
  
}

 .nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 80px;
      flex-wrap: wrap;
    }

.nav li {
  padding: 10px 20px;
  border-bottom: 1px solid #444;
  position: relative;

}

.nav a {
  color: white;
  text-decoration: none;
}

.main-content {
  text-align: left; /* Change from center to left */
  padding: 20px;
  max-width: 100%;
  margin: auto;
}

.counter {
  text-align: left; /* Ensures text inside is left-aligned */
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  margin: 20px 0;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeSlideIn 1.2s ease-out forwards;
  font-size:xx-large;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: rgb(227, 7, 7);
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.clients {
  padding-left: 0px;
  position:relative;
}

.counter p:first-child {
  font-size: 48px;
  color: #003366;
  margin: 0;
  font-weight: bold;
}

.gallery {
  max-width: 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
  padding: 0 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
  display: flex;
}

.nav {
  width: 100%;
}

.gallery {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 600px;
  margin: auto;
  height: 300px;
}

.gallery img {
  height: auto;
  max-height: 300px;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transition: opacity 0.1s ease-in-out, transform 0.5s ease;
  transform: scale(0.95);
}

.gallery img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  position: relative;
  cursor: pointer;
  max-width:100%;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: white;
  background-color: rgba(2, 11, 12, 23);
  padding: 8px 12px;
  border-radius: 40%;
  cursor: pointer;
  user-select: none;
  z-index: 2;

}

.arrow.left {
  left: 2px;
}

.arrow.right {
  right: 0px;
}

.why-choose-us p {
  margin-top: 0px;
  font-size: 16px;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.why-choose-us {
  background: #eef5ff;
  padding: 10px 0px;
  margin-top:0px;
}

.why-choose-us h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #004080;
}

.why-choose-us p {
  list-style: disc inside;
  text-align: left;
  max-width: 100%;
  margin:0;
  font-size: 18px;
  line-height: 1.8;
}

/* Section Titles */
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #003366;
  text-align: center;
}

/* Who We Are Section */
.who-we-are {
  background: #f4f8fb;
  padding: 40px 20px;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out;
}

.who-we-are p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  max-width:100%;
  margin:8px auto;
  text-align:left;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #f0f0f5;
  padding: 20px;
}

.services {
  max-width: 1200px;
  margin: auto;
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.row-2 .service {
  flex: 0 1 calc(50% - 20px);
}

.row-3 .service {
  flex: 0 1 calc(33.33% - 20px);
  flex-direction: wrap;
}

.service {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service i {
  font-size: 40px;
  color: #f5a623;
  margin-bottom: 15px;
}

.service h3 {
  margin: 10px 0;
  font-size: 1.4em;
  color: #222;
}

.service p {
  font-size: 0.95em;
  color: #555;
}

.read-more {
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #f5a623;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.read-more:hover {
  background-color: #d48806;
  transform: scale(1.05);
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media screen and (max-width: 800px) {

  .row-2 .service,
  .row-3 .service {
    flex: 0 1 100%;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-section {
  background-color: #ffffff;
  padding: 30px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 800px;
}

.service-section h2 {
  color: #0d47a1;
}

.service-section .read-more {
  background-color: #1976d2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service-section .read-more:hover {
  background-color: #1565c0;
}

.need-help {
  text-align: center;
  margin: 40px auto;
  padding: 30px;
  background-color: black;
  border-radius: 10px;
  max-width: 600px;
}

.need-help h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: red;
}

.help-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.help-buttons button {
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.ask-us {
  background-color: #25d366;
  color: white;
}

.ask-us:hover {
  background-color: #1ebd57;
}

.contact-us {
  background-color: #3b82f6;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  padding: 10px;
}

.contact-us:hover {
  background-color: #2563eb;
}

.sub-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0px;
  margin-top: 20px;
  background-color: #eef5ff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  touch-action: auto;
  /* Enables touch gestures like pinch zoom */
  pointer-events: auto;
  /* Allows touch input */
  border-radius: 8px;
}

.fb-icon {
  font-size: 40px;
  color: #3b5998;
  margin-left: 1px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

.fb-icon:hover {
  transform: scale(1.1);
  color: blue;
}
/* Dropdown default hidden */
.services-menu .dropdown {
  display: none;
  position: absolute;
  background-color: white;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  min-width: 250px;
  z-index: 999;
}

.services-menu {
  position: relative;
}

/* Only show dropdown on hover of Services */
.services-menu:hover .dropdown {
  display: block;
}

/* Dropdown item styles */
.services-menu .dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  background-color: white;
}

.services-menu .dropdown li a:hover {
  background-color: #f0f0f0;
  color: red;
}
