/* Enhanced with more gradients, color accents, and lively hover effects */

:root {
    --primary: #0093e9;
    --primary-dark: #005fa3;
    --accent: #00eaff;
    --accent2: #f9d923;
    --bg: #f7fbfd;
    --alt-bg: #e3f6fc;
    --text: #1a2a36;
    --muted: #6c7a89;
    --card-bg: #fff;
    --border-radius: 20px;
    --shadow: 0 4px 24px rgba(0, 147, 233, 0.09);
    --gradient: linear-gradient(100deg, #0093e9 0%, #80d0c7 100%);
    --gradient-accent: linear-gradient(90deg, #00eaff 0%, #f9d923 100%);
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

html {
  scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
}

.main-header {
    background: var(--gradient);
    color: #fff;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow);
    padding: 10px 0 6px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: hidden;
    min-height: unset;
}

.main-header::before {
    content: "";
    position: absolute;
    left: -20vw;
    top: -80px;
    width: 140vw;
    height: 220px;
    background: radial-gradient(circle at 60% 40%, var(--accent2) 0%, var(--primary) 60%, transparent 100%);
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}

.header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 147, 233, 0.10);
    margin-bottom: 0;
    margin-right: 12px;
}

.logo-link {
    display: inline-block;
}

.header-text {
    flex: 1;
    text-align: left;
}

.header-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    color: #fff;
    text-shadow: none;
}

.header-text .tagline {
    font-size: 0.95rem;
    color: var(--accent2);
    margin: 2px 0 0 0;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: none;
}

.main-header nav ul {
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.10);
    padding: 4px 14px;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 147, 233, 0.08);
    margin: 0;
    list-style: none;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.main-header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    padding: 6px 12px;
    border-radius: 18px;
    transition: background 0.2s, color 0.2s;
}

.main-header nav a:hover, .main-header nav a:focus {
    background: var(--accent2);
    color: var(--primary-dark);
}

.nav-toggle {
    display: none;
}

.section {
    padding: 56px 0;
    background: var(--bg);
    position: relative;
    z-index: 1;
}

.alt-bg {
    background: var(--alt-bg);
}

.section-flex {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-flex.reverse {
    flex-direction: row-reverse;
}

.section-img {
    width: 340px;
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    border: 4px solid var(--primary);
    background: var(--alt-bg);
    transition: box-shadow 0.3s, border 0.3s;
}
.section-img:hover {
    box-shadow: 0 8px 32px var(--primary-dark);
    border: 4px solid var(--accent2);
}

h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--primary) 40%, var(--accent2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sticker {
    font-size: 1.3em;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px #00eaff88);
}

ul {
    padding-left: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    justify-content: center;
    margin-top: 24px;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 24px 18px;
    width: 220px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 
        transform 0.2s, 
        box-shadow 0.2s, 
        background 0.3s;
    position: relative;
    border: 2px solid transparent;
}
.card:hover {
    transform: translateY(-8px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px var(--primary-dark);
    background: var(--gradient-accent);
    border: 2px solid var(--primary-dark);
}

.service-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0, 147, 233, 0.10);
    border: 2px solid var(--accent2);
    background: var(--alt-bg);
    transition: border 0.3s;
}
.card:hover .service-img {
    border: 2px solid var(--primary-dark);
}

.card h3 {
    margin: 8px 0 6px 0;
    color: var(--primary);
    font-size: 1.08rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.card p {
    font-size: 0.97rem;
    color: var(--muted);
    text-align: center;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.08rem;
}

.why-list li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    transition: color 0.2s;
}
.why-list li:before {
    content: "✔";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    transition: color 0.2s;
}
.why-list li:hover,
.why-list li:hover:before {
    color: var(--accent2);
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
}
.clients-logos img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background: var(--alt-bg);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 147, 233, 0.07);
    padding: 8px;
    margin-bottom: 10px;
    border: 2px solid var(--primary);
    transition: border 0.3s, box-shadow 0.3s, transform 0.2s;
    display: block;
}
.clients-logos img:hover {
    border: 2px solid var(--accent2);
    box-shadow: 0 4px 16px var(--primary-dark);
    transform: scale(1.07);
}
@media (max-width: 900px) {
    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .clients-logos img {
        width: 60px;
        height: 60px;
    }
}

.testimonials {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 18px;
}

.testimonials blockquote {
    background: var(--alt-bg);
    border-left: 5px solid var(--primary);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 22px 18px 18px 28px;
    font-size: 1.08rem;
    color: var(--text);
    max-width: 350px;
    position: relative;
    margin: 0;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.testimonials blockquote:hover {
    border-left: 5px solid var(--accent2);
    box-shadow: 0 8px 32px var(--primary-dark);
}

.author {
    display: block;
    margin-top: 12px;
    color: var(--primary-dark);
    font-size: 0.97rem;
    font-style: italic;
}

.contact-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-img {
    width: 260px;
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    border: 3px solid var(--primary);
    background: var(--alt-bg);
    transition: border 0.3s, box-shadow 0.3s;
}
.contact-img:hover {
    border: 3px solid var(--accent2);
    box-shadow: 0 8px 32px var(--primary-dark);
}

.button {
    background: var(--gradient);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 18px;
    transition: 
        background 0.3s, 
        color 0.3s, 
        transform 0.2s,
        box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 147, 233, 0.10);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}
