/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Header */
header {
    background: linear-gradient(90deg, #9c97f8, #6a5dfc);
    padding: 20px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar h1 {
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ffd700;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 50px;
    background: linear-gradient(135deg, #89cef0, #9c97f8);
    color: #fff;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 30px;
    background: #fff;
    color: #9c97f8;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #6a5dfc;
    color: #fff;
}

/* Services Section */
.services {
    padding: 80px 50px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
    font-size: 2.5rem;
    color: #9c97f8;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Testimonials Section */
.testimonials {
    background: #f5f5f5;
    padding: 80px 50px;
    text-align: center;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    max-width: 300px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: linear-gradient(90deg, #9c97f8, #6a5dfc);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffd700;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        margin-top: 30px;
    }
    nav ul {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}


/* Mobile menu toggle */
nav ul.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 50px;
    background: #6a5dfc;
    padding: 20px;
    border-radius: 10px;
}
nav ul.active li {
    margin: 10px 0;
}