@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: #fff;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h2 {
    font-size: 25px;
  color: #000000;
  font-weight: 400;
}
#our-services .card-text {
    color: #000 !important; /* force paragraphs black */
  }
  #our-services .btn {
  background-color: transparent;
    color: #005697 !important; /* force button text black */
    border-color: #005697 !important; /* make outline black */
  }
  #our-services .btn:hover {
    background-color: #005697  !important;
    color: #fff !important; /* invert on hover */
  }

   #heroCarousel { position: relative; overflow: hidden; }
  #heroCarousel .carousel-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity .9s ease-in-out;
  }
  #heroCarousel .carousel-slide.active {
    position: relative; opacity: 1;
  }

  /* Just in case any arrows/dots are still in the HTML */
  #heroCarousel .hero-arrow,
  #heroCarousel .hero-prev,
  #heroCarousel .hero-next,
  #heroCarousel .hero-dots,
  #heroCarousel .dots,
  #heroCarousel .indicators,
  #heroCarousel .indicator,
  #heroCarousel .prev,
  #heroCarousel .next {
    display: none !important;
  }

h4 {
  color: #005697;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  /* text-transform: uppercase; */
  line-height: 2;
}

h5 {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

/* Navigation Styling */
.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #38b000;
}

/* Dropdown Services */
.menu-has-children ul {
  display: none;
  position: absolute;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.menu-has-children:hover ul {
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header {
    padding: 10px;
  }

  #logo img {
    width: 50px;
    height: 50px;
  }

  #nav-menu-container {
    display: none; /* Add your hamburger menu trigger here */
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

/* Header */
.main-header {
  background: #000000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 10px;
}
.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #38b000;
}

/* Navigation */
.main-nav .nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-nav a:hover,
.main-nav .active {
  color: #38b000;
}


.quote-btn {
  background: #71c55d;
    border: 0;
    padding: 10px 24px;
    color: #fff !important;
    transition: 0.4s;
    margin-top: 20px;
    margin-bottom: 20px;
}
  /* background: #71c55d;
  border: 0;
  color: #fff !important;
 padding: 6px 12px;
  border-radius: 4px;
    transition: 0.4s; */

.quote-btn:hover {
  background: #2a7a00;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  padding: 10px 0;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  padding: 5px 20px;
}
.dropdown-menu a {
  color: #333;
}
.dropdown-menu a:hover {
  color: #38b000;
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
}

