﻿/* Fonts */
:root {
    --default-font: 'Cairo', sans-serif;
    --heading-font: 'Cairo', sans-serif;
    --nav-font: 'Cairo', sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #273d4e; /* Color for headings, subheadings and title throughout the website */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #FFFFFF; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #FFFFFF; /* The default color of the main navmenu links */
    --nav-hover-color: #bd8b43; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #ff4a17; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f1f4fa;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #000910;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #28323a;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

.container a {
    text-decoration: none;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid var(--accent-color);
        border-top-color: var(--surface-color);
        animation: php-email-form-loading 1s linear infinite;
    }

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/******************** ???????? *************************/
.counter-box {
    transition: transform 0.3s ease;
}

    .counter-box:hover {
        transform: translateY(-10px);
    }

.count-number {
    font-size: 2rem;
}

.icon {
    transition: transform 0.4s ease;
}

.counter-box:hover .icon {
    transform: scale(1.1);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

    .pulsating-play-btn:before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-play-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .pulsating-play-btn:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .pulsating-play-btn:hover:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        animation: none;
        border-radius: 0;
    }

    .pulsating-play-btn:hover:after {
        border-left: 15px solid var(--accent-color);
        transform: scale(20);
    }

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(0, 0, 0, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.logo {
    max-height: 80px;
}

.header .logo {
    line-height: 1;
    margin-right: 500px;
}

    .header .logo img {
        max-height: 80px;
    }

    .header .logo h1 {
        font-size: 30px;
        margin: 0;
        font-weight: 700;
        color: var(--heading-color);
    }

.ministry-text {
    font-family: 'Cairo', sans-serif;
    font-size: 15px; /* ????? ??????? ??? ?? ???: 18px, 24px... */
    color: #fff; /* ????? ????? ??? ????? ?????? */
    font-weight: 600; /* ?? 400? 700 ??? ?? ????? */
}

.header .cta-btn,
.header .cta-btn:focus {
    color: var(--contrast-color);
    font-size: 13px;
    padding: 7px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    border: 2px solid var(--contrast-color);
}

    .header .cta-btn:hover,
    .header .cta-btn:focus:hover {
        color: var(--contrast-color);
        background: var(--accent-color);
        border-color: var(--accent-color);
    }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(21, 34, 43, 0.85);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* ✅ الهيكل العام */
.custom-mega-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    padding: 20px 30px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    gap: 30px;
    min-width: 800px;
    max-width: 95vw;
    z-index: 1000;
    border-radius: 6px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    direction: rtl;
    text-align: right;
}


    /* ✅ الأعمدة */
    .custom-mega-layout .column {
        width: 32%;
    }

.column h6 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
    color: #222;
}

.custom-mega-layout .column a {
    display: block;
    padding: 20px 20px; /* ⬅️ تقليل المسافة بين الروابط */
    margin: 0; /* ⬅️ إزالة أي هوامش */
    font-size: 14px;
    line-height:0.5;
    color: #333;
    text-decoration: none !important; /* ⬅️ إزالة الخط تحت الروابط */
    transition: 0.3s;
    white-space: nowrap;
}

 

/* ✅ للجوال */
@media (max-width: 768px) {
    .custom-mega-layout {
        flex-direction: column;
        min-width: 100%;
    }

        .custom-mega-layout .column {
            width: 100%;
        }

    .column h6 {
        font-size: 16px;
        margin-top: 15px;
    }
}


/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu > ul > li {
            white-space: nowrap;
            padding: 15px 14px;
        }

            .navmenu > ul > li:last-child {
                padding-right: 0;
            }

        .navmenu a,
        .navmenu a:focus {
            color: #ffffff !important;
            font-size: 13px;
            padding: 0 2px;
            font-family: var(--nav-font);
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
            text-transform: uppercase;
        }



        .navmenu > ul > li > a:before {
            content: "";
            position: absolute;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: #bd8b43;
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navmenu a:hover:before,
        .navmenu li:hover > a:before,
        .navmenu .active:before {
            visibility: visible;
            width: 100%;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var( --nav-dropdown-color) !important;
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}


/* Mobile Navigation */
@media (max-width: 1199px) {

    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: rgba(20, 16, 9, 0.1);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

    .hero h2 {
        margin: 0;
        font-size: 30px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .hero p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin: 10px 0 0 0;
        font-size: 15px;
    }

    .hero .btn-get-started {
        background: #bd8b43;
        color: var(--contrast-color);
        font-weight: 400;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 30px;
        border-radius: 4px;
        transition: 0.3s;
        text-transform: uppercase;
    }

        .hero .btn-get-started:hover {
            background: #ffffff;
            color: #000000;
        }

    .hero .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-left: 25px;
        font-weight: 400;
        color: var(--default-color);
    }

        .hero .btn-watch-video i {
            color: var(--accent-color);
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-right: 8px;
        }

        .hero .btn-watch-video:hover {
            color: var(--accent-color);
        }

            .hero .btn-watch-video:hover i {
                color: color-mix(in srgb, var(--accent-color), transparent 20%);
            }

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

    .page-title:before {
        content: "";
        background-color: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
    }

    .page-title h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        justify-content: center;
        padding: 0;
        margin: 0;
        font-size: 16px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 50%);
            }
