@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter Tight", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    margin-top: 0px;
    margin-bottom: 0px;
}

p {
    margin: 0;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0 !important;
}

a {
    text-decoration: none !important;
}

.section_gap {
    margin: 80px 0 !important;
}

.section_space {
    padding: 40px 0 !important;
}

.section_gap_top {
    margin-top: 80px !important;
}

.section_gap_bottom {
    margin-bottom: 80px !important;
}

:root {
    --primary_color: #2e7042;
    --primary_hover: #7ab000;
    --primary_text_color: #ffffff;
    --gray-color: #4a4a4a;
    --dark: #111;
    --border: #e5e5e5;
}

.gallery_active .product_cart {
    margin: 1px;
}

.management_item {
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.management_item_image img {
    border-radius: 100%;
    border: 5px solid #dddddd;
    width: 170px !important;
    height: 170px !important;
    margin: 0 auto;
    object-fit: cover;
}

.management_item_image {
    margin-top: -85px;
}

.management_item_carve {
    width: 100%;
    height: 120px;
    background: var(--primary_color);
}

.management_item_text {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.management_item_name h6 {
    font-weight: 600;
    font-size: 18px;
}

.management_item_designation p {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.management_item_name h6 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*=====Header Section Start=====*/

.header_top {
    background: #535353;
    padding: 4px 0px;
}

.header_info_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.contact_items {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact_item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact_item span {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.contact_item span svg {
    width: 16px;
    height: 16px;
}

.contact_item span {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.header_social_links {
    display: flex;
    gap: 15px;
}

.social_link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.social_link svg {
    width: 18px;
    height: 18px;
}

.contact-card span,
.contact-card span p,
.contact-card span a {
    color: #ffffff !important;
}

.social_link:hover {
    background: var(--primary_color);
    color: #fff;
}

.header_area {
    background-color: #131518;
    /* position: absolute; */
    z-index: 99999;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.08);
    transition: background 0.3s, border 0.3s, border-radius 0.3s,
        box-shadow 0.3s;
    padding: 10px 0px 10px 0px;
    z-index: 999;
}

.header_area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    /* height: 80px; */
    /* background-color: rgba(0, 0, 0, 0.4) !important; */
    background-color: #131518;
    backdrop-filter: saturate(180%) blur(20px);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header_area .main_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.header_area .navbar-brand .img-fluid {
    width: auto;
    max-height: 40px;
}

.header_area .main_menu_list {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
}

.header_area .main_menu_list_item {
    margin-right: 15px;
    position: relative;
}

.header_area .main_menu_list_item a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    transition: color 0.3s ease;
    position: relative;
}

.header_area .main_menu_list_item a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary_color);
    transition: width 0.3s ease;
}

.header_area .main_menu_list_item:hover > a::after,
.header_area .main_menu_list_item a.activate::after {
    width: 80%;
}

.activate,
.header_area .main_menu_list_item:hover > a {
    color: var(--primary_color) !important;
}

.activate,
.header_area .main_menu_list_item:hover > a svg {
    color: var(--primary_color) !important;
}

/* Navbar Toggle (Mobile Menu Icon) */
.header_area .navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.header_area .navbar-toggle .toggle-icon {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Submenu Styles */
.header_area .main_menu_list_item.sub_menu {
    position: relative;
}

.header_area .main_menu_list_item.sub_menu > a {
    cursor: pointer;

    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
}

.header_area .sub_menu_list {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    padding: 0px 0px;
    margin: 0;
    min-width: 240px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.header_area .main_menu_list_item.sub_menu:hover .sub_menu_list {
    opacity: 1;
    visibility: visible;
    transform: translateY(5%);
}

.header_area .sub_menu_list li {
    margin: 0;
    padding: 0;
}

.header_area .sub_menu_list li a {
    padding: 12px 20px;
    display: block;
    color: #000;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    white-space: nowrap;
}

.header_area .sub_menu_list li a:hover {
    background-color: #f4f4f4;
    color: var(--primary_color);
    padding-left: 25px;
}

/* Submenu arrow rotation on hover */
.header_area .main_menu_list_item.sub_menu:hover > a svg {
    transform: rotate(180deg);
}

.header_area .main_menu_list_item.sub_menu > a svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    color: #fff;
}

.see_all {
    color: #fff;
    text-decoration: none;
    background: var(--primary_color);
    float: right;
    border-radius: 5px;
    font-size: 15px;
    padding: 6px 10px;
}

.member__button {
    text-align: center;
    margin-top: 20px !important;
}

.member_btn_link {
    background: var(--primary_color);
    color: #fff;
    padding: 10px 30px;
    display: inline-block;
    border-radius: 30px;
    text-decoration: none;
}

.contact_btn a {
    background-color: var(--primary_color) !important;
    border: 1px solid var(--primary_color) !important;
    color: #fff !important;
    padding: 8px 15px !important;
    text-decoration: none;

    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    transition: all 0.3s ease !important;
    display: inline-block;
    border-radius: 4px;
}

.contact_btn a:hover {
    background-color: transparent !important;
    color: var(--primary_color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact_banner {
    width: 100%;
    max-height: 550px !important;
    position: relative;
    overflow: hidden;
}

.contact_banner .project_details_img {
    width: 100%;
    max-height: 550px !important;
    position: relative;
    overflow: hidden;
}

.contact_banner .project_details_img img {
    width: 100%;
    max-height: 100% !important;
    position: relative;
    overflow: hidden;
    object-fit: cover;
}

/*=====Header Section End=====*/
.read__more {
    text-decoration: none;
    color: var(--primary_color);
    border: 1px solid var(--primary_color);
    padding: 3px 10px;
    border-radius: 3px;
    margin-top: 20px;
    display: block;
    width: 110px;
}

.gallery-img {
    height: 300px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.login {
    display: block ruby;
}

.login a {
    text-decoration: none;
    font-size: 16px;
    background-color: var(--primary_color);
    padding: 10px 30px;
    color: white;
    font-weight: bold;
    border-radius: 10;
    border-radius: 10px;
}

/*=====Slider Section Start=====*/
.carousel {
    overflow: hidden;
}

.owl-prev {
    background: #f1f1f1;
    color: var(--primary_color);
    border: 2px solid var(--primary_color);
    font-size: 30px;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 39px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

.owl-next {
    background: #f1f1f1;
    color: var(--primary_color);
    border: 2px solid var(--primary_color);
    font-size: 30px;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 39px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

section.managing_committee .owl-prev {
    left: -10px;
}

section.managing_committee .owl-next {
    right: -10px;
}

.banner_slider_active .owl-prev {
    left: 40px;
    background: #fff;
    background: hsla(0, 0%, 100%, 0.2);
    border-color: #fff;
    color: #fff;
}

.banner_slider_active .owl-next {
    right: 40px;
    background: #fff;
    background: hsla(0, 0%, 100%, 0.2);
    border-color: #fff;
    color: #fff;
}

.top_banner_image {
    max-height: 90vh;
}

.top_banner_image img {
    width: 100% !important;
    max-height: 100%;
}

/* Video Banner Area Start */

.banner_area {
    position: relative;
    width: 100%;
    height: 850px;
    overflow: hidden;
}

.banner_video {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner_video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
    background-color: #16161f;
    opacity: 0.67;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.video_frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.banner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: start;
    color: white;
    z-index: 2;
    width: 100%;
    max-width: 1310px;
    padding: 20px 150px 20px 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.banner_content h1 {
    font-size: 70px;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;
    /* text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.69); */
    color: var(--primary_color);
}

.banner_content p {
    font-family: "Poppins", Sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #fff;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.banner_btn {
    background-color: var(--primary_color);
    color: #fff;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    fill: #131518;
    border-radius: 5px 5px 5px 5px;
    padding: 12px 30px 12px 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--primary_color);
    margin-top: 10ox;
}

.banner_btn:hover {
    background-color: transparent;
    color: var(--primary_color);
    border: 2px solid var(--primary_color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/*=====  Call Section Area Start  =====*/
.call_section_area {
    width: 100%;
    background-color: #f4f4f4;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;

    background-image: url("https://cdn-jjgoh.nitrocdn.com/arWkhnmRlfVyvYMxdBnaUHMHNNkXfamB/assets/images/optimized/rev-9bc1e1a/urban.com.bd/wp-content/uploads/2022/09/Section_hotline_Lineart.png");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 24% auto;
}

.call_section_area h3 {
    font-size: 18px;
    font-weight: 600;
}

.call_content {
    text-decoration: inherit !important;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

.call_content:hover {
    transform: scale(0.95);
}

.call_content span {
    font-size: 38px;
    line-height: 38px;
    font-weight: 500;
    color: #000;
    letter-spacing: 2.2px;
    transition: all 0.3s ease;
}

.call_content:hover span {
    color: #ff0000;
}

.call_content_icon {
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.call_content:hover .call_content_icon {
    background-color: #ff0000;
    border-color: #ff0000;
    transform: rotate(-10deg);
}

.call_content_icon svg {
    width: 28px;
    height: 28px;
    color: #ff0000;
    transition: all 0.3s ease;
}

.call_content:hover .call_content_icon svg {
    color: #fff;
    transform: scale(1.1);
}

/*===== Stats container ===== */

.project_stats_container {
    display: flex;
    gap: 60px;
    justify-content: space-between;
    align-items: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 35px 10px;
}

.project_stat_item {
    text-align: center;
}

.project_stat_number {
    font-size: 72px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.project_stat_label {
    font-size: 16px;
    color: var(--primary_color);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.no_project_fount {
    margin-bottom: 20px 0px;
}

.no_project_fount h4 {
    padding: 10px 20px;
    background: var(--primary_color);
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    margin-bottom: 0px;
    font-size: 20px;
}

.project_showcase_container p {
    color: #fff;
}

/*====== Project Area Start  ======*/

.project_grid_title {
    font-size: 42px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.projects_area {
    background-color: #1b2121;
    padding: 40px 0px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.project-card {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #2c2c2c;
    text-align: center;
}

.project-card:hover {
    transform: scale(1.02);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.6s ease;
    filter: brightness(90%) contrast(100%) saturate(96%) blur(0px)
        hue-rotate(0deg);
}

.project-card:hover .project-image {
    transform: scale(1.1);
    filter: brightness(105%) contrast(100%) saturate(110%) blur(0px)
        hue-rotate(0deg);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    padding: 26px 10px 10px;
    transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        padding 0.6s ease;
}

.project-card:hover .project-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 60%,
        transparent 100%
    );
    padding: 30px 10px 14px;
}

.project-title {
    color: #ffffff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
        letter-spacing 0.4s ease;
}

.project-location {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.4s ease;
    opacity: 0.9;
}

.project-card:hover .project-location {
    transform: translateY(-2px);
    opacity: 1;
}

.see-more-container {
    text-align: center;
    margin-top: 40px;
}

.see-more-btn {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.see-more-btn:hover {
    background: var(--primary_color);
    color: var(--primary_text_color);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    border: 2px solid var(--primary_color);
}

/*=== project showcase area start ===*/
.property-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid #fff;
}

.showcase-image {
    text-align: center;
}

.showcase-image img {
    width: 360px;
    height: 360px;
    object-fit: contain;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.brand-logo {
    width: 70%;
}

.showcase-title {
    color: #fff;
    font-size: 20px;
}

.showcase-content .see-more-btn {
    text-align: left;
    margin-top: 0px;
    display: block;
    width: fit-content;
}

/*================ Why Show Case project start =========== */

.why_choose_us_area {
    margin-top: 40px;
}

.header_title {
    text-align: center;
    font-size: 50px;
    font-weight: 300;
}

.why_choose_us_area {
    width: 100%;
}

.why_choose_us_area .why_choose_us_items:nth-child(even) {
    background: #fff;
}

.why_choose_us_area .why_choose_us_items:nth-child(odd) {
    background: #f8f8f8;
}

.why_choose_us_items .container {
    max-width: 1300px !important;
    margin: 0 auto;
}

.why_choose_us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0px;
}

.why_choose_us .content {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.why_choose_us .content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0px !important;
    color: #2c2c2c;
}

.why_choose_us .content p {
    font-size: 16px;
    line-height: 22px;
    color: #666;
    padding: 24px 0px !important;
    margin-bottom: 0px !important;
    font-family: "poppins", sans-serif;
}

.why_choose_us .content .highlight {
    color: #5cb85c;
    font-weight: 500;
}

.why_choose_us .content .stats strong {
    color: #2c2c2c;
}

.shy_choose_us_btn {
    background-color: rgba(215, 215, 215, 0);

    font-size: 16px;
    font-weight: 500;
    color: #414142;
    border: 1px solid #414142;
    border-radius: 25px 25px 25px 25px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.4);
    padding: 20px 25px;
    text-decoration: none;
    text-transform: uppercase;
}

.shy_choose_us_btn:hover {
    background: var(--primary_color);
    color: var(--primary_text_color);
    border: 1px solid var(--primary_color);
}

.why_choose_us .image-box {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 2px;
}

.why_choose_us .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/*========= Home Page contact us section  ==========*/

.home_page_contact_section_area {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #f4f4f4;
}

.home_page_contact_box {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.home_page_contact_img {
    width: 100%;
    max-width: 69%;
    height: auto;
    position: relative;
}

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

.home_page_content_text {
    background: #0f1a16;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 29%;
    z-index: 999;
    margin-left: -120px;
    padding: 60px 40px;
}

.home_page_content_text h2 {
    font-size: 46px;
    line-height: 52px;
    font-weight: 300;
    text-transform: none;
    color: #fff;
}

.home_page_content_text a {
    width: fit-content;
    margin-top: 30px;
}

/*===== who we Area page =====*/
.others_banner_design {
    width: 100%;
    height: 600px;
}

.others_banner_design h1 {
    text-align: center;
    font-size: 82px;
}

.why_we_are_summary_ara {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
}

.why_we_summary_content {
    padding: 60px 0px;
}

.why_we_summary_content p {
    font-size: 18px;
    line-height: 24px;
    text-align: justify;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
}

.why_summery_left_img {
    position: absolute;
    left: 0;
    top: 0;
    width: fit-content;
    height: 100%;
    z-index: 1;

    width: 100%;
    max-width: 100%;
    background-image: url(https://cdn-jjgoh.nitrocdn.com/arWkhnmRlfVyvYMxdBnaUHMHNNkXfamB/assets/images/optimized/rev-c15baff/urban.com.bd/wp-content/uploads/2021/07/MapLineart.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 15% auto;
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.why_summery_left_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why_summery_right_img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 250px;
    height: 100%;
    z-index: 1;
}

.why_summery_right_img img {
    width: fit-content;
    height: 100%;
    object-fit: contain;
}

/*======== core purpose area  ==========*/

.core_purpose_area {
    position: relative;
    width: 100%;
    background: #1a1a1a;
}

.section_heading > h2 {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: capitalize;
    color: #fff;
    padding: 24px 4px;
    text-align: center;
    background: #1a1a1a;
}

.core_purpose_video {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.core_purpose_video .video_frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.core_purpose_video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.core_purpose_video .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 90%;
    max-width: 1200px;
}

.core_purpose_video .content .top-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.core_purpose_video .content .main-title {
    font-size: 52px;
    font-weight: 300;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px #000;
    color: #fbfbfb;
}

.core_purpose_video .content .sub-title {
    color: white;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

/*==== about us area =====*/
.about_us_area {
    padding: 80px 0;
    background-image: url(https://demo.awaikenthemes.com/inclub/wp-content/uploads/2024/12/about-us-bg.svg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: auto;
}

.about_us_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.about__gallery {
    position: relative;
    display: flex;
    gap: 14px;
    align-items: center;
}

.about_gallery_left {
    width: 58%;
    flex-shrink: 0;
}

.about_gallery_left .img-main {
    width: 100%;
    aspect-ratio: 339 / 659;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.about_gallery_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.about_gallery_right .img-top-right,
.about_gallery_right .img-bot-right {
    width: 100%;
    flex: 1;
    min-height: 0;
    aspect-ratio: 1 / 1.28;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.about__gallery img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about__gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.play-btn {
    position: absolute;
    left: 58%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    /* box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4); */
    transition: background 0.25s, transform 0.25s;
    border: 4px solid #fff;
}

.play-btn svg {
    margin-left: 4px;
    width: 26px;
    height: 26px;
}

.play-btn:hover {
    background: var(--primary_color);
    transform: translate(-50%, -50%) scale(1.08);
}

/* ── RIGHT — CONTENT ─────────────────────────────────────── */
.about__content {
    padding: 10px 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.section-sub-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 18px !important;
}

.section-sub-title::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 3px;
    background: var(--primary_color);
    border-radius: 2px;
}

.section-sub-title::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 3px;
    background: var(--primary_color);
    border-radius: 2px;
}

.section-main-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    text-transform: capitalize;
    margin-bottom: 20px !important;
}

.section-main-title span {
    color: var(--primary_color);
}

.about__desc {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 36px !important;
    max-width: 100%;
    letter-spacing: 0px;
}

/*=============  FEATURE ROWS  ============= */
.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.feature__icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    background-color: color-mix(in srgb, var(--primary_color) 10%, transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}

.feature__icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary_color);
}

.feature:hover .feature__icon {
    background: var(--primary_color);
}

.feature:hover .feature__icon svg * {
    stroke: #fff;
}

.feature__body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.feature__body p {
    font-size: 15px;
    line-height: 22px;
    color: #4a4a4a;
}

/* ── CTA ROW ─────────────────────────────────────────────── */
.about__cta {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 14px;
}

.btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary_color);
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease-in-out;
    z-index: 1;
}

.btn-learn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 100%;
    background: #191a1f;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-learn:hover::before {
    width: 100%;
    left: 0;
    right: auto;
    color: #fff;
}

.btn-learn:hover {
    color: #fff !important;
}

.btn-learn svg {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    transform: rotate(0deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* ← এটা ছিল না */
    will-change: transform;
}

.btn-learn:hover svg {
    transform: rotate(45deg);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease;
}

.phone-circle {
    width: 48px;
    height: 48px;
    background: color-mix(in srgb, var(--primary_color) 10%, transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}

.call_icon_circle {
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px
        rgba(20.000000000000004, 23.999999999999986, 62, 0.10196078431372549);
}

.phone-circle svg {
    width: 22px;
    height: 22px;
    color: var(--primary_color);
}

.contact-info:hover .phone-circle {
    background: var(--primary_color);
}

.contact-info:hover .phone-circle svg {
    color: #fff;
}

.contact-info__text {
    display: flex;
    flex-direction: column;
}

.contact-info small {
    display: block;
    font-size: 0.78rem;
    color: #4a4a4a;
    margin-bottom: 3px;
}

.contact-info strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.02em;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet — 1024px */
@media (max-width: 1024px) {
    .about_us_wrapper {
        gap: 40px;
    }

    .about_gallery_right {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

/* Tablet portrait — 900px: stack layout */
@media (max-width: 900px) {
    .about_us_wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__gallery {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }

    .about_gallery_right {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .about__desc {
        max-width: 100%;
    }

    .about_gallery_right .img-top-right,
    .about_gallery_right .img-bot-right {
        aspect-ratio: 1 / 1.2;
    }
}

/* Mobile — 600px */
@media (max-width: 600px) {
    .about_us_area {
        padding: 50px 0;
    }

    .about__gallery {
        gap: 8px;
    }

    .about_gallery_right {
        gap: 8px;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .play-btn {
        width: 52px;
        height: 52px;
    }

    .play-btn svg {
        width: 16px;
        height: 16px;
    }

    .section-main-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
        line-height: 38px;
    }

    .about__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-learn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

/* Small mobile — 400px */
@media (max-width: 400px) {
    .about_gallery_left {
        width: 55%;
    }

    .about_gallery_right {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .play-btn {
        width: 44px;
        height: 44px;
        left: 55%;
    }

    .feature__icon {
        width: 48px;
        height: 48px;
    }

    .feature__icon svg {
        width: 22px;
        height: 22px;
    }
}

.why_choose_are_items {
    padding: 60px 0px;
}

.why_choose_are_items .why_choose_are {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.why_choose_are_items .why_choose_are .why_choose_content {
    width: 40%;
    flex: 1 1 auto;
}

.why_choose_are_items .why_choose_are .image_box_are {
    width: 60%;
    flex: 1 1 auto;
}

.why_choose_are_items .why_choose_are .image_box_are img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 4px;
}

.why_choose_content h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 15px;
}

.why_choose_content p {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.highlight {
    color: #5dade2;
    font-weight: 500;
}

.why_choose_are_area .why_choose_are_items:nth-child(even) {
    background: #f8f8f8;
}

.why_choose_are_area .why_choose_are_items:nth-child(odd) {
    background: #fff;
    text-align: right;
}

/*===== Banner Area Images =====*/

.banner_area_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner_img {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-image: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mds_desk_title h2 {
    font-size: 40px;
    font-weight: 300;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    color: #fff;
}

.mds_desk_content p {
    color: #414142;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 15px !important;
}

.mds_desk_title {
    font-size: 32px;
    color: var(--primary_color);

    font-size: 32px;
    font-weight: 500;
    text-transform: none;
}

.mds_desk_sub_title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
    font-family: "Poppins", sans-serif;
}

.team_member_area {
    background-color: #f4f4f4;
}

.team_member {
    background-color: #fcfcfc;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.team_member:last-child {
    margin-bottom: 0px;
}

.team_member .profile_image {
    flex: 1 1 auto;
    width: 24%;
    height: 100%;
}

.team_member .profile_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team_member .profile_info {
    flex: 1 1 auto;
    width: 100%;
}

.team_member .profile_info .name {
    font-size: 32px;
    line-height: 38px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--primary_color);
}

.team_member .profile_info .position {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 10px;
}

.team_member .profile_info .bio {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    text-align: justify;
}

/*=========== Filter Section Styles ===========*/
.upcoming_projects_area {
    background: #2d3436;
    padding: 40px 0px;
}

.project_filter_area {
    background: transparent;
    padding-bottom: 40px;
}

.filter_section {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.filter_group {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
}

.filter_label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.3px;
}

.filter_select {
    width: 100%;
    background: #2d3436;
    color: #ffffff;
    border: 1px solid #4a4a4a;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.filter_select:hover {
    border-color: var(--primary_color);
    background-color: var(--primary_color);
}

.filter_select:focus {
    outline: none;
    border-color: var(--primary_color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
    background-color: var(--primary_color);
}

.filter_select option {
    background: #2d3436;
    color: #ffffff;
    padding: 10px;
}

.reset-btn {
    background: #6c757d;
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    height: fit-content;
    white-space: nowrap;
    align-self: flex-end;
    display: none;
}

.reset-btn:hover {
    background: var(--primary_color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.reset-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.project_showcase_container .projects-grid {
    margin-top: 0px;
}

/*============ Project Unit Layout Area ==============*/

.project_unit_title h2 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 5px;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.project_unit_layout_area {
    background-color: #f6f6f6;
    padding: 60px 0;
}

.project_unit_layout_container {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}

.unit_item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.unit_item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.unit_layout_active .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border-radius: 50%;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.unit_layout_active .owl-nav button:hover {
    background: #333 !important;
    transform: translateY(-50%) scale(1.1);
}

.unit_layout_active .owl-nav .owl-prev {
    left: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unit_layout_active .owl-nav .owl-next {
    right: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unit_layout_active .owl-nav button i {
    display: inline-block;
}

/* Custom Dots */
.unit_layout_active .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.unit_layout_active .owl-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    cursor: pointer;
}

.unit_layout_active .owl-dot:hover {
    background: #999;
}

.unit_layout_active .owl-dot.active {
    background: #333;
    width: 20px;
    border-radius: 10px;
}

/*=====   Contact Us From Area   =====*/

.contact_section {
    background: #2d3436;
    padding: 60px 50px;
}

.contact_form_container {
    width: 100%;
}

.contact_form_input {
    max-width: 100%;
}

.contact_form_container .form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact_form_container .form-header h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 10px;
}

.contact_form_container .form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.contact_form_container label {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 12px;
}

.contact_form_container label:first-of-type {
    margin-top: 0;
}

.contact_form_container label span[style*="color: red"] {
    color: #ff6b6b !important;
    margin-left: 4px;
}

.contact_form_container input[type="text"],
.contact_form_container input[type="email"],
.contact_form_container input[type="number"],
.contact_form_container textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #ffffff;
    font-size: 15px;
    padding: 14px 18px;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.contact_form_container input[type="text"]:focus,
.contact_form_container input[type="email"]:focus,
.contact_form_container input[type="number"]:focus,
.contact_form_container textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary_color);
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

.contact_form_container input::placeholder,
.contact_form_container textarea::placeholder {
    color: #a0aec0;
}

.contact_form_container textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    line-height: 1.6;
}

.contact_form_container .text-danger {
    display: block;
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.contact_form_container .form_submit_btn {
    background: var(--primary_color);
    color: #ffffff;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 50px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.contact_form_container .form_submit_btn:hover {
    background: var(--primary_color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
}

.contact_form_container .alert-success {
    background: rgba(72, 187, 120, 0.15);
    border: 1px solid rgba(72, 187, 120, 0.3);
    color: #48bb78;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.contact_map {
    width: 100%;
    height: 100%;
}

.contact_map iframe {
    border-radius: 6px;
    min-height: 100%;
}

.services-section {
    background-color: #f0f0f0;
    padding: 60px 0px;
}

.service_card {
    text-align: center;
    flex: 1;
    min-width: 100%;
    padding: 40px 30px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: white;
    transition: all 0.3s ease;
}

.service_card:hover {
    border-color: var(--primary_color);
    box-shadow: 0 8px 20px rgba(74, 155, 127, 0.15);
    transform: translateY(-5px);
}

.service_card .icon_wrapper {
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background-color: #f0f0f0;
}

.service_card .icon_wrapper svg {
    width: 35px;
    height: 35px;
    color: var(--primary_color);
}

.service_card .icon {
    width: 45px;
    height: 45px;
    fill: var(--primary_color);
}

.service_card h3 {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

.service_card .btn {
    display: inline-block;
    padding: 12px 40px;
    border: 1.5px solid var(--border);
    border-radius: 25px;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service_card .btn:hover {
    background-color: var(--primary_color);
    border-color: var(--primary_color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu_mobile_icon {
    display: none;
    position: relative;
    cursor: pointer;
    z-index: 10000;
}

.menu_mobile_icon_svg {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.menu_mobile_icon svg {
    position: absolute;
    /* top: 0;
    left: 0; */
    transition: all 0.3s ease;
    color: #fff;
}

.feather-align-right {
    opacity: 1;
    transform: rotate(0deg);
}

.feather-menu-2 {
    opacity: 0;
    transform: rotate(90deg);
}

.menu_mobile_icon.active .feather-menu-1 {
    opacity: 0;
    transform: rotate(-90deg);
}

.menu_mobile_icon.active .feather-menu-2 {
    opacity: 1;
    transform: rotate(0deg);
}

.why_summery_right_img {
    width: 100%;
    max-width: 100%;
    background-image: url(https://cdn-jjgoh.nitrocdn.com/arWkhnmRlfVyvYMxdBnaUHMHNNkXfamB/assets/images/optimized/rev-c15baff/urban.com.bd/wp-content/uploads/2023/10/Black-Pattern@4x.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 15% auto;
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.lg-outer {
    z-index: 9999999 !important;
}

.lg-backdrop {
    z-index: 99999 !important;
}

.mds_desk_img {
    width: 100%;
    height: 100%;
}

.mds_desk_img img {
    width: 100%;
    height: 100%;
}

.smooth-wow {
    animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/*======== Footer  ========*/

.footer-title {
    color: var(--primary_color);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

footer.footer {
    background: linear-gradient(
        180deg,
        #121212 42.92%,
        rgba(18, 18, 18, 0.97) 100%
    );
}

.footer_wrapper {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 40px 0px;
}

.footer_section_items:nth-child(1) {
    width: 30%;
}
.footer_section_items:nth-child(2) {
    width: 20%;
}
.footer_section_items:nth-child(3) {
    width: 20%;
}
.footer_section_items:nth-child(4) {
    width: 22%;
}

.footer-bottom {
    background-color: var(--primary_color);
    color: var(--primary_text_color);
    padding: 10px 0;
}

.footer-left p {
    margin-bottom: 0;

    font-size: 14px;
    font-family: "poppins", sans-serif;
}

.footer-right p {
    margin-bottom: 0px;
    font-size: 14px;
    font-family: "poppins", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-left {
    font-size: 16px;
}

.footer-right {
    font-size: 16px;
    text-align: right;
}

.company-name {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.company-name:hover {
    color: #ef5322;
}

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

.footer-links li {
    margin-bottom: 0px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 5px;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--primary_color);
    padding-left: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-links a i {
    font-size: 12px;
    color: var(--primary_color);
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-text {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0px;
    font-family: "poppins", sans-serif;

    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--primary_color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    color: var(--primary_color);
    font-size: 20px;
    margin-top: 2px;
    min-width: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: var(--primary_color);
    color: #ffffff;
    transform: scale(1.1);
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.contact-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.contact-item a {
    color: #b8b8b8;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-word;
}

.contact-item a:hover {
    color: var(--primary_color);
    padding-left: 5px;
}

.contact-item > div > span:not(.contact-label) {
    color: #b8b8b8;
    font-size: 15px;
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #b8b8b8;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background-color: var(--primary_color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary_color);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

.footer_logo {
    margin-bottom: 20px;
}

.footer_logo img {
    width: 160px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Request Apartment Price Section */
.request_apt_price_area {
    background: #2d3436;
    padding: 80px 20px;
}

.request_apt_price_area .container {
    max-width: 1200px;
    margin: 0 auto;
}

.request_apt_price_area .request_apt-from_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.request_apt_price_area .image_section {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.request_apt_price_area .image_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.request_apt_price_area .form_section {
    padding: 50px 60px 50px 0;
}

.request_apt_price_area .form-header {
    margin-bottom: 35px;
}

.request_apt_price_area .form-header h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.request_apt_price_area .form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

.request_apt_price_area .form-group {
    margin-bottom: 20px;
}

.request_apt_price_area .form-group label {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.request_apt_price_area .form-group .required {
    color: #ff6b6b;
}

.request_apt_price_area .form-group input,
.request_apt_price_area .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    padding: 14px 18px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.request_apt_price_area .form-group input::placeholder,
.request_apt_price_area .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-family: "poppins", sans-serif;
}

.request_apt_price_area .form-group input:focus,
.request_apt_price_area .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.request_apt_price_area .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.request_apt_price_area .submit-btn {
    width: 100%;
    background: var(--primary_color);
    color: var(--primary_text_color);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(51, 52, 58, 0.4);
}

.request_apt_price_area .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 67, 71, 0.6);
}

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

/*================= Features Area =================*/

.features-section {
    width: 100%;
    margin-top: -40px;
}

.featured_project_active .owl-stage {
    display: flex;
}

.featured_project_active .owl-item {
    display: flex;
}

.featured_project_active .owl-item .feature-card {
    flex: 1;
    margin-bottom: 0;
}

/* ── Card ── */
.feature-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 48px 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #e8e8e4;
    margin: 6px 12px 30px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary_color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

/* ── Icon ── */
.icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1.5px solid #ddd;
    border-radius: 50%;
    transition: border-color 0.3s, background 0.3s;
}

.feature-card:hover .icon-wrap {
    border-color: var(--primary_color);
    background-color: color-mix(in srgb, var(--primary_color) 10%, transparent);
}

.icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: #1a1a1a;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}

.feature-card:hover .icon-wrap svg {
    stroke: var(--primary_color);
}

.feature-card .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 14px !important;
}

.feature-card .card-desc {
    flex: 1;
    font-size: 15px;
    line-height: 22px;
    color: #808080;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary_color);
    text-decoration: none;
    transition: gap 0.25s;
}

.read-more:hover {
    gap: 10px;
}

.read-more svg {
    width: 13px;
    height: 13px;
    stroke: var(--primary_color);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.featured_project_active .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.featured_project_active .owl-dots .owl-dot span {
    background: #d8d8d4;
    width: 8px;
    height: 8px;
    transition: background 0.3s, width 0.3s;
}

.featured_project_active .owl-dots .owl-dot.active span,
.featured_project_active .owl-dots .owl-dot:hover span {
    background: var(--primary_color);
    width: 24px;
    border-radius: 4px;
}

/* ════ glance-section-wrapper ════ */

.glance-section-area {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--primary_color) 50%, transparent);
    padding: 80px 0px;
}

.glance-section-wrapper {
    width: 100%;
    max-width: 100%;
}

.glance-section-wrapper .left-content,
.glance-section-wrapper .right-content {
    width: 100%;
}

.glance-section-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.35;
}

/* ════ LEFT ════ */
.left-content {
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-style: italic;
    font-size: 22px;
    color: #000;
    opacity: 0.75;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.main-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    color: #000;
    line-height: 1.1;
    margin-bottom: 40px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin: 0;
    margin-top: 30px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: #000;
    line-height: 1.55;
}

.check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.check-icon svg {
    width: 11px;
    height: 11px;
    stroke: var(--primary_text_color);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-list li strong {
    font-weight: 600;
    margin-right: 4px;
}

/* ════ RIGHT ════ */
.glance-section-wrapper .right-content {
    position: relative;
    z-index: 1;
}

.glance-section-wrapper .image-card {
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.glance-section-wrapper .glance-slider {
    border-radius: 10px;
}

.glance-section-wrapper .glanceImages-slide-item {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
}

.glance-section-wrapper .glanceImages-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Slide overlay label */
.glance-section-wrapper .slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(26, 18, 8, 0.85) 0%,
        transparent 100%
    );
    padding: 28px 24px 30px;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 10px 10px;
}

.glance-section-wrapper .slide-label .sl-sub {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary_color);
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
}

.glance-section-wrapper .slide-label .sl-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

/* Caption */
.glance-section-wrapper .card-caption {
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    color: #888;
    letter-spacing: 0.3px;
    line-height: 1.7;
}

.glance-section-wrapper .card-caption strong {
    color: var(--dark);
    font-weight: 500;
}

.glance-section-wrapper .glance-slider + .owl-dots,
.glance-section-wrapper .glance-slider .owl-dots {
    display: none;
}

.glance-section-wrapper .slider-dots-wrap {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    margin-bottom: 2px;
}

.glance-section-wrapper .glance-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.glance-section-wrapper .glance-slider .owl-prev,
.glance-section-wrapper .glance-slider .owl-next {
    pointer-events: all;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(6px);
    border-radius: 50% !important;
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.glance-section-wrapper .glance-slider .owl-prev:hover,
.glance-section-wrapper .glance-slider .owl-next:hover {
    background: var(--primary_color) !important;
    color: #fff !important;
}

.glance-section-wrapper .glance-slider .owl-prev span,
.glance-section-wrapper .glance-slider .owl-next span {
    font-size: 20px;
    color: #fff;
    line-height: 1;
    margin-top: -2px;
}

/* dots */
.glance-section-wrapper .glance-slider .owl-dots {
    display: flex !important;
    justify-content: center;
    gap: 6px;
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
}

.glance-section-wrapper .glance-slider .owl-dot span {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    display: block;
    transition: width 0.3s, background 0.3s;
}

.glance-section-wrapper .glance-slider .owl-dot.active span {
    width: 22px;
    background: var(--primary_color);
}

.owl-prev i,
.owl-next i {
    font-size: 20px;
}

/* ── Section ── */
.ownership-section-area {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

/* subtle background texture */
.ownership-section-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
            circle at 15% 50%,
            rgba(184, 148, 63, 0.07) 0%,
            transparent 55%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(184, 148, 63, 0.05) 0%,
            transparent 45%
        );
    pointer-events: none;
}

/* ── Ownership Card ── */
.ownership-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1024 / 622;
    width: 100%;
    background: var(--card-bg);
}

.ownership-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: transform 0.55s ease;
}

.ownership-card:hover .ownership-card__img {
    transform: scale(1.05);
}

/* bottom gradient on hover */
.ownership-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(0, 0, 0, 0.22) 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.ownership-card:hover::after {
    opacity: 1;
}

.ownership-card__label {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 14px;
    transition: color 0.3s;
    color: #000;
}

.owl-slide {
    transition: transform 0.55s ease;
}

.owl-slide:hover .ownership-card__img {
    transform: scale(1.05);
}

.owl-slide:hover .ownership-card__label {
    color: var(--primary_color);
}

.ownership-owl .owl-dots {
    text-align: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.ownership-owl .owl-dot span {
    width: 7px;
    height: 7px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 4px;
    display: inline-block;
    transition: background 0.3s, transform 0.3s, width 0.3s, border-radius 0.3s;
}

.ownership-owl .owl-dot.active span {
    background: var(--primary_color);
    transform: scale(1.3);
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .owl-nav .owl-prev {
        left: -22px;
    }

    .owl-nav .owl-next {
        right: -22px;
    }
}

/* ══════════════════════════════
       SECTION
    ══════════════════════════════ */

.wcu-section {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
    background-image: url(https://demo.awaikenthemes.com/antila/wp-content/uploads/2026/01/dark-section-bg-image.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
    max-width: 95%;
    border-radius: 30px;
    padding-bottom: 80px;
    padding-top: 80px;
}

.wcu-container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.wcu-header {
    text-align: center;
    max-width: 830px;
    margin: 0 auto;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.wcu-header .section-sub-title {
    color: #fff !important;
}

.wcu-header .section-main-title {
    color: #fff !important;
}

.wcu-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a9690;
    margin-bottom: 28px;
}

.wcu-header__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--olive-light);
    border-radius: 50%;
    display: inline-block;
}

.wcu-header .section-main-title {
    color: #fff !important;
}

/* ══════════════════════════════
       DESKTOP GRID  (3 columns)
    ══════════════════════════════ */
.wcu-grid {
    display: flex;
    /* grid-template-columns: 1fr auto 1fr; */
    gap: 20px;
    align-items: start;
}

.wcu-grid__col--left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(24% - 13.33px);
}

.wcu-building__img-container {
    margin: 0 0 calc(var(--kit-widget-spacing, 0px) + -80px) 0;
    text-align: center;
}

.wcu-grid__col--right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(24% - 13.33px);
}

.wcu-grid__col--center {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
    width: calc(52% - 13.33px);
}

.wcu-building__img--desktop {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
    aspect-ratio: 1 / 0.906;
    object-fit: cover;
}

/* Mobile building image — hidden on desktop */
.wcu-building__img--mobile {
    display: none;
}

@keyframes wcu-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ══════════════════════════════
       FEATURE CARD
    ══════════════════════════════ */
.wcu-card {
    background: #1e1e1c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 32px 22px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.wcu-card:hover {
    border-color: var(--primary_color);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(138, 154, 58, 0.15);
}

.wcu-card__icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--primary_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s, transform 0.3s;
}

.wcu-card:hover .wcu-card__icon-wrap {
    background: var(--primary_hover);
    transform: scale(1.08);
}

.wcu-card__icon-wrap svg {
    width: 24px;
    height: 24px;
    color: #fff;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wcu-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f0ede6;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.wcu-card__desc {
    font-size: 16px;
    line-height: 20px;
    color: #9a9690;
    font-weight: 300;
}

/* ══════════════════════════════
       Project Plan Overview
    ══════════════════════════════ */

.po_header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.po__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1a1a2e;
    margin-bottom: 18px;
}

.po__eyebrow::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 3px;
    background: var(--primary_color);
    transform: skewX(-20deg);
}

.po__eyebrow::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 3px;
    background: var(--primary_color);
    transform: skewX(-20deg);
}

.po__heading {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(32px, 5.5vw, 62px);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    color: #1a1a2e;
    margin-bottom: 52px;
}

.po__heading span {
    color: var(--primary_color);
}

.po__tabs-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.po__section .tab-content {
    min-height: 600px;
}

.po__tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.po__tabs-nav {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.po__tabs-nav .nav-item {
    display: flex;
    align-items: center;
}

.po__tab-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    padding: 10px 28px;
    position: relative;
    transition: color 0.25s;
    flex-shrink: 0;
}

.po__tab-btn.active {
    color: var(--primary_color);
}

.po__tab-btn.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary_color);
    border-radius: 2px;
}

.po__tabs-nav .nav-item:not(:last-child)::after {
    content: "●";
    font-size: 7px;
    color: #c5c9d0;
    pointer-events: none;
    padding: 0 2px;
}

/* .po__panel {
    opacity: 1;
}

.po__panel.po__panel--active {
    display: flex !important;
} */

.po__panel-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    text-align: left;
}

.po__floorplan {
    flex: 0 0 52%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.po__floorplan img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.po__floor-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary_color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    z-index: 2;
}

.po__info {
    flex: 1;
    min-width: 0;
}

.po__apt-name {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
    line-height: 1.1;
}

.po__apt-desc {
    font-size: 16px;
    line-height: 22px;
    color: #4a4a4a;
    font-weight: 400;
    margin-bottom: 10px !important;
}

.po__apt-sqft {
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 36px;
}

.po__stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    margin-top: 25px;
}

.po__stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0px 0px 20px 0px;
    border-bottom: 1.5px dashed rgba(24, 26, 32, 0.2);
}

.po__stat-item:nth-child(odd) {
    /* padding-right: 24px; */
    /* border-right: 1px solid #6b7280; */
}

.po__stat-item:nth-child(even) {
    padding-left: 24px;
}

.po__stat-icon {
    /* width: 52px;
    height: 52px;
    border-radius: 12px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.po__stat-icon::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary_color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: -1;
}

.po__stat-icon svg {
    width: 42px;
    height: 42px;
    fill: #fff;
}

.po__stat-label {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.po__stat-value {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 860px) {
    .po__panel-inner {
        flex-direction: column;
        gap: 36px;
    }

    .po__floorplan {
        flex: none;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .po__tabs-nav {
        justify-content: flex-start;
        padding: 0 20px;
    }

    .po__tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* .po__tabs-wrapper {
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0,
            #000 20px,
            #000 calc(100% - 20px),
            transparent 100%
        );
        mask-image: linear-gradient(
            to right,
            transparent 0,
            #000 20px,
            #000 calc(100% - 20px),
            transparent 100%
        );
    } */
}

/* ══════════════════════════════
       BLOG SECTION AREA
    ══════════════════════════════ */
.blog-section-area {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.blog_header {
    max-width: 600px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 36px;
}

.blog_events_container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.blog_card_cotnainer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.blog-card {
    background-color: #ffffff00;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    border-radius: 0px 0px 0px 0px;
    border: 1px solid #80808024;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.blog-card .blog-thumb {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-card .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.06);
}

.blog-card .blog-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card .blog-body .blog-content {
    padding: 30px 25px 15px 25px;
}

.blog-card .blog-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 10px !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    /* padding: 30px 25px 15px 25px; */
}

.blog-card .blog-excerpt {
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    /* margin: 0px 25px 30px 25px !important; */
}

.blog-card .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #111 !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    padding: 16px 30px 16px 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease-in-out;
    z-index: 1;
    border-top: 1px solid #80808024;
}

.blog-card .blog-read-more::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 100%;
    background: var(--primary_color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.blog-card .blog-read-more:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.blog-card .blog-read-more:hover {
    color: #fff !important;
}

.blog-card .blog-read-more .btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;

    background: #111;
    color: #fff;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: background 0.4s ease, transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.blog-card .blog-read-more:hover .btn-icon {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: rotate(-45deg);
}

/*======== Event Details Page  ============*/
.event-date-badge {
    position: absolute;
    top: 10px;
    left: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.event-date-badge .badge-day {
    background: var(--primary_color);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.event-date-badge .badge-month-year {
    background: #1a1a1a;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #80808020;
}

.event-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: #555;
    line-height: 1.5;
}

.event-meta-item i {
    color: var(--primary_color);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.event-category-tag {
    background: var(--primary_color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
    z-index: 2;
    line-height: 1;
    margin-bottom: 10px !important;
    display: inline-block;
}

/* ══════════════════════════════
       OWL DOTS
    ══════════════════════════════ */
.blog-carousel .owl-dots {
    text-align: center;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-carousel .owl-stage {
    padding-bottom: 1px;
}

.blog-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50px;
    display: inline-block;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.blog-carousel .owl-dot.active span,
.blog-carousel .owl-dot:hover span {
    background: var(--primary_color);
    width: 22px;
}

.blog-carousel .owl-nav {
    display: none;
}

/* ══════════════════════════════
       OWL ITEM HEIGHT FIX
    ══════════════════════════════ */
.blog-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-item {
    display: flex;
    width: 100%;
}

.blog-card {
    width: 100%;
}

/* ══ ENTRANCE ANIMATION ══ */
/* @keyframes po-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.po__panel.po__panel--active .po__panel-inner {
    animation: po-fade-up 0.45s ease both;
} */

/* ══════════════════════════════
      Events Details Page Area
    ══════════════════════════════ */

.events-details-page-area {
    margin-top: 30px;
}

.event-body {
    padding-bottom: 24px;
}

.event-hero-thumb {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
}

.event-hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.event-hero-thumb:hover img {
    transform: scale(1.03);
}

.event-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.04) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.76) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 36px 40px;
}

.event-hero-overlay-title {
    color: #fff;
    font-size: clamp(22px, 3.2vw, 38px);
    font-weight: 700;
    line-height: 1.3;
    max-width: 820px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.booking-wrap .btn-learn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ════════════════════════════
       META BAR
    ════════════════════════════ */
.event-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.event-detail-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    color: #666;
}

.event-detail-meta .meta-item i {
    color: var(--primary_color);
    font-size: 13px;
}

/* ════════════════════════════
       MAIN TWO-COLUMN LAYOUT
    ════════════════════════════ */
.event-main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
    /* both columns start from top */
    padding-bottom: 60px;
}

.event-detail-title {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 16px;
}

.event-detail-excerpt {
    font-size: 15.5px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 22px;
}

.event-body p {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 16px;
}

.event-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 26px 0 10px;
}

.event-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.event-body ul li {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
}

.event-body ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary_color);
    font-weight: 700;
}

.event-sidebar {
    position: sticky;
    top: 70px;
    align-self: start;
}

.event-info-box {
    border: 1px solid var(--border);
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}

.info-title {
    padding: 22px 24px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.info-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary_color);
    margin-top: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.info-label {
    font-size: 14px;
    color: var(--gray-color);
    font-weight: 500;
    flex-shrink: 0;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-align: right;
}

.booking-wrap {
    padding: 20px 24px 24px;
}

.btn-booking {
    display: inline-block;
    background: var(--primary_color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}

.btn-booking:hover {
    background: var(--primary_color);
    transform: translateY(-1px);
}

/* ════════════════════════════
       COMMENT SECTION
    ════════════════════════════ */
.comment-section {
    padding: 50px 0 60px;
    border-top: 1px solid var(--border);
}

.comment-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.comment-note {
    font-size: 13.5px;
    color: #888;
    margin-bottom: 22px;
}

.comment-note span {
    color: var(--primary_color);
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 20px 0px;
    font-size: 13.5px;
    color: #555;
}

.checkbox-row input[type="checkbox"] {
    accent-color: var(--primary_color);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.comment-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.comment-form-grid input,
.comment-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 13px 16px;
    font-size: 14px;
    color: #333;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}

.comment-form-grid input::placeholder,
.comment-form textarea::placeholder {
    color: #161616;
}

.comment-form-grid input:focus,
.comment-form textarea:focus {
    border-color: var(--primary_color);
}

.comment-form textarea {
    height: 180px;
    resize: vertical;
    margin-bottom: 18px;
    display: block;
}

.btn-post-comment {
    background: var(--primary_color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: background 0.25s, transform 0.2s;
}

.btn-post-comment:hover {
    background: ar(--primary_color);
    transform: translateY(-1px);
}

/* ══════════════════════════════
      Oru testimonal Section Area
    ══════════════════════════════ */

.testimonial-section-area {
    width: 100%;

    background-image: url(https://demo.awaikenthemes.com/inclub/wp-content/uploads/2024/12/section-bg.png);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.testimonial-section .section-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9a8c6a;
    margin-bottom: 10px;
}

.testimonial-section .section-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: #2d2a22;
    margin-bottom: 50px;
}

.testimonial-card {
    background: color-mix(in srgb, var(--primary_color) 5%, transparent);
    border-radius: 20px;
    padding: 36px 32px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 360px;
}

.testimonial-card .stars {
    display: flex;
    gap: 5px;
    margin-bottom: 22px;
}

.testimonial-card .stars i {
    color: var(--primary_color);
    font-size: 17px;
}

.testimonial-card .quote-text {
    flex: 1 1 auto;
    margin-bottom: 24px;
}

.testimonial-card .quote-text p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
}

.testimonial-card .divider {
    border: none;
    border-top: 1.5px solid #1a1a1a1a;
    margin-bottom: 26px;
}

.testimonial-card .author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-top: auto;
}

.testimonial-card .author img {
    width: 62px !important;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.testimonial-card .author-name {
    font-size: 16px;
    font-weight: 600;
    color: #2d2a22;
    line-height: 20px;
}

.testimonial-card .author-role {
    font-size: 14px;
    color: #8a8572;
    font-weight: 400;
    margin-top: -8px;
}

/* ========================
       OWL DOTS
    ======================== */
.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    background: #ccc9bc;
    border-radius: 50px;
    display: inline-block;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dot.active span,
.testimonial-carousel .owl-dot:hover span {
    background: var(--primary_color);
    width: 22px;
}

.testimonial-carousel .owl-nav {
    display: none;
}

/* ══════════════════════════════
    Gallery Section Area
══════════════════════════════ */

.gallery-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 32px;
}

.slash-deco {
    font-size: 13px;
    color: #aaa;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.gallery-title-block h2 {
    font-size: 36px;
    margin-bottom: 0px !important;
    color: #111;
    line-height: 34px;
    margin-top: 16px;
}

.gallery-title-block p {
    margin-bottom: 0px !important;
}

.gallery-tabs {
    display: flex !important;
    gap: 24px;
    list-style: none !important;
    padding: 0;
    padding-bottom: 6px;
    margin: 0;
    flex-wrap: nowrap !important;
    align-items: flex-end;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary_color) #f0f0f0;
}

.gallery-tabs::-webkit-scrollbar {
    height: 2px;
}

.gallery-tabs::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.gallery-tabs::-webkit-scrollbar-thumb {
    background: var(--primary_color);
    border-radius: 10px;
}

.gallery-tabs::-webkit-scrollbar-thumb:hover {
    background: var(--primary_color);
    opacity: 0.8;
}

.gallery-tab-btn {
    background: none;
    border: none;
    padding: 0 0 4px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.gallery-tab-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background-color: var(--primary_color);
    transition: width 0.3s ease;
}

.gallery-tab-btn:hover {
    color: var(--primary_color);
}

.gallery-tab-btn:hover::after {
    width: 100%;
}

.gallery-tab-btn.active,
.gallery-tab-btn.show {
    color: var(--primary_color);
}

.gallery-tab-btn.active::after,
.gallery-tab-btn.show::after {
    width: 100%;
}

/* ============== Grid Gallery ============== */

.grid_gallery_container {
    column-count: 4;
    column-gap: 15px;
    position: relative;
}

.gird_gallery_card {
    margin-bottom: 15px;
    break-inside: avoid;
}

.single_gallery_content {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #111;
}

.single_gallery_content a {
    display: block;
    position: relative;
    text-decoration: none;
}

.gallery_image {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.gallery_image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.single_gallery_content:hover .gallery_image img {
    transform: scale(1.07);
}

.gallery_tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(30, 30, 30, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 4px 12px;
    z-index: 3;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery_tag span {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery_zoom {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(30, 30, 30, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.gallery_zoom svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.gallery_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72) 0%,
        transparent 55%
    );
    display: flex;
    align-items: flex-end;
    padding: 14px;
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery_title {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 0.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    padding: 4px 10px;
    display: inline-block;
}

.gallery_title span {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
}

.single_gallery_content:hover .gallery_tag {
    opacity: 1;
    transform: translateY(0);
}

.single_gallery_content:hover .gallery_zoom {
    opacity: 1;
    transform: translateY(0);
}

.single_gallery_content:hover .gallery_overlay {
    opacity: 1;
}

.single_gallery_content:hover .gallery_title {
    transform: translateY(0);
}

@media (max-width: 900px) {
    .grid_gallery_container {
        column-count: 3;
    }
}

@media (max-width: 600px) {
    .grid_gallery_container {
        column-count: 2;
    }
}

/* ══════════════════════════════
       Call To Action Section Area
    ══════════════════════════════ */

.cta_container {
    display: flex;
    align-items: center;
    gap: 14px;
    /* background: #f5f3ee; */
    /* padding: 12px 20px; */
    /* border-radius: 60px; */
    width: 100%;
    justify-content: center;
    margin-top: 34px;
}

.cat_box_avatar {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.cta__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.cta__icon_badge {
    position: absolute;
    bottom: 1px;
    right: -8px;
    width: 26px;
    height: 26px;
    background: var(--primary_color);
    border-radius: 50%;
    border: 2px solid #f5f3ee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta__icon_badge svg {
    color: #fff;
    width: 14px;
    height: 14px;
}

.cta__text {
    font-size: 15.5px;
    color: #3a3a3a;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.cta__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary_color);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border-bottom: 1.5px solid var(--primary_color);
    padding-bottom: 1px;
    flex-shrink: 0;
}

.cta__link:hover {
    opacity: 0.8;
}

/* ══════════════════════════════
       Benefits of Ownership
    ══════════════════════════════ */

.unojay {
}

.unojay__tagline {
    text-align: center;
    font-style: italic;
    font-size: 15px;
    color: #222;
    line-height: 1.5;
    margin-bottom: 4px;
}

.unojay__tagline-brand {
    color: #b8860b;
    font-style: italic;
    font-weight: bold;
}

.unojay__title {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: bold;
    color: #111;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
}

.unojay__grid {
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.unojay__block {
    margin-bottom: 22px;
}

.unojay__block:last-child {
    margin-bottom: 0;
}

.unojay__block-title {
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin-bottom: 7px;
}

.unojay__item {
    text-align: justify;
    margin-bottom: 5px;
    font-size: 14.5px;
    color: #111;
}

.unojay__item:last-child {
    margin-bottom: 0;
}

.unojay__item-label {
    font-weight: bold;
}

.unojay__image-wrap {
    position: sticky;
    top: 24px;
}

.unojay__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

/* ══════════════════════════════
       About Page Area
    ══════════════════════════════ */

.page-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1);
    }
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 26, 0.55),
        rgba(10, 14, 26, 0.72)
    );
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
}

.page-hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 14px;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.page-hero__breadcrumb .sep {
    color: rgba(255, 255, 255, 0.35);
}

.page-hero__breadcrumb .current {
    color: #ffffff;
}

/* ================================================
   VISION MISSION — Tab Panel Content Styles
   ================================================ */

.vm_header {
    max-width: 550px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
}

.vm__panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding-top: 16px;
}

.vm__panel-sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.vm__slash {
    display: inline-flex;
    gap: 4px;
}

.vm__slash span {
    display: inline-block;
    width: 3px;
    height: 14px;
    background: var(--primary_color);
    transform: skewX(-18deg);
}

.vm__panel-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    text-transform: capitalize;
    color: #1a1a1a;
    margin-bottom: 0;
    margin-top: 12px;
}

.vm__panel-title span {
    color: var(--primary_color);
    display: block;
}

.vm__panel-desc {
    font-size: 15px;
    line-height: 22px;
    color: var(--gray-color);
    font-weight: 500;
    margin-top: 24px;
}

.vm__panel-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.vm__panel-img {
    position: relative;
    overflow: hidden;
}

.image-anime {
    position: relative;
}

.image-anime::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: height 0.5s ease;
    transition: height 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
}

.image-anime:hover::after {
    height: 250%;
    opacity: 1;
}

.image-anime img {
    width: 100%;
    transition: transform 0.5s ease;
}

.image-anime:hover img {
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    transform: scale(1.07);
}

.cv-section {
    padding: 80px 30px;
}

.cv-header {
    text-align: center;
    margin-bottom: 48px;
}

.cv-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.cv-header p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.cv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
}

.cv-card {
    border-radius: 18px;
    padding: 40px 28px;
    min-height: 200px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.cv-card.gold {
    background-color: color-mix(in srgb, var(--primary_color) 50%, transparent);
}

.cv-card.dark {
    background: #1e1e1e;
}

.cv-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cv-card p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.cv-card.gold h3 {
    color: #1a1100;
}

.cv-card.gold p {
    color: #2e1f00;
}

.cv-card.dark h3 {
    color: #ffffff;
}

.cv-card.dark p {
    color: #cccccc;
}

/* Responsive */
@media (max-width: 768px) {
    .cv-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.tab-content > .po__panel.tab-pane {
    display: none;
}

.tab-content > .po__panel.tab-pane.show.active {
    display: block;
}

@keyframes vmFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ── Responsive ── */
@media (max-width: 991px) {
    .vm__panel-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vm__panel-img img {
        height: 280px;
    }
}

/* ══════════════════════════════
       Member Ship Section Area
    ══════════════════════════════ */

.ownership-section {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.top-row {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: flex-start;
}

.title-block h2 {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    line-height: 34px;
}

.title-block p {
    font-size: 16px;
    color: #444;
    line-height: 22px;
    max-width: 100%;
    margin-bottom: 32px !important;
    font-weight: 400;
    width: 100%;
    margin-top: 20px;
}

.btn-book {
}

.membership-cardImages {
    width: 100%;
    height: 100%;
}

.membership-cardImages img {
    width: 100%;
    height: 100%;
}

/* ── Bottom Row: Benefits left, Video right ── */

.bottom-row {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 48px;
    align-items: flex-start;
}

.benefits-block h3 {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    margin-bottom: 22px;
    line-height: 34px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0px !important;
    padding-left: 0px !important;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15.5px;
    color: var(--gray-color);
    font-weight: 500;
}

.benefits-list li:last-chil {
}

.benefits-list li .chk {
    width: 22px;
    height: 22px;
    background-color: var(--primary_color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.benefits-list li .chk svg {
    color: #fff;
    height: 16px;
    width: 16px;
}

.video-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #000;
    position: relative;
}

.video-wrap iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

/* For property image (Silver section) */
.video-wrap img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* ══════════════════════════════
       Running Offer Page
    ══════════════════════════════ */

.running-offer-area {
    background: #f5f5f0;
    padding: 80px 0;
}

/* ────────── SECTION: running-offer ────────── */

.running-offer-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.running-offer__heading {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.running-offer__card {
    background: #fdf5e0;
    border: 1.5px solid #e8d9a0;
    border-radius: 14px;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr 428px;
    gap: 20px;
    align-items: center;
}

/* ── LEFT CONTENT ── */

.running-offer__title {
    font-family: "Noto Serif Bengali", Sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    word-spacing: 0px;
    color: #910000;
    margin-bottom: 30px !important;
}

.running-offer__subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.running-offer__subtitle svg {
    width: 20px;
    height: 20px;
}

.running-offer__list {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0px !important;
    margin-top: 6px;
}

.running-offer__list li {
    font-size: 0.97rem;
    color: #2d2d2d;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.running-offer__contact {
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 10px;
}

.running-offer__contact a {
    color: #c0150f;
    text-decoration: none;
    font-weight: 600;
}

.running-offer__icon {
    width: 16px;
    height: 16px;
}

.running-offer__note {
    font-size: 0.85rem;
    color: #888;
    text-align: right;
}

/* ── RIGHT IMAGE ── */
.running-offer__image-wrap {
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 6px 28px rgba(0, 0, 0, 0.15); */
    height: 100%;
    /* min-height: 260px; */
    position: relative;
}

.running-offer__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ══════════════════════════════
       Events Section Area
   ══════════════════════════════ */

.event-filter-bar {
    background: var(--primary_color);
    border-radius: 0;
    padding: 28px 32px;
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-field {
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    flex: 1 1 200px;
    min-width: 180px;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
    position: relative;
}

.filter-field:hover {
    box-shadow: 0 4px 16px var(--primary_color);
}

.filter-field:focus-within {
    outline: none;
}

.filter-field input[type="text"] {
    border: none;
    outline: none;
    font-size: 15px;
    color: #aaa;
    background: transparent;
    flex: 1;
    cursor: pointer;
    width: 100%;
}

.filter-field input[type="text"].flatpickr-input.active,
.filter-field input[type="text"]:not(:placeholder-shown) {
    color: #222;
    font-weight: 500;
}

.icon-calendar {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary_color);
    pointer-events: none;
    cursor: pointer;
}

#start-wrap .icon-calendar,
#end-wrap .icon-calendar {
    pointer-events: all;
}

.filter-select-wrapper {
    position: relative;
    flex: 1 1 200px;
    min-width: 180px;
}

.filter-select-wrapper select {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    border: none;
    outline: none;
    background: #fff;
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    padding: 14px 44px 14px 18px;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.filter-select-wrapper select:focus {
    box-shadow: 0 0 0 3px var(--primary_color);
}

.chevron-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--primary_color);
    pointer-events: none;
}

.flatpickr-calendar {
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    font-family: "DM Sans", sans-serif !important;
    border: none !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
    background: var(--primary_color) !important;
    border-color: var(--primary_color) !important;
    color: #fff !important;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
    background: rgba(245, 192, 46, 0.15) !important;
    border-color: transparent !important;
}

.flatpickr-day.today {
    border-color: var(--primary_color) !important;
    color: var(--primary_color) !important;
    font-weight: 600;
}

.flatpickr-day.today:hover {
    background: rgba(245, 192, 46, 0.15) !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--primary_color) !important;
}

.flatpickr-months .flatpickr-month {
    color: #222 !important;
    font-weight: 600;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-family: "DM Sans", sans-serif !important;
    font-weight: 600 !important;
}

/* ══════════════════════════════
       Events Related Card
    ══════════════════════════════ */

.events-related-section {
    background-color: color-mix(in srgb, var(--primary_color) 10%, transparent);
    padding: 80px 0px;
}

.events-related-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

.events-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin: 0 auto;
}

.events-related-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.events-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

.events-related-card__thumbnail {
    width: 43%;
    min-width: 43%;
    height: 100%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.events-related-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.events-related-card:hover .events-related-card__thumbnail img {
    transform: scale(1.06);
}

.events-related-card__body {
    padding: 22px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.events-related-card__badge {
    display: inline-block;
    background: var(--primary_color);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 5px;
    width: fit-content;
}

.events-related-card__heading {
    font-size: 21px;
    font-weight: 700;
    color: #111827;
    line-height: 28px;
}

.events-related-card__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.events-related-card__meta-item {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.875rem;
    color: #4b5563;
}

.events-related-card__meta-item svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--primary_color);
}

.events-related-card__meta-link {
    color: var(--primary_color);
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}

.events-related-card__btn {
    margin-top: auto;
    display: inline-block;
    width: fit-content;
    padding: 8px 22px;
    border: 1.5px solid var(--primary_color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary_color);
    background: transparent;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.events-related-card__btn:hover {
    background: var(--primary_color);
    color: #ffffff;
    border-color: var(--primary_color);
}

/* ══════════════════════════════
       Blog Details Page
    ══════════════════════════════ */

.blog-details-area {
    margin-top: 30px;
}

.blog-details-container {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.blog-details-main {
    min-width: 0;
}

══════════════════════════════ */ .blog-details-hero-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16/7;
    background: #111;
}

.blog-details-hero-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.blog-details-hero-wrap:hover img {
    transform: scale(1.03);
}

.blog-details-meta-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 22px 0 18px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 16px;
}

.blog-details-meta-tag {
    background: #111;
    color: var(--primary_color);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.blog-details-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-details-meta-item svg {
    opacity: 0.55;
    color: var(--primary_color);
}

.blog-details-article-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 20px;
}

.blog-details-article-body {
    font-size: 1rem;
    color: #333;
}

.blog-details-article-body p {
    margin-bottom: 18px;
}

.blog-details-article-body h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin: 32px 0 12px;
    padding-left: 14px;
    border-left: 4px solid var(--primary_color);
}

.blog-details-article-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary_color);
    margin: 20px 0 8px;
}

.blog-details-article-body ul {
    padding-left: 20px;
    margin-bottom: 18px;
}

.blog-details-article-body ul li {
    margin-bottom: 8px;
}

.blog-details-pull-quote {
    background: linear-gradient(135deg, #111 0%, #1e2d00 100%);
    color: #fff;
    border-radius: 12px;
    padding: 28px 30px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}

.blog-details-pull-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 8rem;
    color: var(--primary_color);
    opacity: 0.2;
    line-height: 1;
    font-family: serif;
}

.blog-details-pull-quote p {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.65;
    position: relative;
    margin: 0;
    color: var(--primary_color);
}

.blog-details-info-box {
    background: #f4fbea;
    border: 1px solid var(--primary_color);
    border-left: 5px solid var(--primary_color);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 28px 0;
}

.blog-details-info-box-title {
    font-weight: 700;
    font-size: 1rem;
    color: #5a8a00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-details-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0 0;
}

.blog-details-tag-pill {
    background: #eef7d6;
    color: var(--primary_color);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid #c5e87a;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.blog-details-tag-pill:hover {
    background: var(--primary_color);
    color: #fff;
}

.blog-details-share-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.blog-details-share-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.blog-details-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.2s;
}

.blog-details-share-btn:hover {
    transform: scale(1.15);
}

.blog-details-share-btn--fb {
    background: #1877f2;
    color: #fff;
}

.blog-details-share-btn--tw {
    background: #1da1f2;
    color: #fff;
}

.blog-details-share-btn--wa {
    background: #25d366;
    color: #fff;
}

.blog-details-share-btn--ln {
    background: #0a66c2;
    color: #fff;
}

/* ══════════════════════════════
       SIDEBAR
    ══════════════════════════════ */
.blog-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 70px;
}

.blog-details-sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.blog-details-sidebar-card-header {
    background: var(--primary_color);
    color: var(--primary_text_color);
    padding: 13px 18px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-details-sidebar-card-header svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.blog-details-sidebar-card-body {
    padding: 14px 18px;
}

.blog-details-recent-post {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 11px 0;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.blog-details-recent-post:last-child {
    border-bottom: none;
}

.blog-details-recent-post:hover {
    transform: translateX(4px);
}

.blog-details-post-num {
    min-width: 26px;
    height: 26px;
    background: var(--primary_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary_text_color);
    flex-shrink: 0;
}

.blog-details-post-title {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
}

.blog-details-recent-post:hover .blog-details-post-title {
    color: #7ab000;
}

.blog-details-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-details-cat-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.88rem;
}

.blog-details-cat-list li:last-child {
    border-bottom: none;
}

.blog-details-cat-list a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-details-cat-list a svg {
    width: 14px;
    height: 14px;
    color: var(--primary_color);
    flex-shrink: 0;
}

.blog-details-cat-list a:hover {
    color: var(--primary_color);
}

.blog-details-cat-count {
    background: #eef7d6;
    color: var(--primary_color);
    font-size: 0.73rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

.blog-details-cta-card {
    background: linear-gradient(135deg, #111, #1e2d00);
    border-radius: 12px;
    padding: 26px 20px;
    text-align: center;
    color: #fff;
}

.blog-details-cta-icon {
    width: 52px;
    height: 52px;
    background: rgba(140, 198, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.blog-details-cta-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary_color);
}

.blog-details-cta-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary_text_color);
}

.blog-details-cta-card p {
    font-size: 0.82rem;
    color: #aaa;
    margin-bottom: 16px;
}

.blog-details-cta-btn {
    background: var(--primary_color);
    color: var(--primary_text_color);
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s, transform 0.2s;
}

.blog-details-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/*====== Brochure Section Area ======*/

.flipbook {
    width: 100%;
    max-width: 900px;
    height: 600px;
    margin: auto;
}
.page {
    background: #fff;
}
canvas {
    width: 100%;
    height: 100%;
}

/* ══════════════════════════════
     DESKTOP — right side vertical
  ══════════════════════════════ */
.mysticky-fixed {
    position: fixed;
    z-index: 99999;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.mysticky-col {
    display: flex;
    flex-direction: column;
    position: relative;
}

.mysticky-btn {
    width: 70px;
    height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    gap: 4px;
    border: none;
    outline: none;
    transition: filter 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}
.mysticky-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}
.mysticky-btn span {
    font-size: 12px;
    color: #fff;
    line-height: 1;
}
.mysticky-btn:hover {
    filter: brightness(1.13);
}

.mysticky-btn-contact {
    background: var(--primary_color);
    border-radius: 10px 0 0 0;
    transition: all 0.2s;
}

.mysticky-btn-contact:hover {
    border-radius: 0px;
}

.mysticky-btn-whatsapp {
    background: #21ba3d;
}
.mysticky-btn-phone {
    background: #1e73be;
    border-radius: 0 0 0 10px;
    transition: all 0.2s;
}

.mysticky-btn-phone:hover {
    border-radius: 0px;
}

/* ─── Desktop panels slide LEFT ─── */
.mysticky-panel {
    position: absolute;
    right: 70px;
    overflow: hidden;
    max-width: 0;
    transition: max-width 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}
.mysticky-panel.mysticky-open {
    max-width: 280px;
    pointer-events: all;
}
.mysticky-panel a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 0 16px;
    white-space: nowrap;
}

.mysticky-panel-contact {
    top: 0;
    max-width: 0;
    transition: max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border-radius: 10px 0 0 10px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    align-items: flex-start;
    height: auto;
}
.mysticky-panel-contact.mysticky-open {
    max-width: 340px;
}

.mysticky-panel-wa {
    top: 58px;
    height: 58px;
    background: #21ba3d;
    border-radius: 6px 0 0 6px;
}

.mysticky-panel-ph {
    top: 115.5px;
    height: 58px;
    background: #1e73be;
    border-radius: 6px 0 0 6px;
}

/* ─── Form inner ─── */
.mysticky-form-inner {
    width: 310px;
    flex-shrink: 0;
}

.mysticky-form-head {
    padding: 13px 15px 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}
.mysticky-form-title {
    color: var(--primary_color);
    font-size: 14px;
    font-weight: 600;
}
.mysticky-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    font-size: 18px;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background 0.2s;
}
.mysticky-close:hover {
    background: #f5f5f5;
    color: #999;
}

.mysticky-form-body {
    padding: 12px 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.mysticky-form-body input,
.mysticky-form-body textarea {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 9px 12px;
    font-size: 13px;
    font-family: Poppins, sans-serif;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}
.mysticky-form-body input:focus,
.mysticky-form-body textarea:focus {
    border-color: var(--primary_color);
}
.mysticky-form-body textarea {
    resize: none;
    height: 78px;
}

.mysticky-submit {
    width: 100%;
    background: var(--primary_color);
    color: var(--primary_text_color);
    border: none;
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.mysticky-submit:hover {
    background: #c8861e;
}
.mysticky-success {
    display: none;
    color: #21ba3d;
    font-size: 12px;
    text-align: center;
    padding: 4px 0;
}

/* ══════════════════════════════
       Events From Here
    ══════════════════════════════ */

.events-from-area {
    background: var(--dark);
    color: var(--primary_text_color);
    font-weight: 300;
    overflow-x: hidden;
    padding: 60px 0;
    position: relative;
}

.events-from-wrapper {
    position: relative;
    z-index: 1;
}

.events-from-wrapper header {
    text-align: center;
    padding: 0 24px 40px;
    position: relative;
    overflow: hidden;
}

.event-eyebrow {
    font-size: 0.65rem;
    color: var(--primary_color);
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.events-from-wrapper header h1 {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--primary_text_color);
    line-height: 1.35;
    margin-bottom: 10px;
}

.events-from-wrapper header .venue {
    font-size: 24px;
    font-style: italic;
    color: var(--primary_color);
    margin-top: 16px !important;
}

.events-from-wrapper .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px auto;
    max-width: 400px;
}

.events-from-wrapper .divider::before,
.events-from-wrapper .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary_color),
        transparent
    );
}

.events-from-wrapper .divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--primary_color);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.events-banner {
    margin-bottom: 48px;
}

