* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    /* font-family: Montserrat, sans-serif !important; */
    font-family: 'Poppins', sans-serif !important;

}
::selection {
  background-color: #08523f;
  color: #ffffff;
}
.top-header {
    background-color: #08523f;
    padding: 8px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    top: 0;
    /* border-bottom: 1px solid rgba(255,255,255,0.15); */
}
.top-header,
.as-menu-header {
    position: sticky;
    width: 100%;
    left: 0;
    z-index: 1001;
}
.top-social {
    display: flex;
    gap: 10px;
}
.top-social a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.top-social a:hover {
    background: #fbea9f;
    color: #08523f;
    transform: translateY(-2px);
}
.top-search {
    position: relative;
}
.search-open {
    width: 32px;
    height: 32px;
    padding: 9px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-open:hover {
    background: #fbea9f;
    color: #08523f;
}
.search-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right;
    background: #ffffff;
    border-radius: 30px;
    padding: 6px 12px;  
    display: flex;
    align-items: center;
    gap: 8px;
    width: 220px;
    transition: all 0.35s ease;
    opacity: 0;
}
.search-box.active {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
}
.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 13px;
}
.search-close {
    cursor: pointer;
    color: #555;
    font-size: 14px;
}
.as-menu-header {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 40px;
    z-index: 999;
}
.as-header-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.as-header-logo img {
    height: 55px;
}
.as-nav {
    display: flex;
}
.as-menu {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}
.as-menu li {
    position: relative;
}
.as-menu li a {
    position: relative;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #08523f !important;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}
.as-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #08523f;
    transition: width 0.3s ease;
}
.as-menu li a:hover::after {
    width: 100%;
}
.as-menu li.as-active > a {
    color: #f1c70c;
    font-weight: 600;
}
.as-menu li.as-active > a::after {
    width: 100%;
}
.as-menu li a:hover {
    /* color: #0d7a5b; */
    color: #f1c70c;
}
.as-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    list-style-type: none;
}
.as-submenu li {
    padding: 0;
}
.as-submenu li a {
    padding: 10px 18px;
    font-size: 13px;
    color: #333 !important;
}
.as-submenu li a:hover {
    background: #f0f9ff;
    width: 100%;
    /* color: #08523f; */
    color: #f1c70c;
}
.as-has-submenu:hover .as-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.as-dropdown-icon {
    font-size: 11px;
    transition: transform 0.3s ease;
}
.as-has-submenu:hover .as-dropdown-icon {
    transform: rotate(180deg);
}
.as-hamburger {
    display: none;
    font-size: 22px;
    color: #08523f;
    cursor: pointer;
}
.as-banner {
    width: 100%;
    overflow: hidden;
}
.as-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.15)
    );
    z-index: 1;
}
.as-banner-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 520px;
    color: #ffffff;
    z-index: 2;

    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
    transition: all 0.8s ease;
}
.as-slide.active .as-banner-content {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.as-banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
    color: #f1c70c;
}
.as-banner-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}
.as-banner-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #f1c70c;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.as-banner-btn:hover {
    background: #ffffff;
    color: #0d7a5b;
}
.as-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
}
.as-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.as-slide.active {
    opacity: 1;
    z-index: 1;
}
.as-slide img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}
.as-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.as-dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.as-dot.active {
    width: 22px;
    border-radius: 10px;
    background: #f1c70c;
}
.as-quick-sec {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #e9e9e9;
    padding: 30px 20px;
    gap: 0;
}
.as-quick-item {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.35s ease;
}
.as-quick-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    width: 2px;
    height: 50%;
    background-color: #f2c300;
}
.as-quick-item i {
    font-size: 38px;
    color: #0b5d46;
    margin-bottom: 15px;
    transition: transform 0.35s ease, color 0.35s ease;
}
.as-quick-item p {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.5px;
}
.as-quick-item:hover {
    background-color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.as-quick-item:hover i {
    transform: scale(1.15);
    color: #f2c300; 
}
.as-about-us {
    position: relative;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f7f9f8 0%, #ffffff 100%);
    overflow: hidden;
}

/* Decorative background shape */
.as-about-us::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background-color: rgba(242, 195, 0, 0.15);
    border-radius: 50%;
}
.as-about-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.as-about-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0b5d46;
    margin-bottom: 10px;
}
.as-about-container h2 span {
    color: #f2c300;
}
.as-about-line {
    width: 70px;
    height: 4px;
    background-color: #f2c300;
    margin: 15px auto 15px;
    border-radius: 2px;
}
.as-about-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    max-width: 750px;
    margin: auto;
}
.as-about-container {
    animation: fadeUp 0.9s ease forwards;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.as-mission {
    position: relative;
    padding: 30px 20px;
    background-color: #0b5d46;
    color: #ffffff;
    overflow: hidden;
}
.as-mission::before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: rgba(242, 195, 0, 0.15);
    border-radius: 50%;
}
.as-mission-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.9s ease forwards;
}
.as-mission-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}
.as-mission-container h2 span {
    color: #f2c300;
}
.as-mission-line {
    width: 70px;
    height: 4px;
    background-color: #f2c300;
    margin: 15px auto 15px;
    border-radius: 2px;
}
.as-mission-container p {
    font-size: 18px;
    line-height: 1.9;
    color: #f1f1f1;
    max-width: 780px;
    margin: auto;
}
/* ===== Keyframe Animation (same as About) ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.as-gallery-round{
    content: "";
    position: absolute;
    right: 22px;
    top: 401%;
    width: 2px;
    height: 50%;
    background-color: #f2c300;
}
.as-gallery {
    padding: 30px 20px;
    background: #ffffff;
}
.as-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}
.as-gallery-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(11, 93, 70, 0.1);
    color: #0b5d46;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 12px;
}
.as-gallery-header h2 {
    font-size: 40px;
    color: #0b5d46;
    font-weight: 700;
}
.as-gallery-header h2 span {
    color: #f2c300;
}
.as-gallery-line {
    width: 70px;
    height: 4px;
    background: #f2c300;
    margin: 20px auto 0;
    border-radius: 2px;
}
.as-masonry {
    column-count: 4;
    column-gap: 20px;
    max-width: 1200px;
    margin: auto;
}
.as-masonry-item {
    position: relative;
    margin-bottom: 20px;
    break-inside: avoid;
    border-radius: 14px;
    overflow: hidden;
    background: #f5f7f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    animation: fadeUp 0.8s ease forwards;
}
.as-masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}
.as-masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 93, 70, 0.1),
        rgba(11, 93, 70, 0.75)
    );
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}
.as-masonry-overlay span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #f2c300;
    border-radius: 30px;
    background: rgba(0,0,0,0.2);
}
.as-masonry-item:hover img {
    transform: scale(1.08);
}
.as-masonry-item:hover .as-masonry-overlay {
    opacity: 1;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* lightbox */
.as-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 9999;
}
.as-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.as-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.85);
    transition: transform 0.4s ease;
    cursor: pointer;
}
.as-lightbox.active .as-lightbox-img {
    transform: scale(1);
}
.as-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 42px;
    color: #fff;
    cursor: pointer;
}
.as-lightbox-controls {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 12px;
}
.as-lightbox-controls button {
    width: 45px;
    height: 45px;
    border: none;
    background: #0f766e;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}
.as-lightbox-controls button:hover {
    transform: scale(1.15);
}
.as-masonry-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.35s ease;
}
.as-masonry-item:hover {
    transform: translateY(-6px) scale(1.03);
}
.as-masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 118, 110, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.as-masonry-item:hover .as-masonry-overlay {
    opacity: 1;
}
.as-masonry-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.as-events {
    padding: 30px 6%;
    background: linear-gradient(135deg, #f6faf8, #ffffff);
}

/* Header */
.as-events-header {
    text-align: center;
    margin-bottom: 50px;
}

.as-events-tag {
    display: inline-block;
    color: #f4c400;
    font-weight: 600;
    margin-bottom: 8px;
}

.as-events-header h2 {
    font-size: 36px;
    color: #08523f;
}

.as-events-header h2 span {
    color: #f4c400;
}

/* Grid */
.as-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card */
.as-event-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform .4s ease, box-shadow .4s ease;
}

