/* Global font and reset */
* {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
}

/* 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-section {
  color: rgb(0, 0, 0);
  display: flex;
  width: 100%;
  height: 60vh;
}

.hero-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 0px 100px;
  box-sizing: border-box;
  margin-top: 0px;
  margin-left: 200px;
}

.trust_section {
  width: 300px;
  display: flex;
  margin-top: 0px;
  background-color: #E2E6F0;
  padding: 10px 20px;
  border-radius: 30px;
  box-sizing: border-box;
  font-size: 10px;
  margin-bottom: 20px;
}

.trust_section svg {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
}

.hero-header h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
}

.hero-header span {
  font-size: 4rem;
  font-weight: 800;
  color: #1a72b2;
  margin-bottom: 20px;
}

.hero-header p {
  font-size: 20px;
  color: #4B5563;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Hero Service Section */
.hero_service_section {
  width: auto;
  display: flex;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 30px;
  box-sizing: border-box;
  font-size: 10px;
  margin-bottom: 20px;
}

.hero_service_section svg {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}

.hero_service_section h2 {
  margin-right: 20px;
  color: #4B5563;
  font-weight: 500;
}

/* Slider Container */
#slider-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  height: 400px;
  margin: 60px auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: #f4f4f4;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
  height: 100%;
   width: calc(100% * var(--slide-count));
}

.slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 20px;
}

.slide-content h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 1.1rem;
}


/* Services Section */

.services-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
  margin-top: 50px;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.services-header p {
  max-width: 600px;
  margin: 10px auto 40px;
  color: #555;
  font-size: 1.1rem;
}

.services-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  max-width: 350px;
  flex: 1;
  transition: transform 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 65px;
  height: 65px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}

.service-icon.blue {
  background-color: #1a72b2;
}

.service-icon.green {
  background-color: #25D366;
}

.service-icon.orange {
  background-color: #f97316;
}

.hero_service_section svg {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 5px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-card ul {
  padding-left: 20px;
  color: #333;
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-card ul li {
  list-style: disc;
  margin-bottom: 6px;
}

.learn-more {
  background: #f0f0f000;
  width: 100%;
  border: 0.5px solid #00000030;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.learn-more:hover {
  background-color: #0b66f8;
  color: white;
  border: none;
}

.view-all-wrapper {
  margin-top: 40px;
}

.view-all-wrapper a {
  text-decoration: none;
  color: white;
}

.view-all-btn {
  background-color: #1a72b2;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.view-all-btn:hover {
  background-color: #073278;
}

.view-all-wrapper :hover {
  background-color: #073278;
  color: #FFF;
}

.view-all-btn span,
.learn-more span {
  margin-left: 5px;
}

/* why choose us */
.why-choose-section {
  background-color: #f9fafb;
  padding: 80px 20px;
  text-align: center;
}

.choose-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.choose-header p {
  font-size: 1.25rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 60px 40px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.choose-card {
  background-color: transparent;
  text-align: center;
  max-width: 400px;
}

.choose-icon {
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #1A72B2;
  /* updated icon color */
  margin: 0 auto 20px;
}

.choose-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}


/* our track record */
.track-record-section {
  background-color: #1a72b2;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.track-record-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.track-record-header p {
  font-size: 1.1rem;
  color: #cfd9f2;
  margin-bottom: 60px;
}

.track-record-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.track-card {
  width: 240px;
  text-align: center;
}

.icon-box {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.icon-box i {
  font-size: 28px;
  color: #ffffff;
}

.track-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.track-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.track-card p {
  font-size: 0.95rem;
  color: #cfd9f2;
}

/* success-stories  */

.review-slider-section {
  padding: 0px 40px;
  background-color: #f9f9f9;
  text-align: center;
}

.review-slider-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.review-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-card {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-card h4 {
  margin: 10px 0;
  font-weight: 600;
}

.review-card .stars {
  color: #ffc107;
  font-size: 18px;
}

.review-card p {
  font-size: 16px;
  color: #555;
}

.review-card .admin-reply {
  background: #f1f1f1;
  padding: 10px;
  margin-top: 10px;
  border-left: 4px solid #007bff;
  text-align: left;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #007bff;
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}


#testimonial-slider {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#testimonial-slider h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.slider-container {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  min-height: 50px;
  transition: transform 0.5s ease-in-out;
}

.review-card {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease-in-out;
}

.review-card.active {
  display: flex;
}

.review-card h3 {
  font-size: 1.2em;
  color: #222;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.4;
}

.review-card .rating {
  color: #FFD700;
  /* gold stars */
  font-size: 1.2em;
}

.slider-nav {
  margin-top: 20px;
}

.slider-nav button {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 8px 14px;
  margin: 0 5px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.slider-nav button:hover {
  background: #388E3C;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}







/* Frequently Asked Questions */

.faq-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "▼";
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
}

/* footer */

#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 img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}


/* Mobile Styles */
@media (max-width: 1400px) {
  .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;
  }

  .hero-section {
    flex-direction: column;
    height: auto;
  }

  .hero-container {
    padding: 20px;
    margin-left: 0;
    align-items: flex-start;
  }

  .hero-header h1,
  .hero-header span {
    font-size: 2.2rem;
  }

  .hero-header p {
    font-size: 15px;
  }

  .trust_section {
    flex-direction: row;
    font-size: 10px;
    padding: 6px 10px;
    width: auto;
  }

  .hero_service_section {
    padding: 10px;
    gap: 0px;
    flex-wrap: wrap;
  }

  .hero_service_section h2 {
    font-size: 12px;
    margin-right: 10px;
  }

  .hero_service_section svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }

  #slider-container {
    display: none;
  }
}

.stories-container {
  flex-direction: column;
  align-items: center;
}