/* Base Styles */
:root {
    --primary-color: #4e54c8;
    --secondary-color: #f0f4ff;
    --accent-color: #fb8c00;
    --text-color: #2c3e50;
    --light-text: #fff;
    --dark-bg: #303f9f;
    --card-bg: #fff;
    --button-hover: #3949ab;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--secondary-color);
    position: relative;
}

.logo {
    height: 60px;
}

.desktop-nav ul {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--primary-color);
    font-weight: bold;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--dark-bg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Sidebar for Mobile */
.sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: var(--dark-bg);
    padding: 4rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
}

.sidebar.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    color: var(--light-text);
    font-weight: bold;
    transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, var(--accent-color), var(--secondary-color));
    padding: 5rem 5%;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--dark-bg);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--button-hover);
}

/* Services Section */
.services {
    padding: 4rem 5%;
    text-align: center;
}

.services h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.service-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
    text-align: left;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.learn-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--button-hover);
}

/* Contact Section */
.contact-section {
    padding: 4rem 5%;
    text-align: center;
    background-color: var(--dark-bg);
    color: var(--light-text);
    border-radius: 20px 20px 0 0;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.email-button {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.email-button:hover {
    background-color: #e6bc00;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 2rem 5%;
    text-align: center;
}

.social-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.2);
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--primary-color);
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--dark-bg);
}

.copyright {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 3rem 5%;
    }

    .services,
    .contact-section {
        padding: 3rem 5%;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
} 