﻿/* Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.site-header {
    height: 100px; /* or whatever your desired row height is */
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    object-fit: contain;
    display: block;
}

.main-nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .main-nav a:hover {
        color: #5e60ce;
    }

.nav-cta {
    background-color: #5e60ce;
    color: #fff !important;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
}

/* Hero */
.hero.full-screen {
    display: flex;
    align-items: center;
    min-height: 50vh;
    background: linear-gradient(135deg, #eef2ff, #ffffff);
}

.hero-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1 1 500px;
}

    .hero-text h2 {
        font-size: 3rem;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

.hero-image {
    flex: 1 1 400px;
}

.cta-button {
    background-color: #5e60ce;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-block;
}

    .cta-button:hover {
        background-color: #4b50b0;
    }

/* Features */
.features-alt {
    padding: 4rem 0;
    background-color: #f8f9ff;
    text-align: center;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

    .feature-card h3 {
        margin-top: 1rem;
        font-size: 1.3rem;
    }

/* Testimonials */
.testimonials-alt {
    padding: 4rem 0;
    background-color: #fff;
    text-align: center;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #f1f3ff;
    padding: 2rem;
    border-radius: 10px;
    font-style: italic;
}

/* Contact */
.contact-alt {
    padding: 4rem 0;
    background-color: #f8f9ff;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 1rem;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

    .contact-form button {
        background-color: #5e60ce;
        color: white;
        padding: 0.75rem;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
    }

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer h4,
.site-footer h3 {
    margin-bottom: 1rem;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
}

    .site-footer a:hover {
        text-decoration: underline;
    }

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.about-alt {
    padding: 4rem 0;
    background-color: #ffffff;
    text-align: center;
}

.about-subtitle {
    max-width: 800px;
    margin: 1rem auto 2rem;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.about-details ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.about-details li {
    margin-bottom: 1rem;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

    .about-details li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: #5e60ce;
        font-weight: bold;
    }

/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Hide nav on mobile initially */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        display: none;
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }

        .main-nav a {
            margin: 0.5rem 0;
        }

        .main-nav.open {
            display: flex;
        }
}


