/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #23272f;
    background-color: var(--light-gray);
    overflow-x: hidden;
    font-size: 1.08rem;
    margin-top: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    color: #003a5d;
    letter-spacing: 0.5px;
    margin-bottom: 0.5em;
    text-shadow: 0 1px 2px rgba(255,255,255,0.12);
}

/* Logo styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 72px;
    width: 72px;
    object-fit: contain;
    filter: none;
}

/* Updated color palette */
:root {
    --primary-blue: #00b4e6;
    --accent-blue: #0093c9;
    --primary-gradient: linear-gradient(135deg, #00b4e6 0%, #0093c9 100%);
    --primary-gradient-dark: linear-gradient(135deg, #003e7e 0%, #1ca6c9 100%);
    --dark-gray: #444444;
    --light-gray: #f8f9fa;
}

/* Header and Navigation */
header {
    background: rgba(255,255,255,0.92);
    color: var(--primary-blue);
    padding: 0.2rem 0 0.2rem 0;
    box-shadow: 0 2px 16px rgba(0,180,230,0.08);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

header.scrolled {
    background: #f8fafd;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

nav h1 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.18);
    animation: fadeInDown 1s ease-out;
    color: var(--primary-blue);
    margin-left: 0.5rem;
    white-space: nowrap;
    position: relative;
    top: -10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav li {
    animation: fadeInDown 1s ease-out;
    animation-delay: calc(var(--i) * 0.1s);
}

nav a {
    color: #003a5d;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.13rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255,255,255,0.10);
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    border-radius: 25px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

nav a:hover::before {
    transform: translateX(0);
}

nav a:hover, nav a:focus {
    background: var(--primary-gradient);
    color: #fff;
    transform: translateY(-2px) scale(1.07);
    box-shadow: 0 4px 18px rgba(0,180,230,0.13);
    text-shadow: 0 1px 2px rgba(0,0,0,0.22);
}

nav a span {
    position: relative;
    z-index: 2;
}

/* Main content */
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,180,230,0.85), rgba(0,147,201,0.7)), url('/images/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 0.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,180,230,0.18);
    animation: slideInUp 1s ease-out;
    transform: translateY(30px);
    opacity: 0;
    animation-fill-mode: forwards;
    color: #fff;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: slideInUp 1s ease-out 0.3s;
    transform: translateY(30px);
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--primary-gradient);
    color: #fff;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(0,180,230,0.15);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 0.6s;
    transform: translateY(30px);
    opacity: 0;
    animation-fill-mode: forwards;
    text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover, .btn:focus {
    background: linear-gradient(135deg, #0093c9 0%, #00b4e6 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 8px 32px rgba(0,180,230,0.18);
    text-shadow: 0 1px 2px rgba(0,0,0,0.22);
}

/* Vibrant Section Backgrounds */
.intro {
    background: #fff;
    color: #003a5d;
    border-radius: 1.3rem;
    box-shadow: 0 4px 24px rgba(0,180,230,0.10);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}
.services-section:nth-child(even), .about-section:nth-child(even), .contact-section:nth-child(even) {
    background: linear-gradient(120deg, #f8fafd 0%, #eafaff 100%);
}

/* Card/Service Card with Gradient Border */
.card, .service-card, .team-member {
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 1.3rem;
    box-shadow: 0 4px 32px rgba(0,180,230,0.13);
    position: relative;
}
.card::before, .service-card::before, .team-member::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.3rem;
    padding: 2px;
    background: var(--primary-gradient);
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}
.card > *, .service-card > *, .team-member > * {
    position: relative;
    z-index: 1;
}

/* SVG Wave Backgrounds */
.wave-bg {
    position: absolute;
    left: 0; right: 0; top: 0;
    width: 100%; height: 120px;
    z-index: 0;
    pointer-events: none;
}
.footer-wave-bg {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%; height: 100px;
    z-index: 0;
    pointer-events: none;
}

/* Accent Dividers */
.divider {
    height: 4px;
    width: 60px;
    background: var(--primary-gradient);
    border-radius: 2px;
    margin: 1.5rem auto;
}

/* Modern Button Glow/Shadow */
.btn:hover, .btn:focus {
    box-shadow: 0 8px 32px 0 #00b4e6a0, 0 0 0 4px #eafaff;
    filter: brightness(1.08) saturate(1.1);
}

/* Secondary Button Style */
.btn-secondary {
    background: #fff;
    color: #003a5d;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0,180,230,0.08);
    font-weight: 700;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: var(--primary-gradient);
    color: #fff;
    border-color: var(--accent-blue);
    text-shadow: 0 1px 2px rgba(0,0,0,0.22);
}

/* Accent for Icons */
.icon-accent, .footer-social-icon {
    color: var(--accent-blue) !important;
}

/* Subtle Background Shapes */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #eafaff 0%, #00b4e6 100%);
    opacity: 0.13;
    z-index: 0;
}
.bg-blob {
    position: absolute;
    width: 220px; height: 140px;
    background: radial-gradient(circle at 60% 40%, #00b4e6 0%, #eafaff 100%);
    border-radius: 60% 40% 50% 70% / 60% 40% 60% 40%;
    opacity: 0.10;
    z-index: 0;
}

/* Responsive Tweaks for Colorful Elements */
@media (max-width: 900px) {
    .wave-bg, .footer-wave-bg { height: 60px; }
    .bg-circle, .bg-blob { width: 120px; height: 80px; }
}
@media (max-width: 600px) {
    .wave-bg, .footer-wave-bg { height: 30px; }
    .bg-circle, .bg-blob { width: 60px; height: 40px; }
}

/* Intro Section */
.intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    background: white;
    margin-top: -50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    animation: slideInUp 1s ease-out 0.9s;
    transform: translateY(30px);
    opacity: 0;
    animation-fill-mode: forwards;
    transition: all 0.3s ease;
}

.intro:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.intro h1, .intro h2, .intro h3, .intro h4, .intro h5, .intro h6 {
    color: #003a5d;
    text-shadow: none;
}
.intro p, .intro li, .intro span, .intro strong {
    color: #23272f;
    text-shadow: none;
}

/* Footer */
footer {
    background: #fff;
    color: var(--dark-gray);
    padding: 3rem 1rem 1.2rem 1rem;
    margin-top: auto;
    font-size: 1.1rem;
    position: relative;
    box-shadow: 0 -2px 16px rgba(0,86,166,0.07);
}
.grid-footer {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 1.5rem auto;
    align-items: flex-start;
}
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}
.logo-col {
    align-items: center;
    text-align: center;
}
.footer-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 0.5rem;
}
.footer-brand {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    color: var(--primary-blue);
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin: 1.2rem 0 1.5rem 0;
}
.footer-social-icon {
    font-family: 'FontAwesome', Arial, sans-serif;
    font-size: 1.6rem;
    color: var(--primary-blue);
    background: var(--primary-blue);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    text-decoration: none;
}
.footer-social-icon:hover {
    color: var(--accent-blue);
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 0.5rem;
}
.footer-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1.08rem;
}
.footer-list a:hover {
    color: var(--primary-cyan);
}
.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--primary-cyan);
}
.footer-contact {
    font-size: 1.08rem;
    line-height: 1.7;
}
.footer-contact a {
    color: var(--primary-cyan);
    text-decoration: none;
    word-break: break-all;
}
.footer-contact a:hover {
    text-decoration: underline;
}
.footer-address {
    color: #e0e0e0;
    font-size: 1rem;
    margin: 0.7rem 0 0.7rem 0;
}
.footer-hours {
    color: #e0e0e0;
    font-size: 1rem;
}
.footer-hours strong {
    color: #fff;
    font-weight: 600;
}
footer .footer-copyright {
    text-align: center;
    color: #e0e0e0;
    font-size: 1rem;
    margin-top: 1.5rem;
    opacity: 0.9;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .grid-footer {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-col {
        margin-bottom: 2rem;
    }
}
@media (max-width: 600px) {
    .grid-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-col {
        align-items: center;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .footer-list li {
        margin-bottom: 0.3rem;
    }
    .footer-logo {
        width: 48px;
        height: 48px;
    }
    .footer-brand {
        font-size: 1.3rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .intro {
        margin: -30px 1rem 0 1rem;
        padding: 3rem 1rem;
    }
    
    .intro h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    nav h1 {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

.window-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    animation: sparkle 2s infinite alternate;
}

@keyframes sparkle {
    0% { filter: brightness(1) drop-shadow(0 0 0px var(--primary-cyan)); }
    100% { filter: brightness(1.2) drop-shadow(0 0 12px var(--primary-cyan)); }
}

/* About Page Styles */
.about-section {
    max-width: 900px;
    margin: 3rem auto 2rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,86,166,0.07);
    padding: 3rem 2rem;
    text-align: center;
}
.about-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}
.values {
    margin: 2rem 0;
}
.values h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}
.values ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.values li {
    background: var(--primary-gradient);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,86,166,0.08);
    font-size: 1.1rem;
}
.team-intro {
    margin-top: 2.5rem;
    background: #f8fafd;
    border-radius: 14px;
    padding: 1.5rem 1rem;
    box-shadow: 0 1px 6px rgba(0,86,166,0.05);
}
.team-intro h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Services Page Styles */
.services-section {
    max-width: 900px;
    margin: 3rem auto 2rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,86,166,0.07);
    padding: 3rem 2rem;
    text-align: center;
}
.services-section h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}
.service-list li {
    padding: 0;
    margin: 0;
    background: none;
    box-shadow: none;
    display: block;
    flex: 1 1 280px;
    max-width: 320px;
    min-width: 220px;
}
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #1ca6d9 0%, #22b6e6 100%);
    color: #fff;
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px rgba(0,180,230,0.10);
    padding: 2rem 1.5rem;
    min-height: 180px;
    height: 100%;
    width: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    margin: 0 auto;
    margin-bottom: 2rem;
    cursor: pointer;
    outline: none;
    border: none;
    position: relative;
    gap: 0.7rem;
    box-sizing: border-box;
    text-align: center;
}
.service-card:hover, .service-card:focus {
    background: var(--primary-gradient-dark);
    color: #fff;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,86,166,0.13);
    text-decoration: none;
}
.service-card h3 {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 1px 0 rgba(0,0,0,0.08);
}
.service-card p {
    color: #f7fafd;
    text-shadow: 0 1px 4px rgba(0,0,0,0.13);
}
.service-desc {
    font-size: 1rem;
    color: #e3f3fc;
    font-weight: 400;
}
@media (max-width: 900px) {
    .service-list li {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
    }
    .service-card {
        min-height: 140px;
        padding: 1rem 0.5rem;
    }
}
.cta-services {
    margin-top: 2rem;
}

