* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   GLOBAL
========================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}


/* =========================
   NAVIGATION
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: #000;
    color: white;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

nav {
    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img{
    margin-top: 10px;
    margin-bottom: 10px;
    display: block; 
    width: 125px; 
    height: 125px; 
    max-width: 125px; 
    object-fit: contain;
}


/* =========================
   DESKTOP MENU
========================= */

.menu {
    display: flex;

    list-style: none;

    gap: 1.75rem;
}

.menu a { 
    
    display: block; 
    
    padding: 0.5rem 0; 
    
    color: #fff; 

    font-size: 1.1rem;
    
    font-weight: 600; 
    
    transition: color 0.2s ease; 

} 
    
.menu a:hover { 
    
    color: #ec4899; 

}


/* =========================
   HAMBURGER
========================= */

.hamburger {
    display: none;

    width: 44px;
    height: 44px;

    padding: 8px;

    border: none;
    border-radius: 6px;

    background: transparent;

    cursor: pointer;
}

.hamburger span {
    display: block;

    width: 26px;
    height: 3px;

    margin: 5px auto;

    background: white;

    border-radius: 3px;

    transition: 0.25s ease;
}


/* Hamburger becomes X */

.hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================
   HERO
========================= */



.hero {
    position: relative;

    min-height: 90vh;

    overflow: hidden;

    color: white;
}


/* Individual slides */

.hero-slide {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}


/* Active slide */

.hero-slide.active {
    opacity: 1;

    visibility: visible;
}


/* Hero content */

.hero-content { 
    position: relative; 

    z-index: 2; 

    width: 100%; 
    
    text-align: center; 
    
    padding: 7rem 0; }


/* Small business label */

.hero-label { display: inline-block; 
    
    margin-bottom: 1rem; 

    padding: 0.4rem 0.8rem; 

    border: 1px solid rgba(255, 255, 255, 0.5); 

    border-radius: 50px; 

    font-size: 0.85rem; 

    font-weight: bold; 

    letter-spacing: 2px; }


/* Main headline */

.hero h1 { 
    
    max-width: 1000px; 
    
    margin: 0 auto 1.25rem; 
    
    font-size: clamp(2.5rem, 7vw, 5rem); 
    
    line-height: 1.05; }


/* Hero paragraph */

.hero p { max-width: 650px; 
    
    margin: 0 auto 2rem; 
    
    font-size: clamp(1rem, 2.5vw, 1.3rem); }


/* Hero button */

.hero .button { background: #ec4899; 
    
    color: white; 

    padding: 1rem 1.5rem; 

    border-radius: 8px; 

    font-weight: bold; 

    transition: 0.2s ease; } .hero .button:hover { 
    
    background: #db2777; 

    transform: translateY(-2px); 

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); }


/* Slider dots */

.hero-dots {
    position: absolute;

    z-index: 10;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;
}


.hero-dot {
    width: 12px;
    height: 12px;

    padding: 0;

    border: 2px solid white;

    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition: 0.2s ease;
}


.hero-dot.active {
    background: #14b8a6;

    border-color: #14b8a6;

    transform: scale(1.15);
}








/* =========================
   BUTTONS
========================= */

.button { 
    display: inline-block; 
    padding: 0.9rem 1.5rem; 
    border: none; 
    border-radius: 8px; 
    background: white; 
    color: #1d4ed8; 
    font: inherit; 
    font-weight: bold; 
    text-decoration: none; 
    cursor: pointer; 
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }

.button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-button { 
    
    background: #ec4899; 

    color: white; } 

.contact-button:hover { 

    background: #db2777; 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Keyboard accessibility */ 
.button:focus-visible { 
    outline: 3px solid #5eead4; 
    outline-offset: 3px; }



/* =========================
   SECTIONS
========================= */

section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;

    font-size: 2.2rem;

    margin-bottom: 1rem;
}

.section-intro {
    max-width: 650px;

    margin: 0 auto 3rem;

    text-align: center;

    color: #666;
}


/* =========================
   ABOUT
========================= */

#about {
    background: #f8fafc;
}

.about-content {
    max-width: 750px;

    margin: auto;

    text-align: center;
}


/* =========================
   SERVICES
========================= */

