
.scrollHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff; /* Or match your theme */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: adds a shadow when scrolling */
    transition: all 0.3s ease;
}

#enquire-button {
    font-size: 18px;
    color: #ffffff;
    padding: 10px 20px;
    position: fixed;
    right: 0;
    bottom: 53%;
    border-radius: 40px 0 0 40px;
    background-image: linear-gradient(to right, #b4d45d, #95bc3d, #7fa42a);
    cursor: pointer;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 99;
    text-decoration: none;
    background-size: 200% 100%;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

#enquire-button:hover {
    background-position: right center;
    transform: scale(1.05);
}

/* Icon effects */
#enquire-button .icon-static {
    height: 24px;
    transition: opacity 0.3s ease-in-out;
}

#enquire-button .icon-animated {
    height: 24px;
    display: none;
}

#enquire-button:hover .icon-static {
    display: none;
}

#enquire-button:hover .icon-animated {
    display: inline;
}

#enquire-button:hover #enquire-icon {
    animation: fa-shake 1s infinite;
}

.header-style1 .navbar-toggler {
    border-radius:10px;
}

.menu_area-light .navbar-nav > li > a:hover {
    color: #95bc3d;
}

.card-img-top {
    border-radius: 10px 10px 0 0;
    height: 300px;
    object-fit: cover;
}

.card-title {
    font-size: 1rem;
    font-weight: bold;
}

.card-text {
    font-size: 0.9rem;
    color: #555;
}

.badge-pill {
    margin-right: 5px;
    margin-top: 5px;
    display: inline-block;
}

/* Positioning and appearance */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6); /* Dark translucent background */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 15%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Hide text content, keep icons */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* Optional: move arrows slightly inward */
.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.card-text {
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-link {
    color: #fff;
}


/* About Page */
.about-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.drop-cap-home {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.drop-cap {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    color: #555;
    margin: 0 auto;
}

.drop-cap span, .drop-cap-home span {
    float: left;
    font-size: 3.2rem;
    line-height: 1;
    padding-right: 8px;
    padding-top: 5px;
    font-weight: bold;
    color: #000;
}

.icon-box {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.icon-box:hover {
    transform: translateY(-5px);
}

.icon-box img {
    max-width: 25%;
    margin-bottom: 20px;
}

.awards-section {
    color: white;
    padding: 60px 0;
    position: relative;
    background: linear-gradient(135deg, #95bc3d,rgb(117, 160, 47));
    animation: bgShift 8s ease infinite;
}

.award-card {
    background-color: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card img {
    max-width: 30%;
    margin-bottom: 15px;
    transition: filter 0.3s ease, transform 0.3s ease;

}

.award-card:hover img {
    filter: drop-shadow(0 0 8px #95bc3d);
    transform: scale(1.05);
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-weight: 900;
    margin-bottom: 30px;
}

@keyframes bgShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* End */

/* Project */
.search-title {
    color: #a5c11c;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 20px;
}

.category-search-bar {
    margin-bottom: 30px;
}

.category-container {
    position: relative;
    width: 250px;
}

.category-container select {
    width: 100%;
    padding: 10px 35px 10px 15px;
    border: 2px solid #a5c11c;
    border-radius: 5px;
    font-size: 15px;
    appearance: none;
    background-color: white;
}

.category-container i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #a5c11c;
}

.event-tag {
    color: #a5c11c;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.bbold {
    font-weight: 900;
}

.short-description-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Image hover zoom effect */

.image-box {
    overflow: hidden;
    border-radius: 10px;
}

    .image-box img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.card:hover .image-box img {
    transform: scale(1.08);
}
/* End */

/* Project Calendar */
.events-search-bar {
    margin: 30px 0;
    text-align: left;
}

.events-search-bar input {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #d0d63a;
    border-radius: 8px;
    outline: none;
    color: #333;
}

.search-container {
    position: relative;
}

.search-container i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #a5c11c;
    font-size: 16px;
}

.search-container input {
    width: 100%;
    padding: 12px 20px 12px 40px; /* padding-left for icon space */
    font-size: 16px;
    border: 2px solid #d0d63a;
    border-radius: 8px;
    outline: none;
    color: #333;
}

#eventList {
    margin-top: 20px;
}

.event-card {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 3rem;
}

.event-date {
    text-align: center;
    margin-right: 3rem;
    font-weight: bold;
    color: #a5c11c;
    width: 60px;
}

.event-date .day {
    font-size: 4rem;
    line-height: 1;
}

.event-date .month,
.event-date .year {
    display: block;
    font-size: 14px;
}

.event-content {
    flex: 1;
}

.event-duration {
    font-size: 14px;
    color: #888;
}

.event-title {
    color: #000;
    font-weight: bold;
    margin: 5px 0;
}

.event-venue {
    font-size: 15px;
    margin-bottom: 5px;
}

.event-description {
    font-size: 14px;
    color: #444;
}

.custom-pagination .page-item {
    margin: 0 4px;
}

.custom-pagination .page-link {
    color: #555;
    border: 1px solid #ccc;
    background-color: #f7f7f7;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.custom-pagination .page-link:hover {
    background-color: #95bc3d;
    color: #fff;
    border-color: #95bc3d;
}

.custom-pagination .page-item.active .page-link {
    background-color: #95bc3d;
    color: #fff;
    border-color: #95bc3d;
    pointer-events: none;
}
/* End */

/* Responsive */
@media screen and (max-width:1399px) {
    .navbar-nav > li > a {
        font-size: 12px;
    }

    .navbar > ul > li.has-sub > a:after {
        top: 25px;
    }
}

@media screen and (max-width:1007px) {
    .attr-nav {
        margin-left:0px;
    }

    .btn-style1.medium {
        padding: 10px 20px!important;
    }
}

@media screen and (max-width:991px){
    .award-card img {
        max-width: 50%;
    }

    .icon-box img {
        max-width: 40%;
    }

    .section-title {
        text-align: center;
    }

    .experience-content {
        justify-content: center;
    }

    .read-more-btn {
        text-align: center;
        display: block;
        margin: auto;
        max-width: 40%;
    }
}

@media screen and (max-width:768px){
    #enquire-button {
        font-size: 15px;
        width: 130px;
    }
}

@media screen and (max-width:480px){
    .experience-content {
        text-align: center;
    }

    .list-style2 {
        padding-left: 0;
        text-align: center;
    }

    .list-style2 li {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
        padding-left: 0; /* reset padding */
    }

    .list-style2 li:before {
        position: static;
        margin-right: 8px;
    }

    .read-more-btn {
        max-width: 50%;
    }

    #enquire-button {
        font-size: 12px;
        width: 125px;
        bottom: 10%;
    }

    .event-card {
        padding: 1rem 0rem!important;
    }
    .image-box {
        margin-bottom: 20px;
    }

        .image-box img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 10px;
        }

    .short-description-truncate {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 14px;
        color: #666;
    }

    /* Make project cards equal height */
    .card {
        display: flex;
        flex-direction: column;
    }

    /* Card body expands evenly */
    .card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

        /* Keep "Read More" at bottom */
        .card-body a {
            margin-top: auto;
        }

    /* Project image consistent size */
    .image-box img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Limit description lines */
    .short-description-truncate {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card {
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        }
}


/* End */

/* ========================= */
/* MEDIA NEWS — FINAL POLISH */
/* ========================= */

.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .news-card:hover {
        transform: translateY(-6px);
    }

.news-image {
    overflow: hidden;
    border-radius: 14px;
}

.news-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.4s ease;
}