.events-banner img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(140, 198, 0, 0.2);
    display: block;
    box-shadow: 0 0 60px rgba(140, 198, 0, 0.06), 0 30px 80px rgba(0, 0, 0, 0.6);
}

.events-form {
    margin-bottom: 48px;
}

.form-headline {
    font-size: 20px;
    color: var(--primary_text_color);
    text-align: center;
    margin-bottom: 28px !important;
    font-weight: 400;
}

.form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(140, 198, 0, 0.18);
    border-radius: 8px;
    padding: 40px 36px 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(140, 198, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary_color),
        var(--primary_hover),
        var(--primary_color),
        transparent
    );
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-group.full {
    grid-column: 1 / -1;
}

.field-group label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary_color);
}

.field-group label .req {
    color: #e05454;
    margin-left: 3px;
}

.field-group input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--primary_text_color);
    outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.field-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.field-group input:focus {
    border-color: var(--primary_color);
    background: rgba(140, 198, 0, 0.04);
    box-shadow: 0 0 0 3px rgba(140, 198, 0, 0.08);
}

.btn-submit {
    margin-top: 28px;
    background: var(--primary_color);
    color: var(--primary_text_color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    padding: 14px 42px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
    background: var(--primary_hover);
    transform: translateY(-2px);
}

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

.success-msg {
    display: none;
    text-align: center;
    padding: 32px;
    color: var(--primary_color);
    font-size: 1.3rem;
    font-style: italic;
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-cta {
    background: transparent;
    border: 1.5px solid var(--primary_color);
    color: var(--primary_color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.btn-cta:hover {
    background: var(--primary_color);
    color: var(--primary_text_color);
    box-shadow: 0 6px 24px rgba(140, 198, 0, 0.3);
    transform: translateY(-2px);
}

/* ============================================================
   VIDEO
   ============================================================ */

.events-video {
    margin-bottom: 48px;
}

.book-now-banner-area {
    margin-top: 40px;
    margin-bottom: 100px !important;
}

.booking-banner {
    background-color: var(--primary_color);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap; /* wraps on small screens */
}

.banner-text {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary_text_color);
    max-width: 600px;
    line-height: 1.5;
}

.download-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.download-btn:hover {
    background-color: #333333;
}

.our-privilege-partners-area {
    padding: 60px 0;
    background: #f9f9f9;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.partner-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.partner-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.partner-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.flipbook-container {
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.flipbook-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pdf_download_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

/* ══════════════════════════════
       RESPONSIVE — MOBILE ≤ 900px
    ══════════════════════════════ */

/* ════ Responsive ════ */

@media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
        padding: 0px 10px !important;
    }

    .why_choose_are_items .container {
        max-width: 1320px !important;
        margin: 0 auto !important;
    }

    .upcoming_projects_container .container {
        max-width: 1700px !important;
        margin: 0 auto !important;
    }
}

@media screen and (max-width: 1480px) {
    .wcu-section {
        padding: 70px 24px 0;
    }

    .wcu-header,
    .wcu-header .section-main-title {
        margin-bottom: 0px !important;
    }

    .wcu-grid {
        flex-direction: column;
    }

    .wcu-grid__col--center {
        display: none;
    }

    .wcu-grid__col--left {
        order: 1;
        width: 100%;
    }

    .wcu-grid__col--right {
        order: 2;
        width: 100%;
    }

    .wcu-building__img--mobile {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0px auto 0;
        object-fit: contain;
        object-position: bottom center;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
        margin-top: 35px;
    }

    .wcu-grid__col--left,
    .wcu-grid__col--right {
        flex-direction: row;
    }
}

@media only screen and (max-width: 1199.99px) {
    .footer-title {
        font-size: 18px;
    }

    .blog_card_cotnainer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .projects-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .home_page_contact_img {
        width: 100%;
        max-width: 100%;
    }

    .home_page_contact_section_area {
        height: 100%;
    }

    .home_page_contact_box {
        flex-direction: column;
    }

    .event-main-layout {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .event-sidebar {
        position: static;
    }

    .comment-section {
        padding-bottom: 40px;
    }

    .home_page_content_text {
        width: 100%;
        z-index: 999;
        margin-left: 0px;
        padding: 20px 10px;
        text-align: center;
        align-items: center;
    }

    .home_page_content_text a {
        width: fit-content;
        margin-top: 10px;
    }

    .home_page_content_text {
        padding: 40px 14px;
        margin-left: 10px;
    }

    .completed_project_images {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .completed_project_images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .project_images_title h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 991.99px) {
    .footer_section_items:nth-child(1) {
        width: 100%;
    }

    .footer_section_items:nth-child(2) {
        margin-top: 20px;
        width: 50%;
    }

    .footer_section_items:nth-child(3) {
        margin-top: 20px;
        width: 50%;
    }
    .footer_section_items:nth-child(4) {
        width: 100%;
    }

    .footer_wrapper {
        flex-wrap: wrap;
    }

    .footer-bottom {
        margin-bottom: 55px;
    }

    .blog_card_cotnainer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section_gap_bottom {
        margin-bottom: 40px !important;
    }

    .section_gap_top {
        margin-top: 40px !important;
    }

    .po_header {
        margin-bottom: 0px !important;
    }

    .about_us_area,
    .glance-section-area,
    .testimonial-section-area,
    .cv-section {
        padding: 40px 0px;
    }

    .blog-card .blog-body .blog-content,
    .blog-card .blog-read-more {
        padding: 14px;
    }

    .section_gap {
        margin: 40px 0px !important;
    }

    .cv-card {
        border-radius: 8px;
        padding: 20px 10px;
    }

    .blog_header {
        margin-bottom: 0xp;
    }

    .ownership-section-area {
        padding: 40px 0 40px;
    }

    .blog_events_container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .blog_card_container {
        columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .top-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .membership-card {
        order: -1;
    }

    .bottom-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .video-wrap {
        order: -1;
    }

    .title-block h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .benefits-block h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .wcu-section {
        padding: 60px 0px;
        width: 100%;
        max-width: 100%;
        border-radius: 0px;
        padding-bottom: 0px;
    }

    .glance-section {
        padding: 36px 18px;
        border-radius: 14px;
    }

    .slide-item {
        height: 240px;
    }

    .wcu-grid__col--left,
    .wcu-grid__col--right {
        flex-direction: column;
    }

    .glance-section {
        grid-template-columns: 1fr;
        padding: 52px 32px;
        gap: 44px;
    }

    .glance-section-wrapper .left-content {
        margin-top: 30px;
    }

    .glance-section-wrapper .image-card {
        box-shadow: none !important;
    }

    .glance-section-wrapper .slide-label {
        text-align: center;
        padding: 10px 10px 10px 10px;
        padding-bottom: 40px;
    }

    .section-sub-title {
        margin-bottom: 8px !important;
    }

    .info-list {
        margin-top: 0px;
    }

    .menu_mobile_icon {
        display: block;
    }

    .header_area {
        height: 65px;
    }

    /* .featured_project_active .owl-dots {
        display: none !important;
    } */

    .features-section {
        margin-top: 5%;
    }

    .feature-card {
        margin: 0px 4px;
        padding: 30px 20px 30px;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #1a1a1a;
        z-index: 99999;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
    }

    .mobile-menu.active {
        right: 0;
        top: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: flex-end;
        padding: 16px 20px;
    }

    .mobile-close-btn {
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.8;
        transition: opacity 0.2s;
    }

    .mobile-close-btn:hover {
        opacity: 1;
    }

    .mobile-menu .menu-list {
        list-style: none;
        margin: 0;
        padding: 0 0 20px;
        flex: 1;
    }

    .mobile-menu .menu-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-menu .menu-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 22px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 400;
        text-decoration: none;
        transition: color 0.2s;
        cursor: pointer;
    }

    .mobile-menu .menu-link:hover,
    .mobile-menu .menu-link.active-link {
        color: var(--primary_color);
    }

    .mobile-menu .menu-link.active-link {
        font-weight: 500;
    }

    .mobile-menu .chevron-arrow {
        transition: transform 0.3s ease;
        flex-shrink: 0;
        color: #ffffff;
    }

    .mobile-menu .menu-link.has-submenu.active .chevron-arrow {
        transform: rotate(180deg);
    }

    .mobile-menu .submenu {
        max-height: 0;
        overflow: hidden;
        background: #111111;
        list-style: none;
        padding: 0;
        margin: 0;
        transition: max-height 0.4s ease;
    }

    .mobile-menu .submenu.active {
        max-height: 400px;
    }

    .mobile-menu .submenu-item {
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .mobile-menu .submenu-link {
        display: block;
        padding: 12px 22px 12px 34px;
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        text-decoration: none;
        transition: color 0.2s;
    }

    .mobile-menu .submenu-link:hover {
        color: var(--primary_color);
    }

    .mobile-menu-footer {
        padding: 20px 24px 70px;
    }

    .mobile-call-btn {
        display: block;
        width: 100%;
        text-align: center;
        background: var(--primary_color);
        color: var(--primary_text_color) !important;
        font-size: 15px;
        font-weight: 600;
        padding: 14px 20px;
        border-radius: 6px;
        text-decoration: none;
        transition: background 0.2s;
    }

    /* .mobile-call-btn:hover {
    background: #b8891a;
} */

    /* Overlay when menu is open */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99998;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .unojay__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 30px;
    }

    .po__tabs-wrapper {
        margin-bottom: 20px;
    }

    .unojay__image-wrap {
        position: static;
        order: -1;
        max-width: 480px;
        margin: 0 auto 0px;
    }

    .unojay__title {
        font-size: 26px;
    }

    .menu-list {
        list-style: none;
        margin: 0;
        padding: 20px 0;
    }

    .menu-item {
        border-bottom: 1px solid #eee;
    }

    .menu-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 30px;
        color: #333;
        text-decoration: none;
        font-size: 16px;
        transition: background 0.3s;
    }

    .menu-link:hover {
        color: var(--primary_color);
    }

    .menu-link.has-submenu.active::after {
        transform: rotate(180deg);
    }

    .submenu {
        max-height: 0;
        overflow: hidden;
        background: #f9f9f9;
        transition: max-height 0.4s ease;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .submenu.active {
        max-height: 500px;
    }

    .submenu-item:last-child {
        border-bottom: none;
    }

    .submenu-link {
        display: block;
        padding: 14px 40px;
        color: #555;
        text-decoration: none;
        font-size: 15px;
        transition: background 0.3s;
    }

    .contact-btn {
        margin: 20px 30px;
        padding: 15px;
        background: var(--primary_color);
        color: white;
        text-align: center;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
        text-decoration: none;
        display: block;
    }

    .contact-btn:hover {
        background: var(--primary_color);
        opacity: 0.9;
    }

    /*=========  Banner Design  =======*/

    .banner_area {
        height: 100vh;
    }

    .banner_content {
        text-align: center;
        max-width: 100%;
        padding: 0px 10px;
    }

    .banner_content h1 {
        font-size: 28px;
        line-height: 30px;
        font-weight: 600;
    }

    .banner_content p {
        line-height: 18px;
        width: 100%;
        max-width: 100%;
        font-size: 14px;
    }

    .call_section_area {
        height: 100px;
    }

    .call_content span {
        font-size: 24px;
        line-height: 30px;
    }

    .call_content_icon svg {
        width: 24px;
        height: 24px;
    }

    .gallery-header-row {
        padding-bottom: 10px;
        margin-bottom: 24px;
    }

    .call_content_icon {
        width: 40px;
        height: 40px;
        border: 1px solid #000;
        border-radius: 14px;
    }

    .call_content {
        gap: 12px;
    }

    .project_stats_container {
        gap: 8px;
        width: 100%;
    }

    .project_stat_number {
        margin-bottom: 0px;
        font-size: 46px;
    }

    .project_stat_label {
        font-size: 12px;
    }

    /*==== project card design  =======*/
    .projects_area {
        background-color: #1b2121;
        padding: 30px 0px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 20px;
    }

    .project_grid_title {
        font-size: 28px;
    }

    .project-overlay {
        padding: 18px 4px 6px;
    }

    .project-title {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 0;
    }

    .project-location {
        font-size: 12px;
    }

    .see-more-container {
        margin-top: 30px;
    }

    .see-more-btn {
        padding: 12px 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .property-showcase {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #fff;
        grid-template-columns: repeat(1, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand-logo {
        width: 100%;
    }

    .showcase-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .showcase-content {
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .header_title {
        font-size: 28px;
        line-height: 36px;
    }

    .why_choose_us_area {
        margin-top: 30px;
    }

    .why_choose_us {
        padding: 20px 0px;
    }

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

    .why_choose_us_area .why_choose_us_items:nth-child(even) .why_choose_us {
        background: #fff;
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
        text-align: center;
        justify-content: center;
    }

    .why_choose_us .content h2 {
        text-align: center;
        font-size: 22px;
        line-height: 30px;
    }

    .why_choose_us .content p {
        padding: 10px 0px !important;
    }

    .why_choose_us .content {
        align-items: center;
        text-align: center;
    }

    .shy_choose_us_btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .home_page_content_text h2 {
        font-size: 31px;
        line-height: 35px;
    }

    .why_we_summary_content p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 0px;
    }

    .why_we_summary_content {
        padding: 30px 0px;
    }

    .section_heading > h2 {
        font-size: 20px;
        line-height: 26px;
        padding: 12px 4px;
        margin-bottom: 0;
    }

    .core_purpose_video .content .main-title {
        font-size: 22px;
        line-height: 30px;
    }

    .core_purpose_video {
        height: 60vh;
    }

    .why_choose_are_area .why_choose_are_items:nth-child(odd) .why_choose_are {
        flex-direction: column-reverse;
    }

    .why_choose_are_items .why_choose_are .why_choose_content {
        width: 100%;
        flex: 1 1 auto;
        text-align: left;
    }

    .why_choose_are_area .why_choose_are_items:nth-child(odd) {
        background: #fff;
        text-align: left;
    }

    .why_choose_are_items .why_choose_are .image_box_are {
        width: 100%;
    }

    .why_choose_are_items .why_choose_are {
        gap: 20px;
        flex-direction: column;
    }

    .why_choose_are_items {
        padding: 30px 0px;
    }

    .why_choose_content h2 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 10px;
        text-align: center;
    }

    .why_choose_content p {
        font-size: 15px;
    }

    .project_upcoming_container .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 0px;
    }

    .filter_section {
        gap: 14px;
        justify-content: center;
    }

    .filter_select {
        padding: 12px 10px;
    }

    .slider_banner_area {
        width: 100%;
        height: 450px;
        position: relative;
    }

    .banner_content_text {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        height: 0;
        bottom: inherit !important;
    }

    .banner_content_text h1 {
        font-size: 32px;
    }

    .back_button {
        gap: 10px;
        padding: 12px 0px;
        font-size: 14px;
    }

    .back_arrow {
        font-size: 24px;
    }

    .completed_project_content_area .project-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .completed_project_content {
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: start;
    }

    .completed_project_content .details_section {
        padding: 0px 0;
    }

    .completed_project_content .details_section .address {
        font-size: 22px;
        line-height: 28px;
        font-weight: 500;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e2e8f0;
    }

    .completed_project_content .details_section .detail_item {
        margin-bottom: 10px;
    }

    .project_images_area {
        padding: 30px 10px;
    }

    .contact_section {
        background: #2d3436;
        padding: 30px 5px;
    }

    .contact_form_container label {
        margin-bottom: 6px;
    }

    .contact_form_container input[type="number"] {
        padding: 12px 14px;
        line-height: 22px;
    }

    .contact_form_container .form_submit_btn {
        font-size: 15px;
        line-height: 22px;
        padding: 12px 40px;
        margin-top: 6px;
    }

    .services-section {
        padding: 30px 0px;
    }

    .service_card_container .service_card {
        margin-bottom: 10px;
        padding: 10px;
    }

    .service_card_container .service_card:last-child {
        margin-bottom: 12px;
    }

    .stats-container {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 30px 0px;
    }

    .stat-item {
        padding: 10px 8px;
    }

    .stat-number {
        font-size: 18px;
    }

    .project_details_area
        .project_details_items:nth-child(odd)
        .land_development_container {
        text-align: left;
        flex-direction: column-reverse;
    }

    .land_development_container .project_content_text {
        width: 100%;
    }

    .land_development_container .project_details_slide_img {
        width: 100%;
    }

    .project_details_area
        .project_details_items:nth-child(odd)
        .land_development_container
        .project_content_text
        .see-more-container.land_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .land_development_container {
        display: flex !important;
        gap: 15px;
        flex-direction: column;
    }

    .project_details_container {
        padding: 30px 0px;
    }

    .project_details_container .project_content_text h2 {
        font-size: 30px;
        line-height: 36px;
        padding: 10px 0px;
    }

    .featured_project_title h2 {
        font-size: 30px;
        margin-top: 30px;
        margin-bottom: 20px;
        line-height: 36px;
    }

    .condominium_info_text_container h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .condominium_info_text_container p {
        font-size: 16px;
        font-weight: 400;
        max-width: 100%;
    }

    .condominium_info_text_container {
        text-align: center;
        padding: 40px 10px;
    }

    .features_section_area {
        padding: 30px 0px;
    }

    .features_card_container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 12px;
    }

    .features_card_container .feature_card {
        padding: 20px 8px;
        border: 1px solid #e0e4e8;
        border-radius: 4px;
    }

    .mds_desk_content {
        margin-top: 20px;
    }

    .mds_desk_title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 4px;
    }

    .mds_desk_sub_title {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 0px;
        font-weight: 400;
    }

    .section_space {
        padding: 30px 0 !important;
    }

    .mds_desk_content p {
        font-size: 16px;
        margin-bottom: 10px !important;
    }

    .mds_desk_banner {
        height: 300px !important;
    }

    .team_member {
        padding: 10px;
        gap: 10px;
        margin-bottom: 20px;

        flex-direction: column;
    }

    .team_member .profile_info .name {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 5px;
    }

    .team_member .profile_image {
        flex: 1 1 auto;
        width: 100%;
        height: 100%;
    }

    .project_images_container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .project_details_area
        .project_details_items:nth-child(even)
        .project_details_container {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: center;
        padding: 30px 0px;
    }

    .project_content_text img {
        width: 50px;
        height: 50px;
    }

    .project_details_container .project_content_text h2 {
        font-size: 28px;
        padding: 12px 0px;
        line-height: 34px;
    }

    .project_details_area
        .project_details_items:nth-child(odd)
        .project_details_container {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .project_info_card {
        width: 100%;
        padding: 0px;
        gap: 8px;
    }

    .project_information_container {
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }

    .project_information_container {
        gap: 10px;
        width: 100%;
    }

    .project_location_title {
        font-size: 26px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .project_information_area {
        padding: 30px 0px;
    }

    .project_info_btn {
        padding: 12px 4px;
    }

    .location_content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .project_details_banner {
        max-height: auto;
    }

    .request_apt_price_area .request_apt-from_container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .request_apt_price_area .image_section {
        min-height: 350px;
        order: 1;
    }

    .request_apt_price_area .form_section {
        padding: 40px 30px;
        order: 2;
    }

    .request_apt_price_area .form-header h2 {
        font-size: 28px;
    }

    .events-related-grid {
        grid-template-columns: 1fr;
    }

    .events-related-card {
        flex-direction: column;
    }

    .events-related-card__thumbnail {
        width: 100%;
        min-width: unset;
        height: auto;
    }

    .events-related-section {
        background: #eef7f5;
        padding: 40px 0px;
    }

    .blog-details-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blog-details-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .blog-details-cta-card {
        grid-column: 1 / -1;
    }

    .blog-details-sidebar-card:nth-child(n + 3):not(.blog-details-cta-card) {
        display: none;
    }

    .mysticky-fixed {
        top: auto;
        bottom: -1px;
        left: 0;
        right: 0;
        transform: none;
    }

    .mysticky-col {
        flex-direction: row;
        width: 100%;
    }

    .mysticky-btn {
        flex: 1;
        width: auto;
        height: 56px;
    }

    .mysticky-btn-contact {
        border-radius: 0;
    }
    .mysticky-btn-phone {
        border-radius: 0;
    }

    /* ── Reset desktop + set mobile slide UP ── */
    .mysticky-panel {
        right: auto !important;
        top: auto !important;
        bottom: 56px;
        left: 0;
        width: 100%;
        max-width: none !important;
        max-height: 0;
        height: auto;
        transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: normal;
        align-items: flex-start;
    }
    .mysticky-panel.mysticky-open {
        max-width: none !important;
        max-height: 60px;
        pointer-events: all;
    }

    /* Contact form panel — full width upward */
    .mysticky-panel-contact {
        left: 0;
        right: 0;
        width: 100%;
        max-width: none !important;
        max-height: 0;
        height: auto;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 14px 14px 0 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }
    .mysticky-panel-contact.mysticky-open {
        max-height: 540px;
    }

    .mysticky-form-inner {
        width: 100%;
    }

    /* WA panel — above WA button (center third) */
    .mysticky-panel-wa {
        left: 33.333%;
        width: 33.334%;
        right: auto;
        height: auto;
        border-radius: 8px 8px 0 0;
        justify-content: center;
    }
    .mysticky-panel-wa a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 8px;
    }

    /* Phone panel — above Phone button (right third) */
    .mysticky-panel-ph {
        left: 66.666%;
        width: 33.334%;
        right: 0;
        height: auto;
        border-radius: 8px 8px 0 0;
        justify-content: center;
    }
    .mysticky-panel-ph a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 6px;
        font-size: 11px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media only screen and (max-width: 768px) {
    .footer_section_items:nth-child(2) {
        margin-top: 0px;
        width: 100%;
    }

    .footer_section_items:nth-child(3) {
        margin-top: 0px;
        width: 100%;
    }

    .blog_card_cotnainer {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .menu-link {
        padding: 16px 20px;
        font-size: 15px;
    }

    .submenu-link {
        padding: 12px 30px;
        font-size: 14px;
    }

    .contact-btn {
        margin: 15px 20px;
    }

    .filter_group {
        min-width: 100%;
    }

    .contact_map {
        width: 100%;
        height: 500px;
        margin-top: 20px;
    }

    .project_images_container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-right {
        text-align: center;
    }

    .footer_wrapper {
        flex-direction: column;
        padding: 30px 0px;
        gap: 30px;
    }

    .footer_section_items {
        width: 100%;
    }

    .footer-title {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .footer-text {
        font-size: 14px;
        -webkit-line-clamp: 4;
    }

    .footer-links a {
        font-size: 14px;
        padding: 6px 10px;
    }

    .footer-links a:hover {
        padding-left: 15px;
    }

    .contact-item {
        padding: 10px 12px;
        gap: 12px;
    }

    .contact-item i {
        font-size: 18px;
        padding: 6px;
    }

    .contact-label {
        font-size: 13px;
    }

    .contact-item a,
    .contact-item > div > span:not(.contact-label) {
        font-size: 14px;
    }

    .social-links {
        gap: 10px;
        margin-top: 20px;
        justify-content: flex-start;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-left,
    .footer-right {
        font-size: 13px;
        text-align: center;
    }

    .request_apt_price_area {
        padding: 40px 0px;
    }

    .request_apt_price_area .form_section {
        padding: 30px 20px;
    }

    .request_apt_price_area .form-header h2 {
        font-size: 22px;
    }

    .request_apt_price_area .form-group input,
    .request_apt_price_area .form-group textarea {
        font-size: 14px;
        padding: 12px 15px;
    }

    .request_apt_price_area .submit-btn {
        font-size: 15px;
        padding: 14px 28px;
    }

    .cta_container {
        /* flex-direction: column; */
        align-items: center;
        gap: 8px;
        margin-top: 20px;
        text-align: center;
    }

    .cat_box_avatar {
        width: 48px;
        height: 48px;
    }

    .cta__avatar {
        width: 48px;
        height: 48px;
    }

    .cta__icon_badge {
        width: 22px;
        height: 22px;
        right: -6px;
        bottom: 0px;
    }

    .cta__icon_badge svg {
        width: 12px;
        height: 12px;
    }

    .cta__text {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .cta__link {
        font-size: 13px;
    }

    .running-offer__card {
        grid-template-columns: 1fr;
        padding: 16px 8px;
        gap: 20px;
    }

    .running-offer__image-wrap {
        min-height: 200px;
        order: -1;
    }

    .running-offer-area {
        padding: 60px 0;
    }

    .running-offer__title {
        font-size: 22px;
        font-weight: 700;
        line-height: 30px;
    }

    .event-filter-bar {
        flex-direction: column;
    }

    .filter-field,
    .filter-select-wrapper {
        min-width: 100%;
        flex: 1 1 100%;
    }

    .event-filter-bar {
        flex-direction: column;
        padding: 20px 16px;
    }

    .filter-field,
    .filter-select-wrapper {
        min-width: 100%;
        flex: 1 1 100%;
    }

    .blog_events_container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
    }

    .blog_card_container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
    }

    .po__stat-item:nth-child(odd) {
        border-right: none;
        padding-right: 0;
    }

    .po__stat-item:nth-child(even) {
        padding-left: 0;
    }

    .event-hero-thumb {
        height: 260px;
    }

    .event-hero-overlay {
        padding: 20px;
    }

    .comment-form-grid {
        grid-template-columns: 1fr;
    }

    .event-detail-meta {
        gap: 14px;
    }

    .events-from-area {
        padding: 40px 0;
    }

    .form-card {
        padding: 28px 20px 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .cta-row {
        gap: 12px;
    }

    .btn-cta {
        padding: 12px 24px;
        font-size: 0.7rem;
    }
    .btn-submit {
        width: 100%;
        text-align: center;
    }

    .events-from-wrapper header {
        padding: 0px 8px 20px;
    }

    .unojay {
        padding: 28px 16px 40px;
    }

    .unojay__title {
        font-size: 22px;
    }

    .unojay__block-title {
        font-size: 18px;
    }

    .unojay__item {
        font-size: 14.5px;
    }

    .blog-details-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-details-cta-card {
        grid-column: auto;
    }

    .blog-details-article-title {
        font-size: 1.25rem;
    }

    .blog-details-pull-quote p {
        font-size: 0.95rem;
    }

    .blog-details-meta-bar {
        gap: 10px;
        font-size: 0.8rem;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flipbook-container {
        height: 500px;
    }
}