/* Hero Section */
.hero-section {
  background: url('img/cleaning-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta-button {
  padding: 12px 30px;
  font-size: 1rem;
  background: #38b000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
.cta-button:hover {
  background: #2a7a00;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 998;
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .header-container {
    flex-wrap: wrap;
  }
}
.hero-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.carousel {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.cta-button {
  padding: 12px 30px;
  font-size: 1rem;
  background: #38b000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  z-index: 999;
  position: relative;
}

a {
  letter-spacing: 2px;
  text-decoration: none;
}

ul {
  letter-spacing: 1px;
}
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.slide-content span {
  font-size: 3rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-button {
  background-color: #38b000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #2a7a00;
}

li {
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 30px;
  text-transform: capitalize;
}
.heading{
  color:#ffF;
}
p {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 2;
  margin-bottom: 20px;
}

span {
  letter-spacing: 1px;
}

.img-fluid {
  height: 100%;
  margin-bottom: 30px;
  width: 100%;
}

.container-full {
  padding-left: 0;
  padding-right: 0;
}

.btn {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 15px 40px;
  text-transform: uppercase;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.btn-default:hover {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.fa {
  font-size: 13px;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #71c55d;
  display: inline-block;
  line-height: 1;
  color: #fff;
  padding: 7px 12px 13px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}
/* Header Container */
.main-header {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo Text */
.brand-text {
   text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  color: #005697;
}
.brand-text span {
  text-transform: uppercase;
  color: #38b000;
  font-weight: 400;
}

/* Nav links */
.main-nav {
  display: flex;
}

.nav-links {

  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  padding-left: 0;
  margin: 0;
}
.nav-links li {
  position: relative;
}
.nav-links a {
    font-family:"Poppins",sans-serif;
    text-transform: uppercase;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links .active {
  color: #005697;
}
#reviews .review-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

#reviews .review-card {
  flex-shrink: 0;
  /* width is controlled by JS */
  box-sizing: border-box;
}

#reviews .review-controls button:disabled {
  opacity: 0.5;
  cursor: default;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
.service-card {
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
/* Limit Swiper slide size for service cards */
#our-services .swiper {
  padding-bottom: 40px;
}

#our-services .swiper-slide {
  width: auto;
  max-width: 300px;
  flex-shrink: 0;
}

#our-services .card {
  width: 100%;
  height: 100%;
}
/* Swiper Container Styling */
#our-services .swiper {
  padding-bottom: 60px;
}

/* Space between cards */
#our-services .swiper-slide {
  width: auto;
  max-width: 300px;
  flex-shrink: 0;
  margin-right: 30px;
}

#our-services .card {
  width: 100%;
  height: 100%;
}

/* Elegant Minimal Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #333;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  top: 40%;
  transition: background 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: transparent;
  color: #fff;
}
.text-primary{
  color:#000000 !important;
}
.card-img-top{
  font-size:16px !important;

}
.quote-btn {
background: #71c55d;
    border: 0;
    padding: 12px 32px;
    color: #fff !important;
    transition: 0.4s;
    margin-top: 20px;
    margin-bottom: 20px;

}
.quote-btn:hover {
  background:  #005697;
  color:#fff !important;
}.swiper-button-next,
.swiper-button-prev {
  color: #000;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
/* Swiper Container Styling */
#our-services .swiper {
  padding-bottom: 60px;
}

/* Space between cards */
#our-services .swiper-slide {
  width: auto;
  max-width: 300px;
  flex-shrink: 0;
  margin-right: 30px;
}

#our-services .card {
  width: 100%;
  height: 100%;
}

/* Elegant Minimal Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #333;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  top: 40%;
  transition: background 0.3s ease;
}
.service-card {
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #007bff;
  color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #007bff;
  color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
}


.text-primary{
 color:#000000 !important; 
}
.text-muted{
color: #71c55d !important;  
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #007bff;
  color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}

.service-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.card-title {
  color: #003366;
  font-size:16px !important;
  letter-spacing: 1px;
}
.btn-outline-primary {
  border-color: #38b000;
  color: #000000;
}
.btn-outline-primary:hover {
  background-color: #38b000;
  color: #fff;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  padding: 5px 20px;
}
.dropdown-menu a {
  color: #333;
  white-space: nowrap;
}



/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
}
  .team-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .team-slider::-webkit-scrollbar {
    display: none;
  }
  .team-member {
    scroll-snap-align: start;
  }
  .team-block img {
    height: 250px;
    object-fit: cover;
  }

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    width: 100%;
    display: none;
  }

  .main-nav.active {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 20px;
  }

  .quote-btn {
    display: inline-block;
    width: fit-content;
  }
}
/* Section styling */
#reviews {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
#reviews, .review-carousel-track, .carousel-slide {
  overflow-x: hidden;
  max-width: 100vw;
  box-sizing: border-box;
  padding: 0 1rem; /* or suitable padding */
}
/* Prevent horizontal scroll on mobile */
body, html {
  overflow-x: hidden;
}

/* Carousel track container */
.review-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Slides styling */
.carousel-slide, #reviews .review-carousel-track > * {
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Ensure container doesn't overflow */
#reviews {
  max-width: 100vw;
  overflow-x: hidden;
  padding: 0 10px; /* adjust padding */
}

.review-title {
  /* font-size: 2rem; */
  font-weight: 400;
  margin-bottom: 40px;
  color: #1c1c1c;
}

/* Carousel track as flex */
.review-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