.news-card:hover .news-img {
    transform: scale(1.06);
}

.news-content {
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    font-size: 14px;
    color: #7a7a7a;
    margin-bottom: 10px;
    font-weight: 500;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
    /* Limit to 2 lines like official site */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-source {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.news-readmore {
    font-size: 14px;
    font-weight: 600;
    color: #1c3faa;
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

    .news-readmore:hover {
        color: #000;
    }

.news-section .row {
    row-gap: 60px;
}

/* End */

/* ===============================
   CONTACT PAGE PREMIUM VERSION
================================= */

.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-heading {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

    .contact-info-item i {
        font-size: 20px;
        color: #95bc3d;
        margin-right: 15px;
        margin-top: 4px;
    }

    .contact-info-item h6 {
        font-weight: 700;
        margin-bottom: 6px;
    }

    .contact-info-item p {
        color: #555;
        line-height: 1.7;
        margin: 0;
    }

.contact-input {
    height: 55px;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    padding: 15px 18px;
    font-size: 15px;
    background-color: #fff;
    transition: all 0.3s ease;
}

    .contact-input:focus {
        border-color: #95bc3d;
        box-shadow: 0 0 0 2px rgba(149,188,61,0.15);
    }

textarea.contact-input {
    min-height: 160px;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #95bc3d, #7ea92e);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

    .btn-contact-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.contact-map iframe {
    display: block;
}

.wow {
    visibility: hidden;
}

    .wow.animate__animated {
        visibility: visible;
    }

html {
    scroll-behavior: smooth;
}

/* Contact dark box sub text */
.contact-subtext {
    color: rgba(255, 255, 255, 0.7); 
}

    .contact-subtext a {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
    }

        .contact-subtext a:hover {
            color: #a5c11c;
        }

/* PROJECT DETAIL PAGE EXACT MATCH */

.project-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.project-gradient-strip {
    height: 8px;
    background: linear-gradient( 90deg, #8dc63f, #95bc3d, #a5c11c );
}

.project-detail-section {
    background: #fff;
}

.project-meta {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

    .project-meta i {
        margin-right: 8px;
    }

.project-title {
    font-size: 32px;
    font-weight: 900;
    color: #111;
    margin-bottom: 20px;
}

.project-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    max-width: 900px;
}

.project-content-img {
    width: 100%;
    border-radius: 10px;
}

.project-services h5 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.project-services {
    font-size: 15px;
    color: #555;
}

/* ========================= */
/* PROJECT GALLERY SECTION */
/* ========================= */

.project-gallery {
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 12px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

/* Lightbox overlay effect */
.gallery-link {
    display: block;
    position: relative;
}

    .gallery-link::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.15);
        opacity: 0;
        transition: 0.3s ease;
        border-radius: 12px;
    }

.gallery-item:hover .gallery-link::after {
    opacity: 1;
}

/* Remove default dropdown arrow */
.search-category select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
}
