.testimonials {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
	
 
}

.testimonials h2 {
  font-size: 40px;
  margin-bottom: 30px;
  color: black;
  font-family: 'Montserrat', sans-serif;
  
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  background-color: white;
  padding: 20px;
  width: 400px; /* Fixed width */
  height: 300px; /* Fixed height to keep box size consistent */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures spacing between content */
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  color: black;
  flex-grow: 1; /* Allow text to grow and take up available space */
	font-family: 'Times New Roman', Times, serif;
	font-size: 17px;
	
}

.testimonial .author {
  font-weight: bold;
  color: black;
  padding-top: 10px; /* Added 10px padding to the bottom */
}

.testimonial .position {
  font-size: 0.9rem;
  color: black;
}
			
		
			
			
/* General Section Styles */
/* General Section Styles */
.services-section {
  background-color: #1e2a3a;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
}








			
			

	
			
/* General Footer Styling */
.footer {
    background-color: #2e2e2e; /* Light black background */
    color: #fff; /* White text for contrast */
    padding: 60px 0; /* Increased padding for a larger footer */
    margin-bottom: 0; /* Ensure no space below the footer */
    position: relative;
    width: 100%;
}

/* Footer Container */
.footer .container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Row styling for equal columns */
.footer .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Column Styling */
.footer .col-md-3 {
    width: 23%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Footer Section Title */
.footer h3 {
    font-size: 20px; /* Increased size */
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

/* Text Styling */
.footer .p-small {
    font-size: 16px; /* Increased size */
    color: #dcdcdc;
    line-height: 1.5;
}

/* List Styling */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 15px; /* Increased margin for better spacing */
}

.footer ul li a {
    color: #dcdcdc;
    text-decoration: none;
    font-size: 16px; /* Increased font size */
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff6f61; /* Change color on hover */
}

/* Social Media Icons Styling */
.footer .fab {
    font-size: 30px; /* Increased size of icons */
    color: #dcdcdc;
    margin-right: 20px; /* Increased space between icons */
    transition: color 0.3s;
}

.footer .fab:hover {
    color: #ff6f61; /* Change color on hover */
}
	
	/* Copyright Styling */
.footer .copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #dcdcdc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer .col-md-3 {
        width: 100%;
        margin-bottom: 20px;
    }

	}
	






form {
    font-family: 'Times New Roman', serif;
    color: #000000;
}

.control-group label {
    margin-bottom: 0;
    font-size: 14px;
    color: #000000;
}

.modal-title {
    color: #000000; /* Changed to black */
}

.form-control {
    color: #000000; /* Changed text color to black */
    border: none;
    border-radius: 0;
    background: #e7e6e6;
}

.form-control:focus {
    border: none;
    box-shadow: none;
    outline: none;
    background: #FFFFFF;
    color: #000000; /* Changed text color to black */
}

.btn {
    color: #ffffff;
    background: #dd4952;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 20px; /* Add top padding */
    display: block;
    margin-left: auto;
    margin-right: auto; /* Center the button */
}

.btn:hover {
    color: #dd4952;
    background: #333333;
}

.submit-condition {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    color: #000000; /* Changed text color to black */
}












.about {
    position: relative;
    padding: 45px 0 30px 0;
    background-size: cover;
}

.about::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 9;
}

.about .container {
    position: relative;
    z-index: 10;
}

.about .title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 15px;
	 font-family: 'Montserrat', sans-serif;
}

.about .title-sub {
    text-align: center;
    color: #666666;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 30px;
	font-family: 'Times New Roman', Times, serif;
}

.about .about-col {
    background: #fff;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    padding: 20px; /* Reduce padding for a smaller column height */
    min-height: auto; /* Remove any fixed height or minimum height */
}

.about .about-col .img {
    position: relative;
}



.about .about-col span {
    font-size: 37px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    transition: 0.3s;

}

.about .about-col:hover .icon {
    background-color: #ffffff;
}

.about .about-col:hover .icon span {
    color: #dd4952;
}

.about .about-col h3 {
    color: #333333;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    margin: 40px 0 12px 0;
}

.about .about-col h3 a {
    color: #333333;
}

.about .about-col h3 a:hover {
    color: #00CCFF;
}

.about .about-col p {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #666666;
    margin-bottom: 0;
    padding: 0 30px;
	
}


.about .about-col .img img {
    height: 100px; /* Set an explicit height */
    object-fit: cover; /* Ensure the image covers the area properly */
	
}





	