
.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;
}
/* 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: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;
    }
}
/* End */