/* Each card styled like screenshot */
.review-card {
  flex: 0 0 25%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
}

/* Review author (name) styled bold */
.review-author h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Stars gold and spaced below name */
.review-stars {
  color: #f4c150;
  margin-bottom: 15px;
}

/* Text styling */
.review-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Controls (prev/next buttons) */
.review-controls button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.2rem;
}

.review-prev { left: 10px; }
.review-next { right: 10px; }

/* Indicators (dots) */
.review-indicators {
  margin-top: 20px;
}

.review-indicators .indicator {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  border: none;
}

.review-indicators .indicator.active {
  background: #333;
}

/* Responsive: 1 card per view mobile, 2 tablet, 4 desktop */
@media (max-width: 768px) {
  .review-card { flex: 0 0 100%; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .review-card { flex: 0 0 50%; }
}

.h2,h2{
  font-family:"Poppins",sans-serif;

}
.back-to-top:focus {
  background: #71c55d;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #55b03f;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 55px;
  z-index: 3;
  transition: all 0.5s ease;
}

#header #logo {
  padding: 6px 0 0 0;
  position: absolute;
}

#header #logo h1 {
  color: #505050;
  font-family: "Poppins",sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
}

#header #logo h1 a {
  color: #000000;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
}

#header #logo h1 a span {
  color: #71c55d;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

.scroll-header {
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 40px);
  background: url(../img/hero-bg.png) center bottom no-repeat;
  background-size: 100%;
  position: relative;
  margin-top: 40px;
}

@media (min-width: 1025px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  font-family:"Roboto", sans-serif;;
  color: #005697;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero h2 {
  color: #000000;
  margin-bottom: 30px;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#hero img {
  max-width: 95%;
  margin-bottom: 30px;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 11px 36px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 30px;
  border: 2px solid #71c55d;
  background: #fff;
  color: #71c55d;
  text-decoration: none;
}

#hero .btn-get-started:hover {
  background: #71c55d;
  color: #fff;
}

#hero .btns a {
  color: #000000;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 4px 20px;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 575px) {
  #hero .btns a {
    margin: 4px 8px;
  }
}

#hero .btns a:hover {
  color: #71c55d;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  margin-top: 1px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0 0 0 0;
}

@media (max-width: 1024px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 8px 8px;
  text-decoration: none;
  display: inline-block;
  color: #000000;
  font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
  font-size: 18px;
  outline: none;
  letter-spacing: 0;
  transition: 0.3s;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
  color: #71c55d;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 5px 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 14px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #71c55d;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 4px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #000000;
  font-size: 24px;
}

@media (max-width: 1024px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 14px;
  overflow: hidden;
  padding: 6px 22px 6px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  letter-spacing: 0;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #71c55d;
}

#mobile-nav ul .menu-item-active {
  color: #71c55d;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
.padd-section {
  padding-bottom: 80px;
  padding-top: 80px;
}

@media (max-width: 992px) {
  .padd-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-title {
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.section-title h2 {
  font-family: "Poppins",sans-serif;
  font-size: 25px;
  /* font-weight: 100; */
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.section-title .separator {
  margin: 0;
}

.separator {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 30px;
  text-transform: capitalize;
}

/* Get Started Section
--------------------------------*/
#get-started {
  display: inline-block;
  height: 100%;
  width: 100%;
}

#get-started .feature-block {
  background: #fff none repeat scroll 0 0;
  padding: 30px 20px;
  transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 991px) {
  #get-started .feature-block {
    margin-bottom: 30px;
  }
}

#get-started .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}

#get-started .feature-block h4 {
  margin-bottom: 20px;
}

#get-started .feature-block p {
  margin-bottom: 20px;
}

#get-started .feature-block a {
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.3s;
  border: 2px solid #71c55d;
  border-radius: 50px;
  background-color: #71c55d;
}

#get-started .feature-block a:hover {
  color: #71c55d;
}

/* About Us Section
--------------------------------*/
#about-us img {
  max-width: 100%;
  color: #005697;
}

