@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('images/bg_img.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(200, 220, 255, 0.8); /* Light blue with some transparency */
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #2a4a7b; /* Dark blue for the text */
}

h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #2a4a7b; /* Dark blue for the text */
}

a {
    display: block;
    text-decoration: none;
    padding: 15px;
    border-radius: 5px;
    background-color: #5083c7; /* Blue background color */
    color: #fff; /* White text color */
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
}

a:hover {
    background-color: #4a75a3; /* Lighter blue on hover */
    color: #fff;
}

.navbar {
    background-color: #2a4a7b; /* Dark blue for the navbar */
    text-align: center;
    width: 100%;
    padding: 20px 0;
}

.navbar a {
    display: inline-block;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #385d8d; /* Slightly lighter blue on hover */
}

/* Styles for the images */
.image-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    background-color: #FFFFFF;
    margin-bottom: 20px;
}

.image-container img {
    width: 120px; /* Adjust the width as needed */
    height: auto;
}

.content {
    padding: 20px;
    color: #2a4a7b; /* Dark blue color for the text */
}

.box {
    flex: 0 1 calc(33.33% - 20px);
    padding: 15px;
    border-radius: 10px;
    background-color: #e8eef3; /* Light blue for the box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #2a4a7b; /* Dark blue color for the text */
    transition: all 0.3s ease;
    margin-bottom: 20px; /* Margin added to separate boxes */
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.box_img {
    padding: 15px;
    border-radius: 10px;
    background-color: #e8eef3; /* Light blue for the box with image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #2a4a7b; /* Dark blue color for the text */
    transition: all 0.3s ease;
    margin-bottom: 20px; /* Margin added to separate boxes */
    display: flex;
    align-items: center;
}

.box_img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

h2 {
    margin-top: 0;
    font-size: 1.5em;
}

p,
ul,
ol {
    margin-top: 0;
}


.contact-content {
    display: flex;
    align-items: center;

}

.details {
    margin-left: 25px;    
}