.as-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Image */
.as-event-img {
    height: 180px;
    overflow: hidden;
}

.as-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.as-event-card:hover img {
    transform: scale(1.1);
}

/* Content */
.as-event-content {
    padding: 20px;
}

.as-event-content h3 {
    font-size: 18px;
    color: #08523f;
    margin-bottom: 10px;
}

.as-event-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.as-event-date i {
    color: #f4c400;
    margin-right: 6px;
}

.as-event-org {
    font-size: 14px;
    margin-bottom: 15px;
}

.as-event-org span {
    color: #f4c400;
    font-weight: 600;
}

/* Button */
.as-event-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #08523f;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: background .3s ease, transform .3s ease;
}

.as-event-btn:hover {
    background: #f4c400;
    color: #08523f;
    transform: translateY(-2px);
}

/* Footer */
.as-events-footer {
    text-align: center;
    margin-top: 40px;
}

.as-events-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border: 2px solid #08523f;
    border-radius: 40px;
    color: #08523f;
    font-weight: 600;
    transition: all .3s ease;
    text-decoration: none;
}

.as-events-more:hover {
    background: #08523f;
    color: #fff;
}
.as-footer {
    background-color: #f1f4f3;
    padding: 70px 20px 0;
    font-size: 15px;
    color: #0b5d46;
}
.as-footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    animation: fadeUp 0.9s ease forwards;
}
.as-footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0b5d46;
}
.as-footer-col ul {
    list-style: none;
}
.as-footer-col ul li {
    margin-bottom: 10px;
}
.as-footer-col ul li a {
    color: #0b5d46;
    text-decoration: none;
    transition: color 0.3s ease;
}
.as-footer-col ul li a:hover {
    color: #f2c300;
}
.as-footer-address p {
    line-height: 1.6;
}
.as-footer-line {
    width: 60px;
    height: 3px;
    background-color: #f2c300;
    margin: 15px 0;
}
.as-footer-social a {
    margin-right: 12px;
    font-size: 16px;
    color: #0b5d46;
    transition: transform 0.3s ease, color 0.3s ease;
}
.as-footer-social a:hover {
    color: #f2c300;
    transform: translateY(-3px);
}
.as-footer-logos {
    text-align: center;
}
.as-footer-logos img {
    max-width: 400px;
    margin-bottom: 10px;
}
.as-footer-logos span {
    display: block;
    font-size: 13px;
    color: #555;
}
.as-footer-bottom {
    margin-top: 50px;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.as-footer-bottom p {
    font-size: 14px;
}
.as-footer-bottom a {
    color: #0b5d46;
    text-decoration: none;
    font-weight: 500;
}
.as-footer-bottom a:hover {
    color: #f2c300;
}
#as-scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #08523f, #0b6b52);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
#as-scrollTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#as-scrollTop:hover {
    background: linear-gradient(135deg, #f4c400, #ffda3a);
    color: #08523f;
    transform: translateY(-4px);
}
#as-scrollTop i {
    transition: transform 0.3s ease;
}
#as-scrollTop:hover i {
    transform: translateY(-2px);
}
@keyframes as-pulse {
    0% { box-shadow: 0 0 0 0 rgba(244,196,0,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(244,196,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(244,196,0,0); }
}
#as-scrollTop.show {
    animation: as-pulse 2.5s infinite;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 991px) {
    .as-carousel {
        height: 360px;
    }
}
/* top header responsive */
@media (max-width: 576px) {
    .top-header {
        justify-content: center;
    }

    .search-box {
        width: 180px;
    }
}
/* menu header responsive */
@media (max-width: 991px) {
    .as-hamburger {
        display: block;
    }
    .as-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        box-shadow: 0 12px 20px rgba(0,0,0,0.08);
    }
    .as-nav.active {
        max-height: 500px;
    }
    .as-menu {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }
    .as-menu li {
        width: 100%;
    }
    .as-menu li a {
        padding: 14px 20px;
        justify-content: space-between;
    }
    .as-has-submenu.active .as-dropdown-icon {
        transform: rotate(180deg);
    }
    .as-menu li a::after {
        display: none;
    }
    .as-has-submenu:hover .as-submenu {
        opacity: 1;
        visibility: visible;
    }
    .as-submenu {
        position: static;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 10px;
    }
    .as-has-submenu.active .as-submenu {
        display: block;
    }
}
/* for carosule */
@media (max-width: 576px) {
    .as-carousel {
        height: 260px;
    }
}
@media (max-width: 768px) {
    .as-carousel {
        aspect-ratio: 4 / 3;
    }
}
/* carosuel text */
@media (max-width: 991px) {
    .as-banner-content h1 {
        font-size: 34px;
    }

    .as-banner-content {
        max-width: 420px;
        left: 6%;
    }
}
@media (max-width: 576px) {
    .as-banner-content {
        left: 5%;
        right: 5%;
        max-width: 100%;
    }
    .as-banner-content h1 {
        font-size: 26px;
    }
    .as-banner-content p {
        font-size: 14px;
    }
}
/* quick link section */
@media (max-width: 991px) {
    .as-quick-sec {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-quick-item:not(:last-child)::after {
        display: none;
    }
}
@media (max-width: 576px) {
    .as-quick-sec {
        grid-template-columns: 1fr;
    }

    .as-quick-item {
        padding: 30px 15px;
    }
}
@media (max-width: 768px) {
    .as-about-container h2 {
        font-size: 32px;
    }

    .as-about-container p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .as-about-us {
        padding: 70px 15px;
    }

    .as-about-container h2 {
        font-size: 28px;
    }
}
/* mission responsive */
@media (max-width: 768px) {
    .as-mission-container h2 {
        font-size: 32px;
    }

    .as-mission-container p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .as-mission {
        padding: 70px 15px;
    }

    .as-mission-container h2 {
        font-size: 28px;
    }
}
/* For footer */
@media (max-width: 992px) {
    .as-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
@media (max-width: 576px) {
    .as-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .as-footer-line {
        margin: 15px auto;
    }
    .as-footer-social {
        margin-top: 10px;
    }
    .as-footer-logos img {
        max-width: 250px;
    }
}
/* Poster Responsive */
@media (max-width: 1200px) {
    .as-masonry {
        column-count: 3;
    }
}
@media (max-width: 768px) {
    .as-masonry {
        column-count: 2;
    }

    .as-gallery-header h2 {
        font-size: 32px;
    }
}
@media (max-width: 480px) {
    .as-masonry {
        column-count: 1;
    }
}
/* bottom to top */
@media (max-width: 768px) {
    #as-scrollTop {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }
}
/* About  us page */
.as-about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #F8FAFC;
}
.as-about-hero-split {
    background: #ffffff;
    padding: 50px 40px; 
    border-radius: 24px;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    animation: asFadeUp 0.6s ease;
}
.as-about-hero-content {
    text-align: left;
}
.as-about-hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #0b5d46;
    margin-bottom: 15px;
}
.as-about-hero-title span {
    color: #f1c70c;
}
.as-about-hero-text {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    max-width: 95%;
}
.as-about-hero-visual img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.as-about-fa-icon {
    font-size: 28px;
    color: #f1c70c;
    margin-right: 14px;
    transition: transform 0.3s ease;
}
.as-about-card:hover .as-about-fa-icon {
    transform: scale(1.1);
}
.as-about-us-line {
    width: 70px;
    height: 4px;
    background-color: #f2c300;
    margin: 15px 15px;
    border-radius: 2px;
}
.as-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.as-about-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}
.as-about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}
.as-about-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}
.as-about-card-title {
    font-size: 21px;
    font-weight: 600;
    color: #0b5d46;
}
/* TEXT */
.as-about-card-text {
    font-size: 15px;
    color: #000;
    line-height: 1.8;
}
.as-about-key {
    margin-top: 40px;
}
.as-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #0b5d46, #128b6b);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(11, 93, 70, 0.25);
    transition: all 0.3s ease;
}
.as-about-btn i {
    font-size: 15px;
}
.as-about-btn:hover {
    background: linear-gradient(135deg, #f1c70c, #f2c300);
    color: #0b5d46;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(241, 199, 12, 0.35);
}
@keyframes asFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE for about page */
@media (max-width: 768px) {
    .as-about-hero {
        padding: 50px 25px;
    }

    .as-about-hero-title {
        font-size: 32px;
    }

    .as-about-card {
        padding: 25px;
    }
    .as-about-us-line {
        width: 50px;
        height: 3px;
        margin: 12px 0;
    }
}
@media (max-width: 480px) {
    .as-about-wrapper {
        padding: 40px 15px;
    }

    .as-about-hero-title {
        font-size: 28px;
    }
    .as-about-us-line {
        width: 40px;
        height: 3px;
        margin: 10px auto;
    }
}
@media (max-width: 991px) {
    .as-about-hero-split {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        text-align: center;
    }

    .as-about-hero-content {
        text-align: center;
    }

    .as-about-hero-text {
        max-width: 100%;
    }
}
/* Member Page styles */
.as-member-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.as-member-container h2 {
    font-size: 35px;
    font-weight: 700;
    color: #0b5d46;
    margin-bottom: 10px;
    text-align: center;
}

.as-member-container h2 span {
    color: #f2c300;
}

.as-member-line {
    width: 70px;
    height: 4px;
    background-color: #f2c300;
    margin: 15px auto 15px;
    border-radius: 2px;
}

.as-member-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
}

