body {
    font-family: 'Cairo', sans-serif;
}

.fixed-top.scrolled {
    background-color: #022a6c !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
    padding: 80px 0; /* Increased padding for better spacing */
}

section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
    font-weight: 900;
}

section p {
    font-weight: 300;
    color: #6c757d;
}

/* Card Styles */
.card {
    padding: 25px; /* Increased padding */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px); /* Slightly more prominent hover effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Owl Carousel Styles */
.owl-carousel .item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px; /* Rounded corners for carousel items */
    transition: transform 0.3s ease;
}

.owl-carousel .item img:hover {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0; /* Increased padding for better spacing */
    text-align: center;
    font-size: 0.9rem; /* Slightly smaller text size */
}
    footer img {
        filter: brightness(0) invert(1); /* Makes the image white */
    }
#hero-carousel .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
  }
  
  .carousel-inner {
    width: 100%;
  }
  
  
  #hero-carousel .carousel-control-prev-icon,
  #hero-carousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.0);
    border-radius: 50%;
    padding: 10px;
  }
  
  #hero-carousel .carousel-control-prev-icon:hover,
  #hero-carousel .carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.0);
  }
  .image-container {
    position: relative;
    display: inline-block;
  }
  
  .overlay-title {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 1rem;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    align-items:flex-end;
    display: flex;
    justify-content: center;
  }
  
  .image-container:hover .overlay-title {
    background: rgba(0, 0, 0, 0.9);
    transform: translateX(-50%) translateY(0px);
  }
  .navbar-toggler {
    border-color: #343434; /* Adjust the border color to make it visible */
  }

  .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns%3D"http://www.w3.org/2000/svg" viewBox%3D"0 0 30 30"%3E%3Cpath stroke%3D"%23434343" stroke-width%3D"2" d%3D"M4 7h22M4 15h22M4 23h22"%3E%3C/path%3E%3C/svg%3E');
  }
  .navbar {
    background-color: white;
    /* Dark background for clarity */
    padding: 1rem;
    /* Add padding for better spacing */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Add shadow for depth */
  }

  .navbar a,
  .nav-link:focus,
  .nav-link:hover {
    color: #343434;
    font-weight: bolder;
    margin: 0 1rem;
    /* Add spacing between menu items */
  }

  .navbar-brand img {
    height: 40px;
    /* Adjust the height as needed */
    width: auto;
  }
#hero-carousel button:hover {
    background: unset !important;
}