.services {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1.5rem;
}

.card {
    padding: 2rem;

    background: white;

    border-radius: 12px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.08);

    text-align: center;
}

.card h3 {
    margin-bottom: 0.75rem;

    color:#0f766e;
}


/* =========================
   CONTACT
========================= */

#contact {
    background: #064e4e;;

    color: white;

    text-align: center;
}

#contact p {
    margin-bottom: 1.5rem;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 1.5rem;

    text-align: center;

    background: #000;

    color: white;

    font-size: 0.8rem;
}


/* ========================= LEAD CAPTURE MODAL ========================= */ 

.modal { 
    position: fixed; 
    inset: 0; z-index: 2000; 
    display: none; 
    align-items: center; 
    justify-content: center; 
    padding: 1rem; 
    background: rgba(0, 45, 45, 0.75); 
    backdrop-filter: blur(4px); } 
    
    /* Show modal */ 
    
    .modal.modal-open { 
        
        display: flex; 
    
    } 
        
        /* Popup */ 
        
        .modal-content { 
            
            position: relative; 
            width: min(550px, 100%); 
            max-height: 90vh; 
            overflow-y: auto; 
            padding: 2.5rem; 
            background: white; 
            color: #222; 
            border-radius: 16px; 
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); } 
            
            
            /* Heading */ 
            
            .modal-content h2 { 
                margin-bottom: 0.5rem; 
                color: #064e4e; } 
                
                
            /* Description */ 
            
            .modal-content > p { 
                margin-bottom: 1.5rem; 
                color: #666; } 
                
                
            /* Close button */ 
            .modal-close { 
                position: absolute; 
                top: 12px; 
                right: 15px; 
                width: 40px; 
                height: 40px; 
                border: none; 
                background: transparent; 
                color: #666; 
                font-size: 2rem; 
                line-height: 1; 
                cursor: pointer; } 
                
            .modal-close:hover { 
                color: #ec4899; } 
                
            
            
            /* ========================= FORM ========================= */ 
            
        #leadForm { 
            display: flex; 
            flex-direction: column; 
            gap: 0.5rem; } 
            
        #leadForm label { 
            margin-top: 0.5rem; 
            font-weight: 600; 
            color: #064e4e; } 
            
        #leadForm input, #leadForm textarea { 
            width: 100%; 
            padding: 0.8rem; 
            border: 1px solid #d1d5db; 
            border-radius: 7px; 
            font: inherit; 
            outline: none; } 
            
        #leadForm input:focus, #leadForm textarea:focus { 
            border-color: #14b8a6; 
            box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.15); } 
            
        #leadForm textarea { 
            resize: vertical; } 
            
        /* Submit button */ 
        
        #leadForm .contact-button { 
            width: 100%; 
            margin-top: 1rem; } 
            
            
        /* ========================= MOBILE ========================= */ 
        
        @media (max-width: 700px) { 
            .modal-content { 
                padding: 2rem 1.25rem; 
                border-radius: 12px; } 
            
        }

/************end of lead capture modal styles******************/









/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    nav {
        min-height: 65px;

        position: relative;
    }


    /* Show hamburger */

    .hamburger {
        display: block;
    }



    /* Hide menu initially */

    .menu {
        position: absolute;

        top: 65px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        gap: 0;

        background: #111827;

        box-shadow:
            0 5px 10px rgba(0, 0, 0, 0.2);
    }


    /* Show menu when JavaScript adds this class */

    .menu.menu-open {
        display: flex;
    }
    
    /*logo image size */

    .logo img { 
        width: 100px; 
        height: 100px; 
        max-width: 100px;
    }

    /* Mobile menu items */

    .menu li {
        width: 100%;

        border-top:
            1px solid rgba(255, 255, 255, 0.08);
    }

    .menu a {
        width: 100%;

        padding: 1rem;

        text-align: center;

        font-size: 1rem; 
    }

    .menu a:hover {
        background: #ec4899;

        color: white;
    }


    /* Hero */

    .hero {
        min-height: 80vh;

        padding: 4rem 0;
    }


    /* Sections */

    section {
        padding: 4rem 0;
    }


    /* Services */

    .services {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 1.5rem;
    }
    }