#about-us .about-content {
  padding-top: 60px;

}

#about-us .about-content h2 {
  color: #000000;
  font-family:"Poppins",sans-serif;
  font-size: 25px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

  .social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
  }

  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .social-icon:hover {
    transform: scale(1.1);
    opacity: 0.85;
  }


#about-us .about-content span {
  color: #005697;
  font-weight: 700;
  padding-right: 10px;
  text-transform: uppercase;
}

#about-us .about-content ul li {
  line-height: 36px;
}

#about-us .about-content ul li .fa {
  padding-right: 20px;
}

/* our-services Section
--------------------------------*/
#our-services {
  display: inline-block;
  height: 100%;
  width: 100%;
}

#our-services .feature-block {
  background: #fff none repeat scroll 0 0;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out 0s;
}

#our-services .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}

#our-services .feature-block h4 {
  margin-bottom: 20px;
}

#our-services .feature-block p {
  margin-bottom: 0;
}

/* Screenshots Section
--------------------------------*/
.owl-dot.active > span {
  height: 10px !important;
  width: 10px !important;
}

.owl-theme .owl-dots .owl-dot span {
  height: 10px !important;
  width: 10px !important;
}

.owl-item img {
  cursor: pointer;
}

.owl-stage-outer {
  margin-bottom: 30px;
}

.owl-theme .owl-nav {
  display: none;
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #71c55d;
}

.owl-theme .owl-dots .owl-dot span {
  background: #ddd;
}

/* Video Section
--------------------------------*/
#video {
  background: url(../img/video-bg.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  overflow: hidden;
}

#video .overlay {
  background: rgba(0, 0, 0, 0.85);
  height: 100%;
}

#video .overlay .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#71c55d 50%, rgba(113, 197, 93, 0.15) 52%);
  border-radius: 50%;
  display: block;
  margin: 153px auto 0;
  position: relative;
  overflow: hidden;
}

#video .overlay .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#video .overlay .play-btn:before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#video .overlay .play-btn:hover::after {
  border-left: 15px solid #71c55d;
  -webkit-transform: scale(20);
  transform: scale(20);
}

#video .overlay .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes pulsate2 {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Team Section
-----/*---------------------------*/
/* TEAM SECTION CLEAN FIXED */
/*---------------------------*/

#team {
  padding-top: 40px;
  padding-bottom: 0;
}

#team h2 {
  color: #000000;
  font-size: 28px;
}

/* Wrapper: controls horizontal scroll on mobile */
.team-slider-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.team-slider-wrapper::-webkit-scrollbar {
  display: none; /* WebKit */
}

/* Slider: horizontal layout, no wrap */
.team-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE/Edge */
}

.team-slider::-webkit-scrollbar {
  display: none;
}

/* Card: equal size for all team members */
.team-card {
  flex: 0 0 200px;
  height: 200px;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* DESKTOP: all team members in one row, no scroll */
@media (min-width: 768px) {
  .team-slider-wrapper {
    overflow-x: visible;
  }

  .team-slider {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .team-card {
    margin: 10px 5px;
  }
}

/* Optional: Remove unused team-content icons if any */
.team-content i {
  display: none;
}


/* Testimonials Section
--------------------------------*/
#testimonials .testimonials-content {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  padding: 49px 20px;
}

#testimonials .testimonials-content::before {
  color: #71c55d;
  content: "";
  display: inline-block;
  font: 70px/1 FontAwesome;
  position: absolute;
  right: 43px;
  text-align: left;
  top: -29px;
}

#testimonials .top-top > h2 {
  font-family: "Roboto" sans-serif;
  font-size: 45px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

#testimonials .top-top > h4 {
  font: 700 12px Lato, sans-serif;
}

#testimonials .top-top span {
  font-size: 12px;
  font-weight: 300;
  margin-left: 26px;
}

