@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-font/regular.woff");
  src: url("assets/poppins-font/regular.woff") format("woff"),
  url("assets/poppins-font/regular.woff2") format("woff2");
  font-display: swap;
  }

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

.red-text {
  color: red;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;

}

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

/* Navbar */
nav {
  background-color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw !important;
}

.logo {
  display: flex;
  align-items: center;
  min-width: min(10vw, 300px);
  padding-left: 10%;
}

.nav-links {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Existing CSS */
/* Modified Main Slider Section Styles */

.main-section {
  color: white;
  background-image: url('./assets/slide-image.webp');
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  text-align: center;
  position: relative;
  min-height: 70vh;
}

.slider-container {
  position: relative;
  max-width: 800px;
  /* Set a max width for larger screens */
  margin: 0 auto;
}

.slide {
  display: none;
  /* Hide slides by default */
}

.slide h1 {
  padding-bottom: 40px;
}

.slide p {
  font-size: 1.25rem;
}

.slides {
  background-color: #333;
  min-height: 50vh;
  height: auto;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.slide.active {
  display: block;
}

.cta-button {
  margin-top: 10px;
  margin-bottom: 20px;
  max-width: 330px;
  display: inline-block;
  text-align: center;
  background-color: #1F5634;
  /* WhatsApp green color */
  padding: 15px 25px;
  border-radius: 5px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  /* Smooth transition for hover effects */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Subtle shadow to lift the button a bit */
  font-weight: 600;
  /* Bold text */
  font-size: 1.1em;
  /* Slightly bigger text */
  position: relative;
  z-index: 3;
  /* Ensure the button is above other elements */
}

.cta-button:hover {
  background-color: #128C7E;
  /* Slightly darker green for hover */
  transform: scale(1.05);
  /* Slightly scale up the button on hover */
}

.cta-button i.fab {
  margin-right: 5px;
  /* Space between the icon and text */
  vertical-align: middle;
  /* Align icon with the text */
}

/* Slider Navigation styles */
.slide-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  width: 100%;
  transform: translateY(-50%);
  /* Vertically center slide nav */
}

.slide-arrow {
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50%;
  /* Round button shape */
  cursor: pointer;
  transition: background 0.3s ease;
}

.slide-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  /* Darker on hover */
}

.slide-arrow.left {
  margin-left: 10px;
  /* Spacing from the left edge */
}

.slide-arrow.right {
  margin-right: 10px;
  /* Spacing from the right edge */
}

/* Services Section */
.services-section {
  background-color: #fff;
  color: #333;
  min-height: 50vh;
  padding-top: 50px;
  padding-bottom: 50px;
}
.icon-text {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.icon-text i {
  font-size: 2em;
  flex-shrink: 0;
}

.icon-text div {
  text-align: right;
}

/* Contact Section */
.contact-section {
  background-color: #333;
  color: #fff;
}

.contact-section .profile {
  text-align: center;
  margin-bottom: 40px;
  max-width: 90%;
}

.profile img {
  border-radius: 50%;
  min-width: 200px;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.faq-item .question {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item {
  padding-left: 10px;
}

.faq-item .question i {
  font-size: 1.2em;
}

.question:hover {
  text-decoration: underline;
}

.question svg {
  width: 15px;
  min-width: 15px;
}

.faq-item .answer {
  display: none;
  margin-top: 10px;
  transition: opacity 0.3s ease;
}

/* Reviews section */
.reviews-section {
  background-color: #fff;
  color: #333;
  min-height: 50vh;
  padding: 50px 30px;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
}

.socials {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.socials a {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
}

address {
  font-style: normal;
}

.map {
  width: 100%;
  max-height: 350px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .question {
    justify-content: space-around;
  }

  .logo {
    width: auto;
  }

  .slides {
    background-color: #333;
    min-height: 65vh;
  }
  .nav-container {
    max-height: 10vh;
  }

  .nav-title {
    color: #fff;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .nav-links li {
    display: none;
  }

  .nav-links a {
    margin: 5px 0;
  }

  .icon-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-text i {
    margin-bottom: 20px;
  }
}

.white-text {
  color: #fff;
}

.small-text {
  font-size: 0.75rem;
}







.card-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.card {
  flex: 1;
  max-width: 300px;
  min-width: 200px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.card-title {
  font-size: 20px;
  font-weight: bold;
}

.card-description {
  /* display: none; */
  font-size: 12px;
  font-style: italic;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}