body {
    font-family: "Montserrat", serif;
    margin: 0;
    padding: 0;
    background-color: #cbefff;

}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    font-weight: bold;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px #bdebff solid;
    /* position:fixed; */
    /* width: 100vw; */
    /* z-index: 100; */
}

/* Styling for the logo box */
.logo {
    /* background-color: #bdebff; */
    color: rgb(0, 0, 0);
    /* padding: 25px 15px; */
    border-radius: 5px;
    font-size: 16px;
}

/* Styling for navigation links */
.navbar a {
    text-decoration: none;
    color: black;
    margin: 0 10px;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
   
}

/* Hover effect for links */
.navbar a:hover {
    background-color: #bdebff;
    color: white;
}

/* Special styling for contact button */
.navbar .contact {
    background-color:#43c6ff;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-right: 0px;
}

.navbar .contact:hover {
    background-color:#00a1e6;
}

.container {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 20px 0;
    width: 80%;
    margin: 40px auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #3498db;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-box {
    padding: 15px;
    position: relative;
    width: 45%;
    background-color: white;
    box-shadow: 0 10px 8px rgba(1, 115, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 20px;
}

.left {
    left: -15px;
}

.right {
    left: 53%;
}

.timeline-box::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #3498db;
    top: 15px;
    border-radius: 50%;
    border: 3px solid white;
}

.left::after {
    right: -26px;
}

.right::after {
    left: -25px;
}

.content h3 {
    margin: 0;
    color: #2c3e50;
}

.content p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}
footer {
    background-color:#19a1db;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    margin-top: 4%;
}

.footer-container {
    width: 80%;
    margin: auto;
}

.logo-footer {
    font-size: 22px;
    font-weight: bold;
}

.footer-nav {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.footer-nav li {
    display: inline;
}

.footer-nav a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.info p {
    margin: 5px 0;
    font-size: 14px;
}

.info a {
    color: #ccefff;
    text-decoration: none;
}

.social-icons {
    margin: 10px 0;
}

.social-icons p {
    margin-bottom: 5px;
}

.social-icons a {
    display: inline-block;
    margin: 0 5px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.copyright {
    font-size: 12px;
    margin-top: 10px;
}
