body {
    scroll-behavior: smooth;
    padding-top: 76px;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #EBF4FF;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .navbar.scrolled {
    background-color: #EEA62C;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled .navbar-brand img {
    content: url('img/logo-white.png');
  }
  
  .nav-link {
    color: #000;
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: #EEA62C !important;
    
  }
  
  .navbar.scrolled .nav-link {
    color: #fff;
  }

  .navbar.scrolled .nav-link:hover {
    color: #000 !important;
  }
  
  .navbar-toggler {
    border: none;
    background-color: transparent;
  }

  /* .carousel{
    margin-top: 80px;
  } */
  
  /* .carousel-item img {
    height: 500px;
    object-fit: cover;
  }
  
  .carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
  }

  .carousel-control-prev-icon:hover,
  .carousel-control-next-icon:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }

  .carousel-item img{
    height: 600px;
    width: 1280px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .carousel-item img:hover{
    transform: scale(1.05);
  } */
  
  
  /* Sections */
  section {
    padding: 60px 0;
  }
  
  /* Footer */
  footer {
    background: #222;
    color: white;
  }
  
  /* Contact Section */
#contact .container {
    padding: 60px 0; /* Adjust padding for the entire section */
  }
  
  #contact .form-control {
    margin-bottom: 20px; /* Add space between form elements */
  }
  
  #contact .btn {
    margin-top: 10px; /* Add space above the button */
  }
  
  #contact .row {
    margin-top: 20px; /* Add space between the form and the map */
  }

  /* General Styles */
.services-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.service-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

p{
  line-height: 3;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-caption {
  animation: fadeIn 1s ease-in-out;
}

/* Style for the div containing the image */
.image-container {
  width: 100%; /* Adjust the width as needed */
  max-width: 1280px; /* Optional: Set a maximum width */
  margin: 0 auto; /* Center the div horizontally */
  padding: 20px; /* Optional: Add padding */
   /* Optional: Add a shadow */
}

/* Style for the image inside the div */
.image-container img {
  width: 100%; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove extra space below the image */
}