* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: url('images/bg.webp') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.top-bar {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 10;
}

.logo {
    position: relative;
}

.logo img {
    height: 100px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(19%) sepia(99%) saturate(2731%) hue-rotate(190deg) brightness(90%) contrast(101%);
}

.nav-links.desktop-nav {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

.nav-links.desktop-nav a {
    color: #0063A6;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links.desktop-nav a:hover {
    background-color: #e3f2fd;
    color: #084694;
}

.mobile-logo {
    display: none;
}

.mobile-logo img {
    height: 100px;
    position: absolute;
    top: 20px;
    left: 0px;
    z-index: 15;
    filter: brightness(0) saturate(100%) invert(19%) sepia(99%) saturate(2731%) hue-rotate(190deg) brightness(90%) contrast(101%);
}

.hamburger {
    display: none;
    background: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    color: #0063A6;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 20;
}

.nav-links.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 20px;
    width: 240px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    z-index: 100;
    overflow: hidden;
    animation: slideFade 0.3s ease;
    padding: 12px 0;
}

.nav-links.mobile-nav.show {
    display: flex;
}

.nav-links.mobile-nav a {
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #0a66c2;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.nav-links.mobile-nav a:last-child {
    border-bottom: none;
}

.nav-links.mobile-nav a:hover {
    background-color: #e3f2fd;
    color: #084694;
    padding-left: 28px;
}

#thankYouMessage {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#thankYouMessage.show {
    opacity: 1;
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vertical-lines {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 4rem;
}

.vertical-lines::before,
.vertical-lines::after {
    content: '';
    width: 2px;
    height: 290px;
    background-color: #0a66c2;
    position: absolute;
    top: 0;
}

.vertical-lines::before {
    left: calc(50% - 190px);
}

.vertical-lines::after {
    left: calc(50% + 190px);
}

.container {
    text-align: center;
    max-width: 500px;
    width: 85%;
    margin-top: 80px;
    z-index: 2;
}

/* ✅ Welcome font enforced for all devices with better specificity */
.welcome {
    font-family: 'Segoe Script', cursive !important;
    font-size: 2.5rem !important;
    font-weight: bold !important;
    color: rgba(0, 84, 153, 0.95) !important;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.cloud-img {
    width: 240px;
    height: 140px;
    margin: 0 auto;
    display: block;
}

.cloud-box {
    background-color: rgba(0, 84, 153, 0.95);
    border-radius: 35px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contactForm label {
    color: #fff;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
}

#contactForm input,
#contactForm textarea {
    padding: 10px;
    border-radius: 12px;
    border: none;
    background-color: rgba(33, 124, 194, 0.3);
    font-size: 1rem;
    outline: none;
    color: #fff;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#contactForm input:focus,
#contactForm textarea:focus {
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
}

#contactForm textarea {
    resize: vertical;
    min-height: 80px;
}

#contactForm button {
    background-color: rgba(33, 124, 194, 0.3);
    color: #f8f8f8;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    padding: 12px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s ease;
    width: 60%;
    margin: 0 auto;
}

#contactForm button:hover {
    background-color: rgba(33, 124, 194, 0.3);
    transform: scale(1.03);
}

.thanks {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #ffffff;
    background: rgba(10, 102, 194, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: inline-block;
}

/* 🔹 Media Queries */

@media (max-width: 1115px) {
    .top-bar {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .vertical-lines::before {
        left: calc(50% - 140px);
        height: 249px;
        top: 50px;
    }

    .vertical-lines::after {
        left: calc(50% + 140px);
        height: 249px;
        top: 50px;
    }

    /* Ensure welcome font stays consistent on tablet */
    .welcome {
        font-family: 'Segoe Script', cursive !important;
        font-size: 2.5rem !important;
        font-weight: bold !important;
        color: rgba(0, 84, 153, 0.95) !important;
        line-height: 1.2;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 768px) {
    .vertical-lines::before {
        left: calc(50% - 120px);
        height: 240px;
        top: 60px;
    }

    .vertical-lines::after {
        left: calc(50% + 120px);
        height: 240px;
        top: 60px;
    }

    /* Ensure welcome font stays consistent on mobile */
    .welcome {
        font-family: 'Segoe Script', cursive !important;
        font-size: 2.5rem !important;
        font-weight: bold !important;
        color: rgba(0, 84, 153, 0.95) !important;
        line-height: 1.2;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .vertical-lines::before {
        height: 231px;
        top: 70px;
    }

    .vertical-lines::after {
        height: 231px;
        top: 70px;
    }

    /* Ensure welcome font stays consistent on small mobile */
    .welcome {
        font-family: 'Segoe Script', cursive !important;
        font-size: 2.5rem !important;
        font-weight: bold !important;
        color: rgba(0, 84, 153, 0.95) !important;
        line-height: 1.2;
        letter-spacing: 0.5px;
    }
}