:root {
    --primary-color: #2d3436;
    --accent-color: #0984e3;
    --bg-color: #ffffff;
    --text-color: #2d3436;
    --secondary-bg: #f5f6fa;
}

/* Add these animation keyframes at the top of your CSS file */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
}

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

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #fff 100%);
    padding-top: 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: popIn 1s ease-out forwards;
    opacity: 0;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero .title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 1rem 0;
}

.hero .tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #636e72;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(9, 132, 227, 0.3);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--secondary-bg);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about p {
    font-size: 1.1rem;
    color: #636e72;
    max-width: 700px;
}

/* Tools Section */
.tools-section {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.tools-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.tools-section a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tools-section a:hover {
    background: white;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-color);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.contact-content {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

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

.submit-button {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(9, 132, 227, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-image img {
        max-width: 200px;
        margin-bottom: 2rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form {
        width: 100%;
    }
}

.hero-text h1 {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

.hero-text .title {
    animation: fadeInRight 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-text .tagline {
    animation: fadeInRight 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-text .cta-button {
    animation: fadeInRight 0.8s ease-out 0.6s forwards;
    opacity: 0;
}