body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
    z-index: 1000;
    background-color: #1CA0A6;
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    background-color: #177F84;
}

.contact-info {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
    padding-right: 10px;
}

.contact-info img {
    width: 30px;
    margin-right: 10px;
}

.menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.logoimg {
    height: 80px;
}

.menu {
    display: flex;
    gap: 60px;
}

.menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    padding: 10px 20px;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 150%;
    background-color: rgb(255, 255, 255);
}

.menu a:last-child::after {
    display: none;
}

.menu a:hover {
    color: #214247;
    transition: color 0.3s ease;
}

.main-content {
    padding: 80px 20px 40px; /* Consistent bottom margin */
    display: flex;
    align-items: center;
    gap: 200px;
}

.main-content img {
    max-width: 700px;
    border-radius: 15px;
}

.main-text {
    font-size: 24px;
    color: #333;
    max-width: 600px;
}

.green-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1CA0A6;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.green-button:hover {
    background-color: #177F84;
}

.container1 {
    display: flex;
    justify-content: space-around;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 40px; /* Consistent top and bottom margin */
    width: 100%;
    background-color: #1CA0A6;
}

.item {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 10px;
    padding: 10px;
}

.item img {
    max-width: 100px;
    border-radius: 8px;
    margin-right: 20px;
}

.item .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}

.item p {
    font-size: 14px;
    color: #ffffff;
}

.main-heading {
    font-size: 32px;
    color: #000000;
    margin-bottom: 20px;
}

.text-block {
    max-width: 1000px;
    margin-bottom: 40px; /* Consistent bottom margin */
}

.text-block p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    text-align: left;
}

.fullscreen-image {
    position: relative;
    width: 100%;
    height: 30vh;
    overflow: hidden;
    margin-bottom: 40px; /* Consistent bottom margin */
}

.fullscreen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay h1 {
    color: white;
    font-size: 24px;
    text-align: center;
    max-width: 80%;
    padding: 0 20px;
}

.icon-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    max-width: 1200px;
    position: relative;
    margin-bottom: 40px; /* Consistent bottom margin */
}

.icon-text-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.icon-text-item1 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.icon-text-item::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 40px;
    width: 2px;
    height: calc(100% - 10px);
    border-left: 2px dashed #1CA0A6;
}

.icon-text-item:last-child::before {
    display: none;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #1CA0A6;
    border: 2px solid #1CA0A6;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

.icon-circle1 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #1CA0A6;
    border: 2px solid #1CA0A6;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

.icon-circle1 img {
    max-width: 60%;
    max-height: 60%;
}

.icon-circle img {
    max-width: 60%;
    max-height: 60%;
}

.icon-text-content {
    flex: 1;
    padding: 10px 20px;
}

.icon-text-content h2 {
    font-size: 20px;
    color: #333;
    margin-top: 0;
    text-align: left;
}

.icon-text-content p {
    font-size: 16px;
    color: #666;
    margin: 10px 0 0;
    text-align: left;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 80%;
    max-width: 1450px;
    margin-bottom: 50px;
}

.video-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(50% - 20px);
    box-sizing: border-box;
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

.video-content {
    padding: 20px;
}

.video-content h2 {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
    margin-bottom: 10px;
}

.video-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.form-container {
    background-color: #1CA0A6;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.form-container h2 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
    text-align: left;
}

.form-group1 label {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-group .policy-text {
    font-size: 14px;
    color: #ffffff;
}

.form-group button {
    padding: 10px 20px;
    font-size: 16px;
    color: #000000;
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
}

.form-group button:hover {
    background-color: #177F84;
}

.footer {
    background-color: #1CA0A6;
    color: #fff;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px; /* Consistent top margin */
}

.footer-top,
.footer-bottom {
    display: flex;
    justify-content: space-around;
    padding: 10px 20px;
}

.footer-top {
    border-bottom: 5px solid #177F84;
    padding-bottom: 20px;
}

.footer-block {
    width: 30%;
}

.footer-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-block ul {
    list-style-type: none;
    padding: 0;
}

.footer-block ul li {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-bottom {
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 30%;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.social-icons a:hover {
    color: #ddd;
}

#toTop {
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    padding: 5px;
    cursor: pointer;
    z-index: 9999;
    bottom: 100px;
    right: 30px;
    position: fixed;
    border-radius: 50px;
    border: solid #177F84;
}

#toTop img {
    width: 100%;
}

.center {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin-bottom: 40px; /* Consistent bottom margin */
}

.wrapper {
    display: flex;
    gap: 1em;
    overflow: hidden;
    width: calc(475px * 3 + 2em);
}

.wrapper > .inner {
    display: flex;
    gap: 1em;
    transition: transform 1s ease-in-out;
}

.card {
    border-radius: 0.5em;
    width: 475px;
    height: 633px;
    overflow: hidden;
    margin-bottom: 10px;
}

.card > img {
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
    display: block;
    width: 100%;
    height: 250px; /* Fixed height for images */
    object-fit: cover; /* Ensure the image covers the area without distortion */
}

.card > .content {
    background-color: #1CA0A6;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    padding: 1em;
    text-align: center;
    height: calc(100% - 17.5em);
}

.card > .content > h1,
.card > .content > h3 {
    margin: 0.35em 0;
}

.card > .content > h1 {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
}

.card > .content > h3 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 300;
    text-align: justify;
}

.map {
    margin-top: 1em;
}

.map > button {
    all: unset;
    background-color: #1CA0A6;
    cursor: pointer;
    margin: 0 0.125em;
    position: relative;
    user-select: none;
    border-radius: 100%;
    height: 1em;
    width: 1em;
}

.map > button.active:after {
    background-color: #177F84;
    content: "";
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    height: 0.5em;
    width: 0.5em;
}


















