html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto Slab', serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #eee;
    line-height: 1.7;
    text-align: center;
}
header {
    background-color: #080808;
    padding: 25px 0;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}
header h1 {
    font-family: 'Source Code Pro', monospace;
    color: #ff6600;
    margin: 0;
    font-size: 3em;
    letter-spacing: -0.02em;
    text-shadow: 0 0 8px rgba(255,102,0,0.8);
}
nav {
   
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}
nav ul li {
   
}
nav ul li a {
    color: #eee;
    text-decoration: none;
    font-family: 'Source Code Pro', monospace;
    font-size: 1.2em;
    transition: color 0.2s ease;
    display: block;
    padding: 10px 0;
}
nav ul li a:hover {
    color: #ff6600;
}
main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5em;
    color: #ddd;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}
.service-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    border-color: #ff6600;
}
.service-card h3 {
    font-family: 'Source Code Pro', monospace;
    font-size: 1.8em;
    color: #ff6600;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}
.service-card p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.service-card ul li {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 1.1em;
}
.service-card ul li:before {
    content: '>';
    color: #ff6600;
    margin-right: 10px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff6600;
    color: #fff;
    font-family: 'Source Code Pro', monospace;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.cta-button:hover {
    background-color: #cc5200;
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

footer {
    background-color: #080808;
    color: #ddd;
    padding: 25px 0;
    text-align: center;
    margin-top: 40px;
    border-top: 2px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
}
footer p {
    font-size: 1.1em;
    letter-spacing: -0.02em;
    margin-right: auto;
    margin-bottom: 0;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    margin-left: auto;
    gap: 30px;
        }
        footer ul li {
           
        }
        footer ul li a {
            color: #ddd;
            font-size: 1.4em;
            transition: color 0.2s ease;
            text-decoration: none;
        }
        footer ul li a:hover {
            color: #ff6600;
        }

/* Keyframes for subtle animation - pulse */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}
.header-animation {
    animation: pulse 2s infinite;
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    header h1{
        font-size: 2.5em;
    }
     .section-title{
        font-size: 2em;
    }
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    header h1{
        margin-bottom: 10px;
    }
    nav ul{
        flex-direction: column;
        gap: 10px;
    }
    nav ul li{
        margin-left: 0;
        margin-top: 0;
    }
    footer{
        flex-direction: column;
        text-align: center;
    }
    footer p{
        margin-bottom: 10px;
        margin-right: 0;
    }
    footer ul{
        margin-left: 0;
        flex-direction: row;
        gap: 20px;
    }
    footer ul li{
        margin-left: 0;
        margin-top: 0;
    }
}