
/* NAVBAR */
.logo img {
  height: 30px;
  width: auto;
}

.actions {
  display: flex;
  gap: 10px;
}

.actions a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.actions a:hover {
  color: #007bff;
}

.mobile-link {
  display: none;
}

.login-link {
  margin-top: 9px;
}
.signup {
  color: white;
  padding: 8px 15px;
  border: 0.5px solid #f9a94e;
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/*HOMEPAGE CSS*/

.container_home {
  display: flex;
  justify-content: space-between;

  overflow-x: hidden;
  height: 100vh;
}

.left-content-container {
  margin-left: 3%;
  width: 60%;
  padding-right: 10px;
}

.left-content-container h1 {
  font-size: 70px;
  font-weight: 600;
  color: #06330c;
  line-height: 77px;
  margin-top: 150px;
  margin-left: 160px;
}
.left-content-container span {
  text-decoration: underline;
  text-decoration-color: #f9a94e;
  text-decoration-thickness: 9px;
}

.left-content-container p {
  font-size: 22px;
  color: #4d4d4d;
  line-height: 1.5;

  text-align: justify;

  margin-left: 170px;
}

.right-content-container {
  display: flex;
  margin-right: 30%;
 

}

.image-container {
  position: relative;
  width: 100%;
  margin-right: 20%;
  max-width: 500px;
  display: flex;

  align-items: center;
}

.ellipse-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ellipse {
  width: 450px;
  height: auto;
  margin: 0 0 60px 80px;
  z-index: 1;
}

.people-container {
  position: absolute;
  margin-top: -50%;
  width: 110%;
  height: 70%;

  z-index: 2;
}

.person1 {
  margin: 29% 0 0 20%;
  width: 30%;
  height: 310px;
}

.person2 {
  margin: -66% 0 20% 50%;
  width: 50%;

  height: 330px;
}


/* Responsive CSS for Home Page */

/* For tablets and small devices (max-width: 768px) */
@media (max-width: 768px) {
  .container_home {
    overflow: hidden;
    flex-direction: column-reverse;
    height: auto;
    padding: 20px;
    text-align: center;
    
  }
  
  .left-content-container {
    width: 100%;
    margin: 0 auto 30px;
    padding: 0 20px;
  }
  
  .left-content-container h1 {
    font-size: 50px;
    margin: 50px auto 20px;
    margin-left: 0;
  }
  
  .left-content-container p {
    font-size: 18px;
    margin: 0 auto;
    margin-left: 0;
  }
  
  .right-content-container {
    margin: 0 auto;
    margin-top: 20px;
    justify-content: center;
  }
  
  .image-container {
    margin-right: 0;
    max-width: 100%;
  }
  
  .ellipse {
    width: 80%;
    margin: 0 auto 60px;
  }
  
  .people-container {
    margin-top: -40%;
    width: 100%;
    height: 70%;
  }
  
  .person1 {
    margin: 25% auto 0;
    width: 35%;
    height: auto;
  }
  
  .person2 {
    margin: -60% auto 20%;
    width: 45%;
    height: auto;
  }
}

/* For mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .left-content-container h1 {
    font-size: 40px;
  }
  
  .left-content-container p {
    font-size: 16px;
  }
  
  .ellipse {
    width: 65%;
    margin: 0 auto;
  }
  
  .people-container {
    margin-top: -35%;
  }
  
  .person1 {
    /* margin: 20% auto 0; */
    width: 30%;
    height: 100%;
  }
  
  .person2 {
    margin-top:10%;
    width: 30%;
    height:100%
  }
}


/*SERVICES*/
.gradient_background_services {
  background: linear-gradient(
    113.59deg,
    #f29e5b 4.38%,
    #eeb07e 51.58%,
    #c3783c 95.62%
  );
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* color: white; */
}

.gradient_background_services:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-title-services {
  font-size: 1.2rem;
  font-weight: bold;
}

.card-body-service {
  height: 123.55px;
  width: 200px;
  margin: 0;
  padding: 0;
}

.service-container-div {
  margin-left: 15%;

  padding: 0 15px;
}

.input-section .form-control {
  border-radius: 30px 0 0 30px;
  padding: 10px 20px;
}

/*MOSTPOPULAR*/

.container_mostPopular {
  margin: 50px auto;
  text-align: center;
  padding: 20px;
  max-width: 1200px;
}

.container_mostPopular h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #2c3e50;
}

.carousel-inner .row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0;
}

.carousel-item {
  display: flex;
  justify-content: center;
}

.service-card_mostPopular {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
}

.service-card_mostPopular:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-card_mostPopular img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card_mostPopular h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #34495e;
  margin-bottom: 10px;
}

.service-card_mostPopular p {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 15px;
}