#testimonials .btm-btm ul li {
  float: left;
  margin-left: 13px;
  border-radius: 50%;
  margin-right: 13px;
  background: #ddd none repeat scroll 0 0;
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: block;
  height: 10px;
  width: 10px;
}

#testimonials .btm-btm .active {
  background: #71c55d;
}

.carousel-indicators {
  position: relative;
  bottom: 0;
  left: 0;
  bottom: 0 !important;
  z-index: 15;
  width: auto;
  padding-left: 0;
  margin: 30px auto 0 auto;
  margin-right: auto;
  text-align: center;
  list-style: none;
  margin-bottom: 0;
  display: inline-block;
}

.carousel-indicators li {
  margin: 0;
}

/* Pricing Table Section
--------------------------------*/
#pricing .block-pricing {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  position: relative;
  width: 100%;
}

@media (max-width: 991px) {
  #pricing .block-pricing {
    margin-bottom: 30px;
  }
}

#pricing .block-pricing .table {
  margin-bottom: 0;
  padding: 30px 15px;
  max-width: 100%;
  width: 100%;
}

#pricing .block-pricing .table h4 {
  padding-bottom: 30px;
}

#pricing .block-pricing h2 {
  margin-bottom: 30px;
}

#pricing .block-pricing ul {
  list-style: outside none none;
  margin: 10px auto;
  max-width: 240px;
  padding: 0;
}

#pricing .block-pricing ul li {
  border-bottom: 1px solid rgba(153, 153, 153, 0.3);
  padding: 12px 0;
  text-align: center;
}

#pricing .block-pricing ul li b {
  color: #3c4857;
}

#pricing .block-pricing .table .table_btn a {
  background: #71c55d;
  color: #fff;
  margin: 0;
  display: inline-block;
}

#pricing .block-pricing .table .table_btn a:hover {
  background: #55b03f;
}

#pricing .block-pricing .table .table_btn a .fa {
  font-size: 13px;
  margin-right: 5px;
}

/* Blog Section
--------------------------------*/
@media (max-width: 991px) {
  #blog .block-blog {
    margin-bottom: 30px;
  }
}

#blog .block-blog img {
  width: 100%;
}

#blog .block-blog .content-blog {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  min-height: 125px;
  padding: 20px 10px;
  width: 100%;
}

#blog .block-blog .content-blog h4 {
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
}

#blog .block-blog .content-blog h4 a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s;
}

#blog .block-blog .content-blog h4 a:hover {
  color: #71c55d;
}

#blog .block-blog .content-blog > span {
  float: left;
  font-size: 12px;
}

#blog .block-blog .content-blog a.readmore {
  color: #505050;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 0;
  text-transform: capitalize;
}

#blog .block-blog .content-blog a.readmore:hover {
  color: #71c55d;
}

/* Newsletter Section
--------------------------------*/
#newsletter {
  background: transparent url(../img/jobeCover.png) no-repeat center top fixed;
  background-size: cover;
}

#newsletter .overlay {
  background: linear-gradient(rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 95%);
  height: 100%;
  width: 100%;
}

#newsletter .form-control {
  background-color: transparent;
  border: 1px solid #dddddd;
  border-radius: 0;
  color: #888;
  font-size: 11px;
  font-weight: 600;
  height: 50px;
  text-align: center;
  width: 70%;
  background: #fff;
}

@media (max-width: 575px) {
  #newsletter .form-control {
    margin-bottom: 30px;
    width: 100%;
  }
}

#newsletter .form-control:focus {
  border-color: #71c55d;
  box-shadow: none;
  outline: 0 none;
}

#newsletter .btn {
  background: #71c55d;
  border: 0;
  border-radius: 0;
  height: 50px;
  width: 30%;
  transition: 0.3s;
}

@media (max-width: 575px) {
  #newsletter .btn {
    width: 100%;
  }
}

#newsletter .btn:hover {
  background: #55b03f;
}

#newsletter .btn .fa {
  padding-right: 10px;
}

#newsletter ul {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 0;
}

