:root,
html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Montserrat, "Montserrat Fallback", Arial, sans-serif;
    scroll-behavior: smooth;
    position: relative;
}

.hero-container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#formMessage {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    color: white;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Success styling */
#formMessage.success {
    background-color: #28a745;
}

/* Error styling */
#formMessage.error {
    background-color: #dc3545;
}

/* Visible state with pop effect */
#formMessage.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

#formMessage1 {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    color: white;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Success styling */
#formMessage1.success {
    background-color: #28a745;
}

/* Error styling */
#formMessage1.error {
    background-color: #dc3545;
}

/* Visible state with pop effect */
#formMessage1.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}


#bg-video {
    position: absolute;
    /* make video stay inside hero-container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fill the section without distortion */
    z-index: -1;
    /* behind the content */
}

.small-navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 400px;
    background-color: white;
    border-right: 1px solid black;
    z-index: 20;

    transform: translateX(-100%);
    /* start off-screen left */
    transition: transform 0.3s ease;
    /* smooth slide animation */
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.small-navbar i {
    font-size: 24px;
    cursor: pointer;
    color: black;
    align-self: flex-end;
    padding-bottom: 20px;
}

/* Show navbar when active */
.small-navbar.active {
    transform: translateX(0);
    /* slide into view */
}

/* Only enable small-navbar behavior for screens ≤1275px */
@media (min-width: 1276px) {
    .small-navbar {
        display: none;
        /* hide completely on larger screens */
    }
}

.main-nav {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-decoration: none;
}

.main-nav:hover {
    cursor: pointer;
    color: #004988;
}

