/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

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

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.desktop-menu ul {
    display: flex;
    gap: 30px;
}

.desktop-menu a {
    color: #1a202c;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.desktop-menu a:hover {
    color: #3b82f6;
}

.mobile-menu {
    display: none;
}

.mobile-menu .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu img {
    width: 30px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    right: 20px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav li {
    list-style: none;
    margin: 10px 0;
}

.mobile-nav a {
    color: #1a202c;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    background: linear-gradient(135deg, #e5e7eb 0%, #fff 100%);
}

.hero-content {
    max-width: 50%;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3b82f6;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2563eb;
}

.hero-image {
    max-width: 45%;
    height: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #1a202c;
    margin-bottom: 50px;
}

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

.service-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
}

/* Footer */
footer {
    background-color: #1a202c;
    color: #e5e7eb;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-info p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-info i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-image {
        max-width: 80%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* About Section - GenAI Benefits */
    .genai-benefits {
        list-style: none;
        padding: 20px 0;
        margin-bottom: 40px;
    }

    .genai-benefits li {
        font-size: 16px;
        color: #4a5568;
        margin-bottom: 15px;
        padding-left: 20px;
        position: relative;
    }

    .genai-benefits li::before {
        content: "•";
        color: #3b82f6;
        position: absolute;
        left: 0;
    }

    /* About Intro Section (Main Content) */
    .about-intro {
        padding: 80px 0;
        background-color: #fff;
    }

    /* Values Section - Separate Section with Dark Background */
    .values-section {
        padding: 60px 0;
        background-color: #1a202c;
        /* Dark background to match the card design */
        color: #e5e7eb;
    }

    .values-section h2 {
        font-size: 36px;
        font-weight: 700;
        text-align: center;
        color: #fff;
        margin-bottom: 40px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 20px;
    }

    .value-card {
        background: #2d3748;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
        text-align: center;
    }

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .value-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        margin: 10px 0 5px;
    }

    .value-card p {
        font-size: 14px;
        color: #e5e7eb;
        margin-bottom: 10px;
    }

    .value-image {
        width: 100%;
        height: 120px;
        /* Smaller image height */
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    /* Responsive Adjustments for Values Section */
    @media (max-width: 768px) {
        .values-section {
            padding: 40px 0;
        }

        .values-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .value-card {
            padding: 10px;
        }

        .value-image {
            height: 100px;
            /* Even smaller on mobile */
        }

        .value-card h3 {
            font-size: 18px;
        }

        .value-card p {
            font-size: 13px;
        }
    }

    /* Header Brand Styling */
    .header-brand {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .brand-name {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 24px;
        color: #3b82f6;
        /* A striking blue, similar to tech branding */
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

    .brand-name:hover {
        color: #2563eb;
        /* Darker blue on hover for emphasis */
    }

    /* Responsive Adjustments for Mobile */
    @media (max-width: 768px) {
        .header-brand {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
        }

        .brand-name {
            font-size: 18px;
            /* Smaller text on mobile */
        }
    }
}