/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: #1d1d1f; /* Dark gray for text, similar to Apple */
    background-color: #f5f5f7; /* Light gray background */
    scroll-behavior: smooth;
}

.container {
    max-width: 1000px; /* Slightly narrower for a more focused feel */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navbar */
.navbar {
    background-color: #ffffff; /* White background */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Subtle shadow */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar .logo img {
    height: 48px;
    width: auto;
}

.navbar nav ul {
    list-style: none;
    display: flex;
}

.navbar nav ul li {
    margin-left: 35px;
}

.navbar nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 1.05em;
    transition: color 0.3s ease;
    position: relative;
}

.navbar nav ul li a:hover {
    color: #e23e57;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    font-size: 2em;
    background: none;
    border: none;
    cursor: pointer;
    color: #1d1d1f;
}

/* Hero Section */
.hero-section {
    background: #ffffff;
    text-align: center;
    padding: 140px 20px;
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: 4.2em;
    color: #1d1d1f;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-section h1 span {
    color: #e23e57;
}

.hero-section p {
    font-size: 1.5em;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 400;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.cta-buttons .button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-buttons .button.primary {
    background-color: #e23e57;
    color: #fff;
    border: 2px solid #e23e57;
}

.cta-buttons .button.primary:hover {
    background-color: #c02d44;
    border-color: #c02d44;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-buttons .button.secondary {
    background-color: transparent;
    color: #e23e57;
    border: 2px solid #e23e57;
}

.cta-buttons .button.secondary:hover {
    background-color: #e23e57;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* General Section Styling */
.page-section, .solutions-overview, .differentiators {
    padding: 100px 20px;
    background-color: #ffffff;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.page-section h2, .solutions-overview h2, .differentiators h2 {
    font-size: 3.5em;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
}

.page-section h2::after, .solutions-overview h2::after, .differentiators h2::after {
    content: ";
    position: absolute;
    width: 100px;
    height: 5px;
    background-color: #e23e57;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    border-radius: 3px;
}

.page-section h3, .solutions-overview h3, .differentiators h3 {
    font-size: 2.2em;
    color: #1d1d1f;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.page-section p, .solutions-overview p, .differentiators p {
    font-size: 1.2em;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.75;
}

.solutions-overview .solution-cards, .differentiators .feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.solutions-overview .card, .differentiators .card {
    background-color: #fcfcfc;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.solutions-overview .card:hover, .differentiators .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.solutions-overview .card h3, .differentiators .card h3 {
    color: #e23e57;
    font-size: 2em;
    margin-bottom: 15px;
}

.solutions-overview .card p, .differentiators .card p {
    font-size: 1.1em;
    color: #666;
}

/* About Us Specifics */
.page-section ul {
    list-style: none;
    margin-top: 30px;
    padding-left: 0;
}

.page-section ul li {
    margin-bottom: 15px;
    color: #444;
    position: relative;
    padding-left: 35px;
    font-size: 1.15em;
}

.page-section ul li::before {
    content: ">";
    color: #e23e57;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.page-section ul li strong {
    color: #1d1d1f;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 60px auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.contact-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 1.15em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1.1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #e23e57;
    box-shadow: 0 0 0 4px rgba(226, 62, 87, 0.2);
    outline: none;
}

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

.contact-form button.primary {
    width: 100%;
    padding: 18px;
    background-color: #e23e57;
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-size: 1.3em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 20px rgba(226, 62, 87, 0.3);
}

.contact-form button.primary:hover {
    background-color: #c02d44;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 62, 87, 0.4);
}

.contact-info {
    text-align: center;
    margin-top: 50px;
    font-size: 1.25em;
    color: #555;
}

.contact-info p {
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #1d1d1f;
    color: #f5f5f7;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
}

footer p {
    font-size: 1em;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transform: translateX(100%); /* Start off-screen to the right */
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .navbar nav.active {
        transform: translateX(0); /* Slide into view */
    }

    .navbar nav ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .navbar nav ul li a {
        font-size: 1.3em;
        padding: 10px 0;
        display: block;
        color: #1d1d1f;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .hero-section {
        padding: 100px 20px;
    }

    .hero-section h1 {
        font-size: 2.8em;
    }

    .hero-section p {
        font-size: 1.1em;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .button {
        width: 100%;
        margin: 10px 0;
    }

    .page-section, .solutions-overview, .differentiators {
        padding: 70px 15px;
    }

    .page-section h2, .solutions-overview h2, .differentiators h2 {
        font-size: 2.5em;
    }

    .page-section h3, .solutions-overview h3, .differentiators h3 {
        font-size: 1.8em;
    }

    .solutions-overview .card, .differentiators .card {
        padding: 30px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.2em;
    }

    .hero-section p {
        font-size: 1em;
    }

    .page-section h2, .solutions-overview h2, .differentiators h2 {
        font-size: 2em;
    }

    .page-section h3, .solutions-overview h3, .differentiators h3 {
        font-size: 1.6em;
    }

    .solutions-overview .solution-cards, .differentiators .feature-cards {
        grid-template-columns: 1fr;
    }
}



