:root {
    --gold-color: #C8A870;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --light-text: #ffffff;
    --gray-text: #999;
    --transition: all 0.3s ease;
}

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

@font-face {
    font-family: "Helvetica Neue LT Arabic";
    src: url("../fonts/HelveticaNeueLTArabic-Roman.eot"); /* IE9 Compatibility */
    src: url("../fonts/HelveticaNeueLTArabic-Roman.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
         url("../fonts/HelveticaNeueLTArabic-Roman.woff2") format("woff2"), /* Modern Browsers */
         url("../fonts/HelveticaNeueLTArabic-Roman.woff") format("woff"),   /* Standard Fallback */
         url("../fonts/HelveticaNeueLTArabic-Roman_0.ttf") format("truetype"), /* Safari, Android, iOS */
         url("../fonts/HelveticaNeueLTArabic-Roman.svg#Helvetica") format("svg"); /* Old iOS < 5 */
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Ensures better performance */
}

body {
    font-family: 'Helvetica Neue LT Arabic';
    color: #333;
    overflow-x: hidden;
}

.text-gold {
    color: var(--gold-color) !important;
}
.mc4wp-alert p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}
.container-fluid {
    padding: 0 50px;
}
.newsletter-form .input-group p {
    display: flex; 
    margin: 0;
    width: 100%;
    justify-content: space-between;
}
.wpml-ls-legacy-dropdown-click a span {
    vertical-align: middle;
    line-height: 20px;
}
.cookie-policy-content a {
    color: #c9a76b;
}
/* Open dropdown on hover */
.nav-item.menu-item-has-children:hover > .dropdown-menu {
    display: block;
    margin-top: 0; 
}

/* Prevent closing when hovering inside */
.nav-item.dropdown:hover > a {
    color: #fff;
}
div#mobileSidebar svg.menu-arrow {
    fill: #000;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: #c9a76b !important;
    color:#fff !important;
}
/* Show dropdown smoothly */
.dropdown-menu {
    display: none;
}
svg.menu-arrow {
    fill: #fff;
}
.newsletter-form .input-group span.wpcf7-spinner {
    display: none;
}
.sidebar-lang .wpml-ls-legacy-dropdown-click ul li a , .sidebar-lang .wpml-ls-legacy-dropdown-click a:hover{
   /* color: #000 !important; */
}
.sidebar-lang.mt-4 {
    margin-bottom: 36px;
}
.mobile-sidebar .nav-item.dropdown:hover > a {
    color: #333;
}

.mobile-sidebar a.dropdown-item.active {
    padding-left: 10px;
}
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    transition: var(--transition);
    z-index: 1000;
}
.main-header.sticky-top.light-bg {
    background: #000;
}
.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.wpml-ls-legacy-dropdown-click a:hover {
    background: transparent !important;
    color: #fff !important;
}
.logo-circle {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}
div#mainNavigation {
    justify-content: space-between;
    padding-left: 20px;
    border-left: 1px solid #fff;
}

a.custom-logo-link {
    padding-right: 20px;
}
.navbar-nav .nav-link {
    color: #333;
    font-size: 14px;
    padding: 8px 15px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--gold-color);
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
   
}

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

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.play-button i {
    font-size: 30px;
    margin-left: 5px;
}
.home .hero-content {
    left: auto;
}
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}
.rtl .get-in-touch-btn {
    margin-left: 0 !important;
    margin-right: 20px !important;
}
.counter-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.counter-item {
    padding: 20px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 16px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legacy-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.legacy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.recent-projects-section {
    padding: 100px 0;
    background: #fff;
}

.btn-gold {
    background: var(--gold-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: #b89760;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 168, 112, 0.3);
}

.projects-slider {
    margin-top: 40px;
}

.projectsSwiper {
    padding: 20px 0;
}

.project-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px;
    color: white;
}

.play-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.project-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.project-meta {
    font-size: 14px;
    opacity: 0.9;
}



.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}

.project-types-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.project-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-type-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.project-type-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.project-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-type-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
}

.project-type-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

.project-types-grid:hover .project-type-item {
    flex: 0.5;
}

.project-types-grid .project-type-item:hover {
    flex: 2;
}

.project-type-item:hover .project-type-image img {
    transform: scale(1.1);
}

.driven-section {
    padding: 100px 0;
    background: var(--dark-bg);
    color: white;
}

.rotating-logo {
    width: 200px;
    height: 200px;
    position: relative;
    margin: 0 auto;
}

.circular-text {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.circular-text-path {
    fill: var(--gold-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-logo {
    font-size: 40px;
    font-weight: bold;
    color: #000;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold-color);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.news-section {
    padding: 50px 0 !important;
    background: #fff;
}

.news-navigation {
    display: flex;
    gap: 10px;
}

.news-prev,
.news-next {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold-color);
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gold-color);
}

.news-prev:hover,
.news-next:hover {
    background: var(--gold-color);
    color: white;
}

.newsSwiper {
    padding: 20px 0;
}

.news-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 400px;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-date .day {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.news-date .month {
    display: block;
    font-size: 10px;
    color: var(--gold-color);
    font-weight: 600;
    line-height: 1.2;
}

.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
    background: #f8f8f8;
}

.news-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gold-color);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}
.sticky-right a {
    border-radius: 10px 0 0 10px;
    background: rgba(0, 0, 0, 0.20);
    padding: 10px 16px;
    display: block;
    width: fit-content;
    margin-bottom: 5px;
        line-height: 10px;
}

