/* Navbar functionality */
.active {
	color: aquamarine;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

/* CSS for About Us section */
.about-image {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* CSS for underlining 50% of the title */
.underline-title {
	display: inline-block;
	position: relative;
	font-family: lobster;
  }
  
.underline-title::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 2%; /* Change this value to adjust the underline length */
	width: 50%; /* Change this value to adjust the underline length */
	bottom: -20%;
	background-image: linear-gradient(to right, #4a4a4a 0%, #426eba 50%, transparent 50%, transparent 100%);
	height: 5px;
}

/* CSS for Exam Results section */
.exam-row {
	text-align: center;
	margin-bottom: 20px;
  }
  
.exam-icon {
	font-size: 48px;
	transition: transform 0.3s ease-in-out;
}
  
.exam-icon:hover {
	transform: translateY(-5px); /* Change the amount of movement on hover */
}
  
.exam-name {
	text-transform: uppercase;
	margin-top: 10px;
}
  
.exam-month {
	margin-top: 5px;
	font-weight: bold;
}

a {
	text-decoration: none;
}

.underline-row {
	position: relative;
  }
  
.underline-row::after {
	content: '';
	position: absolute;
	bottom: 23px;
	left: 0;
	width: 100%;
	border-bottom: 2px solid #00cbf4; /* Adjust thickness or color as needed */
}

/* Client Testimonials */

.testimonial {
	/* background-color: #f5f5f5; */
	padding: 20px;
	border-radius: 5px;
	margin-bottom: 20px;
}
  
.client-name {
	font-weight: bold;
	margin-top: 10px;
}

.carousel-inner .carousel-item .row {
	background-color: #f9f9f9; /* Adjust the background color as needed */
	border-radius: 5px; /* Rounded corners for the row */
	padding: 15px; /* Padding around the row */
	width: 100%;
}

/* CSS for the footer section */
.footer {
	padding: 20px 10px; /* Adjust as needed */
}

.footer h2 {
	font-size: larger;
}

.footer-title::after {
	content: '';
	display: block;
	width: 50%; /* Adjust as needed */
	border-bottom: 2px solid #00c8ff; /* Adjust color as needed */
	margin-top: 15px;
}

.footer-links .link-description {
	display: none;
	position: absolute;
	padding: 5px;
	border-radius: 5px;
	color: whitesmoke;
	font-size: 10px;
}

/* Display description on hover */
.footer-links li:hover .link-description {
	display: block;
}

.footer-links li a {
	color: lightgray;
	text-decoration: none;
}

.hero {
	background-image: url('../img/img1.jpg');
	background-size: cover;
	background-position: center;
	color: #ede9e9;
	text-align: left;
	padding: 100px 0;
	background-color: #f8f9fa; /* Light background */
}


.hero .container {
	position: relative;
	z-index: 1;
}

/* Services Section styles */
.services {
	padding: 50px 0;
}

.service {
	/* background-color: #f9f9f9; */
	padding: 5px;
	margin-bottom: 2px;
	border-radius: 5px;
}

.service h2 {
	margin-bottom: 10px;
}

/* Our Team */

.team {
	background-color: #fff; /* White background */
}

.team-member img {
	width: 200px;
	height: 200px;
	border: 5px solid #fff; /* Border around images */
	border-radius: 50%; /* Rounds the image */
	object-fit: cover; /* Maintain aspect ratio */
}


/* Whatsapp Customer Service */
.whatsapp-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
}

.whatsapp-button a {
	display: block;
	background-color: rgba(37, 211, 102, 0.8);
	padding: 10px;
	border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-button img {
	width: 40px;
	height: auto;
}


/* Team Photo */
.teamphoto img {
	width: auto;
	height: 60px;
}


/* Modals */

/* Modal Header */
/* .darker {
	background-color: rgb(102, 102, 102);
} */