#newsletter ul li {
  background: #71c55d;
  border-radius: 50px;
  float: left;
  height: 35px;
  line-height: 35px;
  margin-left: 10px;
  margin-right: 10px;
  width: 35px;
  transition: 0.3s;
}

#newsletter ul li:hover {
  background: #55b03f;
}

#newsletter ul li .fa {
  color: #fff;
}

/* Contact Section
--------------------------------*/
#contact {
  background: #fff;
}

#contact .info {
  color: #222;
}

#contact .info i {
  font-size: 22px;
  color: #005697;
  float: left;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #71c55d;
  color: #fff;
  line-height: 1;
  padding: 8px 0 12px 0;
  /* border-radius: 50%; */
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: #55b03f;
  color: #fff;
}

#contact .form #sendmessage {
  color: #71c55d;
  border: 1px solid #71c55d;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input, #contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 10px;
  line-height: 1;
}

#contact .form button[type="submit"] {
  background: #71c55d;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  margin-top: 20px;
    margin-bottom: 20px;
}

#contact .form button[type="submit"]:hover {
  background: #92d283;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #000000;
  padding-top: 50px;
}

.footer .footer-logo .navbar-brand {
  color: #fff;
  display: inline-block;
  float: none;
  font-family: "Poppins",sans-serif;
  font-size: 24px;
  font-weight: 500;
  height: 100%;
  letter-spacing: 0.2em;
  padding-left: 0;
  padding-top: 0;
}
.h1, h1 {
  font-family: "Poppins",sans-serif;
  font-size:26px;
}
.footer .footer-logo p {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer .list-menu > h4 {
  font-size:16px;
    font-family: "Poppins",sans-serif;
  color: #fff;
  padding-bottom: 20px;
}
.footer-logo-img {
  width: 100%;
  max-width: 220px;
  height: auto;
}

@media (max-width: 767px) {
  .footer-logo-img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
}

.footer-logo-bottom-img {
  max-width: 180px;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .footer-logo-bottom-img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
  }
}
/* Fix header to top */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Space for fixed header */
/* body {
  padding-top: 80px;
} */

/* Mobile Toggle Styling */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: black;
}

/* Navigation styling */
.main-nav .nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    width: 100%;
    text-align: center;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav .nav-links {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  .main-nav .dropdown:hover .dropdown-menu {
    position: relative;
  }
}
/* Spacing between form fields */
.form .form-group {
  margin-bottom: 10px;
}

/* Input, textarea, and select styling */
.form .form-control {
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Message box height */
.form textarea.form-control {
  resize: vertical;
  min-height: 10px;
}

/* Send message button spacing */
.form .text-center {
  margin-top: 20px;
}/* Section padding */
#video {
  padding: 50px 15px;
  background: none; /* Remove overlay/bg */
}

/* Video flex layout */
#video .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/* Video styling */
#video video {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  #video .row > video {
    flex: 0 1 calc(50% - 20px);
  }
}

@media (min-width: 992px) {
  #video .row > video {
    flex: 0 1 calc(25% - 20px);
  }
}


/* Container padding for breathing room */
.form {
  padding: 25px 20px;
  background-color: #f9f9f9; /* Optional light background for contrast */
  border-radius: 8px;
}

/* Info section spacing */
.info p {
  margin: 5px 0 10px;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .form {
    padding: 20px 15px;
  }

  .form .form-control {
    font-size: 15px;
  }

  .info {
    margin-top: 10px;
  }
}

.footer .list-menu ul li a {
  color: #fff;
  font-size: 14px;
  padding-left: 5px;
  text-decoration: none;
  letter-spacing: 0;
}

.footer .copyrights {
  background: #fff;
  margin-top: 50px;
  text-align: center;
  padding: 25px;
}

.footer .copyrights p, .footer .copyrights .credits {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0;
}

.footer .copyrights p a, .footer .copyrights .credits a {
  letter-spacing: 0;
  color: #71c55d;
}
