.carousel-item img {
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    object-fit: cover; /* Ensure the images maintain aspect ratio */
  }
  
  .carousel {
    width: 100vw;
    height: 100vh;
  }
  
  .carousel-caption {
    bottom: 30px; /* Adjust caption position if necessary */
  }


  .home-h1 h1 {
    color: white;
    letter-spacing: 3px; 
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    font-size: 3rem; 
    line-height: 1.2; 
    margin-bottom: 20px; 
    text-align: center; 
}

.home-h1 p {
  font-family: 'Roboto', sans-serif; 
  font-size: 2.0rem; 
  margin-top: 10px;
  letter-spacing: 0.5px; 
  color: aliceblue;
}

@media (max-width: 768px) {
  .home-h1 h1 {
    font-size: 2rem; 
    letter-spacing: 2px;
  }
}

.nav-item {
  text-transform: uppercase; 
  letter-spacing: 2px;  
  font-weight: 600;
  padding: 10px 15px;
  transition: color 0.3s ease, background-color 0.3s ease; 
}

.nav-link {
  color: #ff0000; /* Dark gray color for better visibility */
  text-decoration: none; /* Remove underline */
}

.nav-link:hover {
	color: #e5ff00; /* Dark gray color for better visibility */
	transition: 0.3 ease-in-out;
  }
  


.navbar-logo {
  height: 60px; /* Set a fixed height for the logo */
  width: auto; /* Maintain aspect ratio */
  margin-right: 15px; /* Add space between logo and navbar links */
}

.navbar-dark .navbar-toggler {
  border-color: #fff;
}

.navbar-dark .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  width: 60px;
  right: 20px;
  background-color: #25D366; 
  color: white;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-size: 30px;
  text-align: center;
  transition: background-color 0.3s;
}

.whatsapp-icon:hover {
  background-color: #128C7E; 
}






/* Contact Bar Styling */
.contact-bar {
   
    font-family: 'Roboto', sans-serif;
    border-bottom: 4px solid #f6ff00; /* Gold accent */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040; /* Higher than navbar */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Adjust Navbar to be below Contact Bar */
.fixed-navbar {
    position: fixed;
    top: 40px; /* Height of Contact Bar */
    left: 0;
    width: 100%;
    z-index: 1030; /* Bootstrap navbar z-index */
}

/* Ensure main content starts below navbar and contact bar */
 body {
    padding-top: 60px; /* Contact Bar (40px) + Navbar (56px) */
} 

/* Contact Bar Icons */
.contact-bar .fa-phone-alt,
.contact-bar .fa-envelope {
    color: #ff0000; /* Gold color for icons */
}

/* Social Media Icon Styling */
.social-media .social-icon {
    font-size: 1.5rem; /* Increased font size for better visibility */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition effects */
    border: 2px solid red; /* Set the border color */
    border-radius: 50%; /* Makes the icons circular */
    padding: 10px; /* Adds space inside the circle */
    margin: 0 5px; /* Adds space between icons */
    display: inline-flex; /* Aligns the icon and text properly */
    align-items: center; /* Centers icon vertically */
    justify-content: center; /* Centers icon horizontally */
	text-decoration: none;
}

/* Hover effect for icons */
.social-media .social-icon:hover {
    transform: scale(1.1); /* Slightly enlarges the icon on hover */
    color: red; /* Changes the icon color on hover */
}


/* Main Content Styling */
.container.my-5 h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
}

.container.my-5 p {
    font-size: 1.1rem;
    color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-bar .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .contact-bar .social-media {
        margin-top: 10px;
    }

    .fixed-navbar {
        top: 70px; /* Contact Bar (40px) + Navbar (40px on small screens) */
    }

    body {
        padding-top: 170px; /* Adjust based on new navbar height */
    }
}

.navbar-toggler-icon {
	background-color: rgb(255, 255, 255);
}


.bg-light {
	background-color: #f8f9fa !important;
  }

  /* Style for the contact buttons */
  .btn-outline-secondary,
  .btn-outline-success {
	transition: background-color 0.3s, color 0.3s;
  }

  .btn-outline-secondary:hover,
  .btn-outline-success:hover {
	background-color: #6c757d;
	color: white;
  }

  .btn-outline-success:hover {
	background-color: #198754;
  }