.as-member-tab {
    padding: 12px 26px;
    margin: 0 6px 10px;
    background: transparent;
    border: 1px solid #0b5d46;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #0b5d46;
    transition: all 0.3s ease;
}

.as-member-tab:hover {
    background-color: #0b5d46;
    color: #ffffff;
}

.as-member-tab.active {
    background-color: #f2c300;
    border-color: #f2c300;
    color: #0b5d46;
}

.as-member-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.as-member-gallery-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.as-member-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.as-member-img-wrap {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    padding: 15px;
}

.as-member-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.as-member-item-info {
    padding: 18px;
    text-align: center;
}

.as-member-item-info h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #0b5d46;
}

.as-member-item-info p {
    font-size: 0.9rem;
    color: #555555;
}

.as-member-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    font-size: 1rem;
    color: #777777;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .as-member-container {
        padding: 30px 16px;
    }

    .as-member-gallery {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 480px) {
    .as-member-gallery {
        grid-template-columns: 1fr;
    }

    .as-member-tab {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}
/* Aspid membership page styles */
.as-membership-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}
.as-membership-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0b5d46;
    margin-bottom: 10px;
}
.as-membership-title span {
    color: #f1c70c;
}
.as-membership-line{
     width: 70px;
    height: 4px;
    background-color: #f2c300;
    margin: 15px auto 15px;
    border-radius: 2px;
}
.as-membership-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}
.as-membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.as-membership-card {
    border-radius: 12px;
    border: 1px solid #e2e2e2;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.as-membership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.as-membership-card-header {
    background: #0b5d46;
    padding: 20px;
    color: white;
}
.as-membership-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}
.as-membership-card-body {
    padding: 25px 18px;
}
.as-membership-card-body p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 18px;
}
.as-membership-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0b5d46;
    margin: 10px 0;
}
.as-membership-btn-aspid {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    background: #f2c300;
    color: #0b5d46;
    border: 2px solid #f2c300;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.as-membership-btn-aspid:hover {
    background: #0b5d46;
    color: #f2c300;
    border-color: #0b5d46;
}
.as-aspid-download{
    padding: 5px 24px;
    margin-top: 5px !important;
}
.as-about-hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #0b5d46;
    margin-bottom: 15px;
}
.as-about-hero-title span {
    color: #f1c70c;
}
.as-accordion-membership-container {
    /* max-width: 800px; */
    width: 100%;
}
.as-member-con2{
    padding-top: 5px !important;
}
.as-membership-line2{
    margin-bottom: 20px !important;
}
.as-accordion-membership-title {
    text-align: center;
    color: #f2c300;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.as-membership-accordion {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.as-accordion-membership-item {
    border-bottom: 1px solid rgba(11, 93, 70, 0.1);
    transition: all 0.3s ease;
}
.as-accordion-membership-item:last-child {
    border-bottom: none;
}
.as-accordion-membership-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.as-accordion-membership-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #f2c300;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}
.as-accordion-membership-header:hover {
    background: rgba(11, 93, 70, 0.05);
}
.as-accordion-membership-header:hover::before {
    transform: scaleY(1);
}
.as-accordion-membership-item.as-accordion-membership-active .as-accordion-membership-header {
    background: #0b5d46;
}
.as-accordion-membership-item.as-accordion-membership-active .as-accordion-membership-header::before {
    transform: scaleY(1);
    background: #f2c300;
}
.as-accordion-membership-question {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 600;
    color: #0b5d46;
    transition: color 0.3s ease;
    padding-right: 15px;
}
.as-accordion-membership-item.as-accordion-membership-active .as-accordion-membership-question {
    color: #f2c300;
}
.as-accordion-membership-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f2c300;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
}
.as-accordion-membership-item.as-membership-active .as-membership-icon {
    background: #f2c300;
    transform: rotate(180deg);
}
.as-accordion-membership-icon::before,
.as-accordion-membership-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: #0b5d46;
    transition: all 0.3s ease;
}
.as-accordion-membership-icon::after {
    transform: rotate(90deg);
}
.as-accordion-membership-item.as-membership-active .as-membership-icon::after {
    transform: rotate(0deg);
    opacity: 0;
}
.as-accordion-membership-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    opacity: 0;
    background: #fff;
}
.as-accordion-membership-item.as-accordion-membership-active .as-accordion-membership-content {
    max-height: 500px;
    padding: 25px 25px 25px 25px;
    opacity: 1;
}
.as-accordion-membership-answer {
    color: #333;
    line-height: 1.8;
    font-size: clamp(0.875rem, 2vw, 1rem);
    padding-left: 20px;
    border-left: 3px solid #f2c300;
}
@media (min-width: 992px) {
    .as-membership-cards {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }
}
@media (max-width: 768px) {
    .as-accordion-membership-header {
        padding: 15px 20px;
    }

    .as-accordion-membership-item.as-accordion-membership-active .as-accordion-membership-content {
        padding: 20px 20px 20px 20px;
    }

    .as-accordion-membership-icon {
        width: 26px;
        height: 26px;
    }

    .as-accordion-membership-icon::before,
    .as-accordion-membership-icon::after {
        width: 10px;
    }
}
@media (max-width: 480px) {
    .as-accordion-membership-title {
        margin-bottom: 20px;
    }

    .as-accordion-membership-header {
        padding: 12px 15px;
    }

    .as-accordion-membership-item.as-accordion-membership-active .as-accordion-membership-content {
        padding: 15px 15px 15px 15px;
        max-height: fit-content;
    }

    .as-accordion-membership-answer {
        padding-left: 15px;
    }
}
        .as-bank-details {
    border-left: 3px solid #f2c300;
    padding-left: 20px;
}
.as-bank-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.as-bank-row:last-child {
    border-bottom: none;
}
.as-bank-label {
    font-weight: 600;
    color: #0b5d46;
    font-size: 0.95rem;
}
.as-bank-value {
    color: #333;
    line-height: 1.6;
    word-break: break-word;
}
.as-highlight {
    font-weight: 700;
    letter-spacing: 0.5px;
}
@media (max-width: 600px) {
    .as-bank-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .as-bank-label {
        font-size: 0.9rem;
    }
}
@media(max-width: 768px) {
    .as-membership-title {
        font-size: 1.8rem;
    }
}
/* membership login styles */
.as-membership-login-container {
  /* max-width: 900px; */
  margin: auto;
  padding: 20px 20px;
  text-align: center;
}
.as-membership-login-note {
  color: #444;
  margin-bottom: 40px;
  font-size: 15px;
}
.as-membership-login-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.as-membership-login-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: as-membership-login-fadeUp 0.8s ease forwards;
}
.as-membership-login-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}
.as-membership-login-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #0b5d46;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.as-membership-login-icon svg {
  width: 40px;
  height: 40px;
  stroke: #f1c70c;
  stroke-width: 2;
}
.as-membership-login-card h3 {
  color: #0b5d46;
  margin-bottom: 8px;
}
.as-membership-login-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}
.as-membership-login-btn {
  background: #f1c70c;
  color: #0b5d46;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.as-membership-login-btn:hover {
  background: #e0b90a;
  transform: scale(1.05);
}
@keyframes as-membership-login-fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Latest news design */
.as-event-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px 50px;
}
.as-event-header {
    text-align: center;
    margin-bottom: 30px;
}
.as-event-header h1 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #08523f;
}
.as-event-header h1 span {
    color: #f2c300;
}
.as-event-slider-wrapper {
    position: relative;
    overflow: hidden;
}
.as-event-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    will-change: transform;
}
.as-event-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: calc((100% - 60px) / 4); /* 4 cards with 20px gap */
    cursor: pointer;
    user-select: none;
    transition: transform 0.3s ease;
}
.as-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.as-event-card img {
    width: 100%;
    height: 180px;
    /* object-fit: cover; */
    display: block;
}
.as-event-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.as-event-card-tag {
    color: #f2c300;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.as-event-card-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    flex-grow: 0;
    line-height: 1.3;
    color: #08523f;
}
.as-event-card-description {
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 1.4;
}
.as-event-card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: #08523f;
    text-decoration: none;
    align-self: flex-start;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    transition: gap 0.3s ease;
}
.as-event-card-link:hover {
    gap: 15px;
}
.as-event-card-link::before {
    content: '→';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border: 2px solid #08523f;
    border-radius: 50%;
    font-size: 16px;
}
.as-event-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 12px;
}
.as-event-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.as-event-dot.active {
    background: #08523f;
    width: 28px;
    border-radius: 5px;
}
@media (max-width: 900px) {
    .as-event-card {
    min-width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 480px) {
    .as-event-card {
    min-width: 100%;
    }

    .as-event-card img {
    height: 160px;
    }

    .as-event-card-title {
    font-size: 1.1rem;
    }

    .as-event-card-description {
    font-size: 0.9rem;
    }
}
/* News detail page styles */
.as-news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.as-news-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #08523f;
    flex-wrap: wrap;
}

