/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #2b2b2b;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Parallax Section */
.parallax {
    background: url('https://www.transparenttextures.com/patterns/asfalt-light.png'), linear-gradient(135deg, #2a2a2a 0%, #1d1d1d 100%);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    position: relative;
}

.parallax::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Utility Classes */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.text-bold { font-weight: bold; }

/* Compact Sticky Header */
header {
    background-color: rgba(58, 58, 58, 0.9);
    padding: 10px 15px;
    border-bottom: 2px solid #ff4b5c;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header:hover {
    background-color: rgba(51, 51, 51, 0.95);
}

#logo {
    max-width: 120px;
    height: auto;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

header:hover #logo {
    transform: scale(1.1);
}

header h1 {
    color: #ff4b5c;
    font-size: 1.5rem;
    margin: 5px 0;
}

/* Navigation Styling */
nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    border-radius: 5px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ff6b6b;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav a:hover {
    color: #fff;
    background-color: #ff6b6b;
    transform: scale(1.1);
}

/* Main Content */
main {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-in-out;
}

/* Section Styling */
section {
    margin: 40px 0;
    padding: 30px;
    background-color: rgba(58, 58, 58, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 75, 92, 0.1), rgba(0, 0, 0, 0.3));
    opacity: 0.8;
    pointer-events: none;
}

/* Headings */
h2 {
    color: #ff4b5c;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* Services Section */
#services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #2b2b2b;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(145deg, #2b2b2b, #3a3a3a);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    margin-top: 0;
    color: #ff4b5c;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-card p {
    margin: 10px 0 0;
    line-height: 1.6;
    color: #e0e0e0;
    font-size: 1rem;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #ff4b5c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #ff6b6b;
    transform: scale(1.05);
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #1d1d1d;
    color: #e0e0e0;
    font-size: 0.9rem;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
}

/* Keyframes for Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    header h1 {
        font-size: 1.4rem;
    }

    nav {
        flex-wrap: wrap;
        gap: 5px;
    }

    nav a {
        padding: 8px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 20px;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 15px;
    }

    nav a {
        padding: 8px;
        font-size: 0.85rem;
    }

    main {
        padding: 20px;
    }

    h2 {
        font-size: 1.6rem;
    }
}

