  /* Custom CSS for hover dropdown */
/* Add this line at the top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
}

/* Placeholder for dynamically loaded content */
.dynamic-content-placeholder {
  min-height: 200px; /* Adjust as per content size */
}

.logo {
	width: 150px;
}

@media (min-width: 992px) {
	.navbar .dropdown:hover .dropdown-menu {
		display: block;
	}
}

/* Style for separated translation link */
.navbar .nav-translation {
	border-left: 1px solid #ffffff;
}

/* Ensure the aspect ratio is 21:9 for the carousel */
.carousel-item {
	position: relative;
	width: 100%;
    padding-top: 42.85%; /* 21:9 Aspect Ratio (divide 9 by 21 = 0.4285) */
}

.carousel-item img {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will cover the area and maintain aspect ratio */
}
/* Optional: Styles for the content inside the carousel-item */
.carousel-content {
	position: absolute;
	top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; /* Adjust the color depending on your image for visibility */
}

/* Media query for small devices (less than 768px) */
@media (max-width: 767.98px) {
	.certificate-mark {
		width: 20%; /* Increase width on small devices */
		min-width: 50px; /* Adjust minimum width */
	}
}

/* Media query for extra small devices (less than 576px) */
@media (max-width: 575.98px) {
	.certificate-mark {
		width: 30%; /* Increase width on extra small devices */
		min-width: 40px; /* Adjust minimum width */
	}
	
/* Ensure the aspect ratio is 4:5 for the carousel */
	.carousel-item {
		position: relative;
		width: 100%;
		padding-top: 125%; /* 4:5 Aspect Ratio (divide 5 by 4 = 0.4285) */
	}
}

.image-container {
  position: relative;
  text-align: center;
  color: white;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem; /* Adjust the font size as needed */
  /* Optional styles */
  background: rgba(0, 0, 0, 0.5); /* Dark background for better readability */
  padding: 5px 10px; /* Some padding around the text */
  border-radius: 5px; /* Rounded corners for the overlay background */
  white-space: nowrap; /* Prevents the text from wrapping */
}

.img-fluid {
  width: 100%;
  height: auto;
  display: block; /* Remove default inline behavior */
  margin-bottom: -4px; /* Optional: Fixes a small gap below the image */
}

.container my-5 {
	background-color: gray;
}

h3 {
      font-size: 1.5rem; /* Adjust the size as needed */
    }
.bg{
	background-color: #F0F0F0 ;
}