.as-news-breadcrumb-link {
    color: #08523f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.as-news-breadcrumb-link:hover {
    color: #004d56;
    text-decoration: underline;
}

.as-news-breadcrumb-separator {
    color: #83c5be;
}

.as-news-breadcrumb-current {
    color: #08523f;
    font-weight: 500;
}

.as-news-article {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 109, 119, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    animation: as-news-fadeIn 0.6s ease-out;
}

@keyframes as-news-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.as-news-header {
    background: linear-gradient(135deg, #08523f 0%, #08523f 100%);
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.as-news-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: as-news-pulse 15s infinite;
}

@keyframes as-news-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.as-news-title {
    font-size: 2rem;
    font-weight: 500;
    /* margin-bottom: 20px; */
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.as-news-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.as-news-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e0f4f5;
}

.as-news-meta-icon {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

.as-news-content {
    padding: 50px;
}

.as-news-featured-image {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.as-news-image-wrapper {
    display: inline-block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 109, 119, 0.2);
    transition: transform 0.3s ease;
}

.as-news-image-wrapper:hover {
    transform: scale(1.02);
}

.as-news-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    background: linear-gradient(135deg, #e0f4f5 0%, #83c5be 100%);
    padding: 30px;
}

.as-news-caption {
    margin-top: 20px;
    font-size: 15px;
    color: #08523f;
    font-weight: 500;
    font-style: italic;
}

.as-news-section {
    margin-bottom: 40px;
}

.as-news-section-title {
    font-size: 1.8rem;
    color: #08523f;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid #83c5be;
    position: relative;
    display: inline-block;
}

.as-news-section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50%;
    height: 3px;
    background: #08523f;
}

.as-news-event-list {
    list-style: none;
    padding: 0;
}

.as-news-event-item {
    padding: 18px 25px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #e0f4f5 0%, #f0f9f9 100%);
    border-left: 4px solid #08523f;
    border-radius: 10px;
    font-size: 16px;
    color: #08523f;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.as-news-event-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 109, 119, 0.05);
    transition: width 0.3s ease;
    pointer-events: none;

}

.as-news-event-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 109, 119, 0.15);
}

.as-news-event-item:hover::before {
    width: 100%;
}

.as-news-event-country {
    font-weight: 600;
    color: #08523f;
}

.as-news-event-country a{
    text-decoration: none !important;
    color: #08523f;
    cursor: pointer;
}

.as-news-event-date {
    color: #08523f;
    font-size: 14px;
}

.as-news-back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #08523f 0%, #08523f 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 109, 119, 0.3);
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.as-news-back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 109, 119, 0.4);
    background: linear-gradient(135deg, #08523f 0%, #08523f 100%);
}

.as-news-back-button:active {
    transform: translateY(0);
}

.as-news-back-icon {
    font-size: 18px;
}



@media (max-width: 768px) {
    .as-news-container {
        padding: 15px;
    }

    .as-news-header {
        padding: 30px 20px;
    }

    .as-news-title {
        font-size: 1.8rem;
    }

    .as-news-content {
        padding: 30px 20px;
    }

    .as-news-section-title {
        font-size: 1.5rem;
    }

    .as-news-meta {
        flex-direction: column;
        gap: 10px;
    }

    .as-news-image {
        max-width: 100%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .as-news-title {
        font-size: 1.5rem;
    }

    .as-news-header {
        padding: 25px 15px;
    }

    .as-news-content {
        padding: 20px 15px;
    }

    .as-news-section-title {
        font-size: 1.3rem;
    }

    .as-news-event-item {
        padding: 15px 18px;
        font-size: 15px;
    }

    .as-news-back-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}
.server-dengue-title{
    font-size: 1.8rem !important;
}
.as-news-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}
.as-news-media-card {
    background: linear-gradient(135deg, #e0f4f5 0%, #f0f9f9 100%);
    border-radius: 15px;
    padding: 12px;
    box-shadow: 0 8px 20px rgba(0, 109, 119, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.as-news-media-card img {
    width: 100%;
    max-height: 164px;      
    object-fit: contain;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}
.as-news-media-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 109, 119, 0.2);
}
.as-news-download-wrapper {
    /* text-align: center; */
    margin-top: 20px;
}
.as-news-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #08523f 0%, #08523f 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 109, 119, 0.35);
    transition: all 0.3s ease;
    font-size: 16px;
}
.as-news-download-btn i {
    font-size: 18px;
}
.as-news-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 109, 119, 0.45);
}
.as-media-title {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #005f63;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .as-news-media-grid {
        grid-template-columns: 1fr;
    }
    .as-news-download-btn {
        width: 100%;
        justify-content: center;
    }
}
.as-news-media-grid-detail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 35px;
    margin-top: 20px;
}

.details-as-card img {
    text-align: center !important;
}

