/* Section Styling */
.about-award {
    background: #ffffff;
}

/* Headings */
.about-award h2:first-child {
    color: #333;
    font-weight: 300;
    font-size: 32px;
}
.about-award h2.fw-bold {
    color: #F4801E;
    font-size: 42px;
    line-height: 1.2;
}

/* Award Images */
.about-award img {
    max-width: 150px;
    transition: transform 0.3s ease;
}

.about-award img:hover {
    transform: scale(1.08);
}

/* Award Titles */
.about-award h5 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

/* Awards Text */
.about-award p {
    font-size: 14px;
    color: #555;
    margin-top: -4px;
}

/* Main logo styling */
.header-award img {
    max-width: 180px;
    border-radius: 8px;
}

/* Align text and image perfectly */
.header-award {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* Space between text and image */
}

/* Fix heading colors & sizes */
.header-award h2:first-child {
    color: #333;
    font-weight: 300;
    font-size: 40px;
    margin: 0;
}

.header-award h2:last-child {
    color: #F4801E;
    font-weight: 700;
    font-size: 45px;
    margin: 0;
}

/* Logo style to match reference */
.header-award img {
    max-width: 250px;
    border-radius: 10px;
}

/* Awards Grid Image Improvements */
.awards-section img {
    max-width: 300px; /* Increase image size */
    transition: transform 0.3s ease;
}

/* Headings */
.awards-section h5 {
    font-size: 24px !important;
    font-weight: 600;
    color: #222;
}

.awards-section p{
    font-size: 18px;
}

/* Hover upscale effect */
.awards-section img:hover {
    transform: scale(1.08);
}

/* Grid spacing */
.awards-section .col-md-6 {
    margin-bottom: 20px;
}

.header-award {
    margin-bottom: 40px;
}
/* Mobile Responsive Tweaks */
@media (max-width: 767px) {
    .about-award{
        padding: 20px;
    }
    .header-award img {
        max-width: 180px !important; /* smaller size for mobile */
    }

    .header-award h2:first-child {
        font-size: 26px; /* smaller heading */
    }

    .header-award h2:last-child {
        font-size: 28px;
    }
}


