*{

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    background: f1fbff;
}

.section-padding{
    padding: 100px 0;
}
.carousel-item{
    height: 100vh;
    min-height: 300px;
}

.carousel-caption{
    
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel-caption p{
    width: 60%;
    margin: auto;
    font-size: 21px;
    line-height: 1.9;
    color: green;
    text-shadow: black;
    
}

.carousel-caption h5{

    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;    
    color: black;
}

.carousel-inner::before{

    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 7);
    z-index: 1;
}
.navbar-nav a{
        font-size: 15px;
        text-transform: uppercase;
        font-weight: 500;
}

.navbar-light .navbar-brand{
    color: black;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover{
    color: black;
}

.navbar-light .navbar-nav .navbar-link{
    color: black;
}

.w-100{
    height: 100vh;
}

.services .card-body i {
    font-size: 50px;
}
/* Ensuring all cards have the same height */
.card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .card-body {
    flex-grow: 1;
  }
  
  .card img {
    max-width: 100%;
    height: auto;
  }
  
  .card-title {
    margin-top: 15px;
  }
  
  .card .img-area {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .card-body .lead {
    font-size: 1rem;
    padding: 0 10px;
  }

  #backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
  }
  .map-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
  }
  
  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  

/* CSS Responsive me mediaquery */

@media only screen and (min-width : 768px) and (max-width : 991px){
    .carousel-caption{
        bottom: 370px;

    }
    .carousel-caption p{
        width: 100%;
    }

@media only screen and (max-width : 767px){

    .navbar-nav{
        text-align: center;
    }
    .carousel-caption{bottom:125px;
    }

    .carousel-caption h5{
        padding: 10px 15px;
        font-size: 15px;

    }
    .carousel-caption a{
        padding: 10px 15px;
    }

    .carousel-caption p{
        width: 100%;
        line-height: 1.6;
        font-size: 12px;

    }
}

.carousel-caption h5 {
    font-size: 2rem; /* Default font size */
  }
  
  .carousel-caption p {
    font-size: 1.2rem; /* Default paragraph font size */
  }
  
  @media (max-width: 768px) {
    .carousel-caption h5 {
      font-size: 1.5rem; /* Smaller font size for mobile */
    }
  
    .carousel-caption p {
      font-size: 1rem; /* Smaller paragraph size for mobile */
    }
  }
  
  @media (max-width: 576px) {
    .carousel-caption h5 {
      font-size: 1.25rem; /* Even smaller font size on very small screens */
    }
  
    .carousel-caption p {
      font-size: 0.9rem; /* Even smaller paragraph font size on very small screens */
    }
  }