@media (max-width: 768px) {
    .as-news-media-grid-detail {
        grid-template-columns: 1fr;
    }
}
.as-pro-us-list {
    list-style: none !important;
}
/* Contact Us page design */
.as-contactus-container {
    width: 100%;
    max-width: 1000px;
    /* background: #ffffff; */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(8, 82, 63, 0.15);
    /* display: grid;
    grid-template-columns: 1fr 1.2fr; */
    position: relative;
}
.as-contactus-sidebar {
    background: linear-gradient(165deg, #08523f 0%, #064232 100%);
    padding: 60px 40px;
    color: #f1f4f3;
    position: relative;
    overflow: hidden;
}

.as-contactus-sidebar::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(242, 195, 0, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.as-contactus-sidebar::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(242, 195, 0, 0.08);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.as-contactus-sidebar-content {
    position: relative;
    z-index: 1;
}

.as-contactus-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.as-contactus-subtitle {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
}

.as-contactus-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.as-contactus-icon {
    width: 45px;
    height: 45px;
    background: #f2c300;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.as-contactus-form-wrapper {
    padding: 60px 50px;
    background: #ffffff;
}

.as-contactus-form-title {
    font-size: 28px;
    color: #08523f;
    margin-bottom: 10px;
    font-weight: 700;
}

.as-contactus-form-description {
    color: #666;
    margin-bottom: 35px;
    font-size: 15px;
}

.as-contactus-form-group {
    margin-bottom: 28px;
    position: relative;
}

.as-contactus-label {
    display: block;
    margin-bottom: 10px;
    color: #08523f;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.as-contactus-input,
.as-contactus-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #f1f4f3;
    border-radius: 14px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f1f4f3;
    color: #333;
}

.as-contactus-input:focus,
.as-contactus-textarea:focus {
    outline: none;
    border-color: #f2c300;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(242, 195, 0, 0.1);
}

.as-contactus-textarea {
    resize: vertical;
    min-height: 140px;
}

.as-contactus-error {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 8px;
    display: none;
    font-weight: 500;
}

.as-contactus-form-group.as-contactus-invalid .as-contactus-input,
.as-contactus-form-group.as-contactus-invalid .as-contactus-textarea {
    border-color: #e74c3c;
    background: #fff5f5;
}

.as-contactus-form-group.as-contactus-invalid .as-contactus-error {
    display: block;
}

.as-contactus-form-group.as-contactus-valid .as-contactus-input,
.as-contactus-form-group.as-contactus-valid .as-contactus-textarea {
    border-color: #08523f;
}

.as-contactus-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #08523f 0%, #064232 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.as-contactus-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 195, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

.as-contactus-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(8, 82, 63, 0.3);
}

.as-contactus-submit-btn:hover::before {
    left: 100%;
}

.as-contactus-submit-btn:active {
    transform: translateY(0);
}

.as-contactus-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.as-contactus-success-message {
    background: #08523f;
    color: #ffffff;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.as-contactus-success-message.as-contactus-show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .as-contactus-container {
        /* grid-template-columns: 1fr; */
        max-width: 500px;
    }

    .as-contactus-sidebar {
        padding: 40px 30px;
    }

    .as-contactus-title {
        font-size: 32px;
    }

    .as-contactus-form-wrapper {
        padding: 40px 30px;
    }

    .as-contactus-info-item {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .as-contactus-sidebar {
        padding: 30px 20px;
    }

    .as-contactus-form-wrapper {
        padding: 30px 20px;
    }

    .as-contactus-title {
        font-size: 28px;
    }

    .as-contactus-form-title {
        font-size: 24px;
    }

    .as-contactus-input,
    .as-contactus-textarea {
        padding: 14px 16px;
    }
}
.aspid-contact{
        /* min-height: 100vh; */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
}
.as-contactus-headtitle{
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0b5d46;
    /* margin-bottom: 10px; */
    padding: 10px;
}
.as-contactus-headtitle span {
    color: #f1c70c;
}
.as-contactus-divider {
    width: 70px;
    height: 4px;
    background-color: #f2c300;
    margin: 5px auto 5px;
    border-radius: 2px;
}
.as-whole-container{
    background: linear-gradient(135deg, #f1f4f3 0%, #ffffff 100%);
}
/* styles for gallery page */
.as-gallery-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

.as-gallery-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.as-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: white;
}

.as-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.as-gallery-item img {
    width: 100%;
    /* height: 350px; */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.as-gallery-item:hover img {
    transform: scale(1.1);
}

.as-gallery-category-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #f2c300;
    padding: 30px 20px 20px;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.as-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.as-gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.as-gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.as-gallery-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 25px 75px rgba(0, 0, 0, 0.5);
}

.as-gallery-close-btn {
    position: absolute;
    top: 50px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #f2c300;
    backdrop-filter: blur(10px);
    border: 2px solid #f2c300;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.as-gallery-close-btn:hover {
    background: #08523f;
    transform: rotate(90deg);
}

.as-gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    /* background: rgba(255,255,255,0.2); */
    background: #f2c300;
    backdrop-filter: blur(10px);
    border: 2px solid #f2c300;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.as-gallery-nav-btn:hover {
    background: #08523f;
    transform: translateY(-50%) scale(1.1);
}

.as-gallery-prev-btn {
    left: 30px;
}

.as-gallery-next-btn {
    right: 30px;
}

.as-gallery-image-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #f2c300;
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #f2c300;
}

@media (max-width: 768px) {

    .as-gallery-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .as-gallery-item img {
        height: 250px;
    }

    .as-gallery-category-label {
        font-size: 1.1rem;
        padding: 20px 15px 15px;
    }

    .as-gallery-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .as-gallery-prev-btn {
        left: 15px;
    }

    .as-gallery-next-btn {
        right: 15px;
    }

    .as-gallery-close-btn {
        width: 45px;
        height: 45px;
        font-size: 24px;
        top: 72px;
        right: 15px;
    }

    .as-gallery-image-counter {
        bottom: 20px;
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .as-gallery-item img {
        height: 200px;
    }
}
/* Related events */
 .as-related-event-image-wrapper {
     width: 100%;
     display: flex;
     justify-content: center;
 }

 /* Image styling */
 .as-related-event-image-wrapper img {
     width: 100%;
     max-width: 1000px;
     height: auto;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
     object-fit: cover;
 }

 @media (max-width: 480px) {
     .as-related-event-image-wrapper img {
         border-radius: 8px;
     }
 }
 /* Events page design */
 .as-aupevents-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.as-aupevents-header {
    background: linear-gradient(135deg, #08523f 0%, #0a6b51 100%);
    padding: 5px 30px;
    text-align: center;
    color: white;
}

.as-aupevents-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.as-aupevents-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.as-aupevents-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 3px solid #e9ecef;
    padding: 0 30px;
    gap: 10px;
}

.as-aupevents-tab {
    padding: 20px 35px;
    background: transparent;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 0;
}

.as-aupevents-tab:hover {
    color: #08523f;
    background: rgba(8, 82, 63, 0.05);
}

.as-aupevents-tab.as-aupevents-active {
    color: #08523f;
    background: white;
}

.as-aupevents-tab.as-aupevents-active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #f2c300;
}

.as-aupevents-content {
    padding: 40px 30px;
}

.as-aupevents-tab-panel {
    display: none;
    animation: as-aupevents-fadeIn 0.5s ease;
}

.as-aupevents-tab-panel.as-aupevents-active {
    display: block;
}

@keyframes as-aupevents-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.as-aupevents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.as-aupevents-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.as-aupevents-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.as-aupevents-card-image {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    position: relative;
}

.as-aupevents-card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.as-aupevents-card-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #f2c300;
    color: #08523f;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    z-index: 2;
}

.as-aupevents-card-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f2c300;
    color: #08523f;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.as-aupevents-card-body {
    padding: 25px;
}

.as-aupevents-card-title {
    font-size: 1.1rem;
    color: #08523f;
    margin-bottom: 15px;
    font-weight: 700;
}

.as-aupevents-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.as-aupevents-card-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.95rem;
}

.as-aupevents-card-meta-icon {
    width: 20px;
    height: 20px;
    background: #08523f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.as-aupevents-card-category {
    display: inline-block;
    background: #f2c300;
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px !important;
    text-decoration: none !important;
}

.as-aupevents-card-description {
    color: #495057;
    line-height: 1.6;
    margin-top: 15px;
    font-size: 0.95rem;
}

