/* ---------- design tokens ---------- */
:root {
    --primary: #0A4B6D;
    /* deep teal/navy */
    --accent: #00B4D8;
    /* bright cyan */
    --accent-2: #00A878;
    /* teal */
    --bg: #F8FBFF;
    /* pale background */
    --muted: #6B7280;
    /* muted text */
    --text: #0F1724;
    /* main text */
    --radius: 14px;
    --card-shadow: 0 12px 30px rgba(10, 75, 109, 0.04);
}

/* ---------- reset & base ---------- */
* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
}

/* typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: Poppins, Inter, sans-serif;
    margin: 0 0 .6rem 0
}

p {
    margin: 0 0 1rem 0;
    color: var(--muted)
}

/* ---------- container ---------- */
.container {
    max-width: 1140px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto
}

/* ---------- NAVBAR ---------- */
.site-navbar {
    background: transparent;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1100;
    transition: background .24s ease, box-shadow .24s ease, padding .18s ease;
}

.site-navbar.scrolled {
    background: #fff;
    box-shadow: 0 8px 26px rgba(12, 20, 30, 0.04);
    padding: .6rem 0;
}

.site-navbar .navbar-brand {
    font-family: Poppins, Inter, sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    color: var(--primary);
}

.brand-accent {
    color: var(--accent)
}

.site-navbar .nav-link {
    color: var(--text);
    margin-left: .3rem;
    padding: .35rem .5rem;
}

.site-navbar .nav-link:hover {
    color: var(--primary)
}

.btn-primary-cta {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border: none;
    color: #fff;
    padding: .55rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 8px 26px rgba(0, 180, 216, 0.12);
    transition: transform .16s ease, box-shadow .16s ease;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 180, 216, 0.16);
    color: var(--primary);
}

/* small outline style button */
.btn-outline-cta {
    background: transparent;
    color: var(--primary);
    padding: .5rem .9rem;
    border-radius: 10px;
    border: 1px solid rgba(10, 75, 109, 0.06);
    font-weight: 600;
}

/* ---------- HERO ---------- */
.site-hero {
    padding: 4rem 0;
}

.hero-left {
    padding-right: 2rem;
}

.service-pills {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap
}

.service-pills li {
    background: rgba(10, 75, 109, 0.06);
    color: var(--primary);
    padding: .35rem .6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
}

/* hero typography */
.hero-title {
    font-size: 2rem;
    line-height: 1.04;
    color: var(--primary)
}

.hero-sub {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

/* CTAs */
.hero-ctas {
    display: flex;
    gap: .8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap
}

.hero-meta {
    color: var(--muted);
    font-size: .95rem;
    display: flex;
    gap: .6rem;
    align-items: center;
}

/* hero artwork */
.hero-art {
    background: linear-gradient(180deg, rgba(0, 180, 216, 0.04), rgba(10, 75, 109, 0.02));
    border-radius: var(--radius);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
}

/* decorative dots for rhythm */
.decor-dot {
    position: absolute;
    border-radius: 999px;
    opacity: .12;
}

.dot-1 {
    width: 140px;
    height: 140px;
    right: -30px;
    top: -20px;
    background: var(--accent-2)
}

.dot-2 {
    width: 90px;
    height: 90px;
    left: -30px;
    bottom: -20px;
    background: var(--accent)
}

/* mockup card */
.mockup-card {
    width: 260px;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.98));
    box-shadow: 0 18px 46px rgba(10, 75, 109, 0.06);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform-origin: center;
}

.mockup-top {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}

.mockup-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.bubble {
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.06), rgba(0, 180, 216, 0.02));
    padding: 8px 12px;
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
}

.bubble.alt {
    background: linear-gradient(90deg, rgba(10, 75, 109, 0.06), rgba(10, 75, 109, 0.02));
    color: var(--text)
}

.mockup-footer {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}

/* floating Whatsapp CTA */
.whatsapp-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    box-shadow: 0 12px 32px rgba(0, 180, 216, 0.14);
    text-decoration: none;
}

.whatsapp-fab i {
    font-size: 20px;
}

/* ---------- helpers ---------- */
.muted {
    color: var(--muted)
}

.dot-sep {
    opacity: .6
}

/* ---------- responsiveness ---------- */
@media (min-width:992px) {
    .hero-title {
        font-size: 2.6rem;
    }
}

@media (max-width:991px) {
    .hero-left {
        padding-right: 0;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start
    }

    .mockup-card {
        width: 220px;
    }
}

/* subtle float animation (rhythm) */
@keyframes floatY {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }

    100% {
        transform: translateY(0)
    }
}

.mockup-card {
    animation: floatY 6s ease-in-out infinite
}

/* focus outlines for accessibility */
a:focus,
button:focus,
input:focus {
    outline: 3px solid rgba(0, 180, 216, 0.12);
    outline-offset: 3px;
}

/* END of main.css */

/* ---------- SERVICES ---------- */
.site-section {
    padding: 4rem 0;
}

.section-head {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.section-sub {
    max-width: 600px;
    margin: 0 auto;
    color: var(--muted)
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.4rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 46px rgba(10, 75, 109, 0.08);
}

.icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.16);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--primary);
}

.service-text {
    font-size: .95rem;
}

/* ---------- ABOUT ---------- */
.about-section {
    background: var(--bg);
}

.about-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-img {
    width: 100%;
    display: block;
    transition: transform .4s ease;
}

.about-img-wrap:hover .about-img {
    transform: scale(1.05);
}

.about-content .section-title {
    margin-bottom: 1rem;
}

.about-content .section-sub {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.about-list li {
    margin-bottom: .6rem;
    font-size: .95rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.about-list i {
    color: var(--accent);
    font-size: 1rem;
}

.about-content .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 30px;
    padding: .7rem 1.6rem;
    font-weight: 600;
    transition: background .3s ease;
}

.about-content .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

/* ---------- WHY CHOOSE US / FEATURES ---------- */
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.4rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 46px rgba(10, 75, 109, 0.08);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.06;
    transition: transform .4s ease;
}

.feature-card:hover::before {
    transform: scale(1.2);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--primary);
}

.feature-text {
    font-size: .95rem;
    color: var(--muted);
}

/* fade-up animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 46px rgba(10, 75, 109, 0.08);
}

.testimonial-content {
    font-size: 0.95rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 14px rgba(10, 75, 109, 0.08);
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ======================
   FOOTER SECTION
====================== */
.footer-section {
    background: #0f172a;
    /* same dark blue tone from our theme */
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-section h3.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3b82f6;
    /* same blue accent we use across site */
    margin-bottom: 15px;
}

.footer-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-2);
    /* hover blue accent */
}

.footer-section p {
    font-size: 0.95rem;
    color: #d1d5db;
    margin-bottom: 10px;
}

.footer-section .social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.2rem;
    color: #d1d5db;
    transition: 0.3s;
}

.footer-section .social-icons a:hover {
    color: var(--accent-2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 20px;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Quote Modal Styling (on-brand) */
.quote-modal {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    animation: fadeInUp 0.5s ease;
}

.quote-modal .modal-header {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border-bottom: none;
    padding: 1rem 1.5rem;
}

.quote-modal .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.quote-modal .btn-close {
    filter: brightness(0) invert(1);
}

.quote-modal .modal-body {
    padding: 2rem;
    background: #fff;
}

.quote-modal .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(10, 75, 109, 0.15);
    transition: 0.3s;
}

.quote-modal .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(0, 180, 216, 0.3);
}

.quote-modal .btn-primary {
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

.quote-modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.3);
}

/* Smooth modal animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}