
/* Hero Section Styling */
.hero-section {
    position: relative; /* Required for the overlay */
    height: 60vh; /* 60% of the viewport height. Adjust as needed (e.g., 400px, 80vh) */
    
    /* REPLACE THIS with your background image path */
    background-image: url('images/about/pexels-julius-silver-240301-753331.jpg'); 
    
    background-size: cover;
    background-position: center;
    
    /* Flexbox to center the content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    color: #ffffff; /* Text color */
}

/* Semi-transparent dark overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% black. Adjust 0.5 for more/less darkness */
    z-index: 1; /* Sits below the content */
}

/* Content container */
.hero-content {
    position: relative; /* Sits on top of the overlay */
    z-index: 2;
    padding: 20px;
}

/* Title styling */
.hero-title {
    font-size: 3.5rem; /* Large font size */
    font-weight: 700;
    margin: 0; /* Remove default margin */
    
    /* Optional: Add a subtle text shadow */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .hero-section {
        height: 40vh; /* Make it shorter on mobile */
    }
    
    .hero-title {
        font-size: 2.5rem; /* Smaller font size for mobile */
    }
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.what-we-do-section {
    padding: 80px 0; /* 80px padding top and bottom */
}

/* --- Top Introductory Text --- */
.intro-text {
    text-align: center;
    max-width: 800px; /* Constrains text width for readability */
    margin: 0 auto 60px auto; /* Centers the block and adds space below */
}

.intro-text .subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2b48;
    display: block;
    margin-bottom: 8px;
}

.intro-text .main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2b48;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.intro-text p strong {
    color: #111;
}

/* --- Two-Column Cards Grid --- */
.cards-grid {
    display: flex;
    flex-wrap: wrap; /* Allows cards to stack on mobile */
    justify-content: center;
    gap: 30px; /* Space between the cards */
}

.info-card {
    flex: 1; /* Each card will grow to fill space */
    min-width: 300px; /* Minimum width before stacking */
    max-width: 500px; /* Maximum width */
    background-color: #ffffff;
}

.info-card h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2b48;
    margin: 0 0 20px 0;
}

.info-card img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Slightly rounded corners for the image */
    margin-bottom: 20px;
}

.info-card p {
    font-size: 0.95rem;
    color: #555;
    text-align: left; /* Ensures paragraph text is left-aligned */
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .intro-text .main-title {
        font-size: 2.2rem;
    }

    .info-card h3 {
        font-size: 1.5rem;
    }
}
