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

/* Loading Spinner */
#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#loading-spinner.hidden {
    opacity: 0;
    visibility: hidden;
}

#loading-spinner .spinner-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading-spinner .spinner-logo {
    width: 80px;
    height: auto;
    position: absolute;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(30, 58, 138, 0.3));
}

#loading-spinner .spinner {
    border-radius: 50%;
    box-sizing: border-box;
    border: 5px solid rgba(135, 206, 250, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loading-spinner .inner {
    border-top: 5px solid #3b82f6;
    border-bottom: 5px solid #3b82f6;
    width: 70px;
    height: 70px;
    margin: -35px;
    -webkit-animation: inner-spin 3s linear infinite;
    animation: inner-spin 3s linear infinite;
}

#loading-spinner .outer {
    border-right: 5px solid #1e3a8a;
    border-left: 5px solid #1e3a8a;
    width: 90px;
    height: 90px;
    margin: -45px;
    -webkit-animation: outer-spin 3s linear infinite;
    animation: outer-spin 3s linear infinite;
}

#loading-spinner .eye {
    width: 50px;
    height: 50px;
    border: none;
    background-color: #87ceeb;
    animation: eye-flash 3s infinite;
}

@-webkit-keyframes inner-spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes inner-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@-webkit-keyframes outer-spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(-180deg); }
}

@keyframes outer-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-180deg); }
}

