/* --- Step 1: Import the Google Font --- */
/* This must be at the very top of the file */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* --- Step 2: Apply the font to the whole page --- */
body {
    font-family: 'Inter', sans-serif; /* This sets the new font */
    margin: 0; /* Good practice to reset default browser margins */
    padding: 0;
}

/* --- Hero Section Styles (From Before) --- */

/* The main container for the hero section */
.hero-section {
    background-color: #1a202c; /* A dark, modern background */
    color: #ffffff; /* White text for high contrast */
    padding: 100px 20px; /* Generous vertical padding, some side padding */
    text-align: center; /* Center-aligns all the text */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* A container to control the width of the content */
.hero-content {
    max-width: 800px; /* Prevents the text from becoming too wide on large screens */
}

/* The main headline (H1) */
.hero-headline {
    font-size: 3rem; /* Large, impactful font size */
    font-weight: 700; /* We imported weight 700 for this */
    margin-bottom: 20px;
    line-height: 1.2; /* Spacing between lines of the headline */
}

/* The descriptive sub-headline (paragraph) */
.hero-subheadline {
    font-size: 1.25rem;
    color: #e2e8f0; /* A slightly softer white for the subtext */
    margin-bottom: 40px; /* Space above the button */
    line-height: 1.6;
    font-weight: 400; /* We imported weight 400 for this */
}

/* The Call-to-Action (CTA) button */
.hero-cta-button {
    background-color: #007bff; /* A vibrant blue for the primary action */
    color: #ffffff;
    padding: 15px 30px; /* Button size */
    border-radius: 8px; /* Rounded corners */
    text-decoration: none; /* Removes the default underline from the link */
    font-size: 1rem;
    font-weight: 600; /* We imported weight 600 for this */
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block; 
}

/* The hover effect for the button */
.hero-cta-button:hover {
    background-color: #0056b3; /* A darker blue on hover */
    transform: translateY(-2px); /* Lifts the button slightly */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
}

/* Media query for smaller screens (e.g., mobile phones) */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.25rem; /* Slightly smaller headline on mobile */
    }

    .hero-subheadline {
        font-size: 1rem; /* Smaller sub-headline */
    }

    .hero-section {
        padding: 80px 20px; /* Adjust padding for smaller screens */
    }
}
/* --- Core Capabilities Section --- */

.capabilities-section {
    background-color: #f8f9fa; /* A very light gray background to contrast the dark hero */
    color: #1a202c; /* Dark text for readability */
    padding: 80px 20px;
    text-align: center;
}

.capabilities-content {
    max-width: 1100px; /* A bit wider to accommodate columns */
    margin: 0 auto; /* Centers the content */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.15rem;
    color: #4a5568; /* A slightly softer dark color */
    max-width: 800px;
    margin: 0 auto 50px auto; /* Center it and add space below */
    line-height: 1.6;
}

/* This is the CSS Grid for your 3 columns */
.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Creates three equal columns */
    gap: 30px; /* Space between the cards */
    text-align: left; /* Reset text-align for the cards */
}

.capability-card {
    background-color: #ffffff; /* White cards */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px); /* Lifts the card on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */
}

.capability-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: #0056b3; /* Use the blue from your button for titles */
}

.capability-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Media Query for mobile */
@media (max-width: 992px) {
    .capabilities-grid {
        /* Stack the cards on top of each other instead of 3 columns */
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}