.as-aupevents-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.as-aupevents-empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.as-aupevents-empty h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .as-aupevents-header h1 {
        font-size: 1.8rem;
    }

    .as-aupevents-header p {
        font-size: 0.95rem;
    }

    .as-aupevents-tabs {
        /* flex-wrap: wrap; */
        padding: 0 15px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .as-aupevents-tab {
        padding: 15px 25px;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .as-aupevents-content {
        padding: 25px 15px;
    }

    .as-aupevents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .as-aupevents-container {
        border-radius: 15px;
    }

    .as-aupevents-header {
        padding: 30px 20px;
    }

    .as-aupevents-header h1 {
        font-size: 1.5rem;
    }

    .as-aupevents-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .as-aupevents-card-title {
        font-size: 1.2rem;
    }
}
/* Event detail page design */
.as-aup-eventdet-wrapper {
        min-height: 100vh;
        padding: 40px 20px;
        background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    }

.as-aup-eventdet-container {
    max-width: 1200px;
    margin: 0 auto;
}

.as-aup-eventdet-back-nav {
    margin-bottom: 30px;
}

.as-aup-eventdet-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: #08523f;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.as-aup-eventdet-back-link:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background: #08523f;
    color: white;
}

.as-aup-eventdet-hero {
    background: linear-gradient(135deg, #08523f 0%, #0a6b51 100%);
    border-radius: 25px;
    padding: 60px 50px;
    color: white;
    box-shadow: 0 20px 60px rgba(8, 82, 63, 0.3);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.as-aup-eventdet-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(241, 199, 12, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.as-aup-eventdet-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.as-aup-eventdet-hero-content {
    position: relative;
    z-index: 1;
}

.as-aup-eventdet-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #f1c70c;
    color: #08523f;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.as-aup-eventdet-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.as-aup-eventdet-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.as-aup-eventdet-meta-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.as-aup-eventdet-meta-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.as-aup-eventdet-meta-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.as-aup-eventdet-meta-label {
    font-size: 13px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.as-aup-eventdet-meta-value {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.as-aup-eventdet-venue-full {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #f1c70c;
}

.as-aup-eventdet-venue-full strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    opacity: 0.9;
}

.as-aup-eventdet-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.as-aup-eventdet-content-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.as-aup-eventdet-section-title {
    font-size: 2rem;
    color: #08523f;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.as-aup-eventdet-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f1c70c, #08523f);
    border-radius: 2px;
}

.as-aup-eventdet-section {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.as-aup-eventdet-section p {
    margin-bottom: 20px;
}

.as-aup-eventdet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.as-aup-eventdet-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s ease;
}

.as-aup-eventdet-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.as-aup-eventdet-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.as-aup-eventdet-gallery-item:hover img {
    transform: scale(1.1);
}

.as-aup-eventdet-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(8, 82, 63, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.as-aup-eventdet-pdf-section {
    background: linear-gradient(135deg, #08523f 0%, #0a6b51 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(8, 82, 63, 0.3);
}

.as-aup-eventdet-pdf-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.as-aup-eventdet-pdf-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.as-aup-eventdet-pdf-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.as-aup-eventdet-pdf-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #f1c70c;
    color: #08523f;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(241, 199, 12, 0.4);
    transition: all 0.3s ease;
}
.as-evdet-col{
    color: #f1c70c!important;
}
.as-aup-eventdet-pdf-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(241, 199, 12, 0.6);
    background: #ffd700;
}

.as-aup-eventdet-footer-nav {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .as-aup-eventdet-title {
        font-size: 2.5rem;
    }

    .as-aup-eventdet-content-card {
        padding: 35px;
    }

    .as-aup-eventdet-gallery {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .as-aup-eventdet-wrapper {
        padding: 20px 15px;
    }

    .as-aup-eventdet-hero {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .as-aup-eventdet-title {
        font-size: 2rem;
    }

    .as-aup-eventdet-meta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .as-aup-eventdet-content-card {
        padding: 25px;
    }

    .as-aup-eventdet-section-title {
        font-size: 1.5rem;
    }

    .as-aup-eventdet-section {
        font-size: 1rem;
    }

    .as-aup-eventdet-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .as-aup-eventdet-pdf-section {
        padding: 35px 25px;
    }

    .as-aup-eventdet-pdf-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .as-aup-eventdet-title {
        font-size: 1.5rem;
    }

    .as-aup-eventdet-hero {
        padding: 30px 20px;
    }

    .as-aup-eventdet-content-card {
        padding: 20px;
    }

    .as-aup-eventdet-back-link {
        padding: 10px 20px;
        font-size: 14px;
    }

    .as-aup-eventdet-category-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
}
/* Animation */
@keyframes as-aup-eventdet-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.as-aup-eventdet-content-card {
    animation: as-aup-eventdet-fadeInUp 0.6s ease forwards;
}
/* Membership Personal form styles */
.as-member-per-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(8, 82, 63, 0.16);
    overflow: hidden;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.as-member-per-form-header {
    background: linear-gradient(135deg, #08523f 0%, #0a6b51 100%);
    padding: 30px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.as-member-per-form-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 195, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.as-member-per-form-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.as-member-per-form-logo-icon {
    width: 40px;
    height: 40px;
    background: #f2c300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #08523f;
    box-shadow: 0 4px 12px rgba(242, 195, 0, 0.4);
}

.as-member-per-form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.as-member-per-form-subtitle {
    font-size: 14px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.as-member-per-form-body {
    padding: 40px;
}

.as-member-per-form-section {
    margin-bottom: 35px;
}

.as-member-per-form-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #08523f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f2c300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.as-member-per-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.as-member-per-form-field {
    display: flex;
    flex-direction: column;
    position: relative;
}

.as-member-per-form-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.as-member-per-form-required {
    color: #dc3545;
    font-size: 14px;
}

.as-member-per-form-input,
.as-member-per-form-select,
.as-member-per-form-textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    color: #1a1a1a;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.as-member-per-form-input:focus,
.as-member-per-form-select:focus,
.as-member-per-form-textarea:focus {
    outline: none;
    border-color: #08523f;
    box-shadow: 0 0 0 4px rgba(8, 82, 63, 0.1);
    transform: translateY(-2px);
}

.as-member-per-form-input::placeholder {
    color: #aaa;
}

.as-member-per-form-textarea {
    resize: vertical;
    min-height: 80px;
}

.as-member-per-form-error {
    display: none;
    font-size: 12px;
    color: #dc3545;
    margin-top: 5px;
    animation: shake 0.3s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.as-member-per-form-field.error .as-member-per-form-input,
.as-member-per-form-field.error .as-member-per-form-select,
.as-member-per-form-field.error .as-member-per-form-textarea {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.as-member-per-form-field.error .as-member-per-form-error {
    display: block;
}

.as-member-per-form-field.success .as-member-per-form-input,
.as-member-per-form-field.success .as-member-per-form-select {
    border-color: #28a745;
}

.as-member-per-form-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.as-member-per-form-radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.as-member-per-form-radio-item:hover {
    transform: translateX(3px);
}
.as-member-per-form-radio {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #08523f;
}
.as-member-per-form-checkbox-group {
    margin-top: 10px;
}
.as-member-per-form-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.as-member-per-form-checkbox-item:hover {
    background: rgba(8, 82, 63, 0.05);
}

.as-member-per-form-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #08523f;
    margin-top: 2px;
}

.as-member-per-form-checkbox-label {
    font-size: 13px;
    color: #1a1a1a;
    line-height: 1.5;
    flex: 1;
}

.as-member-per-form-note {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
    padding: 10px;
    background: rgba(242, 195, 0, 0.1);
    border-left: 3px solid #f2c300;
    border-radius: 5px;
}

.as-member-per-form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.as-member-per-form-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.as-member-per-form-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.as-member-per-form-btn:hover::before {
    width: 300px;
    height: 300px;
}

.as-member-per-form-btn-submit {
    background: linear-gradient(135deg, #08523f 0%, #0a6b51 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(8, 82, 63, 0.12);
}

.as-member-per-form-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(8, 82, 63, 0.16);
}

.as-member-per-form-btn-submit:active {
    transform: translateY(-1px);
}

.as-member-per-form-btn-reset {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
}

.as-member-per-form-btn-reset:hover {
    background: #f8f9fa;
    border-color: #666;
}

.as-member-per-form-date-note {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 11px;
    color: #666;
    background: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .as-member-per-form-body {
        padding: 25px;
    }

    .as-member-per-form-header {
        padding: 25px;
    }

    .as-member-per-form-row {
        grid-template-columns: 1fr;
    }

    .as-member-per-form-actions {
        flex-direction: column;
    }

    .as-member-per-form-btn {
        width: 100%;
    }

    .as-member-per-form-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .as-member-per-form-container {
        border-radius: 15px;
    }

    .as-member-per-form-body {
        padding: 20px;
    }

    .as-member-per-form-radio-group {
        flex-direction: column;
        gap: 12px;
    }
}

.as-member-per-form-success-message {
    /* display: none; */
    background: linear-gradient(135deg, #28a745 0%, #22c55e 100%);
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    animation: slideIn 0.5s ease;
}

.as-member-per-form-success-message.show {
    display: block;
}
.as-member-per-form-error-message {
            background: linear-gradient(135deg, #dd1d0f 0%, #a7271e 100%);
            color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 20px;
            animation: slideIn 0.5s ease;
        }
.as-member-per-form-success-message.show {
    display: block;
}
.as-member-per-form-dob {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 10px;
}
/* personal membership modal design */
 .as-member-per-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 82, 63, 0.75);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.as-member-per-modal {
    background: #fff;
    width: 100%;
    max-width: 700px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
    from {
        transform: scale(0.95) translateY(30px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.as-member-per-modal-header {
    padding: 24px 28px;
    background: linear-gradient(135deg, #08523f 0%, #0a6b51 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.as-member-per-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.as-member-per-modal-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.as-member-per-modal-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.as-member-per-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.as-member-per-modal-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.as-member-per-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.as-member-per-modal-body {
    padding: 32px 28px;
    max-height: 60vh;
    overflow-y: auto;
    background: linear-gradient(to bottom, #fafafa 0%, #fff 100%);
}

.as-member-per-modal-body::-webkit-scrollbar {
    width: 8px;
}

.as-member-per-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.as-member-per-modal-body::-webkit-scrollbar-thumb {
    background: #08523f;
    border-radius: 10px;
}

.as-member-per-modal-body::-webkit-scrollbar-thumb:hover {
    background: #064031;
}

.as-member-per-modal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    font-size: 14px;
    transition: all 0.2s ease;
}

.as-member-per-modal-row:hover {
    border-color: #08523f;
    box-shadow: 0 2px 8px rgba(8, 82, 63, 0.08);
    transform: translateX(2px);
}

.as-member-per-modal-row strong {
    color: #333;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0.8;
}

.as-member-per-modal-row span {
    color: #08523f;
    font-weight: 500;
    text-align: right;
}

.as-member-per-modal-footer {
    padding: 20px 28px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #f9f9f9;
    border-top: 1px solid #e8e8e8;
}

.as-member-per-modal-btn {
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.as-member-per-modal-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.as-member-per-modal-btn:hover::before {
    width: 300px;
    height: 300px;
}

.as-member-per-modal-btn svg {
    position: relative;
    z-index: 1;
}

.as-member-per-modal-btn span {
    position: relative;
    z-index: 1;
}

.as-member-per-modal-btn-edit {
    background: #e8e8e8;
    color: #333;
}

.as-member-per-modal-btn-edit:hover {
    background: #d4d4d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.as-member-per-modal-btn-submit {
    background: linear-gradient(135deg, #08523f 0%, #0a6b51 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(8, 82, 63, 0.3);
}

.as-member-per-modal-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 82, 63, 0.4);
}

.as-member-per-modal-btn-submit:active {
    transform: translateY(0);
}
@media (max-width: 768px) {
    .as-member-per-modal {
        max-width: 100%;
        border-radius: 12px;
    }

    .as-member-per-modal-header {
        padding: 20px;
    }

    .as-member-per-modal-header h3 {
        font-size: 18px;
    }

    .as-member-per-modal-icon {
        width: 36px;
        height: 36px;
    }

    .as-member-per-modal-body {
        padding: 24px 20px;
        max-height: 50vh;
    }

    .as-member-per-modal-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 14px 16px;
    }

    .as-member-per-modal-row span {
        text-align: left;
    }

    .as-member-per-modal-footer {
        padding: 16px 20px;
        flex-direction: column;
    }

    .as-member-per-modal-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}
@media (max-width: 480px) {
    .as-member-per-modal-overlay {
        padding: 10px;
    }

    .as-member-per-modal-header {
        padding: 16px;
    }

    .as-member-per-modal-body {
        padding: 20px 16px;
    }

    .as-member-per-modal-footer {
        padding: 12px 16px;
    }
}
.as-member-per-sectre {
    font-size: 15px;
    color: #064232;
    margin-bottom: 5px;
}
.as-text-decor{
    text-decoration: none !important;
}
/* Aspid Membership Benefits styles. */

.as-membership-container-benefit {
    max-width: 1200px;
    margin: auto;
    /* padding: 50px 20px; */
}

.as-membership-container-inner-benefit {
    max-width: 1200px;
    margin: auto;
    padding: 20px 20px;
}

.as-benefits-section {
    background: linear-gradient(135deg, rgba(11, 93, 70, 0.03) 0%, rgba(242, 195, 0, 0.03) 100%);
    /* padding: 60px 20px;
    margin-top: 40px; */
}

.as-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.as-benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.as-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0b5d46 0%, #f2c300 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.as-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(11, 93, 70, 0.15);
    border-color: #f2c300;
}

.as-benefit-card:hover::before {
    transform: scaleX(1);
}

.as-benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b5d46 0%, #0d7558 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 6px 20px rgba(11, 93, 70, 0.25);
}

.as-benefit-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #f2c300;
    transform: scale(1.15);
    opacity: 0;
    transition: all 0.4s ease;
}

.as-benefit-card:hover .as-benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #f2c300 0%, #e6b800 100%);
}

.as-benefit-card:hover .as-benefit-icon::after {
    opacity: 1;
    transform: scale(1.25);
}

.as-benefit-icon i {
    font-size: 32px;
    color: #f2c300;
    transition: all 0.4s ease;
}

.as-benefit-card:hover .as-benefit-icon i {
    color: #0b5d46;
    transform: scale(1.1);
}

.as-benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0b5d46;
    margin-bottom: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.as-benefit-card:hover .as-benefit-title {
    color: #0d7558;
}

.as-benefit-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.as-benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(242, 195, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0b5d46;
    transition: all 0.3s ease;
}

.as-benefit-card:hover .as-benefit-number {
    background: #f2c300;
    transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 992px) {
    .as-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .as-benefits-section {
        padding: 40px 15px;
    }

    .as-benefit-card {
        padding: 28px 22px;
    }

    .as-benefit-icon {
        width: 60px;
        height: 60px;
    }

    .as-benefit-icon i {
        font-size: 28px;
    }

    .as-benefit-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .as-benefits-grid {
        grid-template-columns: 1fr;
    }

    .as-benefit-card {
        padding: 25px 20px;
    }
}
/* Events and Poster ESID */
.aspid-eve-pos-wrapper {
    background: linear-gradient(135deg, #08523f 0%, #063b2e 100%);
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}
.aspid-eve-pos-wholecard {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: aspidFadeUp 0.8s ease forwards;
    margin: auto;
    max-width: 1200px;

}
.aspid-eve-pos-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.aspid-eve-pos-image-box {
    flex: 1 1 450px;
}
.aspid-eve-pos-image-box img {
    width: 100%;
    border-radius: 14px;
    transition: transform 0.4s ease;
}
.aspid-eve-pos-image-box img:hover {
    transform: scale(1.03);
}
.aspid-eve-pos-content {
    flex: 1 1 500px;
}
.aspid-eve-pos-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #08523f;
    line-height: 1.4;
}
.aspid-eve-pos-title span {
    color: #f1c70c;
}
.aspid-eve-pos-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #333;
}
.aspid-eve-pos-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #08523f;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.aspid-eve-pos-btn:hover {
    background: #f1c70c;
    color: #08523f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.aspid-eve-pos-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    display: none;
}
.aspid-eve-pos-btn:hover .aspid-eve-pos-spinner {
    display: inline-block;
    animation: aspidSpin 0.8s linear infinite;
}
@keyframes aspidSpin {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes aspidFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 992px) {
    .aspid-eve-pos-wholecard {
        padding: 30px;
    }
    .aspid-eve-pos-container {
        flex-direction: column;
        gap: 30px;
    }
    .aspid-eve-pos-content,
    .aspid-eve-pos-info-card,
    .aspid-eve-pos-image-box {
        flex: 1 1 100%;
        width: 100%;
    }
    .aspid-eve-pos-info-card {
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .aspid-eve-pos-wrapper {
        padding: 40px 15px;
    }
    .aspid-eve-pos-wholecard {
        padding: 25px 20px;
        border-radius: 16px;
    }
    .aspid-eve-pos-title {
        font-size: 22px;
        line-height: 1.3;
    }
    .aspid-eve-pos-content p {
        font-size: 14.5px;
        line-height: 1.6;
    }
    .aspid-eve-pos-btn {
        width: 100%;
        justify-content: center;
    }
    .aspid-eve-pos-banner {
        margin-bottom: 25px;
        border-radius: 16px;
    }
}
.aspid-eve-pos-info-card {
    flex: 1 1 380px;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #f1c70c;
    transition: all 0.4s ease;
    animation: aspidFadeUp 0.8s ease 0.3s both;
}
.aspid-eve-pos-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.aspid-eve-pos-stat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}
.aspid-eve-pos-stat:hover {
    transform: translateX(6px);
}
.aspid-eve-pos-stat:last-child {
    border-bottom: none;
}
.aspid-eve-pos-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #08523f;
    color: #f1c70c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.aspid-eve-pos-stat:hover .aspid-eve-pos-stat-icon {
    background: #f1c70c;
    color: #08523f;
}
.aspid-eve-pos-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 4px;
}
.aspid-eve-pos-stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: #08523f;
}
.aspid-eve-pos-deadline-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    background: #f1c70c;
    color: #08523f;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    animation: aspidPulse 2s infinite;
}
@keyframes aspidPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}
.aspid-eve-pos-banner {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    animation: aspidFadeUp 0.8s ease forwards;
}
.aspid-eve-pos-banner img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}
.aspid-eve-pos-banner:hover img {
    transform: scale(1.05);
}
.aspid-eve-pos-banner-overlay {
    position: absolute;
    inset: 0;
}
/* Guidliness page styles */
.aspid-guid-wrapper {
    padding: 70px 20px 90px;
}
.aspid-guid-hero {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.aspid-guid-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e6f0ec;
    color: #08523f;
    border: 1px solid rgba(8, 82, 63, 0.15);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.aspid-guid-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #08523f;
    line-height: 1.2;
    margin-bottom: 12px;
}
.aspid-guid-hero p {
    font-size: 0.95rem;
    color: #5a6e68;
    line-height: 1.7;
    font-weight: 300;
}
.aspid-guid-featured {
    max-width: 960px;
    margin: 0 auto 48px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(8, 82, 63, 0.1);
    box-shadow: 0 8px 32px rgba(8, 82, 63, 0.08);
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.aspid-guid-featured-accent {
    width: 6px;
    background: linear-gradient(180deg, #08523f, #f1c70c);
    flex-shrink: 0;
}
.aspid-guid-featured-body {
    padding: 32px 36px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.aspid-guid-featured-left {
    flex: 1;
    min-width: 220px;
}
.aspid-guid-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff4c2;
    color: #7a6000;
    border: 1px solid #f1c70c;
    border-radius: 100px;
    padding: 3px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: aspid-guid-blink 2.2s ease-in-out infinite;
}
@keyframes aspid-guid-blink {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(241, 199, 12, 0);
    }

    50% {
        box-shadow: 0 0 10px 2px rgba(241, 199, 12, 0.3);
    }
}
.aspid-guid-featured-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #08523f;
    line-height: 1.4;
    margin-bottom: 6px;
}
.aspid-guid-featured-sub {
    font-size: 0.82rem;
    color: #7a9490;
    font-weight: 400;
}
.aspid-guid-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #08523f;
    color: #fff;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.aspid-guid-featured-btn:hover {
    background: #f1c70c;
    color: #08523f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 199, 12, 0.35);
}
.aspid-guid-toolbar {
    max-width: 960px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.aspid-guid-search-wrap {
    flex: 1;
    min-width: 200px;
    position: relative;
}
.aspid-guid-search-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0b4ae;
    font-size: 0.85rem;
}
.aspid-guid-search {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1px solid #d8e6e1;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.3s;
}
.aspid-guid-search:focus {
    border-color: #08523f;
    box-shadow: 0 0 0 3px rgba(8, 82, 63, 0.08);
}
.aspid-guid-count {
    font-size: 0.78rem;
    color: #7a9490;
    font-weight: 500;
    white-space: nowrap;
}
.aspid-guid-list {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(8, 82, 63, 0.08);
    box-shadow: 0 8px 32px rgba(8, 82, 63, 0.07);
    overflow: hidden;
}
.aspid-guid-list-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 16px 28px;
    background: #f0f7f4;
    border-bottom: 1px solid rgba(8, 82, 63, 0.1);
}
.aspid-guid-list-header span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #08523f;
}
.aspid-guid-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 28px;
    border-bottom: 1px solid #f0f4f2;
    transition: background 0.25s ease, transform 0.2s ease;
    cursor: default;
}
.aspid-guid-item:last-child {
    border-bottom: none;
}
.aspid-guid-item:hover {
    background: #f7fbf9;
}
.aspid-guid-pdf-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff4f4;
    border: 1px solid rgba(220, 60, 60, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.aspid-guid-item:hover .aspid-guid-pdf-icon {
    transform: scale(1.08);
}
.aspid-guid-pdf-icon i {
    color: #e03535;
    font-size: 1.1rem;
}
.aspid-guid-item-body {
    flex: 1;
    min-width: 0;
}
.aspid-guid-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2e28;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.aspid-guid-item-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.aspid-guid-item-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #7a9490;
    letter-spacing: 0.03em;
}
.aspid-guid-item-tag i {
    font-size: 0.65rem;
}
.aspid-guid-lang {
    display: inline-block;
    padding: 2px 10px;
    background: #e6f0ec;
    color: #08523f;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.aspid-guid-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #08523f;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 7px;
    border: 1.5px solid rgba(8, 82, 63, 0.2);
    background: transparent;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.aspid-guid-view i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}
