/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color-red: hsl(0, 55%, 50%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weigth ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--white-color);
  background-image: url("/Images/loginbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* Keeps the background fixed */
  position: sticky;
  
}

.fixed-bg {
  background-color: transparent; /* Ensure background color is transparent for the fixed background section */
}

.white-bg {
  background-color: var(--white-color); /* Ensure background color is white for sections following the fixed background */
  height: auto;
}

.general-service-container {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
    padding: 2rem;
}

.general-service-header {
    text-align: left;
    color: hsl(0, 55%, 50%);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #000;
    padding-bottom: 1rem;
}

.general-service-content p {
    text-align: justify;
    margin-bottom: 1rem;
    color: hsl(220, 24%, 15%);
}

/*=============== HOME ===============*/
.carousel-inner img {
  width: 100%;
  height: 500px; /* Set your desired fixed height */
  object-fit: cover; /* Ensure the image covers the container without distortion */ 
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5%;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home-section {
  margin-bottom: 2rem;
}
.home-img{
  width: 100%;
  
}
.carousel {
  width: 100%;
  margin-bottom: 2rem; /* Adjust margin as needed */
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 10px;
}
.carousel-indicators li {
  background-color: #000; /* Color of the indicators */
}
.dropdown-menu {
  z-index: 1050; /* Ensure dropdown menu appears on top of the carousel */
}
.nav {
  position: relative;
  z-index: 1100; /* Ensure nav appears above the carousel */
}
.header, .carousel {
  width: 100%;
}
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}