/* Contact Page Styles */
.contact-section {
    max-width: 900px;
    margin: 3rem auto 2rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,86,166,0.07);
    padding: 3rem 2rem;
    text-align: center;
}
.contact-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
.contact-form {
    max-width: 500px;
    margin: 2rem auto 2.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: #f8fafd;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    box-shadow: 0 1px 6px rgba(0,86,166,0.05);
}
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}
.contact-form label {
    font-weight: 500;
    color: var(--primary-blue);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #d0e3f7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid var(--primary-cyan);
    outline: none;
}
.contact-form button.btn {
    margin-top: 0.5rem;
    width: 100%;
    font-size: 1.1rem;
}
.contact-info {
    margin-top: 2.5rem;
    background: #f8fafd;
    border-radius: 14px;
    padding: 1.5rem 1rem;
    box-shadow: 0 1px 6px rgba(0,86,166,0.05);
}
.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

@media (max-width: 700px) {
    .about-section, .services-section, .contact-section {
        padding: 2rem 0.5rem;
    }
    .service-card {
        min-width: 140px;
        padding: 1rem 0.5rem;
    }
    .contact-form {
        padding: 1rem 0.5rem;
    }
    .service-btn {
        margin-right: 0;
    }
}

.team-profiles {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.team-member {
    background: #f8fafd;
    border-radius: 14px;
    box-shadow: 0 1px 6px rgba(0,86,166,0.07);
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    max-width: 260px;
    min-width: 200px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.team-member:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0,86,166,0.13);
}
.team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    object-fit: cover;
    background: #e3f3fc;
    box-shadow: 0 2px 8px rgba(0,86,166,0.10);
    border: 3px solid #fff;
    display: block;
}
.team-member h4 {
    margin: 0.5rem 0 0.2rem 0;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
}
.team-title {
    color: var(--primary-cyan);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
@media (max-width: 900px) {
    .team-profiles {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

.service-btn {
    display: inline-block;
    background: var(--primary-gradient);
    color: #fff !important;
    padding: 0.6rem 1.3rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    margin-bottom: 0.3rem;
    margin-right: 0.7rem;
    box-shadow: 0 2px 8px rgba(0,86,166,0.10);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    outline: none;
    cursor: pointer;
    vertical-align: middle;
}
.service-btn:hover {
    background: var(--primary-gradient-dark);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px rgba(0,86,166,0.13);
    text-decoration: none;
}

.intro h1, .intro h2, .intro h3, .intro h4, .intro h5, .intro h6 {
    color: #003a5d;
    text-shadow: none;
}
.intro p, .intro li, .intro span, .intro strong {
    color: #23272f;
    text-shadow: none;
}

/* Make about, services, contact sections use blue gradient with white text */
.about-section, .services-section, .contact-section {
    background: linear-gradient(120deg, #1ca6d9 0%, #22b6e6 100%);
    color: #fff;
}
.about-section h1, .about-section h2, .about-section h3, .about-section h4, .about-section h5, .about-section h6,
.services-section h1, .services-section h2, .services-section h3, .services-section h4, .services-section h5, .services-section h6,
.contact-section h1, .contact-section h2, .contact-section h3, .contact-section h4, .contact-section h5, .contact-section h6 {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 1px 0 rgba(0,0,0,0.08);
}
.about-section p, .about-section li, .about-section span, .about-section strong,
.services-section p, .services-section li, .services-section span, .services-section strong,
.contact-section p, .contact-section li, .contact-section span, .contact-section strong {
    color: #f7fafd;
    text-shadow: 0 1px 4px rgba(0,0,0,0.13);
}

/* Feature Cards: Switch blue to white and white to blue */
.service-card, .feature-card, .service-area.card {
    background: linear-gradient(120deg, #1ca6d9 0%, #22b6e6 100%);
    color: #fff;
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px rgba(0,180,230,0.10);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.service-card h3, .feature-card h3, .service-area.card h3 {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 1px 0 rgba(0,0,0,0.08);
}
.service-card p, .feature-card p, .service-area.card p {
    color: #f7fafd;
    text-shadow: 0 1px 4px rgba(0,0,0,0.13);
}

/* Invert: If any cards were previously white, make them blue; if blue, make them white */
.card:not(.intro):not(.about-section):not(.services-section):not(.contact-section):not(.service-card):not(.feature-card):not(.service-area) {
    background: #fff;
    color: #003a5d;
    box-shadow: 0 2px 12px rgba(0,180,230,0.10);
}
.card:not(.intro):not(.about-section):not(.services-section):not(.contact-section):not(.service-card):not(.feature-card):not(.service-area) h3 {
    color: #003a5d;
    text-shadow: none;
}
.card:not(.intro):not(.about-section):not(.services-section):not(.contact-section):not(.service-card):not(.feature-card):not(.service-area) p {
    color: #23272f;
    text-shadow: none;
}

/* Home page description and map feature section color swap (reversed) */
.intro.card {
    min-height: 340px;
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.intro.card h1, .intro.card h2, .intro.card h3, .intro.card h4, .intro.card h5, .intro.card h6 {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 1px 0 rgba(0,0,0,0.08);
}
.intro.card p, .intro.card li, .intro.card span, .intro.card strong {
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.13);
    text-align: center;
}

.intro-hero-text {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.28), 0 1px 8px rgba(0,0,0,0.18) !important;
}

.service-area.card {
    background: linear-gradient(120deg, #1ca6d9 0%, #22b6e6 100%) !important;
    color: #fff !important;
}
.service-area.card h1, .service-area.card h2, .service-area.card h3, .service-area.card h4, .service-area.card h5, .service-area.card h6 {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 1px 0 rgba(0,0,0,0.08);
}
.service-area.card p, .service-area.card li, .service-area.card span, .service-area.card strong {
    color: #f7fafd !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.13);
} 