/* Base reset & globals */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary: #1e73be;
    --primary-dark: #15548a;
    --accent: #f8b400;
    --bg-light: #f5f5f5;
    --text-dark: #222;
    --text-muted: #666;
    --header-height: 60px;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}


/* Layout container */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & navigation */
header {
    background-color: #ffffff; /* White header */
    color: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}


.navbar {
    background-color: #ffffff; /* White header */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;       /* or var(--header-height) if you’re using that */
}


.navbar-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo img {
    height: 58px;   /* tweak this if you want it bigger/smaller */
    width: auto;
    display: block;
}

.navbar-menu {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu a {
    color: #111;
}

.navbar-menu a:hover {
    color: #1e73be;
    border-bottom-color: #1e73be;
}

/* Mobile nav (simple version: stack links) 
@media (max-width: 640px) {
    .navbar {
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 0.5rem 0;
    }

    .navbar-menu {
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }
}
*/
/* Hero section */
.hero {
    background: linear-gradient(135deg, #111 0%, #333 40%, #000 100%);
    color: #fff;
    padding: 3rem 0 3.5rem;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    font-size: 2rem;
    margin: 0;
}

.hero p {
    margin: 0.5rem 0 1.5rem;
    max-width: 32rem;
    color: #ddd;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero-side {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background-color: rgba(0, 0, 0, 0.55);
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-ghost {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section:nth-of-type(even) {
    background-color: var(--bg-light);
}

.section-title {
    margin: 0 0 0.5rem;
    font-size: 1.7rem;
}

.section-subtitle {
    margin: 0 0 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
}

.service-card {
    border-radius: 0.75rem;
    border: 1px solid #e2e2e2;
    padding: 1.5rem 1.25rem;
    background-color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
}

.service-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}

.service-card p {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact & info */
.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-list li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    text-align: center;
}

/* Responsive breakpoints */
@media (max-width: 640px) {
    .navbar {
        
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.5rem 0;
    }

    .navbar-logo {
        margin-bottom: 0.5rem;
    }

    .navbar-menu {
        background: #f5f7fa;
        padding: 0.5rem 0;
        /**border-radius: 8px;**/
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
}




@media (min-width: 768px) {
    .hero-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-main,
    .hero-side {
        flex: 1;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-side {
        margin-top: 0;
        max-width: 18rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 2.7rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Slideshow */
.slideshow {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    background: #000;              /* makes photos pop */
    color: #fff;
}

.slideshow-inner {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    display: block;
}

.slide-caption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.6rem 0.9rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 999px;
    font-size: 0.9rem;
    max-width: 80%;
}

/* Prev / next buttons */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.4rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.slide-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slide-nav.prev {
    left: 10px;
}

.slide-nav.next {
    right: 10px;
}

/* Dots */
.slide-dots {
    position: absolute;
    left: 50%;
    bottom: 0.75rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
}

.slide-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.slide-dots .dot.active {
    background: #1e73be;
    transform: scale(1.2);
}

@media (max-width: 640px) {
    .slide-caption {
        font-size: 0.8rem;
        max-width: 90%;
    }

    .slide-nav {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
}