/*--------------------------------------------------------------
# Alumni Section
--------------------------------------------------------------*/
.alumni .alumni-hero {
    padding: 2rem 0 4rem;
    position: relative;
}

    .alumni .alumni-hero .hero-content {
        position: relative;
        z-index: 2;
    }

        .alumni .alumni-hero .hero-content .alumni-badge {
            display: inline-block;
            background: color-mix(in srgb, var(--accent-color), transparent 85%);
            color: var(--accent-color);
            font-weight: 600;
            padding: 0.5rem 1.25rem;
            border-radius: 30px;
            margin-bottom: 1.25rem;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .alumni .alumni-hero .hero-content h2 {
            font-size: 2.75rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .alumni .alumni-hero .hero-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 90%;
            margin-right: 1.5rem;
        }

        .alumni .alumni-hero .hero-content .alumni-metrics {
            display: flex;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

            .alumni .alumni-hero .hero-content .alumni-metrics .metric .counter {
                font-size: 2.5rem;
                font-weight: 800;
                color: var(--accent-color);
                line-height: 1;
                margin-bottom: 0.5rem;
            }

            .alumni .alumni-hero .hero-content .alumni-metrics .metric .label {
                font-size: 0.95rem;
                font-weight: 600;
                color: var(--heading-color);
            }
/* ??? ???? ??????? ??? ?????? */
.admissions .admissions-steps .steps-wrapper {
    position: relative;
}


/* ??? ????? ??????? ?? ???? ??????? */
/*.admissions .admissions-steps .step-item {
    display: flex;
    flex-direction: row-reverse;*/ /* ??? ??????? */
/*margin-bottom: 2rem;
    position: relative;
}*/

/* ????? ??????? */
.admissions .admissions-steps .step-item .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #bd8b43; /* ??? ??????? */
    color: white; /* ??? ??? ?????? */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-left: 10rem; /* ??????? ??? ??????? ???????? */
    margin-right: 0;
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

/* ????? ?????? */
.admissions .admissions-steps .step-item .step-content {
    padding-top: 1rem;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
    background-color: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .contact .contact-info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .contact .contact-info-box .icon-box {
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        color: var(--accent-color);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .contact .contact-info-box .icon-box i {
            font-size: 24px;
        }

    .contact .contact-info-box .info-content h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .contact .contact-info-box .info-content p {
        margin-bottom: 5px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 15px;
        line-height: 1.5;
    }

        .contact .contact-info-box .info-content p:last-child {
            margin-bottom: 0;
        }

.contact .map-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

    .contact .map-section iframe {
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
    }

.contact .form-container-overlap {
    position: relative;
    margin-top: -150px;
    margin-bottom: 60px;
    z-index: 10;
}

.contact .contact-form-wrapper {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

    .contact .contact-form-wrapper h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }

        .contact .contact-form-wrapper h2:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

    .contact .contact-form-wrapper .form-group {
        margin-bottom: 20px;
    }

        .contact .contact-form-wrapper .form-group .input-with-icon {
            position: relative;
        }

            .contact .contact-form-wrapper .form-group .input-with-icon i {
                position: absolute;
                left: 15px;
                top: 50%;
                transform: translateY(-50%);
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                font-size: 18px;
                z-index: 10;
            }

                .contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
                    top: 28px;
                }

            .contact .contact-form-wrapper .form-group .input-with-icon textarea + i {
                top: 25px;
                transform: none;
            }

            .contact .contact-form-wrapper .form-group .input-with-icon .form-control {
                border-radius: 8px;
                padding: 12px 15px 12px 45px;
                height: 3.5rem;
                color: var(--default-color);
                background-color: var(--surface-color);
                font-size: 15px;
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            }

                .contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
                    border-color: var(--accent-color);
                    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
                }

                .contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                }

            .contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
                height: 180px;
                resize: none;
                padding-top: 15px;
            }

    .contact .contact-form-wrapper .btn-submit {
        background-color: var(--accent-color);
        border: none;
        color: var(--contrast-color);
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
    }

        .contact .contact-form-wrapper .btn-submit:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
        }

        .contact .contact-form-wrapper .btn-submit:active {
            transform: translateY(0);
            box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .contact .contact-form-wrapper .loading,
    .contact .contact-form-wrapper .error-message,
    .contact .contact-form-wrapper .sent-message {
        margin-top: 10px;
        margin-bottom: 20px;
    }

@media (max-width: 992px) {
    .contact .form-container-overlap {
        margin-top: -120px;
    }

    .contact .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact .contact-info-box {
        margin-bottom: 20px;
    }

    .contact .form-container-overlap {
        margin-top: -100px;
    }

    .contact .contact-form-wrapper {
        padding: 25px;
    }

        .contact .contact-form-wrapper h2 {
            font-size: 24px;
        }

    .contact .map-section {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .contact .form-container-overlap {
        margin-top: -80px;
    }

    .contact .contact-form-wrapper {
        padding: 20px;
    }

    .contact .btn-submit {
        width: 100%;
    }

    .contact .map-section {
        height: 400px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    padding-top: 60px;
   
}

    .about .display-6 {
        line-height: 1.2;
    }

        .about .display-6 span {
            position: relative;
            color: #bd8b43;
        }

            .about .display-6 span:after {
                content: "";
                position: absolute;
                width: 100%;
                height: 10px;
                background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
                left: 0;
                bottom: 5px;
                z-index: -1;
            }

    .about .lead {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.125rem;
    }

    .about .stat-box {
        display: flex;
        flex-direction: column;
        background-color: var(--surface-color);
        padding: 1rem 1.5rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px #bd8b43;
        min-width: 110px;
        border-bottom: 3px solid #bd8b43;
        transition: transform 0.3s ease;
    }

        .about .stat-box:hover {
            transform: translateY(-5px);
        }

        .about .stat-box .stat-number {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
            color: #bd8b43;
        }

        .about .stat-box .stat-label {
            font-size: 0.875rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }

    .about .signature-block {
        border-top: 1px solid color-mix(in srgb, #bd8b43, transparent 85%);
        padding-top: 1.5rem;
    }

        .about .signature-block img {
            transition: transform 0.3s ease;
        }

            .about .signature-block img:hover {
                transform: scale(1.05);
            }

    .about .image-stack {
        position: relative;
        height: 500px;
    }

@media (max-width: 992px) {
    .about .image-stack {
        height: 400px;
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .about .image-stack {
        height: 350px;
    }
}

.about .image-stack .image-stack-item {
    position: absolute;
    width: 80%;
    height: auto;
    transition: transform 0.5s ease;
}

    .about .image-stack .image-stack-item:hover {
        transform: translateY(-10px);
    }

    .about .image-stack .image-stack-item img {
        object-fit: cover;
        width: 100%;
    }

.about .image-stack .image-stack-item-top {
    z-index: 1;
    top: 0;
    left: 0;
}

.about .image-stack .image-stack-item-bottom {
    z-index: 2;
    bottom: 0;
    right: 0;
}
/*--------------------------------------------------------------
# News Hero Section
--------------------------------------------------------------*/
.news-hero {
    padding-top: 60px;
    padding-bottom: 40px;
}

    .news-hero .post-item {
        margin-bottom: 30px;
        transition: all 0.3s ease;
    }

        .news-hero .post-item:hover .post-img img {
            transform: scale(1.1);
        }

        .news-hero .post-item:hover .post-title a {
            color: var(--accent-color);
        }

        .news-hero .post-item .post-img {
            position: relative;
            overflow: hidden;
            margin-bottom: 16px;
        }

            .news-hero .post-item .post-img img {
                width: 100%;
                aspect-ratio: 16/9;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .news-hero .post-item .post-img .category {
                position: absolute;
                top: 15px;
                left: 15px;
                padding: 5px 15px;
                font-size: 14px;
                color: var(--contrast-color);
                border-radius: 4px;
                z-index: 1;
            }

                .news-hero .post-item .post-img .category.entertainment {
                    background-color: #e74c3c;
                }

                .news-hero .post-item .post-img .category.business {
                    background-color: #3498db;
                }

                .news-hero .post-item .post-img .category.technology {
                    background-color: #2ecc71;
                }

                .news-hero .post-item .post-img .category.lifestyle {
                    background-color: #9b59b6;
                }

        .news-hero .post-item .post-content .post-title {
            margin: 0 0 12px;
            font-family: var(--heading-font);
        }

            .news-hero .post-item .post-content .post-title a {
                color: var(--heading-color);
                transition: color 0.3s ease;
            }

                .news-hero .post-item .post-content .post-title a:hover {
                    color: var(--accent-color);
                }

        .news-hero .post-item .post-content .post-meta {
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

            .news-hero .post-item .post-content .post-meta .dot {
                margin: 0 8px;
            }

    .news-hero .main-post {
        margin-bottom: 0;
    }

        .news-hero .main-post .post-img {
            margin-bottom: 20px;
        }

        .news-hero .main-post .post-title {
            font-size: 28px;
            line-height: 1.3;
        }

@media (max-width: 991.98px) {
    .news-hero .main-post .post-title {
        font-size: 24px;
    }
}

.news-hero .side-posts .side-post {
    margin-bottom: 30px;
}

    .news-hero .side-posts .side-post:last-child {
        margin-bottom: 0;
    }

    .news-hero .side-posts .side-post .post-title {
        font-size: 16px;
        line-height: 1.4;
    }

@media (max-width: 991.98px) {
    .news-hero .side-posts {
        margin-top: 0;
    }
}
/*--------------------------------------------------------------
# Recent News Section
--------------------------------------------------------------*/
.recent-news article {
    background: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.recent-news .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.recent-news .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 10px;
}

.recent-news .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

    .recent-news .title a {
        color: var(--heading-color);
        transition: 0.3s;
    }

        .recent-news .title a:hover {
            color: var(--accent-color);
        }

.recent-news .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.recent-news .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.recent-news .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0;
}
/************index9***************/
@media (max-width: 991px) {
    .recent-news .post-item {
        flex-direction: column;
    }

    .recent-news .post-img {
        flex: 0 0 auto;
    }

        .recent-news .post-img img {
            width: 100%;
            height: 200px;
        }

    .recent-news .post-content {
        padding: 24px;
    }

    .recent-news .post-title a {
        font-size: 20px;
    }
}
/*--------------------------------------------------------------
# News Posts Section
--------------------------------------------------------------*/
.news-posts {
    padding-top: 40px;
    padding-bottom: 60px;
}

    .news-posts article {
        margin-bottom: 30px;
    }

    .news-posts .post-img {
        overflow: hidden;
        aspect-ratio: 4/3;
    }

        .news-posts .post-img::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
        }

        .news-posts .post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.3s;
        }

        .news-posts .post-img:hover img {
            transform: scale(1.1);
        }

    .news-posts .post-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px;
        z-index: 2;
        color: var(--contrast-color);
    }

    .news-posts .post-category {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        color: var(--contrast-color);
    }

    .news-posts .title {
        margin-bottom: 15px;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.4;
    }

        .news-posts .title a {
            color: var(--contrast-color);
            transition: 0.3s;
        }

            .news-posts .title a:hover {
                color: color-mix(in srgb, var(--contrast-color), transparent 20%);
            }

    .news-posts .post-meta {
        font-size: 14px;
        color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    }

        .news-posts .post-meta span {
            display: inline-block;
        }

@media (max-width: 768px) {
    .news-posts .post-content {
        padding: 20px;
    }

    .news-posts .title {
        font-size: 18px;
    }

    .news-posts .post-meta {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
    padding-top: 0;
    padding: 50px;
}

    .pagination-2 nav {
        position: relative;
    }

    .pagination-2 ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .pagination-2 li {
        margin: 0;
        transition: all 0.3s ease-in-out;
    }

        .pagination-2 li.ellipsis {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            padding: 8px 16px;
            user-select: none;
        }

        .pagination-2 li a {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 8px 16px;
            color: var(--default-color);
            background-color: var(--surface-color);
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .pagination-2 li a.active {
                background-color: var(--accent-color);
                color: var(--contrast-color);
                transform: translateY(-2px);
                box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
            }

            .pagination-2 li a:hover:not(.active) {
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
                transform: translateY(-1px);
                box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
            }

            .pagination-2 li a i {
                font-size: 14px;
            }

            .pagination-2 li a span {
                margin: 0 4px;
            }

@media (max-width: 575px) {
    .pagination-2 ul {
        gap: 4px;
    }

    .pagination-2 li a {
        min-width: 36px;
        height: 36px;
        padding: 8px 12px;
        font-size: 14px;
    }
}
/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .featured-post {
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .recent-blog-posts .featured-post:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

        .recent-blog-posts .featured-post:hover .featured-img img {
            transform: scale(1.05);
        }

        .recent-blog-posts .featured-post:hover .post-title a {
            color: var(--accent-color);
        }

.recent-blog-posts .featured-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

    .recent-blog-posts .featured-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.recent-blog-posts .featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recent-blog-posts .featured-content {
    padding: 32px;
}

.recent-blog-posts .post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.recent-blog-posts .post-title {
    margin: 0 0 20px 0;
}

    .recent-blog-posts .post-title a {
        color: var(--heading-color);
        font-size: 28px;
        font-weight: 700;
        line-height: 1.3;
        transition: color 0.3s ease;
    }

        .recent-blog-posts .post-title a:hover {
            color: var(--accent-color);
        }

.recent-blog-posts .post-excerpt {
    color: var(--default-color);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.recent-blog-posts .post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recent-blog-posts .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recent-blog-posts .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.recent-blog-posts .author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recent-blog-posts .author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}

.recent-blog-posts .read-time {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-posts .read-more {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

    .recent-blog-posts .read-more::after {
        content: "→";
        margin-left: 8px;
        transition: margin-left 0.3s ease;
    }

    .recent-blog-posts .read-more:hover::after {
        margin-left: 12px;
    }

.recent-blog-posts .recent-post {
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

    .recent-blog-posts .recent-post:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .recent-blog-posts .recent-post:hover .recent-title a {
            color: var(--accent-color);
        }

        .recent-blog-posts .recent-post:hover .recent-img img {
            transform: scale(1.05);
        }

.recent-blog-posts .recent-img {
    height: 120px;
    overflow: hidden;
}

    .recent-blog-posts .recent-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.recent-blog-posts .recent-content {
    padding: 20px;
}

.recent-blog-posts .recent-title {
    margin: 8px 0 12px 0;
}

    .recent-blog-posts .recent-title a {
        color: var(--heading-color);
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

        .recent-blog-posts .recent-title a:hover {
            color: var(--accent-color);
        }

.recent-blog-posts .recent-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
}

    .recent-blog-posts .recent-meta .author {
        color: var(--heading-color);
        font-weight: 500;
    }

    .recent-blog-posts .recent-meta .date {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

.recent-blog-posts .category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 80%));
    color: var(--accent-color);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .recent-blog-posts .category:hover {
        background: var(--accent-color);
        color: var(--contrast-color);
        transform: translateY(-1px);
    }

.recent-blog-posts .post-date {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

@media (max-width: 991px) {
    .recent-blog-posts .featured-post {
        margin-bottom: 40px;
    }

    .recent-blog-posts .featured-img {
        height: 250px;
    }

    .recent-blog-posts .featured-content {
        padding: 24px;
    }

    .recent-blog-posts .post-title a {
        font-size: 24px;
    }

    .recent-blog-posts .post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .recent-blog-posts .recent-post {
        display: flex;
        margin-bottom: 16px;
    }

    .recent-blog-posts .recent-img {
        flex: 0 0 100px;
        height: 100px;
    }

    .recent-blog-posts .recent-content {
        flex: 1;
        padding: 16px;
    }

    .recent-blog-posts .recent-title a {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .recent-blog-posts .post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .recent-blog-posts .recent-post {
        flex-direction: column;
    }

    .recent-blog-posts .recent-img {
        flex: none;
        height: 120px;
    }
}
*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.blog-details .article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

    .blog-details .article-header .meta-categories {
        margin-bottom: 1.5rem;
    }

        .blog-details .article-header .meta-categories .category {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            margin: 0 0.5rem;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

            .blog-details .article-header .meta-categories .category:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
                transform: translateY(-2px);
            }

    .blog-details .article-header .title {
        font-size: 3.2rem;
        line-height: 1.2;
        margin-bottom: 2rem;
        color: var(--heading-color);
    }

@media (max-width: 768px) {
    .blog-details .article-header .title {
        font-size: 2.2rem;
    }
}

.blog-details .article-header .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

    .blog-details .article-header .article-meta .author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .blog-details .article-header .article-meta .author .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .blog-details .article-header .article-meta .author .author-info {
            text-align: left;
        }

            .blog-details .article-header .article-meta .author .author-info h4 {
                margin: 0;
                font-size: 1.1rem;
                color: var(--heading-color);
            }

            .blog-details .article-header .article-meta .author .author-info span {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                font-size: 0.9rem;
            }

    .blog-details .article-header .article-meta .post-info {
        display: flex;
        gap: 1.5rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 0.95rem;
    }

        .blog-details .article-header .article-meta .post-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

@media (max-width: 768px) {
    .blog-details .article-header .article-meta {
        justify-content: center;
        text-align: center;
    }

        .blog-details .article-header .article-meta .post-info {
            width: 100%;
            justify-content: center;
            flex-wrap: wrap;
        }
}
*--------------------------------------------------------------
# Property Details Section
--------------------------------------------------------------*/
.property-details .property-hero .hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-wrapper {
    height: auto !important;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, 0.3));
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px;
    z-index: 5;
}

    .property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge {
            background: var(--accent-color);
            color: var(--contrast-color);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
        }

            .property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge.for-rent {
                background: #28a745;
            }

        .property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .featured-badge {
            background: #ff6b35;
            color: var(--contrast-color);
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
        }

    .property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn {
        background: rgba(255, 255, 255, 0.95);
        border: none;
        color: var(--accent-color);
        padding: 12px 20px;
        border-radius: 30px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

        .property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn i {
            font-size: 20px;
        }

        .property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn:hover {
            background: var(--surface-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next,
.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    margin-top: -22.5px;
    z-index: 10;
    color: var(--accent-color);
}

    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:after,
    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:after {
        font-size: 16px;
        color: var(--accent-color);
        font-weight: 700;
    }

    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:hover,
    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:hover {
        transform: scale(1.1);
    }

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next {
    right: 20px;
    transition: 0.3s;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
    left: 20px;
    transition: 0.3s;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-wrapper {
    height: auto !important;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img {
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

    .property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img:hover {
        transform: scale(1.05);
    }

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide {
    position: relative;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

    .property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide.swiper-slide-thumb-active {
        opacity: 1;
    }

        .property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide.swiper-slide-thumb-active .thumbnail-img {
            border-color: var(--accent-color);
        }

    .property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide .photo-count {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.7);
        color: var(--contrast-color);
        padding: 8px 12px;
        border-radius: 15px;
        font-weight: 600;
        font-size: 14px;
        z-index: 2;
    }

.property-details .property-info .property-header .property-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.property-details .property-info .property-header .property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

    .property-details .property-info .property-header .property-meta .address {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 16px;
    }

        .property-details .property-info .property-header .property-meta .address i {
            color: var(--accent-color);
            margin-right: 8px;
        }

    .property-details .property-info .property-header .property-meta .listing-id {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-size: 14px;
        font-weight: 500;
    }

.property-details .property-info .pricing-section {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
}

    .property-details .property-info .pricing-section .main-price {
        font-size: 42px;
        font-weight: 800;
        color: var(--contrast-color);
        line-height: 1;
        margin-bottom: 10px;
    }

        .property-details .property-info .pricing-section .main-price .period {
            font-size: 24px;
            font-weight: 400;
            opacity: 0.9;
        }

    .property-details .property-info .pricing-section .price-breakdown {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

        .property-details .property-info .pricing-section .price-breakdown span {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
        }

        .property-details .property-info .pricing-section .price-breakdown .available {
            font-weight: 600;
        }

.property-details .property-info .quick-stats .stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

    .property-details .property-info .quick-stats .stat-grid .stat-card {
        background: var(--surface-color);
        padding: 20px 15px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }

        .property-details .property-info .quick-stats .stat-grid .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .property-details .property-info .quick-stats .stat-grid .stat-card .stat-icon {
            margin-bottom: 10px;
        }

            .property-details .property-info .quick-stats .stat-grid .stat-card .stat-icon i {
                font-size: 24px;
                color: var(--accent-color);
            }

        .property-details .property-info .quick-stats .stat-grid .stat-card .stat-number {
            display: block;
            font-size: 20px;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 5px;
        }

        .property-details .property-info .quick-stats .stat-grid .stat-card .stat-label {
            font-size: 12px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

.property-details .property-details h3 {
    color: var(--heading-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.property-details .property-details p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.property-details .property-details .features-grid h5 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.property-details .property-details .features-grid .feature-list {
    list-style: none;
    padding: 0;
}

    .property-details .property-details .features-grid .feature-list li {
        display: flex;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    }

        .property-details .property-details .features-grid .feature-list li:last-child {
            border-bottom: none;
        }

        .property-details .property-details .features-grid .feature-list li i {
            color: var(--accent-color);
            margin-right: 12px;
            font-size: 16px;
        }

.property-details .floor-plan-section h3 {
    color: var(--heading-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.property-details .floor-plan-section .floor-plan-card {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .property-details .floor-plan-section .floor-plan-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .property-details .floor-plan-section .floor-plan-card .plan-details {
        padding: 25px;
    }

        .property-details .floor-plan-section .floor-plan-card .plan-details h5 {
            color: var(--heading-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .property-details .floor-plan-section .floor-plan-card .plan-details p {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin: 0;
        }

.property-details .sticky-sidebar {
    position: sticky;
    top: 100px;
}

    .property-details .sticky-sidebar .actions-card {
        background: var(--surface-color);
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

        .property-details .sticky-sidebar .actions-card .btn {
            font-weight: 600;
            border-radius: 12px;
            padding: 15px 20px;
        }

            .property-details .sticky-sidebar .actions-card .btn.btn-primary {
                background: var(--accent-color);
                border-color: var(--accent-color);
            }

                .property-details .sticky-sidebar .actions-card .btn.btn-primary i {
                    margin-right: 8px;
                }

            .property-details .sticky-sidebar .actions-card .btn.btn-outline-primary {
                border-color: var(--accent-color);
                color: var(--accent-color);
            }

                .property-details .sticky-sidebar .actions-card .btn.btn-outline-primary:hover {
                    background: var(--accent-color);
                    color: var(--contrast-color);
                }

    .property-details .sticky-sidebar .agent-card {
        background: var(--surface-color);
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

        .property-details .sticky-sidebar .agent-card .agent-header {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

            .property-details .sticky-sidebar .agent-card .agent-header .agent-avatar {
                position: relative;
                width: 70px;
                height: 70px;
                border-radius: 50%;
                overflow: hidden;
                margin-right: 15px;
                flex-shrink: 0;
            }

                .property-details .sticky-sidebar .agent-card .agent-header .agent-avatar img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .property-details .sticky-sidebar .agent-card .agent-header .agent-avatar .online-status {
                    position: absolute;
                    bottom: 5px;
                    right: 5px;
                    width: 16px;
                    height: 16px;
                    background: #28a745;
                    border: 3px solid var(--surface-color);
                    border-radius: 50%;
                }

            .property-details .sticky-sidebar .agent-card .agent-header .agent-info h4 {
                color: var(--heading-color);
                font-size: 18px;
                margin-bottom: 5px;
                font-weight: 600;
            }

            .property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-role {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                font-size: 14px;
                margin-bottom: 10px;
            }

            .property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .stars {
                margin-bottom: 5px;
            }

                .property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .stars i {
                    color: #ffc107;
                    margin-right: 2px;
                    font-size: 14px;
                }

            .property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .rating-text {
                font-size: 12px;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
            }

        .property-details .sticky-sidebar .agent-card .agent-contact {
            border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            padding-top: 15px;
            margin-bottom: 15px;
        }

            .property-details .sticky-sidebar .agent-card .agent-contact .contact-item {
                display: flex;
                align-items: center;
                margin-bottom: 8px;
            }

                .property-details .sticky-sidebar .agent-card .agent-contact .contact-item i {
                    color: var(--accent-color);
                    margin-right: 10px;
                    width: 16px;
                }

                .property-details .sticky-sidebar .agent-card .agent-contact .contact-item span {
                    font-size: 14px;
                    color: var(--default-color);
                }

        .property-details .sticky-sidebar .agent-card .btn {
            font-weight: 600;
            border-radius: 12px;
            padding: 12px 20px;
        }

            .property-details .sticky-sidebar .agent-card .btn i {
                margin-right: 8px;
            }

            .property-details .sticky-sidebar .agent-card .btn.btn-success {
                background: #28a745;
                border-color: #28a745;
            }

            .property-details .sticky-sidebar .agent-card .btn.btn-outline {
                border-color: var(--accent-color);
                color: var(--accent-color);
            }

                .property-details .sticky-sidebar .agent-card .btn.btn-outline:hover {
                    background: var(--accent-color);
                    color: var(--contrast-color);
                }

    .property-details .sticky-sidebar .contact-form-card {
        background: var(--surface-color);
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

        .property-details .sticky-sidebar .contact-form-card h4 {
            color: var(--heading-color);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .property-details .sticky-sidebar .contact-form-card .form-control,
        .property-details .sticky-sidebar .contact-form-card .form-select {
            color: var(--default-color);
            background-color: transparent;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            border-radius: 12px;
            padding: 15px;
        }

            .property-details .sticky-sidebar .contact-form-card .form-control:focus,
            .property-details .sticky-sidebar .contact-form-card .form-select:focus {
                border-color: var(--accent-color);
                box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
            }

            .property-details .sticky-sidebar .contact-form-card .form-control::placeholder,
            .property-details .sticky-sidebar .contact-form-card .form-select::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 60%);
            }

        .property-details .sticky-sidebar .contact-form-card .btn {
            background: var(--accent-color);
            border-color: var(--accent-color);
            font-weight: 600;
            border-radius: 12px;
            padding: 15px 20px;
        }

    .property-details .sticky-sidebar .calculator-card {
        background: var(--surface-color);
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

        .property-details .sticky-sidebar .calculator-card h4 {
            color: var(--heading-color);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .property-details .sticky-sidebar .calculator-card .cost-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
        }

            .property-details .sticky-sidebar .calculator-card .cost-item:last-of-type {
                border-bottom: none;
            }

            .property-details .sticky-sidebar .calculator-card .cost-item .cost-label {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                font-size: 14px;
            }

            .property-details .sticky-sidebar .calculator-card .cost-item .cost-value {
                color: var(--heading-color);
                font-weight: 600;
            }

        .property-details .sticky-sidebar .calculator-card .total-cost {
            background: color-mix(in srgb, var(--accent-color), transparent 95%);
            padding: 15px;
            border-radius: 12px;
            margin-top: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .property-details .sticky-sidebar .calculator-card .total-cost .total-label {
                color: var(--heading-color);
                font-weight: 600;
            }

            .property-details .sticky-sidebar .calculator-card .total-cost .total-value {
                color: var(--accent-color);
                font-size: 18px;
                font-weight: 700;
            }

    .property-details .sticky-sidebar .similar-properties h4 {
        color: var(--heading-color);
        margin-bottom: 20px;
        font-weight: 600;
    }

    .property-details .sticky-sidebar .similar-properties .similar-property-item {
        display: flex;
        background: var(--surface-color);
        border-radius: 15px;
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }

        .property-details .sticky-sidebar .similar-properties .similar-property-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .property-details .sticky-sidebar .similar-properties .similar-property-item img {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 10px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .property-details .sticky-sidebar .similar-properties .similar-property-item .similar-info h6 {
            color: var(--heading-color);
            font-size: 14px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .property-details .sticky-sidebar .similar-properties .similar-property-item .similar-info .similar-price {
            color: var(--accent-color);
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 3px;
        }

        .property-details .sticky-sidebar .similar-properties .similar-property-item .similar-info .similar-specs {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 12px;
            margin: 0;
        }

.property-details .location-section h3 {
    color: var(--heading-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.property-details .location-section .map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .property-details .location-section .map-wrapper iframe {
        filter: grayscale(10%);
    }

.property-details .location-section .neighborhood-info h5 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.property-details .location-section .neighborhood-info .poi-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

    .property-details .location-section .neighborhood-info .poi-item:last-child {
        border-bottom: none;
    }

    .property-details .location-section .neighborhood-info .poi-item i {
        color: var(--accent-color);
        margin-right: 15px;
        width: 20px;
        text-align: center;
        font-size: 18px;
    }

    .property-details .location-section .neighborhood-info .poi-item .poi-content {
        display: flex;
        flex-direction: column;
    }

        .property-details .location-section .neighborhood-info .poi-item .poi-content .poi-name {
            color: var(--heading-color);
            font-weight: 500;
            margin-bottom: 3px;
        }

        .property-details .location-section .neighborhood-info .poi-item .poi-content .poi-distance {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 13px;
        }

@media (max-width: 992px) {
    .property-details .sticky-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {

    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next,
    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
        margin-top: -17.5px;
    }

        .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:after,
        .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:after {
            font-size: 14px;
        }

    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next {
        right: 10px;
    }

    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
        left: 10px;
    }

    .property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img {
        height: 60px;
    }

    .property-details .property-info .property-header .property-title {
        font-size: 28px;
    }

    .property-details .property-info .property-header .property-meta {
        flex-direction: column;
        gap: 10px;
    }

    .property-details .property-info .pricing-section .main-price {
        font-size: 36px;
    }

    .property-details .property-info .quick-stats .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

        .property-details .property-info .quick-stats .stat-grid .stat-card {
            padding: 15px 10px;
        }

    .property-details .similar-properties .similar-property-item {
        flex-direction: column;
        text-align: center;
    }

        .property-details .similar-properties .similar-property-item img {
            margin-right: 0;
            margin-bottom: 10px;
            width: 100%;
            height: 120px;
        }
}

    /*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
    .footer {
        color: var(--default-color);
        background-color: var(--background-color);
        font-size: 14px;
        position: relative;
    }

        .footer .footer-top {
            padding-top: 50px;
            border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

        .footer .footer-about .logo {
            line-height: 1;
            margin-bottom: 25px;
        }

            .footer .footer-about .logo img {
                max-height: 130px;
                margin-right: 6px;
            }

            .footer .footer-about .logo span {
                font-size: 26px;
                font-weight: 700;
                letter-spacing: 1px;
                font-family: var(--heading-font);
                color: var(--heading-color);
            }

        .footer .footer-about p {
            font-size: 14px;
            font-family: var(--heading-font);
        }

        .footer .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
            font-size: 16px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-right: 10px;
            transition: 0.3s;
        }

            .footer .social-links a:hover {
                color: var(--accent-color);
                border-color: var(--accent-color);
            }

        .footer h4 {
            font-size: 16px;
            font-weight: bold;
            position: relative;
            padding-bottom: 12px;
        }

        .footer .footer-links {
            margin-bottom: 30px;
        }

            .footer .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .footer .footer-links ul i {
                    padding-right: 3px;
                    font-size: 13px;
                    line-height: 0;
                    color: var(--accent-color);
                }

                .footer .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    .footer .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                .footer .footer-links ul a {
                    color: color-mix(in srgb, var(--default-color), transparent 30%);
                    display: inline-block;
                    line-height: 1;
                }

                    .footer .footer-links ul a:hover {
                        color: var(--accent-color);
                    }

        .footer .footer-contact p {
            margin-bottom: 5px;
        }

        .footer .footer-newsletter .newsletter-form {
            margin-top: 30px;
            margin-bottom: 15px;
            padding: 6px 8px;
            position: relative;
            border-radius: 4px;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            display: flex;
            background-color: var(--background-color);
            transition: 0.3s;
        }

            .footer .footer-newsletter .newsletter-form:focus-within {
                border-color: var(--accent-color);
            }

            .footer .footer-newsletter .newsletter-form input[type=email] {
                border: 0;
                padding: 4px;
                width: 100%;
                background-color: var(--background-color);
                color: var(--default-color);
            }

                .footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
                    outline: none;
                }

            .footer .footer-newsletter .newsletter-form input[type=submit] {
                border: 0;
                font-size: 16px;
                padding: 0 20px;
                margin: -7px -8px -7px 0;
                background: var(--accent-color);
                color: var(--contrast-color);
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
            }

                .footer .footer-newsletter .newsletter-form input[type=submit]:hover {
                    background: color-mix(in srgb, var(--accent-color), transparent 20%);
                }

        .footer .copyright {
            padding: 25px 0;
            border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .footer .copyright p {
                margin-bottom: 0;
            }

        .footer .credits {
            margin-top: 6px;
            font-size: 13px;
        }

    .clients {
        padding: 50px;
    }

        .clients .client-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

            .clients .client-logo img {
                padding: 20px 40px;
                max-width: 100%;
                transition: 0.3s;
            }

                .clients .client-logo img:hover {
                    filter: none;
                    opacity: 1;
                }

    @media (max-width: 640px) {
        .clients .client-logo img {
            padding: 20px;
        }
    }

.blog-details .article-header .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

    .blog-details .article-header .article-meta .author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .blog-details .article-header .article-meta .author .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .blog-details .article-header .article-meta .author .author-info {
            text-align: left;
        }

            .blog-details .article-header .article-meta .author .author-info h4 {
                margin: 0;
                font-size: 1.1rem;
                color: var(--heading-color);
            }

            .blog-details .article-header .article-meta .author .author-info span {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                font-size: 0.9rem;
            }

    .blog-details .article-header .article-meta .post-info {
        display: flex;
        gap: 1.5rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 0.95rem;
    }

        .blog-details .article-header .article-meta .post-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

@media (max-width: 768px) {
    .blog-details .article-header .article-meta {
        justify-content: center;
        text-align: center;
    }

        .blog-details .article-header .article-meta .post-info {
            width: 100%;
            justify-content: center;
            flex-wrap: wrap;
        }
}
.carousel {
    position: relative;
}

.carousel-item img {
    object-fit: cover;
}

#carousel-thumbs {
    background: rgba(255,255,255,.3);
    bottom: 0;
    left: 0;
    padding: 0 50px;
    right: 0;
}

    #carousel-thumbs img {
        border: 5px solid transparent;
        cursor: pointer;
    }

        #carousel-thumbs img:hover {
            border-color: rgba(255,255,255,.3);
        }

    #carousel-thumbs .selected img {
        border-color: #fff;
    }

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
}

@media all and (max-width: 767px) {
    .carousel-container #carousel-thumbs img {
        border-width: 3px;
    }
}

@media all and (min-width: 576px) {
    .carousel-container #carousel-thumbs {
        position: absolute;
    }
}

@media all and (max-width: 576px) {
    .carousel-container #carousel-thumbs {
        background: #ccccce;
    }
}