
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e; /* Dark background */
    color: #e0e0e0; /* Light text */
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #16213e; /* Slightly darker than body */
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #e94560; /* Accent color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #0f3460;
}

.navbar nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar nav ul li {
    margin-left: 30px;
}

.navbar nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e94560;
    transition: width 0.3s ease;
}

.navbar nav ul li a:hover::after {
    width: 100%;
}

.navbar nav ul li a:hover {
    color: #e94560;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517457375823-1d7a8d5f2f5c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    text-align: center;
    padding: 150px 0;
    color: #ffffff;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #0f3460);
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    opacity: 0.9;
}

.section-padded {
    padding: 80px 0;
    text-align: center;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: #e94560;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(to right, #e94560, transparent);
    bottom: -15px;
    left: 20%;
    border-radius: 5px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: #16213e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.card h4 {
    color: #0f3460; /* Lighter accent for headings */
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.card p {
    font-size: 1.1rem;
    color: #c0c0c0;
}

.bg-gradient {
    background: linear-gradient(135deg, #16213e, #0f3460);
    color: #ffffff;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: background-color 0.3s ease;
}

.service-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.service-item h4 {
    color: #e94560;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.service-item p {
    font-size: 1.1rem;
}

.testimonial-card {
    background-color: #16213e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 30px auto;
    max-width: 700px;
    font-style: italic;
    color: #c0c0c0;
    text-align: center;
}

.testimonial-card p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card span {
    font-weight: 600;
    color: #0f3460;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 40px auto;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    background-color: #2e3b5e;
    border: 1px solid #0f3460;
    padding: 15px;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
    color: #a0a0a0;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.3);
    outline: none;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    margin-top: 40px;
    font-size: 1.1rem;
    color: #c0c0c0;
}

footer {
    background-color: #16213e;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    border-radius: 15px 15px 0 0;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
    }

    .navbar nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar nav ul li {
        margin: 0 15px 10px 15px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 2rem;
    }

    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }

    .card, .service-item {
        margin: 0 20px;
    }
}