.aspid-guid-view:hover {
    background: #08523f;
    color: #fff;
    border-color: #08523f;
}
.aspid-guid-view:hover i {
    transform: translateX(3px);
}
.aspid-guid-empty {
    padding: 60px 20px;
    text-align: center;
    color: #9ab0aa;
    font-size: 0.9rem;
    display: none;
}
.aspid-guid-empty i {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
    opacity: 0.4;
}
@media (max-width: 640px) {
    .aspid-guid-featured-body {
        padding: 24px 20px;
    }
    .aspid-guid-item {
        padding: 16px 18px;
        gap: 14px;
    }
    .aspid-guid-list-header {
        padding: 14px 18px;
    }
    .aspid-guid-item-title {
        white-space: normal;
    }
    .aspid-guid-toolbar {
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .aspid-guid-item {
        flex-wrap: wrap;
    }
    .aspid-guid-pdf-icon {
        width: 38px;
        height: 38px;
    }
    .aspid-guid-view {
        width: 100%;
        justify-content: center;
        /* margin-left: 52px; */
    }
}
.aspid-guid-newtag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #e03535, #c62828);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(224, 53, 53, 0.35);
    text-transform: uppercase;
    animation: aspidNewPulse 2s infinite;
    z-index: 2;
}
@keyframes aspidNewPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}
.aspid-guid-featured {
    position: relative;
}