.service-card_mostPopular .btn {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 5px;
  color: #fff;
  background-color: #f39c12;
  border: none;
  transition: background-color 0.3s;
}

.service-card_mostPopular .btn:hover {
  background-color: #e67e22;
}

@media (max-width: 768px) {
  .carousel-inner .row {
    flex-direction: column;
    gap: 20px;
  }
}

/*TECHNICIAN SECTION */

.technician-section {
  background: url("/images/group.png") center/cover no-repeat;
  height: 300px;
}

.technician-section {
  position: relative;
  z-index: 2;
}

.technician-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.technician-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.technician-section .btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
}

.technician-section .btn:hover {
  background-color: #f39c12;
  color: white;
}

@media (max-width: 480px) {
  .technician-section {
    background: url("/images/group.png") ;
    background-size: cover;
    background-position: center;
    height: 180px;
  }
  .technician-section h1 {
    font-size: 1.8rem;
  }
  
  .technician-section p {
    font-size: 0.9rem;
  }
  
  .technician-section .btn {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin-bottom: 10px;
    background-color: #f39c12;
  }
}

/*WHY US*/

/* Right Content Container Adjustments */
.right-content-container {
  display: flex;
  flex: 1;
  justify-content: flex-end; /* Ensures the content (image) aligns to the right */
  align-items: center; /* Vertically center-aligns the image */
  margin-right: 0; /* Remove the negative margin */
}

/* Image container adjustments */
.image-container {
  position: relative;
  width: 100%;
  max-width: 500px; /* Controls the size of the image */
  display: flex;
  justify-content: center; /* Center the image horizontally */
  align-items: center; /* Align the image vertically */
}

/* Image style */
.img_whyus {
  width: 100%; /* Makes sure the image fits the container */
  max-width: 450px; /* Max size */
  height: auto; /* Keeps the aspect ratio */
  margin-left: auto;
  margin-right: auto;
}
.feature-icon_WhyUs {
  width: 80px; /* Smaller size for the icon */
  height: auto;
  margin-right: 10px; /* Margin between the icon and text */
  margin-left: 60px; /* Move icon and text to the right */
  margin-bottom: 50px;
}







@media (max-width: 480px) {
  .image-frame_WhyUs {
    height: 250px;
    width: 200px;
    margin-left: 30%;
  }
  .feature-card_WhyUs{
    margin-top:10px ;
    
  }
  .feature-icon_WhyUs{
margin-left: -5px;
  }
}

/**CONTACT**/
/* Circle Background */
.contact_container_div {
  background-color: #e8e7e7;
  width: 100%; /* Ensure full width */
  height: 100vh; /* Ensure full height of the viewport */
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  padding: 0; /* Remove any default padding */
 
  margin: 0;
}

/* Circle */
.circle_contact {
  width: 500px;
  height: 500px;
  background-color: #f9a94e;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Form Container */
.form-container_contact {
  position: relative;
  z-index: 2;
  max-width: 400px;
  margin: 0 auto;
}

/* Text Section */
.text-section_contact h2 {
  font-weight: bold;
}

.text-section_contact p {
  font-size: 1rem;
  line-height: 1.6;
}

.circle_form_div {
  margin-left: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact_container_div{
    height: auto;
  }
  .circle_contact {
    width: 300px;
    height: 300px;
    margin-left: -30px;
    margin-top: 10px;
  }

  .form-container_contact {
    max-width: 100%;
    margin-top: 40px;
    margin-left: -10%;
  }
 
  .text-section_contact{
    margin-top: 10px;
    
  }
  .text-section_contact h1{
    font-size: 3rem;
    
  }
}

/*FOOTER*/
.footer_custom {
  background-color: #f9a94e;
  padding: 40px 0 20px;
}
.top_custum_container {
  margin-left: 5%;
  padding: 3%;
}
.footer-top_custom {
  margin-bottom: 30px;
}

.footer-logo_custom img {
  max-width: 150px;
  height: auto;
}

.footer-social_custom a {
  color: #444;
  margin-left: 15px;
  font-size: 20px;
}

.footer-content_custom {
  margin: 30px 0;
}

.footer-about_custom {
  max-width: 300px;
}

.footer-links_custom h5 {
  color: #333;
  margin-bottom: 15px;
}

.footer-links_custom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links_custom ul li {
  margin-bottom: 8px;
}

.footer-links_custom a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links_custom a:hover {
  color: #222;
}

.footer-bottom_custom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

.footer-bottom_custom a {
  color: #444;
  text-decoration: none;
  margin-left: 20px;
}


.bg_madaddgar_service{
  background: linear-gradient(
    113.59deg,
    #f29e5b 4.38%,
    #eeb07e 51.58%,
    #c3783c 95.62%
  );
}