/* About Css Section */
.about-box-title {
    margin-bottom: 1px;
    font-family: "Roboto", Sans-serif;
    font-size: 35px;
    font-weight: 400;
    color: #000000;
}

.about-box-description {
    font-family: "Roboto", Sans-serif;
    color: #000000;
}

.about-box-description p {
    color: #000000;
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 1rem !important;
}

.about-box-btn {
    border-radius: 4px;
    font-size: 16px;
    padding: 10px;
}

/* Paintings Css Section */
/* Paintings Title */
.paintings-heading-title {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

/* Each Item */
.gallery-item {
    position: relative;
    width: 100%;
    height: 280px;
    /* Row height */
    overflow: hidden;
    cursor: pointer;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* keeps aspect ratio */
    transition: transform 0.4s ease;
}

/* Hover zoom */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    font-size: 0.95rem;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Responsive Heights */
@media (max-width: 992px) {
    .gallery-item {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        height: 200px;
    }
}

/* Installation Css Section */
.installation-heading-title {
    color: #000000;
    margin: 0px 0px 0px 0px;
    font-family: "Roboto", Sans-serif;
    font-size: 40px;
    font-weight: bold;
    line-height: 46px;
}

.video-img-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 220px;
    /* Fixed height for all images */
}

/* Make images cover the container */
.video-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures uniform size without distortion */
    transition: transform 0.4s ease;
}

.video-img-wrapper:hover img {
    transform: scale(1.05);
    /* Optional zoom on hover */
}

/* Overlay only over image */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-img-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-btn i {
    font-size: 2rem;
}

/* Awards Section */
.award-card {
    border: none;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Image wrapper to normalize height */
.award-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.award-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card body layout */
.award-card .card-body {
    padding: 1.25rem;
}

/* Title consistency */
.award-card .card-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 65px;
    /* balances long/short titles */
}

/* Button refinement */
.award-card .btn {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 4px;
}

/* Table of Contents */
.toc-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.toc-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

.toc-list a:hover {
    text-decoration: underline;
}

/* Project Items */
.project-item {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.project-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-item h5 span {
    font-weight: 400;
    color: #777;
}

/* Links */
.project-links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 13px;
    color: #84c340;
    text-decoration: none;
}

.project-links a:hover {
    text-decoration: underline;
}

/* Contact Section */
#contact {
    background-color: #f8f9fa;
}

/* Left image */
.contact-image {
    background-repeat: no-repeat;
    /* change path */
    background-size: contain;
    background-position: center;
    min-height: fit-content;
    border-radius: 1rem;
}

/* Right content box */
.contact-box {
    padding: 40px;
    height: 100%;
    border-radius: 0 6px 6px 0;
}

.contact-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Contact info list */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-info a {
    color: #84c340;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Address */
.contact-address {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

/* Social Icons Wrapper */
.contact-social {
    margin-top: 10px;
}

/* Base icon style */
.contact-social .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 12px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Brand Colors */
.contact-social .facebook {
    background-color: #1877F2;
}

.contact-social .instagram {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%, #fdf497 5%,
            #fd5949 45%, #d6249f 60%,
            #285AEB 90%);
}

.contact-social .youtube {
    background-color: #FF0000;
}

/* Hover effect */
.contact-social .social:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .contact-image {
        min-height: 300px;
        border-radius: 6px 6px 0 0;
    }

    .contact-box {
        border-radius: 0 0 6px 6px;
    }
}

/* Footer */
#footer {
    border-top: 1px solid #d7d7d7;
}

/* Footer text */
.footer-text {
    font-size: 14px;
    color: #f1f1f1;
}

.footer-text a {
    color: #84c340;
    font-weight: 500;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Footer social icons */
.footer-social .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 10px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Brand colors */
.footer-social .facebook {
    background-color: #1877F2;
}

.footer-social .twitter {
    background-color: #000000;
}

.footer-social .linkedin {
    background-color: #0A66C2;
}

.footer-social .whatsapp {
    background-color: #25D366;
}

/* Hover */
.footer-social .social:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Mobile */
@media (max-width: 768px) {
    .footer-social {
        margin-top: 15px;
    }
}