body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: left;
}

.container2 {
	max-width: 100%;
	margin: 0 auto;
	text-align: justify;
	width: 90%;
}

header {
    background-color: #ffffff;
    color: #004c99;
    text-align: left;
    margin-bottom: 1px;
}

.top-bar {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid rgb(0, 76, 153);
}

.search-bar {
    display: flex;
    align-items: center;
	margin-right: 60px;
	 margin: 10px;
	 text-decoration: none;
}

.language-options {
	font-family: Arial, sans-serif;
    text-align: right; 
    margin-left: 60px;
    padding: 0;
}


.language-options a {
	color: #004c99;
	margin: 0 10px;
	text-decoration: none;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
}

.search-bar input {
    padding: 5px;
    margin-right: 5px;
    border: 1px solid #004c99;
    border-radius: 3px;
}

.search-bar button {
    padding: 5px 10px;
    background-color: #004c99;
    color: #ffffff;
    border: none;
    cursor: pointer;
	margin-right: 50px;
    border-radius: 3px;
}

.logo-container {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 20px 30px; /* Padding for logo container */
}

.logo-img {
    height: 95px; /* Reduced the height */
	 margin-left: 40px;
    margin-right: 20px;
}

.logo-text h1 {
	margin: 1;
	font-size: 36px; /* Reduced the font size */
	color: #004c99;
	vertical-align: bottom;
}

.logo-text p {
	font-size: 18px; /* Reduced the font size */
	color: #004c99;
	font-family: Verdana, Geneva, sans-serif;
	word-spacing: normal;

}
.header-image {
    display: block; /* Ensure it behaves as a block element */
    width: 100%; /* Ensure image doesn't exceed its container's width */
    height: 300px; /* Maintain aspect ratio */
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */
}

nav {
    background-color: #004c99;
    text-align: left;
    width: 100%;
	margin-bottom: 0px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    margin-left: 50px;
}

nav ul li {
    position: relative;
	    margin: 0 5px;
}

nav ul li a {
	
    color: #ffffff;
    text-decoration: none;
    padding: 15px;
    display: block;
}

nav ul li .dropdown-content {
	
    display: none;
    position: absolute;
    background-color: #ffffff;
    color: #004c99;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border: 1px solid #004c99;
}
nav ul li.dropdown > a:after {
    content: '\25BE'; /* Unicode for down arrow */
    margin-left: 5px;
}

nav ul li .dropdown-content a {
	
    color: #004c99;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

nav ul li .dropdown-content a:hover {
    background-color: #f1f1f1;
}

nav ul li:hover .dropdown-content {
    display: block;
}


nav ul li .dropdown-content::before {
    content: "";
	position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
    z-index: 1;
}

.main {
    max-width: 100%;
    margin: 20 auto;
    padding: 50px;
}


.about-our-work h2 {
	color: #004c99;
	text-align: center;
}
.about-our-work h3 {
	color: #004c99;
	text-align: justify;
	font-size: 20px;
}

.about-our-work p,
.about-our-work ul {
	color: #333333;
	font-weight: normal;
}

.about-our-work ul {
    list-style-type: disc;
    margin-left: 20px;
}

footer {
	background-color: #333333;
	color: #ffffff;
	padding: 20px 0;
	text-align: center;
	width: 100%;
	margin-top: 20px;
	font-size: 12px;
}

footer .footer-content {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

footer .footer-content .footer-logo {
    display: flex;
    align-items: center;
}

footer .footer-content .footer-logo img {
    height: 30px;
    margin-right: 14px;
}

footer .footer-content .footer-logo p {
    margin: 0;
    font-size: 12px;
}

footer .social-media p,
footer .newsletter p {
	margin: 0;
	font-weight: bold;
	font-size: 14px;
}

footer .social-media a {
    color: #ffffff;
    margin-left: 10px;
    text-decoration: none;
}

footer .newsletter input {
    padding: 5px;
    margin-right: 5px;
}

footer .newsletter button {
    padding: 5px 10;
	left: 60px;
	right: 60px;
}
.container .logo-container .logo-text h1 {
	font-style: normal;
}
.container .logo-container .logo-text h1 {
	font-size: 24px;
}
.about-our-work .left-image {
    float: left;
    max-width: 200px; /* Adjust as needed */
    height: auto;
    margin-right: 20px; /* Space between image and text */
    margin-bottom: 10px; /* Space below the image */
}

.about-our-work .text-content {
    overflow: hidden; /* Clear the float */
}
.about-our-work .text-with-image {
    margin-right: 5%; /* Adjust as needed */
	margin-left: 5%; 
      overflow: hidden; /* Clear float */
}

.about-our-work .float-left {
	float: left;
	margin-right: 10px; /* Space between image and text */
	margin-bottom: 10px; /* Space below the image */
	max-width: 25%; /* Adjust image width */
	height: auto; /* Maintain aspect ratio */
	text-align: justify;
}

.about-our-work p,
.about-our-work ul {
	margin: 0 0 20px; /* Add margin to paragraphs and lists for spacing */
	text-align: justify;
}

.about-our-work ul {
    padding-left: 20px; /* Indent lists */
    list-style-type: disc; /* Bullet points */
}

.about-our-work h2 {
    color: #004c99;
    text-align: center;
    margin-bottom: 20px; /* Space below the heading */
}

.read-more {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  background-color: #567BCA; /* Adjust to your desired color */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #0066CC; /* Darker shade for hover effect */
}
