/* ---------------overlay---------- */



#overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

#overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

.overlay-heading {
    font-size: 30px;
    line-height: 1.4;
    max-width: 600px;
}

.overlay-img {
    border-radius: 20px;
    max-width: 500px;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li {
    margin: 15px 0;
}

.menu-list a {
    color: #aaa;
    text-decoration: none;
    font-size: 28px;
    transition: 0.3s;
}

.menu-list a:hover {
    color: #fff;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    cursor: pointer;
    font-size: 18px;
    color: #aaa;
}

.close-btn:hover {
    color: #fff;
}

/*-------------------- about--------------- */

.main-heading {
    font-size: 38px;
    font-weight: 500;
    max-width: 700px;
    margin: auto;
    line-height: 1.4;
}

/* Image Card */
.image-card {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    position: relative;
}

.image-card img {
    border-radius: 15px;
}



.img-caption {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    color: #555;
}

/* Tabs */
.custom-tabs .nav-link {
    border: none;
    color: #999;
    font-weight: 500;
    margin-right: 20px;
}

.custom-tabs .nav-link.active {
    color: #000;
    border-bottom: 2px solid #000;
}

/* Tab Text */
.tab-text {
    color: #666;
    line-height: 1.6;
}

/* Awards */
.award-title {
    font-weight: 600;
}

.award-text {
    font-size: 14px;
    color: #666;
}

.awwwards {
    font-size: 36px;
    font-weight: bold;
}

.fwa {
    font-size: 28px;
    font-weight: bold;
}


@media (max-width: 768px) {
    .overlay-heading {
        font-size: 26px;
    }

    .menu-list a {
        font-size: 22px;
    }

    .overlay-img {
        max-width: 100%;
    }

    .close-btn {
        right: 20px;
    }

    #overlay-menu {
        display: none;
    }

    .main-heading {
        font-size: 26px;
    }

    .awwwards {
        font-size: 28px;
    }
}