.button:hover {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 16px var(--primary-dark);
}

footer {
    text-align: center;
    padding: 18px 10px;
    background: var(--gradient);
    color: white;
    font-size: 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    margin-top: 40px;
    letter-spacing: 0.5px;
    box-shadow: 0 -2px 12px rgba(0, 147, 233, 0.10);
}

/* Gallery grid styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}
.gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,147,233,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 8px 32px var(--primary-dark, #005fa3);
    z-index: 2;
}
.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.1) 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 12px 8px 12px;
    border-radius: 0 0 14px 14px;
    text-align: left;
    letter-spacing: 0.5px;
    opacity: 0.92;
    pointer-events: none;
    transition: background 0.2s;
}

/* About team section styles */
.about-team-images {
    display: flex;
    gap: 18px;
    margin-top: 18px;
}
.team-img-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-img-block img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,147,233,0.13);
    border: 3px solid var(--primary);
    background: #fff;
    margin-bottom: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.team-img-block img:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 8px 24px var(--primary-dark, #005fa3);
    border-color: var(--accent2);
}
.team-caption {
    font-size: 0.98rem;
    color: var(--primary-dark);
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
}

/* Landing hero section styles */
.landing-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f6fc 0%, #b6e0fe 100%);
    box-shadow: 0 8px 32px rgba(0,147,233,0.07);
}
.landing-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, #0093e922 0%, transparent 70%),
                radial-gradient(circle at 20% 80%, #80d0c733 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}
.landing-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a2a36;
    padding: 48px 10px 36px 10px;
}
.landing-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 1px;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,147,233,0.07);
}
.brand-highlight {
    color: #0093e9;
    background: linear-gradient(90deg, #0093e9 30%, #80d0c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.landing-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 28px;
    color: #1a2a36;
    text-shadow: 0 2px 8px #b6e0fe55;
}
.landing-cta.button {
    font-size: 1.08rem;
    padding: 12px 32px;
    border-radius: 25px;
    background: linear-gradient(90deg, #0093e9 0%, #80d0c7 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 16px #0093e933;
    border: none;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}
.landing-cta.button:hover {
    background: linear-gradient(90deg, #80d0c7 0%, #0093e9 100%);
    color: #23223a;
    transform: scale(1.05);
}

@media (max-width: 700px) {
    .landing-title {
        font-size: 1.3rem;
    }
    .landing-subtitle {
        font-size: 1rem;
    }
    .landing-hero-content {
        padding: 28px 4px 18px 4px;
    }
}

/* Responsive adjustments */
@media (max-width: 1000px) {
    .container {
        padding: 0 8px;
    }
    .section-flex, .contact-flex {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .section-flex.reverse {
        flex-direction: column-reverse;
    }
    .services-grid {
        gap: 16px;
    }
}

@media (max-width: 700px) {
    .main-header {
        padding: 14px 0 6px 0;
    }
    .logo {
        width: 48px;
        height: 48px;
    }
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .logo {
        margin-right: 0;
        margin-bottom: 4px;
    }
    .header-text {
        text-align: left;
        width: 100%;
    }
    .header-text h1 {
        font-size: 1.1rem;
    }
    .header-text .tagline {
        font-size: 0.95rem;
    }
    .main-header nav ul {
        flex-direction: column;
        gap: 0;
        background: rgba(255,255,255,0.97);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 8px 32px rgba(0, 147, 233, 0.13);
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        z-index: 999;
    }
    .main-header nav ul.open {
        max-height: 400px;
        padding: 8px 0;
    }
    .main-header nav a {
        color: var(--primary-dark);
        display: block;
        padding: 12px 0;
        font-size: 1.05rem;
        border-radius: 0;
        background: none;
        text-align: left;
    }
    .main-header nav a:hover, .main-header nav a:focus {
        background: var(--accent2);
        color: var(--primary-dark);
    }
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
        z-index: 1000;
    }
    .section {
        padding: 24px 0;
    }
    .section-img, .contact-img, .map-embed {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: auto;
    }
    .clients-logos img {
        width: 50px;
        height: 30px;
    }
    .testimonials {
        flex-direction: column;
        gap: 10px;
    }
    .services-grid {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    .card {
        width: 100%;
        min-width: 0;
    }
}

/* Ensure map is responsive */
.map-embed {
    width: 320px;
    max-width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    margin-top: 12px;
}
.map-embed iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}
@media (max-width: 900px) {
    .map-embed { width: 100%; }
}

/* Brand link styles */
.brand-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.brand-link:hover,
.logo-link:hover .logo {
    color: var(--primary);
    filter: brightness(1.1) drop-shadow(0 2px 8px #0093e955);
}