.hero {
    background: url('img/hero-bg.jpg') center center / cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.company-overview h2 {
    font-weight: 600;
    color: var(--primary);
}

.company-overview p {
    font-size: 1rem;
    color: #444;
}

/* Awards & Achievements Section Styling */
.awards-achievements {
    padding: 60px 0;
    background-color: var(--light);
}

.awards-achievements .section-title {
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.awards-achievements h2 {
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.awards-achievements h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Modern Awards Grid Layout */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.awards-column,
.achievements-column {
    display: flex;
    flex-direction: column;
}

.awards-header {
    margin-bottom: 25px;
    position: relative;
}

.awards-header h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.awards-line {
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    margin-bottom: 20px;
}

.awards-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Award Card Styling */
.award-card,
.achievement-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before,
.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: all 0.3s ease;
}

.award-card::before {
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
}

.achievement-card::before {
    background: linear-gradient(to bottom, var(--primary-dark), var(--primary));
}

.award-card:hover,
.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.award-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.award-issuer {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.achievement-text {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.5;
}

/* Meet Our CEO Section Styling */
.meet-ceo {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

.meet-ceo::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(0, 153, 255, 0.03);
    top: -150px;
    left: -150px;
    z-index: 0;
}

.meet-ceo::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 153, 255, 0.03);
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.meet-ceo .section-title {
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.meet-ceo h2 {
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.meet-ceo h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.ceo-image-container {
    position: relative;
    z-index: 1;
}

.ceo-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.ceo-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ceo-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 10px;
    top: 15px;
    left: 15px;
    z-index: -1;
}

.ceo-info {
    position: relative;
    z-index: 1;
    padding: 20px 0 0 20px;
}

.ceo-name {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.ceo-title {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.ceo-bio {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 25px;
}

.credentials-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.credentials-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.credentials-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    font-size: 1rem;
    color: #495057;
}

.credentials-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary);
}

.ceo-quote {
    font-style: italic;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin: 25px 0;
    color: #495057;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--light);
    color: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ceo-info {
        padding: 30px 0 0 0;
    }

    .ceo-image::after {
        display: none;
    }
}

@media (max-width: 991px) {
    /* Awards grid becomes single column on tablets */
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .awards-column,
    .achievements-column {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .meet-ceo {
        padding: 60px 0;
    }

    .ceo-name {
        font-size: 1.8rem;
    }

    .ceo-title {
        font-size: 1rem;
    }

    .ceo-bio {
        font-size: 1rem;
    }

    /* Awards & Achievements mobile styling */
    .award-card,
    .achievement-card {
        padding: 15px;
    }

    .award-title {
        font-size: 1rem;
    }

    .award-issuer,
    .achievement-text {
        font-size: 0.9rem;
    }

    .awards-header h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .awards-achievements {
        padding: 40px 0;
    }

    .award-card,
    .achievement-card {
        padding: 12px;
    }
}