.sticky-right {
    position: fixed;
    right: 0;
    top: 60%;
    z-index:99999;
}
.footer {
    background: var(--darker-bg);
    color: white;
    padding: 80px 0 30px;
}
h3.footer-menu-title-newsletter {
    color: #FFF;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}
.footer-brand {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 0px;
}

.footer-bottom p {
    color: var(--gray-text);
    margin: 0;
    font-size: 14px;
}

.footer-flag {
    height: 30px;
    width: auto;
}

@media (max-width: 1199px) {
    .project-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .rotating-logo {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 100vh;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .counter-number {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .project-types-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 350px;
    }
}

@media (hover: hover) {
    .project-types-grid {
        display: flex;
        transition: var(--transition);
    }

    .project-type-item {
        flex: 1;
        transition: flex 0.5s ease;
    }
}

@media (hover: none) {
    .project-types-grid {
        display: grid;
    }
}

.fade-in-visible {
    animation: fadeInUp 0.8s ease forwards;
}






/**
 * Footer Styles - Osus Real Estate
 * Designed to match the provided footer design
 */

.osus-footer {
    background-color: #000;
    color: #FFFFFF;
    padding: 60px 0 40px;
}

/* Top Section - Logo, Social Media, Newsletter */
.footer-top {
    margin-bottom: 20px;
}

.footer-branding {
    gap: 40px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
   
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    
    color: #FFFFFF;
    transform: translateY(-3px);
}
button.btn.btn-subscribe {
    border-top-left-radius: 7.836px !important;
    border-bottom-left-radius: 7.836px !important;
}
.footer-social-icons i {
    font-size: 18px;
}

/* Newsletter Form */
.footer-newsletter {
    max-width: 600px;
    margin-left: auto;
}

.newsletter-form .input-group {
    background-color: #ECECEC;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px 10px;
}

.newsletter-form .form-control {
    border: none;
    background: transparent;
    padding: 8px 25px;
    color: #000000;
    font-family: "Helvetica Neue LT Arabic", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.newsletter-form .form-control::placeholder {
    color: #999999;
}
li.wpml-ls-slot-shortcode_actions, li.wpml-ls-slot-shortcode_actions:hover {
    background-color: #cfaf86;
    border: none;
    color: #ffffff;
    /* padding: 10px; */
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.3s 
ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(201, 167, 107, 0.2);
    width: 100%;
}
.wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a, .wpml-ls-legacy-dropdown-click a:focus, .wpml-ls-legacy-dropdown-click a:hover {
    color: #fff !important;
    background: inherit !important;
    border-radius: 6px;
}
li.wpml-ls-slot-shortcode_actions a {
    padding: 11px;
}
.newsletter-form .btn-subscribe {
        border-radius: 7.836px;
    background: #C9A87D;
  border-top-left-radius:7.836px !important;
	border-bottom-left-radius: 7.836px !important;
    color: #000;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 14px;
    font-style: normal;
   line-height: 12px;
    padding: 14px 68px;
    height: fit-content;
}
ul.footer-menu li {
    line-height: 24px;
}
.values-image img {
    width: min-content;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active
 {
    background-color: #C2A176;
}
.newsletter-form .btn-subscribe:hover {
    background-color: #B89667;
    transform: translateY(-2px);
}
.page-template-projects section.hero-section.sections.dark {
    height: 70vh;
}

.page-template-projects section.hero-section.sections.dark img {
    object-position: top;
}
/* Divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.20);
    margin: 20px 0 10px;
    opacity: 1;
}
hr.footer-divider.top-margin-0 {
    margin-top: 0;
}
/* Main Navigation Section */


.certification-badge {
    max-width: 180px;
    height: auto;
    padding-top: 16px;
    width:100%;
}
.chairman-content p {
    font-size: 15px;
    line-height: 31px;
}

.chairman-content {
    margin-top: 20px;
}
.footer-menu-title {
   
    margin-bottom: 20px;
    color: #FFF;
font-family: "Helvetica Neue LT Arabic";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 50px; /* 250% */
}

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #FFFFFF;
    font-family: "Helvetica Neue LT Arabic", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: #C9A87D;
    
}

/* Bottom Section */


.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-bottom-links li a {
    color: #FFFFFF;
    font-family: "Helvetica Neue LT Arabic", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
    color: #C9A87D;
}

.footer-copyright {
    color: #FFF !important;
font-family: "Helvetica Neue LT Arabic";
font-size: 16px !important;
font-style: normal;
font-weight: 400;
line-height: 50px; /* 250% */
text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-branding {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start !important;
    }

    .footer-newsletter {
        margin-top: 30px;
        margin-left: 0;
    }

    .footer-menu-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-menu li {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .osus-footer {
        padding: 40px 0 30px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-social-icons a {
        width: 35px;
        height: 35px;
    }

    .footer-social-icons i {
        font-size: 16px;
    }

    .newsletter-form .form-control {
        font-size: 14px;
        padding: 3px 20px;
    }

    .newsletter-form .btn-subscribe {
        font-size: 13px;
        padding: 12px 30px;
    }

    .certification-badge {
        max-width: 85px;
        margin-bottom: 30px;
    }

    .footer-menu-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-menu li a {
        font-size: 14px;
    }

    .footer-bottom-links {
       
        gap: 15px;
        align-items: center;
    }

    .footer-bottom-links li a {
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 16px !important;
    }
}

@media (max-width: 575px) {
    .footer-social-icons {
        gap: 13px;
        flex-wrap: wrap;
    }

    .newsletter-form .input-group {
       
        border-radius: 10px;
        padding: 5px 10px;
    }

    .newsletter-form .btn-subscribe {
        width: 50%;
       
    }
}



/* ===========================
   Main Header Styles
   =========================== */
.main-header {

    z-index: 1000;
    transition: all 0.3s ease;
   background: linear-gradient(180deg, rgba(51, 52, 53, 0.10) 15.75%, rgba(108, 110, 112, 0.10) 140.33%, rgba(149, 152, 155, 0.10) 211.11%);
backdrop-filter: blur(5px);
}
.wpml-ls-legacy-dropdown-click {
    width: auto;
    background: transparent;
}

.wpml-ls-legacy-dropdown-click ul li a {
    background: transparent;
    color: #3a2a14;
        border: none;
        font-size: 14px; 
}
.main-header.sticky-top {
    position: fixed;
    top: 0;
        z-index: 999999;
    width: 100%;
}

.main-header .navbar {
    padding: 0;
    min-height: 70px;
}

/* ===========================
   Logo / Brand Styles
   =========================== */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    max-height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

/* ===========================
   Navigation Menu
   =========================== */
.navbar-nav {
    gap: 2rem;
}

.navbar-nav .nav-item {
    position: relative;
    list-style: none;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0px;
    background-color: #ffffff00;
    transition: width 0.3s ease;
        border: none;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* ===========================
   Dropdown Menu Styles
   =========================== */
.navbar-nav .dropdown {
    position: relative;
}



.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.navbar-nav .dropdown-menu {
    min-width: 220px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.75rem;
    animation: dropdownFadeIn 0.3s ease;
}

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

.navbar-nav .dropdown-item {
    color: #374151;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    line-height: 15px;
}
/* Arrow styling */
.menu-arrow {
  margin-left: 6px;
  vertical-align: middle;
  transition: transform .2s ease;
  display: inline-block;
}

/* Rotate on open/hover */
.nav-item.dropdown:hover > a .menu-arrow,
.nav-item .dropdown-toggle[aria-expanded="true"] .menu-arrow {
  transform: rotate(180deg);
}
.navbar-nav .dropdown-item:hover {
    background-color: #f9fafb;
    color: #1a1a1a;
    padding-left: 1.5rem;
}

/* ===========================
   Header Actions (Right Side)
   =========================== */


.action-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.action-link:hover {
    color: #1a1a1a;
}

.action-link i {
    font-size: 1.125rem;
}

/* ===========================
   Search Toggle Button
   =========================== */
.search-toggle {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.125rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.search-toggle:hover {
    color: #1a1a1a;
    background-color: #f9fafb;
}

/* ===========================
   Language Switcher
   =========================== */
.language-switcher .dropdown {
    position: relative;
}

.lang-toggle {
    background-color: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-toggle:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.lang-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.language-switcher .dropdown.show .lang-toggle i {
    transform: rotate(180deg);
}

.language-switcher .dropdown-menu {
    min-width: 120px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.language-switcher .dropdown-item {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    transition: all 0.2s ease;
}

.language-switcher .dropdown-item:hover {
    background-color: #f9fafb;
    color: #1a1a1a;
}

/* ===========================
   Get in Touch Button
   =========================== */
.get-in-touch-btn {
    background-color: #D2B186;
    border: none;
    color: #3a2a14;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(201, 167, 107, 0.2);
}

.get-in-touch-btn:hover {
    background-color: #b8965a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(201, 167, 107, 0.3);
    color: #ffffff;
}

/* ===========================
   Mobile Toggle Button
   =========================== */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: #f9fafb;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===========================
   Search Overlay
   =========================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

/* ===========================
   Search Close Button
   =========================== */
.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.search-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* ===========================
   Search Container
   =========================== */
.search-container {
    text-align: center;
}

.search-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.search-form {
    margin-bottom: 1.5rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    padding: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-submit {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.search-submit:hover {
    color: #c9a76b;
    transform: scale(1.1);
}

.search-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* ===========================
   Demo Content
   =========================== */
.demo-content {
    padding: 4rem 0;
    min-height: 100vh;
}

.demo-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.demo-content p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* ===========================
   Responsive Styles
   =========================== */
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e5e7eb;
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }

    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }

    .header-actions {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e5e7eb;
        flex-wrap: wrap;
    }

    .action-link {
        font-size: 0.9375rem;
    }

    .get-in-touch-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .search-title {
        font-size: 2rem;
    }

    .search-input {
        font-size: 1.25rem;
    }

    .search-close {
        top: -50px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .main-header .navbar {
        min-height: 60px;
    }

    .navbar-brand img {
        max-height: 35px;
    }

    .header-actions {
        gap: 1rem;
    }

    .action-link span {
        font-size: 0.8125rem;
    }

    .search-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .search-input {
        font-size: 1rem;
        padding: 0.75rem;
    }
}



.mobile-actions button {
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}
.mobile-actions {
  display: none;
}

/* ======== SIDEBAR MENU ======== */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
  z-index: 99999999;
  padding: 20px;
  overflow-y: auto;
}
.mobile-sidebar.active {
  right: 0;
}
.sidebar-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.sidebar-header .close-sidebar {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.navbar-nav.flex-column li {
  margin-bottom: 10px;
}
.navbar-nav.flex-column a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
}
div#mobileSidebar svg.menu-arrow {
    margin-left: 18%;
}

.rtl div#mobileSidebar svg.menu-arrow {
    margin-left: 0;
    margin-right:18%;
}

/* ======== OVERLAY ======== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 991px) {
  .mobile-actions {
    display: flex !important;
  }
  .navbar-collapse.d-lg-flex {
    display: none !important;
  }
}
/* Hero Section */
.hero-section {
position: relative;
height: 100vh;
overflow: hidden;
}

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

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.35);
}

.hero-content {
position: absolute;
bottom: 50px;
left: 50px;
z-index: 2;
}

.hero-title {
color: #FFF;
font-family: "Helvetica Neue LT Arabic";
font-size: 60px;
font-style: normal;
font-weight: 300;
line-height: normal;
text-align: center;
}


/* About Page start */

section.about-legacy.bg-grey {
    padding: 65px 0;
}

.bg-grey {
    background: #F2F2F280;
}

section.about-legacy p {
    color: #000;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 200% */
}

section.about-legacy h2 {
    color: #333435;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 100% */
}

section.about-con p {
    color: #000;
    text-align: center;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 200% */
}

section.about-con {
    padding: 100px;
}


.about-stat.stats-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: end;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}


.about-stat .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px;
}

.about-stat .stat-card {
   border-radius: 20px;
background: rgba(0, 0, 0, 0.40);
backdrop-filter: blur(5px);
    padding: 45px 39px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-stat .stat-card:hover {
    transform: translateY(-5px);
}

.stat-card-large {
    grid-column: 1 / -1;
    padding: 50px;
}

.stat-icon {
    margin-bottom: 9px;
}

.about-stat .stat-number {

    margin-bottom: 10px;
   color: #FFF;
text-align: center;
font-family: "Helvetica Neue LT Arabic";
font-size: 29.554px;
font-style: normal;
font-weight: 700;
line-height: 38.119px; /* 128.98% */
}
.stat-card.empty {
    background: transparent;
}

.about-stat .stat-label {
 color: #FFF;
text-align: center;
font-family: "Helvetica Neue LT Arabic";
font-size: 11.822px;
font-style: normal;
font-weight: 300;
line-height: 25.648px; /* 216.958% */
}

section.about-sec {
    padding: 100px 0;
}
h2.section-title {
    color: #333435;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 100% */
}

p, ul li, ol li {
    color: #000;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 200% */
}
.vision-back {
    border-radius: 20px;
    background: rgba(242, 242, 242, 0.50);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    padding: 55px 89px;
}
.vision-back h3 {
    color: #333435;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 50px; 
    padding:20px 0
}
section.our-vision img {
    height: 100%;
    width: 100%;
}

section.values-section {
    padding: 83px 0;
    margin-top: 100px;
    background-size:cover;
}

.values-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
}

.values-content {
    margin-bottom: 0px;
    padding-right: 130px;
}
.value-item {
    padding-bottom: 10px;
}
.values-heading {
    margin-bottom: 5px;
    color: #333435;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 50px; /* 125% */
}

.text-gold {
    color: #CCB073;
}


.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.value-icon {
    width: 60px;
    height: 60px;
    color: #fff;
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
    color: #000;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 120% */
}

.value-item p {
    margin: 0;
    color: #333435;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px; /* 187.5% */
}

p.values-description {
    padding-top: 30px;
    margin-bottom: 0;
}

.history-section {
    padding: 100px 0;
    background-color: #fff;
}

.history-title {
  color: #333435;
font-family: "Helvetica Neue LT Arabic";
font-size: 40px;
font-style: normal;
font-weight: 300;
line-height: 40px; /* 100% */
}

.timeline-container {
    position: relative;
    padding: 60px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #A4A4A4;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.timeline-year {
    color: #CCB073;
text-align: center;
font-family: "Helvetica Neue LT Arabic";
font-size: 42.768px;
font-style: normal;
font-weight: 300;
line-height: 50px; /* 80% */
}

.timeline-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16/10;
    border-radius: 17px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 1.711px 6.843px 0 rgba(0, 0, 0, 0.50);
    AssetsImagesRectangle 6281,940 x 1,091ExportExport file typePNGExport Rectangle 628PreviewToolbelt ModeDrawDesign modeDev ModeRe-centerShift+3;
    transition: transform 0.3s ease;
}

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

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

.timeline-dot {
    width: 30px;
    height: 30px;
    background-color: #CCB073;
    border-radius: 50%;
    position: relative;
}

.timeline-description h5 {
   color: #333435;
   text-align: center;
   font-size: 21.384px;
   font-style: normal;
   font-weight: 600;
   line-height: normal;
   font-family: "Helvetica Neue LT Arabic";
}
section.history-section .container-fluid {
    padding: 0 0 0 100px;
}
.slider-controls {
    position: relative;
    width: min-content;
    right: 0;
    left: 88%;
}

.slider-controls .swiper-button-next, .slider-controls .swiper-button-prev {
    width: 43px;
}

.slider-controls .swiper-button-next:after, .slider-controls .swiper-button-prev:after {
    content: '';
}

.slider-controls .swiper-button-prev {
    left: auto;
    right: 78%;
    margin-right: 20px;
}

.slider-controls .swiper-button-next {
    left: 90%;
    right: auto;
}
section.about-sec .col-md-8 {
    padding: 0 200px 0 100px;
}
/* About page End */

/* Blog page start  */

.sections.light.featured-post.blog-page img {
    width: 100%;
    max-height: 333px;
}

.sections.light.featured-post.blog-page {
    background: rgba(229, 233, 233, 0.50);
    padding: 27px;
}

.sections.light.featured-post.blog-page .row {
    background: #fff;
    border-radius: 10px;
}

.sections.light.featured-post.blog-page .row h2 a {
    color: #000;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 16.939px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.408px; /* 150% */
    text-decoration: none;
}

.sections.light.featured-post.blog-page p {
    color: #333435;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 12.704px;
    font-style: normal;
    font-weight: 300;
    line-height: 25.408px; /* 200% */
}

.col-md-6.white-bg h2, .col-md-6.white-bg p {
    padding-left: 33px;
    padding-top: 18px;
}

.rtl .col-md-6.white-bg h2, .rtl .col-md-6.white-bg p {
    padding-left: 0;
    padding-right: 33px;
}

.featured-post .col-md-6.white-bg {
    padding: 0 20px 0 0;
}

.black-flag {
    border-radius: 0 5.14px 5.14px 0;
    background: #333435;
    backdrop-filter: blur(5.137889385223389px);
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 14.905px;
    font-style: normal;
    font-weight: 300;
    line-height: 9.936px; /* 66.667% */
    padding: 12px 11px;
    width: 159px;
    margin-top: 21px;
}

.rtl .black-flag {
    border-radius: 5.14px 0 0 5.14px;
}

.rtl .featured-post .col-md-6 {
    padding-left: 0;
    border-top-left-radius: 10px;
    padding-right: 10px;
}

.rtl .featured-post .col-md-6 img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
     border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.featured-post .col-md-6 img {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.featured-post .col-md-6 {
    padding-right: 0;
}

.rtl .featured-post .col-md-6.white-bg {
    padding-right: 0;
}


/* Blog page end  */
/* News Page Start  */
.blog-page .blog-date-category {
    padding-bottom: 0;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    left: 11px;
    bottom: 7px;
    gap: 6px;
}


.news-grid .swiper-wrapper {
    padding: 0;
}
.blog-container {
    padding: 90px 0;
}
a.news-link {
    color: #3a2a14;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    text-align: right;
    text-decoration: underline;
     margin-top: 20px;
}
article.blog-card img {
    width: 100%;
       min-height: 300px;
       max-height: 300px;
    object-fit: cover;
}

article.blog-card {
    background: #FFF;
    box-shadow: 0 1.487px 4.958px 0 rgba(0, 0, 0, 0.25);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-content h2 {
    color: #000;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 150% */
    margin-bottom: 14px;
}

.blog-card-content h2 a {
    color: #000;
    text-decoration: none;
}

.blog-excerpt {
    color: #333435;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    line-height: 13.835px; /* 200% */
}

.blog-card-content {
    padding: 10px 10px 21px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.title-con {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    flex-grow: 1;
}

.blog-date-category {
    display: flex;
    justify-content: space-between;
    padding-bottom: 14px;
}

.blog-date-category span {
    border-radius: 2.481px;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(2.398703098297119px);
    color: #FFF;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 12px; /* 66.667% */
    padding: 5px 20px;
}
.custom-pagination {
    text-align: right;
}

a.page-number.next-button {
    border-radius: 8px;
    background: #C09F74;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 148.27px;
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22.4px; /* 140% */
    text-decoration: none;
    display: inline-block;
}
a.page-number.prev-button {
    border-radius: 8px;
    background: #5B5B5B;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 148.27px;
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22.4px; /* 140% */
    text-decoration: none;
    margin-right: 20px;
    display: inline-block;
}
/* News Page END  */


/* Search page Start  */


.post-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
}
.post-content h3.title {
    font-size: 15px;
    color: #000;
}
.post-content h3.title a {
    color: #000;
    text-decoration: none;
}
.post-card.fade-top {
    background: #FFF;
    box-shadow: 0 1.487px 4.958px 0 rgba(0, 0, 0, 0.25);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-content-wrap {
    padding: 20px;
}

.row.gy-4.justify-content-center {
    margin-bottom: 50px;
}
ul.pagination li a {
    background: #000;
    color: #fff;
    padding: 15px 15px;
    border-radius: 10px;
    line-height: 15px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
}

ul.pagination li {
    margin-right: 8px;
}

span.page-numbers.current {
    background: #C9A87D;
    color: #fff;
    padding: 15px 15px;
    border-radius: 10px;
    line-height: 15px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
}
ul.pagination li a {
    background: #000;
    color: #fff;
    padding: 15px 15px;
    border-radius: 10px;
    line-height: 15px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
}

ul.pagination li {
    margin-right: 8px;
}
ul.pagination {
    align-items: end;
    justify-content: end;
}

.page-header-content {
    margin-top: 30px;
}

.sidebar-widget input.form-control {
    padding: 13px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.sidebar-widget form.search-form {
    display: flex;
    width: 50%;
}

.sidebar-widget form.search-form button.search-btn {
    background: #C9A87D;
    color: #fff;
    padding: 12px;
    border: none;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

.page-header-content h1.title {
    font-size: 30px;
}
/* Search page end */
/* Projects Page Start  */


/* Projects Section Styles */
.projects-section {
    background-color: #ffffff;
    padding: 50px 0;
        background-size: unset;
    background-repeat: repeat;
}
.sold-ava {
    position: absolute;
    top: 10px;
    color: #fff;
    left: 10px;
    text-transform: capitalize;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(5px);
    padding: 1px 15px 4px;
    border-radius: 10px;
}
ul.footer-menu.resi {
    display: flex;
    flex-flow: column;
}

ul.footer-menu.resi li {
   
    list-style: none;
}
h4.sub_head_footer {
    font-size: 18px;
    text-decoration: underline;
}
.count-sec {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.count-sec span {
    padding-left: 10px;
}

.rtl .count-sec span {
    padding-right: 10px;
    padding-left: 10px;
}
/* Category Filter Styles */


.projects-section .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.category-item {
    position: relative;
    padding-bottom: 1rem;
}

 .projects-section .category-filter {
        border-bottom-color: #333333;
        margin-bottom: 60px;
        margin-top: 30px;
    }

    .projects-section .category-link {
           text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    color: #8D8D8DBF;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    }

    .projects-section .category-item.active .category-link,
    .projects-section .category-link:hover {
        color: #C2A176;
    }



/* Project Card Styles */
.projects-section .project-card {
  
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.projects-section .col-lg-4.col-md-4:nth-child(3n+2) {
    padding-top: 70px;
}

.project-title a {
    color: #fff;
    text-decoration: none;
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
   height: 640px;
} 
div#projectsGrid .project-image {
    border-radius: 15px;
  
}
div#projectsGrid .project-card:hover img {
    transform: none;
}

.project-image-wrapper .project-overlay {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 1px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(5px);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.project-title {

margin: 0;
color: #FFF;
font-family: "Helvetica Neue LT Arabic";
font-size: 25px;
font-style: normal;
font-weight: 400;
/*line-height: 20px; */ /* 80% */
}

.tour-360-icon {
   transition: all 0.3s 
ease;
    position: absolute;
    top: 29px;
    right: 20px;
}


.project-content {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}



.btn-more-detail {
    background-color: #C09F74;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
}

.btn-more-detail:hover {
    background-color: #c69563;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

/* Load More Button */
.btn-load-more {
    background-color: #C09F74;
    color: #ffffff;
    border: none;
    padding: 0.875rem 3rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: capitalize;
    min-width: 200px;
}

.btn-load-more:hover {
    background-color: #c69563;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.btn-load-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .projects-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .section-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .category-list {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .projects-section {
        padding: 40px 0;
    }

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

    .category-list {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .project-title {
        font-size: 1.1rem;
    }

    .project-content {
        padding: 1rem;
    }

    .btn-load-more {
        padding: 0.75rem 2rem;
        min-width: 160px;
    }
}



/* Projects page END  */



/*  Leadership Page start */

/* Strategic Leadership Ethos Section */
        .ethos-section {
            padding: 40px 0;
          
        }

        .executive-section h2.section-title, .ethos-section h2.section-title {
            color: #000;
            font-family: "Helvetica Neue LT Arabic";
            font-size: 40px;
            font-style: normal;
            font-weight: 300;
            line-height: 55px;
            margin-bottom: 0;
        }
        section.ethos-section h2 {
            padding-bottom: 20px;
        }
        /* Chairman Section */
        .chairman-section {
            padding: 0;
            background: white;
            margin: 100px 0;
        }
        .chairman-section h2.section-title {
            color: #333435;
            font-family: "Helvetica Neue LT Arabic";
            font-size: 30px;
            font-style: normal;
            font-weight: 700;
            line-height: 31px; /* 250% */
            margin-bottom: 8px;
        }
        .chairman-container {
            position: relative;
            display: flex;
            align-items: stretch;
        }

        .chairman-image-wrapper {
            flex: 0 0 100%;
            position: relative;
            border-radius: 10px;
        }

        .chairman-image {
            width: 57%; 
            height: 800px;
           
            object-fit: cover;
            display: block;
            border-radius: 10px;
            object-position: top;
        }

        .chairman-info-wrapper {
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px 33px;
            position: absolute;
            bottom: 0;
            width: 50%;
            right: 0;
            border-top-left-radius: 20px;
        }

        .chairman-name {
          margin-bottom: 15px;
            color: #333435;
            font-family: "Helvetica Neue LT Arabic";
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 40px;
        }

        .chairman-quote {
            color: #000;
            font-family: "Helvetica Neue LT Arabic";
            font-size: 15px;
            font-style: normal;
            font-weight: 300;
            line-height: 30px;

        }
        a.btn.btn-primary.founder-popup {
            border-radius: 10px;
            background: #C9A87D;
            color: #FFF;
            font-family: "Helvetica Neue LT Arabic";
            font-size: 12px;
            font-style: normal;
            font-weight: 700;
            line-height: 30px;
            border: none;
            width: fit-content;
            padding: 5px 30px;
        }
        /* Executive Management Section */
        .executive-section {
            padding: 0px 0 80px;
            background: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .team-member {
            background: #f9f9f9;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
            
        }

        .team-member-image-wrapper {
            position: relative;
            overflow: hidden;
            background: #e8e8e8;
            border-radius: 10px;
        }

        .team-member-image {
            width: 100%;
            height: 507px;
            object-fit: cover;
            display: block;
            object-position: top;
        }

        .team-member-role {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                color: white;
                padding: 12px 20px;
                font-size: 20px;
                letter-spacing: 1.5px;
                text-align: center;
                border-radius: 0 0 10px 10px;
                background: rgba(0, 0, 0, 0.25);
                backdrop-filter: blur(5px);
        }

        .team-member-info {
            padding: 10px 10px 0;
            background: white;
            text-align: center;
        }

        .team-member-name {
            margin: 0;
            color: #333435;
            text-align: center;
            font-family: "Helvetica Neue LT Arabic";
            font-size: 30px;
            font-style: normal;
            font-weight: 400;
            line-height: 45px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .chairman-info-wrapper {
                padding: 40px 30px;
            }

            .chairman-name {
                font-size: 1.2rem;
            }

            .chairman-quote {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 992px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

          

            .chairman-container {
                flex-direction: column;
            }

            .chairman-image-wrapper,
            .chairman-info-wrapper {
                flex: 0 0 100%;
            }

            .chairman-info-wrapper {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            h4.sub_head_footer {
    font-size: 15px;
}

ul.footer-menu.resi {
    padding-bottom: 20px;
}
            
            .executive-section {
                padding: 0px 0 50px;
            }
            .ethos-section
             {
                padding: 50px 0 50px;
            }

            .chairman-section {
                margin: 50px 0 0;
            }

            .chairman-info-wrapper {
                padding: 30px 0px;
            }

            .team-member-image {
                height: auto; 
               object-position: top;
            }
        }


/* Leadership Page End  */


/* Carrer page start */

.ptb-60 {
    padding: 60px 0;
}

.blue-back {
    background-color: #EDE8E380;
}

section.blue-back.ptb-60.features-list-career h2 {
    color: #C2A176;
    font-weight: 300;
}
section.looking-ahead.ptb-60.font-25 .wpcf7-response-output {
    color: #000;
}

span.wpcf7-not-valid-tip {
    font-size: 15px;
    line-height: 25px;
}
section.we-qapco.ptb-60.font-25 a {
    border-radius: 8.22px;
    background: #000;
    border: none;
    color: #FFF;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22.4px; /* 140% */
    padding: 17px 26px;
    margin-bottom: 20px;
}

/* Career page end  */

/* News single page start */


section.single-detail-page .feature-image img {
    width: 100%;
    height:100%;
}

.feature-image.pb-60 {
    padding-bottom: 40px;
}

.single .blog-date {
    border-radius: 4.709px;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(4.55310583114624px);
    width: auto;
    color: #FFF;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 13.659px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px; /* 66.667% */
    padding: 8px 30px;
    margin-right: 20px;
}

.single-detail-page h3.section-title {
    color: #333435;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 133.333% */
    margin-top: 20px;
    margin-bottom: 20px;
}
.related-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.related-header a.view-all-btn {
    border-radius: 8.22px;
    background: #000;
    color: #FFF;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    text-decoration: none;
    padding: 14px 40px;
    height: fit-content;
}

.related-header h2.section-title.pb-40 {
    color: #333435;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 133.333% */
    margin-bottom: 20px;
}

section.related-posts-section.blog-container {
    padding: 60px 0 100px;
}
.blog-container .row .col-lg-3 {
    padding-bottom: 23px;
}

.share-wrapper {
    position: absolute;
    bottom: 11px;
    right: 11px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.share-main-btn {
    background: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
}

.share-main-btn i {
    font-size: 18px;
}

.share-icons {
    /* position: absolute; */
    top: 0;
    left: 0;
    /* background: #fff; */
    /* padding: 8px; */
    /* border-radius: 10px; */
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: none;
    /* gap: 10px; */
    z-index: 10;
    
}
.news-title a {color: #333435;text-decoration: none;}
.news-img {
    position: relative;
}
.share-icons a {
    margin: 5px 0;
    color: #fff;
    font-size: 18px;
    display: inline-block;
}

.share-icons a:hover {
    color: #C09F74;
}
.single-share-icons {
    width: auto;
}

.single-share-icons a {
    color: #000;
    margin: 0 7px;
    font-size: 21px;
    text-decoration: none;
}
/* News single page end  */



/* Contact page Start  */


 /* Contact Section */
        .contact-section {
            padding: 40px 0;
            background: white;
        }


        .contact-left {
                padding-right: 50px;
            color: white;
        }
        .contact-wrapper {
    padding: 30px 32px;
}
        .contact-right {
            padding: 38px 28px;
            border-radius: 20px;
background: rgba(255, 255, 255, 0.10);
backdrop-filter: blur(5px);
        }

        .contact-title {
            color: #FFF;
font-family: "Helvetica Neue LT Arabic";
font-size: 35px;
font-style: normal;
font-weight: 400;
line-height: 40px; /* 114.286% */
        }

        .contact-description {
               margin-bottom: 142px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
        }

        .contact-info-group {
            margin-bottom: 35px;
        }

        .contact-info-label {
             
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    color: #FFF;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
        }

        .contact-info-content {
            color: #FFF;
font-family: "Helvetica Neue LT Arabic";
font-size: 15px;
font-style: normal;
font-weight: 300;
line-height: 30px; /* 200% */
        }

        .contact-info-content a {
            color: white;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            transition: border-color 0.3s ease;
        }

        .contact-info-content a:hover {
            border-bottom-color: white;
        }

        .contact-right .form-title {
           margin-bottom: 25px;
    color: #FFF;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    text-transform: capitalize;
        }
.row.contact-wrapper-row {
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.row.contact-wrapper-row .col-12 {
    padding: 0;
}
        .contact-right .form-group {
            margin-bottom: 20px;
        }

        .contact-right .form-input {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: white;
            color: #333;
        }

        .contact-right .form-input::placeholder {
            color: #999;
        }

        .contact-right .form-input:focus {
            outline: none;
            border-color: #c9a961;
            box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
        }

        .contact-right textarea.form-input {
            resize: vertical;
            height: 170px;
        }
.contact-description p {
    color: #fff;
}
        .contact-right .submit-btn {
            width: 100%;
            padding: 7px 20px;
            background: #D2B186;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 17px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            margin-top: 40px;
        }

        .contact-right .submit-btn:hover {
            background: #b8955a;
            transform: translateY(-2px);
        }

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

        /* Map Section */
        .map-section {
        
            background: white;
        }

        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            height: 800px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

       
        /* Responsive */
        @media (max-width: 1200px) {
            .contact-left,
            .contact-right {
                padding: 50px;
            }

            .contact-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 992px) {
           
            .contact-wrapper {
                border-radius: 15px;
            }

            .contact-left,
            .contact-right {
                padding: 40px;
            }

            .contact-left {
                border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            }
        }

        @media (max-width: 768px) {
           

            .contact-section,
            .map-section,
            .newsletter-section {
                padding: 50px 0;
            }

            .contact-left,
            .contact-right {
                padding: 30px;
            }

            .contact-title {
                font-size: 1.5rem;
            }

            .contact-description {
                font-size: 0.9rem;
                margin-bottom: 30px;
            }

            .contact-info-group {
                margin-bottom: 25px;
            }

            .form-title {
                font-size: 1.2rem;
            }

            .map-container {
                height: 400px;
            }

        }

        @media (max-width: 576px) {
           
            .contact-left,
            .contact-right {
                padding: 25px;
            }

            .contact-title {
                font-size: 1.3rem;
            }

            .contact-description {
                font-size: 0.85rem;
            }

            .contact-info-label {
                font-size: 0.65rem;
            }

            .contact-info-content {
                font-size: 0.85rem;
            }

            .form-title {
                font-size: 1.1rem;
            }

            .map-container {
                height: 300px;
            }
        }
.wpcf7-response-output {color: #fff;}
/* Contact Page End  */

/* Faq start  */

.accordion-item .accordion-button {
    border-radius: 10px;
    background: #fff;

    color: #333435;
    padding: 20px 25px;
    font-size: 20px;
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.25);
}

.accordion-item:last-of-type .accordion-button.collapsed{
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.accordion-item {
    background: none;
    border: 0;
    margin-bottom: 20px;
}
div#faqAccordion {
    margin: 40px 0;
}
.accordion-body {
    font-size: 25px;
    line-height: 1.2;
}
.accordion-button::after {
    background-color: #333435;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background-position: center;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button::after, .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
/* Faq end  */
/*  Responsive Start  */

@media (max-width:767px){
    h1.hero-title {
    font-size: 30px;
}
.rtl .get-in-touch-btn {
    margin-left: 0 !important;
    margin-right: 0px !important;
}
section.our-vision.sections.light .row {
    display: flex;
    flex-direction: column-reverse;
}

section.our-vision.sections.light .row img {
    margin-top: 30px;
}

section.values-section.sections.light .row.align-items-start .col-lg-5 {
    display: flex;
    flex-direction: column-reverse;
}
img.chairman-image {
    width: 100%;
    height: auto;
}
.contact-left {
    padding: 0;
}
.home .hero-content {
    left: auto;
}
.contact-right .form-title {
    font-size: 20px;
}

.contact-right .submit-btn {
    padding: 14px;
    font-size: 17px;
}

section.map-section {
    padding: 20px 0;
}

.contact-info-label {
    font-size: 17px;
    line-height: 22px;
}
.blog-container {
    padding: 30px 0;
}

.container-fluid {
    padding: 0 20px;
}

.blog-container .row {
    gap: 15px;
}
section.single-detail-page.sections.dark .container.sections.light {
    padding-left: 20px;
}

.single-detail-page h3.section-title {
    font-size: 22px;
}

p, ul li {
    font-size: 15px;
    line-height: 28px;
}

.related-header {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
    flex-direction: column;
}

.related-header a.view-all-btn {
    padding: 10px 30px;
}
.executive-section h2.section-title, .ethos-section h2.section-title {
    font-size: 30px;
    line-height: 30px;
}

.chairman-info-wrapper {
    width: 100%;
    position: initial;
}

.team-member-name {
    font-size: 20px;
}

.team-member-role {
    font-size: 15px;
}
.feature-image.pb-60 img {
    height: auto;
}
h2.section-title {
    font-size: 30px;
}
h2.section-title {
    font-size: 30px;
}

.projects-section .category-link {
    font-size: 20px;
}

.projects-section .category-list {
    gap: 7px;
}
.projects-section .category-link {
    color: #000;
}
.category-item {
    padding-bottom: 0;
}
.projects-section .col-lg-4.col-md-4:nth-child(3n+2) {
    padding-top: 0;
}
section.about-legacy h2 {
    font-size: 30px;
}

section.about-legacy p {
    font-size: 17px;
}

section.about-legacy.bg-grey {
    padding: 30px 0;
}

section.about-con {
    padding: 30px;
}

section.about-con p {
    font-size: 17px;
    line-height: 34px;
}

.about-stat .stats-grid {
    gap: 10px;
    padding: 20px;
}

.about-stat .stat-number {
    font-size: 20px;
}

section.about-sec {
    padding: 30px 0;
}

section.about-sec .col-md-8 {
    padding: 0 20px;
}

section.about-sec .col-md-4 img {
    width: 100%;
}

.vision-back {
    margin-top: 20px;
    padding: 30px;
}

.vision-back h3 {
    font-size: 25px;
    line-height: 30px;
    padding: 0;
}

section.values-section {
    padding: 30px 0;
    margin-top: 30px;
}

.values-image img {
    width: 100%;
}

.values-heading {
    font-size: 30px;
}

.values-content {
    padding-right: 0;
    padding-bottom: 20px;
}

section.history-section .container-fluid {
    padding: 0 30px;
}

h2.history-title {
    font-size: 30px;
}

section.history-section {
    padding: 30px 0 50px;
}
}


@media (min-width:768px) and (max-width:1280px){
.blog-container .row .col-lg-3 {
    padding-bottom: 15px;
}
section.our-vision img {
    height: auto;
}
.feature-image.pb-60 img {
    height: auto;
}
.home .hero-content {
    left: auto;
}
section.about-sec img {
    width: 100%;
}

section.about-con.bg-white {
    padding: 50px;
}

.about-stat .stats-grid {
    padding: 20px 0;
    gap: 10px;
}

.about-stat .stat-card {
    padding: 45px 20px;
}

.about-stat .stat-number {
    font-size: 15px;
}

section.about-sec .col-md-8 {
    padding: 0 30px;
}

section.about-sec p {
    font-size: 15px;
    line-height: 27px;
}

.col-md-6.vision-back {
    padding: 30px;
}

p.values-description {
    margin-bottom: 30px;
}
.values-image img {
    width: 100%;
}
}

@media (min-width:992px) and (max-width:1200px){
.footer-social-icons {
    gap: 7px;
}

}

@media (max-width:991px){

    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #c9a76b !important;
}
.rtl .get-in-touch-btn {
    margin-left: 0 !important;
    margin-right: 0px !important;
}
}

section.common-sec.pt-80.pb-120.fade-wrapper {
    padding: 50px 0;
}

section.common-sec.pt-80.pb-120.fade-wrapper h2 {
    color: #000;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    /* line-height: normal; */
}
a.brochure-btn {
    border: none;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s 
ease;
    border-radius: 7.496px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(5px);
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.988px;
    text-decoration: none;
    display: block;
    margin-top: 15px;
    width: fit-content;
    margin: 0 auto;
}

a.brochure-btn:hover {
    background: #000;
}

@media (max-width:767px){
    section.common-sec.pt-80.pb-120.fade-wrapper h2 { font-size: 30px; }
}


@media (min-width:768px) and (max-width:1170px){
    .chairman-info-wrapper {
    position: inherit;
    width: 100%;
}
}





/* 404 page */

.page-404 {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    height: 100vh;
    display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
}

.page-404 .row {
    display: flex;
    justify-content: center;
    align-items: center;

}

.page-404 h1 {
    color: rgba(197, 164, 121, 0.75);
    text-align: center;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 133.186px;
    font-style: normal;
    font-weight: 400;
        margin-bottom: 0;
}

.page-404 h2 {
    color: #333435;
text-align: center;
font-family: "Helvetica Neue LT Arabic";
font-size: 14.231px;
font-style: normal;
font-weight: 700;
line-height: 16.087px; /* 113.044% */
}

.page-404 p{
    color: #919191;
text-align: center;
font-family: "Helvetica Neue LT Arabic";
font-size: 11.385px;
font-style: normal;
font-weight: 300;
line-height: 16.087px; /* 141.304% */
}
a.home-btn {
    border-radius: 3.924px;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 1.022px 5.112px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2.556156873703003px);
    width: auto;
    color: #333435;
    text-align: center;
    font-family: "Helvetica Neue LT Arabic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 5px 33px;
    text-decoration: none;
}
.error404 header#main-header {
    background: #000 !important;
}
.intl-tel-input.separate-dial-code .selected-dial-code {
    font-size: 16px;
    line-height: 22px;
}


@media (max-width:992px){
   
    .rtl .mobile-actions.d-lg-none.ms-auto.d-flex.align-items-center {
    margin-right: auto !important;
    margin-left: 0 !important;
}

.rtl .mobile-actions.d-lg-none.ms-auto.d-flex.align-items-center button#searchToggle {
    margin-left: 13px;
}
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}