body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 60%, #23272f 100%);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
    padding: 0;
    box-sizing: border-box;
    
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    position: fixed;
    width: 100%;
    background-color: #1a1a1a;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    flex-wrap: wrap;
    box-sizing: border-box; /* add this */
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo,
.logo:visited,
.logo:active,
.logo:focus,
.logo:hover {
    color: #fff;
    text-decoration: none;
}

ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding-left: 0;
    flex-wrap: wrap;
    margin-right: 24px; /* add this */
    flex-shrink: 0;     /* add this */
}

ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

ul li a:hover {
    color: #ccc;
}

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    padding-top: 100px;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 20px;
}


.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1565c0;
}
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav {
        flex-direction: row;
        align-items: center;
        padding: 15px 20px;
        position: fixed;
        width: 100%;
        z-index: 1002;
    }

    .hamburger {
        display: block;
        z-index: 1003;
    }

    ul {
        display: none;
        flex-direction: column;
        gap: 20px;
        width: 100vw;
        background: #1a1a1a;
        position: absolute;
        left: 0;
        top: 56px; /* Height of your nav bar */
        padding: 24px 0 24px 24px;
        z-index: 1001;
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        border-radius: 0 0 12px 12px;
        transition: max-height 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }
    ul.active {
        display: flex;
        max-height: 300px; /* Adjust as needed */
    }

    /* Overlay for dimming background */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.4);
        z-index: 1001;
    }
    .menu-overlay.active {
        display: block;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }
    .btn {
        width: 90%;
        font-size: 1rem;
        padding: 10px 0;
    }
    header {
        padding-top: 0;
        min-height: calc(100vh - 56px); /* Adjust 56px if your nav is taller */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 24px 12px 32px 12px;
        text-align: center;
        gap: 24px; /* Even spacing between children */
    }
    h1 {
        margin: 0 0 12px 0;
        font-size: 2rem;
    }
    p {
        margin: 0 0 12px 0;
        font-size: 1rem;
    }
    .buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .btn {
        width: 90%;
        max-width: 320px;
        font-size: 1rem;
        padding: 12px 0;
    }
    header.section {
        padding-top: 72px !important;  /* Adjust this value to match or slightly exceed your nav height */
        padding-bottom: 16px;
        text-align: center;
    }
    .about-content {
        padding: 0 12px;
        max-width: 100%;
        margin: 0 auto;
    }
    .about-content h2 {
        text-align: left;
        margin-top: 32px;
        margin-bottom: 12px;
        font-size: 1.1rem;
    }
    .about-content p,
    .about-content ul {
        text-align: left;
    }
}

header.section {
    margin-top: 0 !important;
    padding-top: 80px !important;   /* Adjust this value for your preference (e.g., 64px, 80px, 96px) */
    padding-bottom: 24px;
    min-height: unset !important;
    height: unset !important;
    text-align: center;
}

header.section h1 {
    margin-bottom: 8px;
}

header.section .subtitle {
    font-size: 1rem;
    color: #90caf9; /* Subtle accent color */
    margin-bottom: 16px;
    margin-top: 0;
    font-weight: 500;
}

.section {
    padding-top: 24px;
    padding-bottom: 24px;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 0;
}
.service-card {
    background: #232323;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 28px 24px;
    text-align: left;
    transition: box-shadow 0.2s;
    border-left: 4px solid #222; /* Or another muted accent color */
}
.service-card:hover {
    box-shadow: 0 4px 16px rgba(25,118,210,0.12);
}
.service-card h2 {
    margin-top: 0;
    color: #fff;            /* Change heading color to white */
    font-size: 1.3rem;
}
@media (max-width: 768px) {
    .services-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 8px 0;
    }
    .service-card {
        width: 100%;
        box-sizing: border-box;
        padding: 16px 8px;
    }
    .service-card h2 {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
}

.section.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 48px auto 0 auto;
    padding-bottom: 48px;
}

.section.cta .btn {
    margin-top: 24px;
    margin-left: 0;
    margin-right: 0;
    display: inline-block;
}

@media (max-width: 768px) {
    header.section {
        padding-top: 100px;   /* Increase this value if needed */
        padding-bottom: 16px;
        min-height: unset !important;
        height: unset !important;
        text-align: center;
        display: block;
    }
}