@keyframes eye-flash {
    0% { background-color: #87ceeb; }
    50% { background-color: rgba(135, 206, 250, 0.3); }
    100% { background-color: #87ceeb; }
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(white 50%, #ffffff 15%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

.top-section {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 60%, #ffffff 100%);
    width: 100vw;
    margin: 0;
    padding: 1.5rem;
    max-width: none;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    min-height: auto;
    z-index: 1000; /* Added to keep nav section above everything */
}

.top-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 640px) {
    body {
        padding: 0 !important;
        margin: 0 !important;
    }
    .top-section {
        margin: 0 !important;
        min-height: unset;
        height: auto;
    }
}

/* Navigation Bar */
.nav-oval {
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 100px;
    box-shadow: 
        0 8px 32px rgba(135, 206, 250, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 0.6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    position: relative;
    z-index: 10000;
}

.logo {
    flex-shrink: 0;
    height: 32px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Typing area */
.typing-container {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 2rem 0 3rem;
}

.typing-text {
    font-size: 1rem;
    color: #1e3a8a;
    font-weight: 500;
    display: inline-block;
    letter-spacing: 0.5px;
}

.cursor {
    color: #87ceeb;
    animation: blink 0.8s infinite;
    font-weight: 600;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
    flex-shrink: 0;
    position: relative;
    z-index: 10001;
}

.service-icon i {
    color: #fff;
}

.menu-btn:hover {
    background: rgba(135, 206, 250, 0.1);
}

.menu-icon {
    width: 24px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    width: 100%;
    height: 2px;
    background: #1e3a8a;
    border-radius: 2px;
}

/* Navigation links (hidden by default). Clicking the burger toggles .active */
.nav-links {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

/* When active show as dropdown on small screens (cornered) */
.nav-links.active {
    display: flex;
    position: absolute;
    top: 64px;
    right: 1rem;
    background: #ffffff;
    border-radius: 10px;
    padding: 0.4rem;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.12);
    flex-direction: column;
    min-width: 160px;
    z-index: 101;
}

.nav-link {
    display: block;
    padding: 0.6rem 1rem;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(135, 206, 250, 0.06);
}

.nav-link.active {
    background: #1e3a8a;
    color: #ffffff;
    border-radius: 999px;
}

/* On desktop, when active, show links inline inside the nav */
@media (min-width: 769px) {
    .nav-links.active {
        position: static;
        top: auto;
        right: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }

    .nav-links {
        display: none;
    }
}

.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(135, 206, 250, 0.1), rgba(30, 58, 138, 0.8));
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 58, 138, 0.15);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    width: 45px;
    height: 45px;
    background: #1e3a8a;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.4;
}

.trust-text strong {
    display: block;
    color: #1e3a8a;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-accent {
    color: #87ceeb;
    position: relative;
}

.hero-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #87ceeb, #1e90ff);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #87ceeb;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-primary {
    background: white;
    color: #1e3a8a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.scroll-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Contact Section */
.contact-section {
    max-width: 1400px;
    margin: -3rem auto 3rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #87ceeb, #1e3a8a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
}

.info-details {
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
}

.info-details a {
    color: #87ceeb;
    text-decoration: none;
    transition: color 0.3s;
}

.info-details a:hover {
    color: #1e3a8a;
}

/* Contact Form */
.form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #87ceeb;
    background: white;
    box-shadow: 0 0 0 3px rgba(135, 206, 250, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #87ceeb, #1e3a8a);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.success-message {
    display: none;
    background: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #a7f3d0;
}

.success-message.show {
    display: block;
}

/* Error Message */
.error-message {
    display: none;
    background: #fee2e2;
    color: #991b1b;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #fecaca;
}

.error-message.show {
    display: block;
}

/* Map Section */
.map-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.map-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e3f2fd, #f8fafc);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.1rem;
    border: 2px dashed #cbd5e1;
}

/* Footer */
 .footer {
        background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
        color: white;
        padding: 4rem 2rem 2rem 2rem;
        margin: 4rem -1.5rem 0 -1.5rem;
        position: relative;
        overflow: hidden;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #87ceeb, #1e3a8a, #87ceeb);
        background-size: 200% 100%;
        animation: shimmer-footer 3s linear infinite;
    }

    @keyframes shimmer-footer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
        padding-bottom: 3rem;
        border-bottom: 2px solid rgba(135, 206, 250, 0.2);
        position: relative;
    }

    .footer-top::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100px;
        height: 2px;
        background: #87ceeb;
        animation: border-slide 3s ease-in-out infinite;
    }

    @keyframes border-slide {
        0%, 100% { left: 0; width: 100px; }
        50% { left: calc(100% - 100px); width: 150px; }
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        animation: fade-in-up 0.6s ease-out backwards;
    }

    .footer-column:nth-child(1) { animation-delay: 0.1s; }
    .footer-column:nth-child(2) { animation-delay: 0.2s; }
    .footer-column:nth-child(3) { animation-delay: 0.3s; }
    .footer-column:nth-child(4) { animation-delay: 0.4s; }

    @keyframes fade-in-up {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .footer-about {
        padding-right: 2rem;
    }

    .footer-logo {
        position: relative;
    }

    .footer-logo img {
        height: 40px;
        width: auto;
        filter: drop-shadow(0 2px 8px rgba(135, 206, 250, 0.3));
    }

    .footer-description {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        font-size: 0.95rem;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .social-link::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(135, 206, 250, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.4s, height 0.4s;
    }

    .social-link:hover::before {
        width: 100%;
        height: 100%;
    }

    .social-link:hover {
        background: linear-gradient(135deg, #87ceeb, #5ba3d0);
        border-color: #87ceeb;
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 8px 20px rgba(135, 206, 250, 0.4);
    }

    .social-link i {
        position: relative;
        z-index: 1;
    }

    .footer-heading {
        font-size: 1.3rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
        position: relative;
        padding-bottom: 0.75rem;
    }

    .footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #87ceeb, transparent);
        border-radius: 2px;
    }

    .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 0.95rem;
        position: relative;
        padding-left: 0;
    }

    .footer-links a::before {
        content: '';
        position: absolute;
        left: -10px;
        width: 0;
        height: 2px;
        background: #87ceeb;
        transition: width 0.3s ease;
        opacity: 0;
    }

    .footer-links a:hover::before {
        width: 20px;
        opacity: 1;
    }

    .footer-links a:hover {
        color: #87ceeb;
        padding-left: 1rem;
    }

    .footer-links a:hover i {
        transform: translateX(5px);
        color: #87ceeb;
    }

    .footer-links i {
        font-size: 0.75rem;
        transition: all 0.3s ease;
    }

    .footer-contact {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .footer-contact li {
        display: flex;
        gap: 1rem;
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.95rem;
        line-height: 1.5;
        transition: all 0.3s ease;
        cursor: default;
    }

    .footer-contact li:hover {
        color: white;
        transform: translateX(5px);
    }

    .footer-contact li:hover i {
        transform: scale(1.2);
        color: #87ceeb;
    }

    .footer-contact i {
        color: #87ceeb;
        width: 20px;
        flex-shrink: 0;
        margin-top: 0.2rem;
        transition: all 0.3s ease;
        filter: drop-shadow(0 0 8px rgba(135, 206, 250, 0.5));
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 2rem;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1rem;
    }

    .footer-copyright p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-copyright p::before {
        content: '©';
        font-size: 1.1rem;
        color: #87ceeb;
    }

    .footer-legal {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .footer-legal a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        position: relative;
    }

    .footer-legal a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: #87ceeb;
        transition: width 0.3s ease;
    }

    .footer-legal a:hover::after {
        width: 100%;
    }

    .footer-legal a:hover {
        color: #87ceeb;
    }

    .footer-legal .separator {
        color: rgba(255, 255, 255, 0.3);
        font-weight: 300;
    }

    /* Footer Responsive */
    @media (max-width: 1024px) {
        .footer-top {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .footer-about {
            grid-column: 1 / -1;
            padding-right: 0;
        }
    }

    @media (max-width: 640px) {
        .footer {
            min-height: unset;
            padding: 0 1.5rem 0 2rem;
        }

        .footer-top {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding-bottom: 2rem;
        }

        .footer-about {
            grid-column: 1;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
    }

/* Partners/Clients Logo Scroll Section */
    .partners-section {
        background: #ffffff;
        padding: 4rem 2rem;
        overflow: hidden;
        margin-top: 3rem;
    }

    .partners-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .partners-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1e3a8a;
        text-align: center;
        margin-bottom: 3rem;
    }

    .logos-scroll {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .logos-scroll::before,
    .logos-scroll::after {
        content: '';
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .logos-scroll::before {
        left: 0;
        background: linear-gradient(to right, #ffffff, transparent);
    }

    .logos-scroll::after {
        right: 0;
        background: linear-gradient(to left, #ffffff, transparent);
    }

    .logos-track {
        display: flex;
        gap: 4rem;
        animation: scroll 30s linear infinite;
        width: max-content;
    }

    .logos-track:hover {
        animation-play-state: paused;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .logo-item {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2rem;
        background: #ffffff;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-width: 160px;
        height: 80px;
        border: 1px solid #e3f2fd;
    }

    .logo-item:hover {
        background: #87ceeb;
        transform: scale(1.05);
    }

    .logo-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    .logo-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

    /* Responsive for Services */
@media (max-width: 768px) {
    .services-section {
        padding: 2rem 1.5rem;
    }

    .services-title {
        font-size: 1.8rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .services-slider {
        gap: 1rem;
    }

    .service-card {
        flex: 0 0 85%;
        min-width: 280px;
    }

    .slider-arrow {
        display: none;
    }

    .progress-track {
        max-width: 200px;
    }

    .quote-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .trust-indicators {
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .trust-item {
        gap: 0.5rem;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .trust-text {
        font-size: 0.85rem;
    }

    .trust-text strong {
        font-size: 0.95rem;
    }
}
/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-oval {
        padding: 0.5rem 1.2rem;
        height: 48px;
    }

    .nav-center {
        padding: 0 1rem 0 1.5rem;
    }

    .nav-title {
        font-size: 0.9rem;
    }

    .company-name {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .contact-section {
        padding: 0 1rem;
        margin: -2rem auto 2rem auto;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .map-section {
        padding: 0 1rem;
    }

    .map-placeholder {
        height: 300px;
    }
}

/* Animation Styles */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title, .hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
    z-index: 1000;
    overflow: hidden;
    border: 2px solid #e3f2fd;
}

.chat-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chat-title h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-status {
    font-size: 12px;
    opacity: 0.9;
}

.chat-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
    transition: transform 0.3s ease;
}

.chat-body {
    display: none;
    max-height: 400px;
    overflow: hidden;
    background: #ffffff;
}

.chat-messages {
    height: 250px;
    overflow-y: auto;
    padding: 16px;
    background: #f8fafc;
}

.chat-message {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    animation: fadeInMessage 0.3s ease-out;
}

.chat-message.bot {
    flex-direction: row;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1e3a8a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.chat-message.user .message-avatar {
    background: #10b981;
}

.message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-message.user .message-content {
    background: #1e3a8a;
    color: white;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.chat-quick-questions {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1e3a8a;
    font-weight: 500;
}

.quick-btn:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-1px);
}

.chat-input-area {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 8px;
    background: white;
}

.chat-input {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: #1e3a8a;
}

.chat-send-btn {
    background: #1e3a8a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send-btn:hover {
    background: #1e40af;
    transform: scale(1.05);
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness for chat */
@media (max-width: 768px) {
    .chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        bottom: 10px;
    }
    
    .chat-messages {
        height: 200px;
    }
    
    .message-content {
        max-width: 200px;
    }
}

/* Enhanced Contact Page Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    gap: 3rem !important;
}

.info-card {
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(135, 206, 250, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #87ceeb, #1e3a8a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15) !important;
    border-color: rgba(135, 206, 250, 0.3) !important;
}

.info-icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 12px rgba(135, 206, 250, 0.3) !important;
}

.info-header {
    margin-bottom: 1.5rem !important;
}

.location-primary {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.location-secondary {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #87ceeb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: #1e3a8a;
}

.email-group,
.phone-group {
    margin-bottom: 1rem;
}

.email-group:last-child,
.phone-group:last-child {
    margin-bottom: 0;
}

.email-link,
.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.email-link:hover,
.phone-link:hover {
    color: #87ceeb;
}

.email-label,
.phone-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #059669;
    font-weight: 500;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-green 2s infinite;
}

.hours-schedule {
    margin-bottom: 1rem;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(135, 206, 250, 0.1);
}

.hours-day:last-child {
    border-bottom: none;
}

.hours-day.closed {
    opacity: 0.6;
}

.day-name {
    font-weight: 600;
    color: #1e3a8a;
}

.day-hours {
    color: #64748b;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.1), rgba(239, 68, 68, 0.1));
    border-radius: 8px;
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 500;
    border-left: 3px solid #ef4444;
}

.card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(135, 206, 250, 0.3), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover .card-decoration {
    transform: scaleX(1);
}

/* Enhanced Form Styles */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #87ceeb, #1e3a8a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(135, 206, 250, 0.3);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #64748b;
    font-size: 1rem;
}

.success-message,
.error-message {
    display: none;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.success-message {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #059669;
}

.error-message {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.message-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(135, 206, 250, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #87ceeb, #1e3a8a);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

.input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1rem;
    z-index: 2;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(135, 206, 250, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #87ceeb;
    box-shadow: 0 0 0 3px rgba(135, 206, 250, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1rem;
}

.textarea-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

.required {
    color: #ef4444;
}

.input-feedback {
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.input-feedback.show {
    opacity: 1;
}

.input-feedback.error {
    color: #ef4444;
}

.input-feedback.success {
    color: #10b981;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #87ceeb, #1e3a8a);
    color: white;
    box-shadow: 0 4px 16px rgba(135, 206, 250, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(135, 206, 250, 0.4);
}

.cta-btn.secondary {
    background: white;
    color: #64748b;
    border: 2px solid rgba(135, 206, 250, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(135, 206, 250, 0.1);
    border-color: #87ceeb;
    color: #1e3a8a;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 2rem;
    margin: 3rem 0;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(135, 206, 250, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.12);
    border-color: rgba(135, 206, 250, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #87ceeb, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: #64748b;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-green {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
}