
/* 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/About-us-1-scaled.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 to center content and set max-width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Section Styling */
.about-section {
    background-color: #f8f9fa; /* Light grey background from image */
    padding: 80px 0; /* 80px padding top and bottom */
}

/* Two-column grid layout */
.about-grid {
    display: flex;
    flex-wrap: wrap; /* Allows columns to stack on mobile */
    gap: 40px; /* Space between the two columns */
    align-items: flex-start; /* Aligns columns to the top */
}

/* Left Column (40%) */
.about-left {
    flex: 2; /* Takes up 2 parts of the space */
    min-width: 300px; /* Minimum width before wrapping */
}

/* Right Column (60%) */
.about-right {
    flex: 3; /* Takes up 3 parts of the space */
    min-width: 300px;
}

/* Text Styling */
.subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2b48; /* Dark navy blue/black */
    line-height: 1.2;
    margin: 0 0 25px 0;
}

.secondary-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2b48;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.about-right p {
    font-size: 1rem;
    color: #555; /* Dark grey for body text */
    margin: 0 0 20px 0;
}

.about-right strong {
    color: #111; /* Makes bolded text slightly darker */
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 10px; /* Space between icons */
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px; /* Slightly rounded corners */
    text-decoration: none;
    color: #ffffff;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.85;
}

.social-link.facebook { background-color: #3b5998; }
.social-link.twitter  { background-color: #1da1f2; }
.social-link.youtube  { background-color: #ff0000; }

/* Responsive: Stacks columns on screens smaller than 900px */
@media (max-width: 900px) {
    .about-grid {
        flex-direction: column; /* Stack columns */
    }
    
    .main-title {
        font-size: 2.2rem;
    }

    .secondary-title {
        font-size: 1.5rem;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-section {
    padding: 60px 0; /* Vertical padding for each section */
}

/* --- Section 1: "Numbers Speak" Styles --- */
.stats-grid {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.stats-text {
    flex: 1;
    min-width: 280px;
}

.stats-text .subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2b48;
}

.stats-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2b48;
    margin: 5px 0 0 0;
    line-height: 1.2;
}

.stats-numbers {
    flex: 1.5;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    min-width: 300px;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4a5a76;
    display: block;
}

.stat-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 60px;
}

/* --- Section 2: "Mission/Vision/Values" Styles --- */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a2b48;
    max-width: 900px;
    margin: 0 auto 50px auto; /* center, with 50px margin bottom */
    line-height: 1.4;
}
.divider {
  /* This removes the default 3D border */
  border: none; 
  
  /* This creates the thin line */
  height: 1px;
  
  /* This is a light gray, just like the image */
  background-color: #e0e0e0; 
  
  /* This adds space above and below the line */
  margin: 3rem 0;
}

/* This is the CSS for your h2, for centering */
.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  max-width: 900px; /* Limits width */
  margin: 0 auto; /* Centers the text block */
  line-height: 1.4;
}
.values-grid {
    display: grid;
    /* Creates 3 responsive columns */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.value-card {
    background-color: #f0f0f0; /* Slightly darker grey for the card */
    border-radius: 12px;
    padding: 30px;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2b48;
    margin: 0 0 15px 0;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px; /* Space for the bullet */
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #333; /* Darker bullet */
}

.values-list li strong {
    color: #111; /* Make the bolded word darker */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .stats-grid {
        justify-content: center;
        text-align: center;
    }

    .stats-numbers {
        flex-basis: 100%; /* Makes numbers take full width */
        justify-content: space-around;
    }
    
    .stats-text h2 {
        font-size: 2.2rem;
    }

    .stat-item .number {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-numbers {
        flex-direction: column; /* Stack stats vertically */
        gap: 30px;
    }
}
