﻿
/* Hero Section Styles */
.hero-section {
    background-image: url('/lib/images/ldrteam.webp'); /* replace with your image */
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    padding: 12px 25px;
    background-color: #ff6b00;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #e65a00;
    }
/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*===============ceo section==================*/

.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.headline {
    text-align: center;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 700;
}

.sub-headline {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
 
}

    .sub-headline::after {
        content: "";
        display: block;
        width: 50px;
        height: 2px;
        background: #333;
        margin: 10px auto 0;
    }

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.image-container {
    flex: 1;
    min-width: 300px;
}

    .image-container img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

.text-container {
    flex: 1;
    min-width: 300px;
}

    .text-container p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

.highlight {
    font-weight: 700;
    margin-bottom: 8px;
}

.quote {
    font-style: italic;
    font-size: 18px;
    margin: 30px 0 10px;
    color: #555;
}

.author {
    font-weight: bold;
}

.title {
    font-size: 14px;
    color: #777;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
}

/*=================leadership board=======================*/
.leadership-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 300px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

    .team-member img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .team-member h4 {
        margin-top: 15px;
        font-size: 18px;
        color: #111;
    }

.position {
    font-size: 14px;
    color: #17b4a7;
    margin-bottom: 10px;
}

.bio {
    font-size: 14px;
    color: #555;
}

/*===========award section============*/
.award-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.award-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.heading-underline {
    width: 60px;
    height: 3px;
    background-color: #a855f7; /* Purple */
    margin: 0 auto 40px auto;
}

.awards-container {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.award-box {
    background-color: #1a1a1a;
    padding: 30px 20px;
    flex: 1 1 30%;
    min-width: 280px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-align: left;
}

.award-year {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.award-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ccc;
    margin-bottom: 10px;
}

.award-separator {
    width: 40px;
    height: 2px;
    background-color: #444;
    margin-bottom: 15px;
}

.award-description {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

@media (max-width: 768px) {
    .awards-container {
        flex-direction: column;
        align-items: center;
    }
}

/*==============cta================*/

.cta-section {
    background-color: #f3f4f6; /* light gray */
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
}

    .cta-section h2 {
        font-size: 32px;
        margin-bottom: 15px;
        font-weight: 700;
        color: #111;
    }

    .cta-section p {
        font-size: 18px;
        color: #555;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .cta-buttons a {
        display: inline-block;
        padding: 12px 24px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        border-radius: 6px;
        transition: background-color 0.3s ease;
    }

.btn-primary {
    background-color: #4f46e5; /* Indigo */
    color: #fff;
}

    .btn-primary:hover {
        background-color: #4338ca;
    }

.btn-outline {
    border: 2px solid #4f46e5;
    color: #4f46e5;
    background-color: transparent;
}

    .btn-outline:hover {
        background-color: #eef2ff;
    }