/* Custom CSS */

/* Hero Section */
.hero {
  background: url("hero-bg.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

/* Services Section */
.services-section-1 {
  background: linear-gradient(
    to bottom,
    rgba(249, 247, 247, 0.969) 0%,
    rgb(99, 96, 96) 50%,
    rgb(255, 255, 255) 100%
  );
}
.services-section {
  background-color: ;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.accordion-button {
  font-weight: 600;
  color: #333;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #dc3545;
}

.accordion-body {
  font-size: 1rem;
  color: #555;
}

.img-fluid {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.responsive-logo {
  max-width: 100%; /* Ensures the image scales down appropriately */
  height: auto;    /* Maintains the aspect ratio */
  display: block;  /* Removes inline-block spacing issues */
}

.service-box {
  background-color: #fff;
  border: 1px solid #ddd;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: #dc3545;
}

.service-box h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 1rem;
  color: #555;
}

/* Why Mauritius Section */

.why-mauritius .section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
}

.why-mauritius h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.why-mauritius p {
  font-size: 1rem;
  color: #555;
}

.why-mauritius .img-fluid {
  border: 3px solid #dc3545;
  border-radius: 10px;
}

.why-mauritius {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 4, 0, 0.1) 50%,
    rgba(255, 4, 0, 0.1) 50%
  );
}

/* Contact Section */
/* Contact Us Section */
.contact-section {
  background-color: white;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.contact-details strong {
  font-weight: 600;
  color: #dc3545; /* Red color for key info */
}

.contact-details {
  font-size: 1.1rem;
  color: #555;
}

.map-container iframe {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(
    to bottom,
    rgba(255, 4, 0, 0.1) 50%,
    rgba(255, 4, 0, 0.1) 50%,
    rgba(255, 255, 255, 1) 100%
  );
}

.testimonial-card {
  background-color: #f9f9f9;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
}

.client-name {
  font-weight: bold;
  color: #dc3545; /* Accent color */
}

.client-title {
  font-size: 0.9rem;
}

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

/* Navigation Bar */
.navbar {
  background-color: #333;
}

.navbar .navbar-brand {
  color: white;
}

.navbar .navbar-nav .nav-link {
  color: white;
}

.navbar .navbar-nav .nav-link:hover {
  color: #e74c3c;
}

.navbar {
  padding: 1rem;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-nav .nav-link {
  margin-left: 1rem;
  color: white;
}

.navbar-nav .nav-link:hover {
  text-decoration: underline;
}
.navbar-nav .nav-item .nav-link.active {
  color: #e74c3c;
  font-weight: bold;
}

/* Hero Section */
/* General Carousel Styling */
.carousel-item {
  height: 100vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10; /* Ensure it appears above the overlay */
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black transparent overlay */
}

/* Text Styling */
.text-content h1 {
  font-size: 3.5rem; /* Adjust heading size */
  font-weight: bold;
}

.text-content p {
  font-size: 1.25rem;
  margin-top: 20px;
}

.text-content.text-black h1,
.text-content.text-black p {
  color: black;
}

.text-content.text-white h1,
.text-content.text-white p {
  color: white;
}

/* CTA Button */
.btn {
  font-size: 1rem;
  padding: 10px 30px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
}

.btn-dark {
  background-color: black;
  color: white;
  border: none;
}

.btn-light {
  background-color: white;
  color: black;
  border: none;
}

.btn:hover {
  opacity: 0.8;
}



/* About Us Section */
.about-section {
  background-color:white
  padding: 50px 0;
}

.about-section h2 {
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.about-section img {
  max-width: 100%;
  border-radius: 10px;
}

/* Button Styles */
.btn-primary {
  background-color: #e74c3c;
  border-color: #e74c3c;
  color: white;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #c0392b;
  border-color: #c0392b;
}

.btn-secondary {
  background-color: #2c3e50;
  border-color: #2c3e50;
  color: white;
}

.btn-secondary:hover {
  background-color: #34495e;
  border-color: #34495e;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
  }
  .carousel-caption {
    padding: 20px;
  }

  .services .service {
    margin-bottom: 20px;
  }
}