.sub-nav {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sub-nav a {
    color: #00000080;
    /* 80 = ~50% opacity */
}

.sub-nav a:hover {
    cursor: pointer;
    color: #004988;
}

.navbar-container {
    position: fixed;
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 10;
}

@media (max-width: 1275px) {
    .navbar-container {
        top: 0;
    }
}

.main-navbar-container {
    height: 100%;
    width: 83%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
    border-radius: 40px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* black shadow */
}

/* For medium screens and smaller */
@media (max-width: 1275px) {
    .main-navbar-container {
        width: 100%;
        /* full width */
        padding: 20px 20px;
        /* adjust padding if needed */
        border-radius: 0;
        /* optional: remove border-radius for smaller screens */
    }
}

.main-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Default styling */
.main-navbar h1 {
    color: black;
    font-size: 36px;
    margin: 0;
    transform: translateX(-10px);
}

/* Hide on medium/small screens */
@media (max-width: 555px) {
    .main-navbar h1 {
        display: none;
    }
}

.sub-menu-container1 {
    display: none;
    text-align: center;
    /* hidden initially */
    position: absolute;
    left: -100px;
    /* align with parent link */
    top: 60px;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
    padding: 10px;
    border-top: 4px solid #004988;
    width: max-content;
    /* width adapts to longest content */
    min-width: 300px;
    /* optional: ensure a minimum width */
    box-sizing: border-box;
    /* include padding in width */
}

.sub-menu-container1 p {
    /* spacing between links */
    cursor: pointer;
    /* shows pointer on hover */
    color: black;
    /* default color */
    transition: color 0.3s ease;
    /* smooth color transition */
}

.sub-menu-container1 p:hover {
    color: #004988;
    /* color on hover */
}

/* Show submenu when hovering the parent container */
.services-link:hover .sub-menu-container1 {
    display: flex;
    /* keep visible while hovering parent or submenu */
}

.sub-menu-container2 {
    display: none;
    text-align: center;
    /* hidden initially */
    position: absolute;
    left: -100px;
    /* align with parent link */
    top: 60px;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
    padding: 10px;
    border-top: 4px solid #004988;
    width: max-content;
    /* width adapts to longest content */
    min-width: 300px;
    /* optional: ensure a minimum width */
    box-sizing: border-box;
    /* include padding in width */
}

.sub-menu-container2 p {
    /* spacing between links */
    cursor: pointer;
    /* shows pointer on hover */
    color: black;
    /* default color */
    transition: color 0.3s ease;
    /* smooth color transition */
}

.sub-menu-container2 p:hover {
    color: #004988;
    /* color on hover */
}


/* Show submenu when hovering the parent container */
.services-link:hover .sub-menu-container2 {
    display: flex;
    /* keep visible while hovering parent or submenu */
}

.nav-links {
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: black;
    gap: 60px;
    margin-left: 60px;
}

@media (max-width: 1275px) {
    .nav-links {
        display: none;
        width: 100%;
        /* full width */
        padding: 0 20px;
        /* adjust padding if needed */
        border-radius: 0;
        /* optional: remove border-radius for smaller screens */
    }
}

.services-link {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* fill parent height */
}

.services-link a {
    padding: 0px 20px;
    /* fill parent height */
    display: inline-block;
    /* spacing between links */
    cursor: pointer;
    /* shows pointer on hover */
    color: black;
    /* default color */
    transition: color 0.3s ease;
    /* smooth color transition */
}

.services-link a:hover {
    color: #004988;
    /* color on hover */
}

.right-navbar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.language-select {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: black;
    gap: 10px;
    cursor: pointer;
}

.language-options {
    display: none;
    text-align: center;
    /* hidden initially */
    position: absolute;
    left: -37px;
    /* align with parent link */
    top: 45px;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
    padding: 10px;
    width: max-content;
    /* width adapts to longest content */
    min-width: 100px;
    /* optional: ensure a minimum width */
    box-sizing: border-box;
    /* include padding in width */
}

.language-options p {
    /* spacing between links */
    cursor: pointer;
    /* shows pointer on hover */
    color: black;
    /* default color */
    transition: color 0.3s ease;
    /* smooth color transition */
}

.language-options p:hover {
    color: #004988;
    /* color on hover */
}

/* Show submenu when hovering the parent container */
.language-select:hover .language-options {
    display: flex;
    /* keep visible while hovering parent or submenu */
}

.hamburger-menu {
    display: none;
}

/* Show hamburger on medium/small screens */
@media (max-width: 1275px) {
    .hamburger-menu {
        display: block;
        /* show hamburger */
        font-size: 28px;
        cursor: pointer;
        color: black;
    }
}

.hero-text {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
}

@media (max-width: 555px) {
    .hero-text {
        gap: 10px;
    }

    .hero-text h1 {
        font-size: 36px;
        padding: 10px;
    }

    .hero-text div p {
        line-height: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-transparent {
    visibility: hidden;
    width: 1px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 1px 1px;
    font-size: 1px;
    font-weight: bold;
    /* make text bold */
    cursor: pointer;
    border-radius: 1px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-transparent:hover {
    background-color: white;
    color: #38302b;
}

.btn-solid {
    background-color: #236476;
    color: white;
    border: 2px solid #236476;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    /* make text bold */
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.btn-solid:hover {
    background-color: #00576f;
}

/* renamed container to page-wrapper */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* renamed hero-section to media-showcase */
.media-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

/* renamed image-container to visual-panel */
.visual-panel {
    flex: 1;
    position: relative;
}

/* renamed hero-image to feature-image */
.feature-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* renamed content-container to text-panel */
.text-panel {
    flex: 1;
    padding-left: 20px;
}

/* renamed main-heading to section-title */
.section-title {
    font-size: 5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* renamed description to info-text */
.info-text {
    font-size: 1.9rem;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

/* renamed cta-button to action-link */
.action-link {
    visibility: hidden;
    display: inline-block;
    background-color: #236476;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.action-link:hover {
    background-color: #1e4444;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 95, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .media-showcase {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .text-panel {
        padding-left: 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .info-text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-wrapper {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-text {
        font-size: 1rem;
    }

    .action-link {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

.second-section {
    padding: 60px 0px;
    width: 100%;
    background-color: #023a5a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.second-section h1 {
    text-transform: uppercase;
}

@media (max-width: 555px) {
    .second-section h1 {
        font-size: 32px;
        padding: 0 30px;
    }
}

.circles {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.circles div {
    height: 20px;
    width: 20px;
    border-radius: 50%;
}

.squares {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    /* all same height */
    gap: 40px;
}

@media (max-width: 1275px) {
    .squares {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.squares .first,
.squares .second,
.squares .third {
    width: 400px;
    padding: 40px;
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* stack items vertically */
    justify-content: flex-start;
    /* start at top */
    align-items: center;
    text-align: center;
}

.squares .second {
    color: black;
}

@media (max-width: 1275px) {

    .squares .first,
    .squares .second,
    .squares .third {
        width: 75%;
    }
}

.squares .first {
    background-color: #236476;
}

.squares .second {
    background-color: #D9D9D9;
}

.squares .third {
    background-color: #7DAD3F;
}

.btn-squares {
    margin-top: auto;
    /* pushes button to bottom */
    width: 100%;
    background-color: white;
    color: black;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.btn-squares:hover {
    background-color: #e0e0e0;
    /* 🔥 light gray on hover */
}

.third-section {
    padding: 60px 0px;
    width: 100%;
    background-color: #023a5a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    align-items: stretch;
    /* 🔥 ensures equal height */
}

.third-section-content {
    color: white;
    padding: 80px 120px;
    font-size: 16px;
}

@media (max-width: 555px) {
    .third-section-content {
        padding: 40px;
    }
}

.avatar {
    width: 250px;
    /* size similar to fa-3x */
    height: 250px;
    object-fit: cover;
    /* keeps aspect ratio */
    border-radius: 50%;
    /* makes it circular */
    display: block;
    margin: 0 auto;
    /* centers the image */
}

.third-section-squares {
    min-width: 125px;
    /* optional, so they don’t shrink too small */
    padding: 25px;
    border-radius: 10px;
    background-color: white;
    color: #38302b;
    display: flex;
    gap: 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background-color 0.4s ease, color 0.4s ease;
    cursor: pointer;
}

.third-section-squares:hover {
    background-color: #7DAD3F;
    color: white;
    transition-delay: 0.1s;
}

.third-section-squares div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.fourth-section {
    padding: 60px 0px;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.fourth-section-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.fourth-section-squares {
    max-width: 500px;
    padding: 20px;
}

.nested-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.fifth-section {
    padding: 60px 0;
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/image1.png');
    /* Replace with your image path */
    background-size: cover;
    /* Makes the image cover the whole section */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents repeating */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.sixth-section {
    padding: 60px 0px;
    width: 100%;
    background-color: #023a5a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    align-items: stretch;
    /* 🔥 ensures equal height */
}

/* Remove any shading or overlays on the carousel sides */
.carousel-control {
    background: none !important;
}

.carousel::before,
.carousel::after {
    display: none !important;
}

.carousel-indicators {
    bottom: -40px;
    /* or any value you prefer */
}

.responsive-video {
    width: 60%;
    height: auto;
    max-height: 80vh;
    /* Optional: limit max height on larger screens */
}

@media (max-width: 1275px) {
    .responsive-video {
        width: 100%;
    }
}

.process-container {
    max-width: 1400px;
    width: 100%;
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 12px;
    min-width: 180px;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.process-step.active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.process-step.active .step-icon {
    background: #ffffff;
    color: #2c5f7c;
}

.step-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.arrow {
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin: 0 20px;
}

.step-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-content h2 {
    color: #2c5f7c;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content p {
    color: #444;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .step-content {
        padding: 30px 20px;
    }

    .step-content h2 {
        font-size: 24px;
    }

    .step-content p {
        font-size: 16px;
    }
}

.seventh-section {
    padding: 60px 0px;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    align-items: stretch;
    /* 🔥 ensures equal height */
}


.scroll-container {
    width: 40%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    /* Optional: border */
    border: 2px solid #fff;
    align-self: center;
}

@media (max-width: 555px) {
    .scroll-container {
        width: 100%;
    }
}

/* Fade effect using mask */
.scroll-container::before,
.scroll-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    /* width of the fading area */
    height: 100%;
    z-index: 2;
}

.scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.scroll-track img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 10px;
    border: 2px solid white;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.form-section {
    flex-direction: column;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    /* center horizontally */
    align-items: center;
    /* center vertically */

    padding: 40px;
    box-sizing: border-box;
    text-align: center;
}

.form-container {
    background: #D9D9D9;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    /* Increased max-width for multi-column layout */
    padding: 30px;
    align-self: center;
}

.form-container h2 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background: #6ba3c7;
    margin: -30px -30px 25px -30px;
    padding: 20px;
    border-radius: 15px 15px 0 0;
}

/* Added CSS Grid layout for 3-column form */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.form-column {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

/* Added full-width class for fields that span all columns */
.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: black;
    font-size: 18px;
    text-align: left;
    padding-left: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    /* removed all borders from form inputs */
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
    background: #f8f9fa;
    /* added light background to maintain visual separation */
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: transparent;
    /* removed focus border color */
    box-shadow: 0 0 8px rgba(107, 163, 199, 0.3);
    background: #fff;
    /* white background on focus for better contrast */
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Added select styling */
.form-group select {
    background: #fff;
    cursor: pointer;
}

.form-group select option {
    padding: 10px;
}

/* Added disclaimer styling */
.disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: center;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #236476;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-btn:hover {
    background: #00576f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 163, 199, 0.4);
}

/* Updated responsive design for multi-column layout */
@media (max-width: 900px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-container {
        margin: 10px;
        padding: 20px;
        max-width: none;
    }

    .form-container h2 {
        margin: -20px -20px 20px -20px;
        font-size: 20px;
    }
}

.eight-section {
    padding: 60px 0px;
    width: 100%;
    background-color: #023a5a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    align-items: stretch;
    /* 🔥 ensures equal height */
}

.small-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: white;
}

.small-div-text {
    max-width: 500px;
    text-align: left;
}

@media (max-width: 1275px) {
    .small-div {
        flex-direction: column;
    }

    .small-div-text {
        text-align: center;
    }
}

.search-container {
    /* gray-200 */
    padding: 20px;
    border-radius: 12px;
}

.search-inner {
    display: flex;
    align-items: center;
}

.search-icon-wrapper {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-right: 1px solid #e5e7eb;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    padding: 10px;
    position: relative;
}

.search-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: #6b7280;
    /* gray-500 */
    pointer-events: none;
}

.search-input {
    flex: 1;
    height: 50px;
    max-width: 500px;
    padding-left: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: white;
}

.search-button {
    background-color: #236476;
    /* blue-500 */
    height: 50px;
    color: white;
    font-weight: 600;
    padding: 10px;
    border: none;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #00576f;
    /* blue-800 */
}

.footer {
    background-color: white;
    color: black;
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* 3 equal columns */
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 90px;
    height: 3px;
    background-color: #00576f;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-section {
    text-align: center;
}

.contact-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: black;
}

.schedule-btn {
    background-color: #236476;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.schedule-btn:hover {
    background-color: #00576f;
}

.newsletter-text {
    font-size: 14px;
    color: black;
    margin-bottom: 15px;
}

.newsletter-btn {
    background: transparent;
    color: black;
    border: 2px solid #666;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    border: 2px solid #666;
    background-color: rgba(255, 255, 255, 0.1);
}

.certification {
    text-align: center;
}

.cert-logo {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    font-weight: bold;
    color: #3d2f26;
}

.cert-text {
    font-size: 14px;
    color: black;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 30px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon.facebook {
    background-color: #023a5a;
}

.social-icon.twitter {
    background-color: #7DAD3F;
}

.social-icon.linkedin {
    background-color: #236476;
}

.social-icon.website {
    background-color: #D9D9D9;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 14px;
    color: black;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        gap: 20px;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}

.testimonial-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: #023A5B;
}

.testimonials {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.testimonial-title {
    font-size: 5rem;
    margin-bottom: 20px;
    color: white;
}

.testimonial-card {
    position: relative;
    background: #fff;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

@media (max-width: 440px) {
    .testimonial-message {
        font-style: italic;
        font-size: 1rem;
        line-height: 1.6;
        margin: 20px 0 40px;
        color: #333;
    }

    .testimonial-name {
        font-size: 1rem;
        position: relative;
        bottom: 20px;
        right: 20px;
        font-weight: bold;
        color: #555;
    }
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    opacity: 0.3;
}

.testimonial-message {
    font-style: italic;
    font-size: 1.9rem;
    line-height: 1.6;
    margin: 20px 0 40px;
    color: #333;
}

.testimonial-name {
    font-size: 2rem;
    position: relative;
    bottom: 20px;
    right: -20px;
    font-weight: bold;
    color: #555;
}

#contactForm{
    scroll-margin-top: 80px;
}