/*
Theme Name: Real Estate
Theme URI: https://realestate.com
Author: Real Estate
Author URI: https://realestate.com
Description: A premium real estate theme for Real Estate, featuring a modern design with hero sections, login forms, and responsive layouts.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: realestate
Tags: real-estate, custom-background, custom-logo, custom-menu, footer-widgets, theme-options
*/

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

:root {
  --navy: #061a35;
  --navy-strong: #0b274d;
  --gold: #ab8a47;
  --gold-soft: #caa86a;
  --text: #1b2434;
  --muted: #5f6774;
  --line: rgba(6, 26, 53, 0.12);
  --line-strong: rgba(6, 26, 53, 0.24);
  --light: #f4f5f7;
  --card: rgba(191, 193, 197, 0.92);
  --white: #ffffff;
  --footer-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 40px rgba(8, 19, 38, 0.16);
  --content-max: 1280px;
  --header-height: 58px;
  --footer-height: 184px;
  --radius: 0px;
  --font: 'Mulish';
  --pattern-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M14 5 18.5 14 14 23 9.5 14Z' fill='none' stroke='%23c4cad3' stroke-width='1'/%3E%3C/svg%3E");
  --pattern-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M14 5 18.5 14 14 23 9.5 14Z' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 10s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
</style>

If you want, I can create a modern smooth marquee like in your UI design (with pause on hover, gradient fade, etc.).

give complete code in index file

Here’s a complete index.html file with a modern marquee (no deprecated <marquee> tag). It includes smooth animation, pause on hover, and gradient fade effect 👇

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Marquee</title>

<style>
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Marquee Container */
.marquee-wrapper {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 12px 0;
}

/* Gradient Fade Left & Right */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}
.btn svg {
    width: 16px;
}
.btn:hover{
	background: #fff !important;
}
.border{
	background: #fff;
}
/* .marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--navy), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--navy), transparent);
} */

/* Marquee Content */
.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}
.marquee-item img {
    width: 140px;
}
/* Text Items */
.marquee-item {
    margin-right: 50px;
    font-size: 16px;
    white-space: nowrap;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}







.full-container{
	width:100%;
	 padding: 1px 24px 1px;
}
.top-header {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 111;
 
}
.custompnl {
    margin: 0px 50px !important;
}
.top-header.sticky-active {
    position: fixed;
    top: 0;
    right: 10px;
  	z-index: 111;
}
.sticky-active .site-header {
    background: #fff;
}

.full-container-2 {
    width: 95%;
    margin: auto;
}

.excellence h3 span {
    font-size: 30px;
    font-weight: 700;
}
.fl-newsletter {
    background: #0d2b45;
    padding: 0px;
    border-radius: 6px;
    margin: 0px;
}
.locations-section {
    padding: 40px 1px 0px !important;
}
.fl-newsletter__inner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f2f2f2;
    padding: 10px 15px;
    border-radius: 4px;
    width: 530px;
}

.fl-newsletter__label {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
}

.fl-newsletter__divider {
    width: 1px;
    height: 20px;
    background: #999;
}

.fl-newsletter__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    color: #333;
}

.fl-newsletter__input::placeholder {
    color: #999;
}

.fl-newsletter__btn {
    background: #0d2b45;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.fl-newsletter__btn:hover {
    background: #081f33;
}

.fl-newsletter__arrow {
    font-size: 16px;
}






header.sticky-active {
  background-color: #fff !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* optional */
}
ul.snsnsrf a {
    padding: 14px 30px;
    display: block;
    color: #fff;
}
ul.snsnsrf {
    display: none;
    position: absolute;
    padding: 0px;
    left: -40px;
    background: #0b2246;
}
ul.snsnsrf a:hover {
    color: #0b2246;
    background: #fff;
    transition: 0.7s;
}
ul.snsnsrf li {
    margin-bottom: 0px;
    border-bottom: 1px solid #eeeeee59;
}
ul.snsnsrf li {
    margin-bottom: 0px;
    width: 210px;
}
li.menu-item:hover .snsnsrf {
    display: block;
    transition: 1.5s;
}


/* sign in */
.login-wrapper {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #dfe9f3, #ffffff);
    background-image: url(https://alasmakhrealestate.com/wp-content/uploads/2026/04/sign-in-image-up.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 130px 0px;
}
        /* HEADING */
        
        .title-underline {
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .title-underline::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 270px;
            height: 1px;
            background-color: #d1d1d1;
        }
        /* CARD */
        
        .login-card {
            background: rgba(255, 255, 255, 0.96);
            padding: 40px;
            border-radius: 12px;
            width: 100%;
            max-width: 500px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .login-heading {
            font-size: 32px;
            font-weight: 600;
            color: #1b2b3a;
        }
        
        .login-text {
            font-size: 14px;
            color: #4a5568;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        /* INPUT */
        
        .form-input {
            height: 45px;
            border-radius: 6px;
        }
        /* SOCIAL TITLE LINE */
        
        .social-block {
            position: relative;
        }
        
        .social-block::before {
            content: "";
            position: absolute;
            left: 0;
            top: 40%;
            transform: translateY(-50%);
            width: 290px;
            height: 1px;
            background: #dfdfdf;
        }
        /* BUTTON */
        
        .btn-submit-main {
            background: #0a2540;
            color: #fff;
            border: none;
            height: 45px;
            border-radius: 6px;
            width: 57%;
            transition: 0.3s;
            margin: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .btn-submit-main:hover {
            background: #163a5f;
        }
        /* ICON BOX */
        
        .social-icons {
            display: flex;
            gap: 50px;
            margin-top: 35px;
        }
        
        .icon-box {
            padding: 12px 35px;
            background: #f1f5f9;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-box:hover {
            background: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transform: translateY(-2px);
        }
        
        .icon-box i {
            font-size: 20px;
            color: #163a5f;
        }
        /* TEXT */
        
        .forgot-link {
            float: right;
            font-size: 12px;
        }
        
        .footer-text {
            font-size: 14px;
            color: #000;
            margin-top: 15px;
        }
/* sign in end */

        /* Luxury Pnethouse in West Bay start  */

               .consistent {
            display: flex;
            gap: 8px;
            margin-top: 18px;
        }
        
        .content-system a {
            color: #1e1e1e;
            text-decoration: none;
            margin-right: -17px;
            margin-left: -20px;
        }
        
        .content-system a i {
            margin-right: 15px;
        }
        
        .content-system {
            display: inline;
            padding: 5px 33px;
            border-radius: 5px;
            background: #E3E3E3 !important;
        }
        
        section.european {
            padding: 40px 0px;
        }
        
/*         .flagship h2 {
            font-size: 20px;
            color: #fff;
            line-height: 3px;
        }
         */
        .luxury h2 {
            font-size: 19px;
            color: #fff;
            line-height: 3px;
        }
        
        .Justice h3 {
            font-size: 21px;
            color: #fff;
        }
        
        .pnethouse {
            display: flex;
            gap: 27px;
            background: #070732;
            padding: 18px;
            border-radius: 3px;
            width: 452px;
            justify-content: center;
        }
        
        .violated {
            padding: 0px 32px;
            background: #4e5b6e;
            border-radius: 3px;
        }
        
        .violated h3 {
            font-size: 14px;
            color: #fff;
            margin-top: 7px;
        }
        
        .flagship {
            padding: 18px 25px 0px;
            border-radius: 3px;
        }
        
/*         .flagship p {
            color: #fff;
        } */
        
        .luxury {
            background: #070732;
            border-radius: 3px;
            padding: 18px 25px 0px;
            width: 531px;
        }
        
        .luxury p {
            color: #fff;
        }
        
        .Justice h3 {
            font-size: 14px;
        }
        /* Luxury Pnethouse in West Bay end  */
        /* images section start  */
        
        section.personal {
            padding: 15px 0px;
        }
        
        .changing img {
            border-radius: 5px;
            width: 155px !important;
        }
        
        .rapidly {
            display: flex;
            justify-content: space-between;
        }
        
        .conglomerate .item {
            background: #ff3f4d;
        }
        
        .conglomerate h2 {
            color: #FFF;
            text-align: center;
            padding: 5rem 0;
            margin: 0;
            font-style: italic;
            font-weight: 300;
        }
        
        .influential .owl-dots .owl-dot span {
            width: 22px !important;
            height: 3px !important;
            margin: 5px 7px;
            background: #D6D6D6;
            display: block;
            -webkit-backface-visibility: visible;
            transition: opacity .2s ease;
            border-radius: 30px;
        }
        /* images section end  */
        /* owl carousel start  */
        
        .magazine .owl-nav button.owl-prev span {
            font-size: 54px;
            position: relative;
            top: -27px;
        }
        
        .magazine .owl-nav button.owl-next span {
            font-size: 54px;
            position: relative;
            top: -27px;
        }
        
        .magazine .owl-dots .owl-dot span {
            width: 10px;
            height: 10px;
            margin: 1px 4px;
            background: #D6D6D6;
            display: block;
            -webkit-backface-visibility: visible;
            transition: opacity .2s ease;
            border-radius: 30px;
            position: relative;
            top: -39px;
        }
        
        .magazine .owl-nav button.owl-prev {
            border: 1px solid #000 !important;
            width: 35px !important;
            height: 35px;
            position: relative;
            left: -90px;
            top: 0px;
        }
        
        .magazine .owl-nav button.owl-next {
            border: 1px solid #000 !important;
            width: 35px !important;
            height: 35px;
            position: relative;
            left: 90px;
            top: 0px;
        }
        
        .magazine .owl-nav {
            margin-top: 12px;
        }
        /* owl carousel end */
        /* resulting rise in stock making an estimated four billionaires start */
        
        .specialize {
            display: flex;
            justify-content: space-evenly;
            background: #F2F2F2;
            padding: 15px;
            border-radius: 3px;
        }
        
        .guide {
            display: flex;
            gap: 68px;
            background: #fff;
            padding: 6px 20px 0px;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
            border-radius: 5px;
        }
        /* accordions tab  */
        
        .furni-shed h3 {
            font-size: 17px;
        }
        
        @media (max-width: 992px) {
            .tab-content>.tab-pane {
                display: block;
                opacity: 1;
            }
        }
        
        .tab-whether {
            padding: 40px;
        }
        
        .cutting h4 {
            font-size: 17px;
            color: #a9a4a4;
        }
        
        .environmental {
            display: flex;
            justify-content: space-between;
            margin-top: 46px;
        }
        
        div#themes-tab-pane\ pinnacle {
            border: 0;
        }
        
        ul#myTab\ commer-cial {
            border: 0;
            display: flex;
            gap: 20px;
        }
        
        li.nav-item.canvasses {
            border: 0;
        }
        
        .appropriate .nav-link:hover {
            isolation: isolate;
            border-color: var(--bs-nav-tabs-link-hover-border-color);
            background: #E3E3E3;
            border-radius: 4px;
            color: #000;
        }
        
        .appropriate .nav-link {
            margin-bottom: 0;
            border: 0;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            color: #000;
        }
        
        .appropriate .nav-link.active {
            color: 0;
            background-color: #E3E3E3 !important;
            border-color: 0;
            border-radius: 3px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            -o-border-radius: 3px;
        }
        
        .enugu {
            display: flex;
            justify-content: center;
            padding: 20px;
            background: #f1f1f1;
            margin-bottom: 51px;
            gap: 26px;
            margin-top: -10px;
        }
        
        .published h4 {
            font-size: 15px;
            margin-bottom: 0;
            font-weight: 400;
        }
        
        .published {
            background: #ffffff;
            padding: 6px 20px;
            border-radius: 5px;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }
        /* Reset */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /* Main Card */
        
        .agent-card {
            display: flex;
            background: #F2F2F2;
            gap: 0px;
            align-items: stretch;
            border-radius: 0px;
            overflow: hidden;
            margin-bottom: 17px;
        }
        /* Left Image */
        
        .agent-img {
            width: 50%;
        }
        
        .agent-img img {
            width: 100%;
            height: 100% !important;
            object-fit: cover;
            display: block;
            padding: 10px;
        }
        /* Right Content */
        
        .agent-content {
            width: 50%;
            padding: 12px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        /* Top Info */
        
        .agent-info {
            background: #F2F2F2;
            padding: 6px;
            border-radius: 6px;
            text-align: center;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }
        
        .agent-info h3 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #000;
        }
        
        .agent-info p {
            font-size: 14px;
            color: #555;
            margin-bottom: 0px;
        }
        /* Section Blocks */
        
        .agent-block {
            margin-top: 15px;
        }
        
        .agent-block h4 {
            font-size: 14px;
            margin-bottom: 5px;
            color: #333;
        }
        /* White Box */
        
        .agent-box {
            background: #F2F2F2;
            padding: 5px 15px;
            border-radius: 5px;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }
        
        .agent-box p {
            margin: 0;
            text-align: center;
            font-size: 13px;
        }
        /* Buttons Row */
        
        .agent-actions {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            margin-top: 20px;
        }
        
        .btn-action {
            background: #10284C;
            color: #fff;
            padding: 6px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 12px;
            width: 48%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.3s;
        }
        
        .btn-action:hover {
            background: #1a3c6d;
        }
        /* Schedule Button */
        
        .agent-schedule {
            margin-top: 15px;
        }
        
        .agent-schedule a {
            display: flex;
            justify-content: space-between;
            background: #10284C;
            color: #fff;
            padding: 6px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 12px;
            transition: 0.3s;
        }
        
        .agent-schedule a:hover {
            background: #1a3c6d;
        }
        
        .speci-alize {
            position: relative;
            margin-bottom: 30px;
            padding: 20px;
        }
        
        .speci-alize::before {
            content: "";
            position: absolute;
            left: 0;
            top: -2%;
            transform: translateY(-50%);
            width: 851px;
            height: 2px;
            background: #f1f1f1;
        }
        
        .speci-alize::after {
            content: "";
            position: absolute;
            left: 0;
            top: 350px;
            width: 100%;
            height: 2px;
            background: #f1f1f1;
        }
        
        .accordion-item {
            border: 0;
        }
        
        .sustainability {
            position: relative;
        }
        
        .sustainability::before {
            content: "";
            position: absolute;
            left: 0;
            top: -10px;
            /* adjust kar sakte ho */
            width: 100%;
            height: 2px;
            background: #ccc;
        }
        
        .sustainable {
            position: relative;
            padding-left: 15px;
            /* space for line */
        }
        
        .sustainable::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 2px;
            height: 84%;
            background: #ccc;
        }
        /* Icons */
        
        .agent-card i {
            margin-left: 8px;
        }
        /* Responsive */
        
        .accordion-body.satanic {
            border: 0 !important;
        }
        
        @media(max-width:1199px) {
            .changing img {
                border-radius: 5px;
                width: 100px;
            }
            .guide {
                gap: 27px;
                padding: 6px 10px 0px;
            }
        }
        
        @media (max-width: 768px) {
            .agent-card {
                flex-direction: column;
            }
            .agent-img,
            .agent-content {
                width: 100%;
            }
            .agent-img img {
                height: auto;
            }
        }
        /* resulting rise in stock making an estimated four billionaires end */


/* listing rent map */
    section.consortium {
      margin-top: -50px;
    }

section.sdkjg {
    padding-bottom: 80px;
    background: url(https://alasmakhrealestate.com/wp-content/uploads/2026/04/rent_map_banner-image.svg);
    padding-top: 390px;
    background-size: cover;
    margin-bottom: 150px;
}

    .filter-bar {
      padding-bottom: 1rem;
    }

    .segment img {
      width: 100%;
    }

    .surpassed {
      background: #9a9696;
      padding: 10px;
      border-radius: 7px;
		    margin-bottom: -169px
    }

    .tabs {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }

    .tab {
      padding: 12px 40px;
      border: none;
      cursor: pointer;
      font-weight: bold;
      letter-spacing: 1px;
      background: #dcdcdc;
      color: #333;
      transition: 0.3s;
    }

    .tab.active {
      background: #0b2a4a;
      color: #fff;
    }

    .search-container {
      display: flex;
      align-items: center;
      width: 70%;
      margin: 20px auto;
      background: white;
      border-radius: 5px;
      padding: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .search-icon {
      width: 40px;
      height: 40px;
      background: #0b2a4a;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      margin-right: 10px;
    }

    .search-icon i {
      color: white;
      font-size: 16px;
    }

    .search-input {
      flex: 1;
      border: none;
      outline: none;
      font-size: 14px;
      color: #555;
    }

    .mic-icon {
      font-size: 18px;
      color: #777;
      cursor: pointer;
    }

    .page-shell {
      position: relative;
      z-index: 3;
    }

    .filter-bar {
      padding-bottom: 1rem;
    }
    span.pill-copy span {
    border-left: 1px solid;
    padding-left: 8px;
}
    .filter-pill {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      border: 0;
      padding: 0.9rem 1rem;
      background: #0d2747;
      color: #fff;
      font-size: 0.86rem;
      border-radius: 0.35rem;
      text-align: left;
    }

    .pill-copy {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
    }

    .filter-pill svg,
    .filter-pill i {
      width: 20px;
      font-size: 0.9rem;
      flex: 0 0 auto;
    }
    .surpassed {
    padding: 10px;
    border-radius: 7px;
    background: var(--home-panel-bg);
    box-shadow: 0 26px 80px rgba(7, 22, 41, 0.16);
    backdrop-filter: blur(8px);
}
    .small-topbar {
      color: #8b95a7;
      font-size: 0.85rem;
    }

    .view-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      min-width: 64px;
      padding: 0.45rem 0.8rem;
      border: 1px solid #d6dde7;
      background: #fff;
      color: #65738a;
      border-radius: 4px;
    }

    .view-btn.active {
      background: #0d2747;
      color: #fff;
      border-color: #0d2747;
    }

    .listing-panel,
    .map-panel {
      background: #fff;
      border: 1px solid #e7ebf1;
      padding: 1rem;
    }

    .listing-panel {
      height: 100%;
    }

    .property-card {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 1rem;
      padding: 0.75rem;
      background: #f8fafc;
      border: 1px solid #ebeff4;
      margin-bottom: 1rem;
    }

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

    .property-tag {
      display: inline-block;
      margin-bottom: 0.35rem;
      color: #69add6;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
    }

    .property-copy h3 {
      margin: 0 0 0.35rem;
      color: #20324c;
      font-size: 1rem;
      font-weight: 600;
    }

    .property-copy p {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      margin-bottom: 0.6rem;
      color: #8892a4;
      font-size: 0.86rem;
    }

    .property-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 0.8rem;
      color: #8e98a8;
      font-size: 0.8rem;
    }

    .property-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .property-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .property-bottom strong {
      color: #243758;
      font-size: 1rem;
    }

    .property-bottom a,
    .load-more,
    .cta-btn,
    .newsletter-form button {
      background: #0d2747;
      color: #fff;
      border: 0;
    }

    .property-bottom a {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.45rem 1rem;
      font-size: 0.78rem;
    }

    .load-more {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 0.9rem 1rem;
      text-align: left;
      margin-top: 0.5rem;
    }

    .map-panel {
      position: relative;
      overflow: hidden;
    }

    .map-panel img {
      width: 100%;
      height: 100%;
      min-height: 608px;
      object-fit: cover;
      filter: saturate(0.88) brightness(1.04);
    }

    .map-pin {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.3rem 0.55rem;
      background: #ffd141;
      color: #18263f;
      font-size: 0.76rem;
      font-weight: 600;
      border-radius: 3px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .pin-a {
      top: 18%;
      left: 36%;
    }

    .pin-b {
      top: 40%;
      left: 55%;
    }

    .pin-c {
      top: 58%;
      left: 47%;
    }

    .pin-d {
      top: 70%;
      left: 62%;
    }

    .cta-section {
      padding: 2rem 0 3rem;
    }

    .cta-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
      padding: 2.5rem;
      background: linear-gradient(90deg, #f3f4f6 0%, #ffffff 100%);
      border: 1px solid #e7ebf1;
    }

    .cta-box h2 {
      margin-bottom: 0.8rem;
      color: #223350;
      font-size: 2rem;
      font-weight: 600;
    }

    .cta-box p {
      max-width: 720px;
      margin-bottom: 0;
      color: #6f7b8f;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      min-width: 160px;
      padding: 0.95rem 1.2rem;
    }

    @media (max-width: 1199.98px) {
      .map-panel {
        min-height: 480px;
      }
    }

    @media (max-width: 991.98px) {

      .cta-box,
      .property-card {
        grid-template-columns: 1fr;
        display: grid;
      }

      .cta-box {
        padding: 2rem;
      }
    }

    @media (max-width: 767.98px) {

      .map-panel,
      .map-panel img {
        min-height: 360px;
      }

      .cta-box h2 {
        font-size: 1.5rem;
      }
    }
/* listing rent map */
/* about us */
.rudimentary.statement img {
    display: inline-block;
    text-align: center;
}
.about_section {
    height: 75vh;
}

section.headquartered {
    padding: 200px 0px;
    background-image: url(https://alasmakhrealestate.com/wp-content/uploads/2026/04/about-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -79px;
    padding-bottom: 440px;
}
        
        .estimated h1 {
            text-align: center;
            font-size: 40px;
            margin-bottom: 37px;
        }
        
        .estimated p {
            font-size: 20px;
            text-align: center;
        }
        
        .estimated {
            padding: 20px;
            margin-bottom: 40px;
            border-radius: 5px;
            backdrop-filter: blur(10px);
            background-color: hsla(0, 0%, 100%, .2);
        }
        
        .committed {
            position: relative;
        }
        
.committed::before {
    content: "";
    position: absolute;
    left: 79px;
    top: 56%;
    transform: translateY(-50%);
    width: 147px;
    height: 1px;
    background: #bebcbc;
}
        
        .partnership {
            position: relative;
            margin: 10px 0px;
        }
        

.partnership::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 306px;
    height: 1px;
    background: #939393;
    right: 0px;
    margin: 0 auto;
}
        
        .excellence {
            text-align: center;
            padding: 20px;
            border-radius: 5px;
            backdrop-filter: blur(10px);
            background-color: hsla(0, 0%, 100%, .2);
            height: 167px;
        }
        
        .excellence h3 {
            font-size: 21px;
            color: #000;
        }
        
.excellence p {
    font-size: 16px;
    margin-bottom: 0px;
    padding-top: 18px;
}
        /* building legecy that lasts end  */
        /* our value start  */
        
section.conse-ctetur {
    background-image: url(https://alasmakhrealestate.com/wp-content/uploads/2026/04/about-2.webp);
    background-repeat: no-repeat;
    padding: 88px 0px;
    background-size: cover;
}
        
        .value h2 {
            font-size: 30px;
            text-align: center;
            color: #000;
        }
        
        .value p {
            text-align: center;
            color: #000;
            font-size: 21px;
        }
        
        section.presentation {
            padding: 70px 0px;
        }
        
        .tempore {
            padding: 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            background-color: hsla(0, 0%, 100%, .2);
            height: 280px;
        }
        
        .tempore p {
            font-size: 16px;
            text-align: center;
        }
        
        .tempore h3 {
            font-size: 30px;
            color: #000;
        }
        /* our value end  */
        /* A LEGACY OF EXCELLENCE SINCE 1930 START   */
        
		.productivity p {
			text-align: center;
			font-size: 18px;
			color: #1A1A1A;
		}
        
        .productivity h2 {
            font-size: 30px;
            text-align: center;
        }
        
        .productivity h2 {
            font-size: 30px;
            text-align: center;
        }
        
        .productivity {
            padding: 70px 0px;
        }
        
/*         .presentation {
            padding: 40px;
            margin-top: 50px;
        } */
        
        .enterprise img {
            margin-bottom: 41px;
        }
        
        img.officia {
            position: relative;
        }
        
        img.corporis {
            position: relative;
            top: -90px;
        }
        
        .enterprise {
            text-align: end;
        }
        
        h2.business {
            text-align: center;
            font-size: 21px;
            margin: 135px 0px 40px;
        }
        
        .foundation {
            text-align: end;
            margin-bottom: 36px !important;
        }
        
        .dominant {
            text-align: end;
        }
        
/*         .processor {
            padding: 40px;
        } */
        
        .provides {
            text-align: end;
        }
        .dominant img {
    text-align: right;
    width: 100%;
}
        .received {
            text-align: end;
        }
        
        .rudimentary {
            text-align: center;
            padding: 0px 0px 70px;
        }
        
        .rudimentary h2 {
            font-size: 40px;
        }
        
        .rudimentary p {
            font-size: 20px;
        }
        
        img.corporis {
            position: relative;
            top: -90px;
            left: 180px;
        }
        
        .accusamus {
            position: relative;
            margin: 10px 0px;
        }
        
.accusamus::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 43%;
    transform: translateY(-50%);
    width: 317px;
    height: 1px;
    background: #939393;
    right: 0px;
    margin: 0 auto;
}
        
        .branded {
            position: relative;
            margin: 10px 0px;
        }
        
        .branded::before {
            content: "";
            position: absolute;
            left: 615px;
            top: 126%;
            transform: translateY(-50%);
            width: 80px;
            height: 1px;
            background: #939393;
        }
        
		.presentation.division p {
			font-size: 18px;
			color: #1A1A1A;
		}
        
        .division {
            position: relative;
            margin: 10px 0px;
			margin-top: 100px;
        }
        
.division::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 44px;
    transform: translateY(-50%);
    width: 146px;
    height: 1px;
    background: #939393;
}
        
.hardware {
    position: relative;
    margin: 10px 0px;
    margin-top: 60px;
}
        
        .foundation.hardware p {
            font-size: 21px;
        }
        
        .hardware::before {
            content: "";
            position: absolute;
            left: 488px;
            top: 43px;
            transform: translateY(-50%);
            width: 146px;
            height: 1px;
            background: #939393;
        }
        
        .processor.expanded p {
            font-size: 21px;
        }
        
.expanded {
    position: relative;
    margin: 10px 0px;
    margin-top: 90px;
}
        
.expanded::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 45px;
    transform: translateY(-50%);
    width: 146px;
    height: 1px;
    background: #939393;
}
        
        .provides.modular p {
            font-size: 21px;
        }
        
        .modular {
            position: relative;
            margin: 10px 0px;
        }
        
        .modular::before {
            content: "";
            position: absolute;
            left: 487px;
            top: 43px;
            transform: translateY(-50%);
            width: 146px;
            height: 1px;
            background: #939393;
        }
        
        .received.protected p {
            font-size: 21px;
        }
        
        .protected {
            position: relative;
            margin: 10px 0px;
        }
        
        .protected::before {
            content: "";
            position: absolute;
            left: 488px;
            top: 46px;
            transform: translateY(-50%);
            width: 146px;
            height: 1px;
            background: #939393;
        }
        
        .statement {
            position: relative;
            margin: 10px 0px;
        }
        
        .statement::before {
            content: "";
            position: absolute;
            left: 398px;
            top: 141px;
            transform: translateY(-50%);
            width: 506px;
            height: 1px;
            background: #939393;
        }
        
        .branded {
            position: relative;
        }
        
		.branded::after {
			content: "";
			position: absolute;
			top: -57px;
			right: 0px;
			transform: translateY(-50%);
			width: 3px;
			left: 0px;
			height: 81px;
			background: #bb0707;
			margin: 0 auto;
		}
        
        .growing h4 {
            text-align: center;
            font-size: 35px;
            font-weight: 700;
        }
        /* A LEGACY OF EXCELLENCE SINCE 1930 END  */
        /* privilege  partner start  */
        
        .practically h2 {
            text-align: center;
            font-size: 40px;
            font-weight: 600;
        }
        
        .practically p {
            text-align: center;
            font-size: 21px;
            padding: 20px 0px 40px;
        }
        
        .dominance {
            display: flex;
            justify-content: space-between;
        }
        
        img.portal {
            width: 108px;
        }
        
        img.brand {
            width: 174px;
            margin-top: 22px;
        }
        
        img.practical {
            width: 224px;
            margin-top: 31px;
        }
        
        section.situation {
            padding: 70px 0px;
            background: #eeeeee;
        }
        /* privilege  partner end  */
        /* how can we help you today start  */
        
        section.internet {
            background-image: url(https://alasmakhrealestate.com/wp-content/uploads/2026/04/about-14.webp);
            padding: 100px 0px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .adapt h2 {
            font-size: 40px;
            color: #fff;
            font-weight: 700;
        }
        
        .adapt h3 {
            font-size: 30px;
            color: #fff;
            margin-bottom: 24px;
        }
        
        .adapt p {
            font-size: 21px;
            color: #fff;
        }
        
        .competitive-map {
            margin-top: 17px;
        }
        
        .form-box {
            position: relative;
            max-width: 900px;
            margin: auto;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .form-title {
            text-align: center;
            color: #fff;
            margin-bottom: 30px;
        }
        
        .form-title h2 {
            font-size: 26px;
            font-weight: 500;
            color: #000;
        }
        
        .form-title::after {
            content: "";
            display: block;
            width: 550px;
            height: 1px;
            background: #ddd;
            margin: 15px auto;
        }
        
        .form-label {
            margin-bottom: .5rem;
            color: #000;
            font-size: 17px;
            font-weight: 700;
        }
        
        .input-field {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 4px;
            margin-bottom: 20px;
        }
        
        .text-area {
            width: 100%;
            height: 120px;
            padding: 12px;
            border: none;
            border-radius: 4px;
        }
        
        .submit-btn {
            background: #0d2a4a;
            color: #fff;
            padding: 13px 29px;
            border: none;
            border-radius: 4px;
            margin-top: 20px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: 270px;
            justify-content: space-between;
        }
        
        .submit-btn:hover {
            background: #081d35;
        }
        /* Responsive */
        
        @media(max-width:768px) {
            .form-box {
                padding: 25px;
            }
        }
        
        @media (max-width: 1400px) {
            .partnership::before {
                left: 342px;
            }
            .committed::before {
                left: 56px;
            }
            .accusamus::before {
                left: 302px;
            }
            .branded::before {
                left: 504px;
            }
            .hardware::before {
                left: 398px;
            }
            .modular::before {
                left: 397px;
            }
            img.corporis {
                left: 133px;
                width: 400px;
            }
            .protected::before {
                left: 399px;
            }
            .statement::before {
                left: 298px;
            }
            .branded::after {
                right: 580px;
            }
            .form-title::after {
                width: 464px;
            }
        }
        
        @media (max-width: 992px) {
            img.corporis {
                left: 133px;
                width: 347px;
            }
            .estimated h1 {
                font-size: 35px;
            }
            .partnership::before {
                left: 202px;
            }
            .estimated p {
                font-size: 17px;
            }
            .committed::before {
                left: 35px;
            }
            .accusamus::before {
                left: 214px;
            }
            .enterprise img {
                width: 391px;
            }
        }

/* about us end */
/* partner registration */
  .pg-automate {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-image: url(https://alasmakhrealestate.com/wp-content/uploads/2026/03/bg_image_form_btm2.webp);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: bottom;
        }
        
        .pg-card {
            background: #a4abb5;
            padding: 45px;
            border-radius: 8px;
            width: 100%;
            /* max-width: 620px; */
        }
        
        .implementation {
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .implementation::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 308px;
            height: 1px;
            background-color: #d1d1d1;
        }
        
        .pg-heading {
            font-size: 28px;
            font-weight: 600;
            color: #1b2b3a;
            margin-bottom: 8px;
        }
        
        .pg-subtext {
            font-size: 16px;
            color: #000000;
            margin-bottom: 25px;
            line-height: 1.5;
        }
        
        .pg-label {
            font-size: 13px;
            margin-bottom: 5px;
            display: block;
        }
        
        .pg-input {
            height: 42px;
            border-radius: 5px;
            font-size: 13px;
            border: 1px solid #ddd;
            width: 100%;
            padding: 8px 10px;
        }
        
        .pg-btn {
            background: #0a2540;
            color: #fff;
            border: none;
            height: 42px;
            width: 313px;
            border-radius: 5px;
            margin-top: 10px;
            font-size: 14px;
            cursor: pointer;
        }
        
        .pg-btn:hover {
            background: #163a5f;
        }
        
        .pg-footer-text {
            font-size: 16px;
            color: #000000;
            margin-top: 18px;
        }
        
        .pg-footer-text b {
            color: #000;
        }
/* partner end */

/* welcome back partner */

        .login-section {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(to right, #dfe9f3, #ffffff);
            background-image: url(https://alasmakhrealestate.com/wp-content/uploads/2026/03/bg_image_form_btm3.webp);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: bottom;
            padding: 80px;
        }
        
        .revenue {
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .revenue::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 270px;
            height: 1px;
            background-color: #d1d1d1;
        }
        
        .login-box {
            background: rgba(255, 255, 255, 0.96);
            padding: 50px;
            border-radius: 12px;
            width: 100%;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .login-title {
            font-size: 32px;
            font-weight: 600;
            color: #1b2b3a;
        }
        
        .login-desc {
            font-size: 14px;
            color: #0c0c0c;
            margin-bottom: 25px;
        }
        
        .form-control {
            height: 45px;
            border-radius: 6px;
        }
        
        .submit-btn {
            background: #0a2540;
            color: #fff;
            border: none;
            height: 45px;
            border-radius: 6px;
            width: 100%;
            transition: 0.3s;
            margin: 0px 0px;
        }
        
        .submit-btn:hover {
            background: #163a5f;
        }
        
        .forgot {
            float: right;
            font-size: 12px;
        }
        
        .bottom-text {
            font-size: 14px;
            color: #000000;
            margin-top: 15px;
        }
/* end */

/* get registred */

.register-section {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #dfe9f3, #ffffff);
    background-image: url(https://alasmakhrealestate.com/wp-content/uploads/2026/04/al_asmakh_paner-login.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 110px 0px;
	    height: 100vh;
}
        
.register-box {
    padding: 40px;
    border-radius: 12px;
    max-width: 100%;
    width: 100%;
    backdrop-filter: blur(12px);
    background: var(--card);
    box-shadow: var(--shadow);
}
        
        .register-title {
            font-size: 30px;
            font-weight: 600;
            color: #1b2b3a;
            margin-bottom: 10px;
        }
        
        .register-desc {
            font-size: 14px;
            color: #4a5568;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .form-control {
            height: 45px;
            border-radius: 6px;
            font-size: 14px;
        }
        
        .submit-btn {
            background: #0a2540;
            color: #fff;
            border: none;
            height: 45px;
            width: 180px;
            border-radius: 6px;
        }
        
        .submit-btn:hover {
            background: #163a5f;
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 7px 0;
        }
        
        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #ddd;
        }
        
        .divider span {
            padding: 0 10px;
            font-size: 13px;
            color: #777;
        }
        
        .social-btns {
            display: flex;
            gap: 10px;
        }
        
        .social-btns button {
            flex: 1;
            height: 40px;
            border: 1px solid #ddd;
            background: #fff;
            border-radius: 6px;
        }
        
        .bottom-text {
            font-size: 12px;
            color: #777;
            margin-top: 10px;
			margin-bottom: 0px;
        }

/* get registred end */
ul.primary-menu {
    margin: 0px;
    gap: 30px;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
    position: sticky !important;
    top: 0px !important;
    z-index: 40;
    background: rgb(255 255 255 / 64%);
/*     border-bottom: 1px solid rgba(6, 26, 53, 0.08); */
    margin: 10px;
}

.header-inner {
/*     max-width: var(--content-max); */
    height: var(--header-height);
    margin: 0 auto;
    padding: 0 24px 0 12px;
    display: flex;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width:10% !important;
}

.site-logo-image {
  width: auto;
  max-width: 158px;
  height: 26px;
  object-fit: contain;
}

.site-logo-image--footer {
  max-width: 150px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.primary-nav {
  justify-self: center;
}

.primary-nav > .menu,
.primary-nav > div > .menu,
.primary-menu {
  display: flex;
  align-items: center;
}

.primary-menu > li {
  position: relative;
}

.primary-menu > li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(6, 26, 53, 0.3);
  transform: translateY(-50%);
}
a.site-logo img {
    width: auto;
    max-height: 42px;
    display: block;
    /* Remove any inherited border-radius or circle styling */
    border-radius: 0;
    outline: none;
    box-shadow: none;
    background: transparent;
}
.primary-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    height: var(--header-height);
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(6, 26, 53, 0.82);
    transition: color 0.2s ease;
    white-space: nowrap;
	text-decoration: none;
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current_page_item > a {
  color: var(--navy);
}

.primary-menu .menu-item-has-children > a::after {
  content: "+";
  font-size: 10px;
  line-height: 1;
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(6, 26, 53, 0.08);
  box-shadow: 0 14px 30px rgba(6, 26, 53, 0.12);
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu,
.primary-menu .menu-item-has-children.is-expanded > .sub-menu {
  display: flex;
}

.primary-menu .sub-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text);
}

.primary-menu .sub-menu a:hover {
  background: rgba(6, 26, 53, 0.04);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(6, 26, 53, 0.62);
}

.lang-switcher a.active,
.lang-switcher a:hover {
  color: var(--navy);
}

.header-action {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(6, 26, 53, 0.22);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.header-action:hover {
  border-color: var(--navy);
  background: rgba(6, 26, 53, 0.04);
}

.header-action svg {
  width: 15px;
  height: 15px;
}

.menu-toggle {
  display: none;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.auth-main {
  flex: 1;
  display: flex;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.auth-hero {
  position: relative;
  flex: 1;
  background: #d7dfe8;
  overflow: hidden;
}

.auth-hero__visual {
  position: absolute;
  inset: 0;
  min-height: 0;
  background: #d7dfe8;
}

.auth-hero__image {
    position: absolute;
    inset: 0;
    background: url(https://alasmakhrealestate.com/wp-content/uploads/2026/04/al_asmakh_paner-signin.jpg) 44% bottom / cover no-repeat;
}

.auth-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0.24) 72%, rgba(255, 255, 255, 0.92) 100%),
    linear-gradient(180deg, rgba(6, 26, 53, 0.02) 0%, rgba(6, 26, 53, 0.08) 100%);
}

.auth-hero__panel {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 150px 112px 40px 40px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, rgba(244, 245, 247, 0.3) 71%, rgba(255, 255, 255, 0.88) 100%);
}

.auth-hero__pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86px;
  background-color: rgba(255, 255, 255, 0.76);
  background-image: var(--pattern-light);
  background-size: 28px 28px;
  opacity: 0.92;
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(100%, 366px);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 34px 28px 22px;
}

.auth-card h1 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.auth-copy {
  max-width: 278px;
  margin-top: 10px;
  margin-bottom: 18px;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(6, 26, 53, 0.74);
}

.auth-notice {
  margin-bottom: 16px;
  padding: 10px 12px;
  border: 1px solid;
  font-size: 11px;
  line-height: 1.5;
}

.auth-notice--error {
  border-color: rgba(159, 45, 45, 0.22);
  color: #7a1d1d;
  background: rgba(255, 242, 242, 0.88);
}

.auth-notice--success {
  border-color: rgba(22, 112, 66, 0.24);
  color: #176844;
  background: rgba(241, 255, 246, 0.88);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.mandatory-msg {
    margin-bottom: 15px;
    color: #d92d20;
    font-size: 12px;
    font-weight: 600;
    padding-left: 208px;
}

.auth-mandatory-msg {
  margin-top: -2px;
}

.required-mark {
  color: #d92d20;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
}

.form-field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
}

.form-meta-link {
  font-size: 10px;
  color: rgba(6, 26, 53, 0.64);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
  width: 100%;
  height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(6, 26, 53, 0.16);
  background: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  color: var(--text);
}

.form-group input::placeholder {
  color: #8d95a2;
}

.form-group input:focus {
  outline: none;
  border-color: var(--navy-strong);
  box-shadow: 0 0 0 3px rgba(6, 26, 53, 0.06);
}

.form-group.has-error input[type="text"],
.form-group.has-error input[type="password"],
.form-group.has-error input[type="email"],
.form-group.has-error input[type="tel"],
.form-group.has-error select,
.form-group.has-error textarea,
.form-checkbox.has-error input[type="checkbox"] {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.08);
}

.field-error {
  display: none;
  margin-top: 6px;
  color: #d92d20;
  font-size: 11px;
  line-height: 1.4;
}

.field-error.is-visible {
  display: block;
}

.auth-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  height: 34px;
  margin-top: 4px;
  padding: 0 0 0 16px;
  border: 0;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.auth-submit:hover {
  background: var(--navy-strong);
}

.auth-submit__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 14px;
  font-size: 11px;
  color: rgba(6, 26, 53, 0.66);
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(6, 26, 53, 0.16);
}

.social-login {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.social-btn {
  height: 30px;
  border: 1px solid rgba(6, 26, 53, 0.16);
  background: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
  border-color: rgba(6, 26, 53, 0.32);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.social-btn svg {
  width: 15px;
  height: 15px;
}

.register-link {
  margin-bottom: 6px;
  font-size: 10px;
  color: rgba(6, 26, 53, 0.78);
}

.register-link a {
  margin-left: 4px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.terms-text {
  font-size: 9.5px;
  line-height: 1.6;
  color: rgba(6, 26, 53, 0.68);
}

.terms-text a {
  margin: 0 3px;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer {
  position: relative;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  overflow: hidden;
	padding: 40px 0px;
}

/* .site-footer::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 132px;
  height: 112px;
  background-image: var(--pattern-dark);
  background-size: 28px 28px;
  opacity: 0.22;
  pointer-events: none;
} */

.footer-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 16px 24px 14px;
}

.footer-top {
    display: flex;
    grid-template-columns: 180px 1fr 320px;
    gap: 24px;
    align-items: center;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--footer-line);
    justify-content: space-between;
}
.footer-top.djfgb {
    padding: 30px 0px;
}
.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  display: inline-flex;
}

.footer-center {
  min-width: 0;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0px;
  gap: 30px;
}

.footer-menu > li {
  position: relative;
}

.footer-menu > li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%);
}

.footer-menu > li > a {
  display: block;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 0px;
}

.footer-social-row span {
  margin-right: 2px;
  font-size: 17px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.social-icon-link {
  width: 23px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
}

.social-icon-link:hover {
  color: var(--white);
}

.social-icon-link svg {
    width: 44px;
    height: 44px;
}

.footer-newsletter {
  display: flex;
  justify-content: flex-end;
}

.newsletter-form {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.newsletter-shell {
    width: 450px;
    height: 48px;
    display: grid;
    grid-template-columns: 72px 1fr 86px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.03);
}

.newsletter-shell select,
.newsletter-shell input,
.newsletter-shell button {
  border: 0;
  background: #fff;
  color: var(--white);
}

.newsletter-shell select {
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #061a35;
}

.newsletter-shell select option {
  background: var(--navy);
}

.newsletter-shell input {
  padding: 0 10px;
  font-size: 16px;
}

.newsletter-shell input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.newsletter-shell button {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #061a35;
    color: #fff;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding-top: 30px;
}

.footer-meta {
  min-width: 0;
}

.footer-address, .copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0px !important;
}

.copyright {
  margin-top: 4px;
}

.footer-legal {
  display: inline-flex;
  gap: 10px;
  margin-left: 10px;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-certifications {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.cert-icon {
  width: 154px;
}
.newsletter-shell input::placeholder {
    color: #061a35;
}
.cert-icon svg {
  width: 100%;
  height: 100%;
}

.page-content {
  flex: 1;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.entry-title {
  margin-bottom: 20px;
  color: var(--navy);
}

.entry-content {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .auth-hero__panel {
    padding-right: 92px;
  }

  .footer-top {
    grid-template-columns: 150px 1fr 280px;
  }
}

@media (max-width: 980px) {
  :root {
    --footer-height: auto;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
    padding: 0 16px 0 12px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(6, 26, 53, 0.08);
    box-shadow: 0 16px 30px rgba(6, 26, 53, 0.12);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav > .menu,
  .primary-nav > div > .menu,
  .primary-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-menu > li:not(:last-child)::after {
    display: none;
  }

  .primary-menu > li > a {
    height: auto;
    padding: 12px 0;
    border-bottom: 1px solid rgba(6, 26, 53, 0.08);
    font-size: 11px;
  }

  .primary-menu .sub-menu {
    position: static;
    min-width: 0;
    margin: 0 0 10px 12px;
    padding: 6px 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .primary-menu .sub-menu a {
    padding: 8px 0;
  }

  .auth-main {
    min-height: auto;
  }

  .auth-hero {
    display: block;
    background: var(--light);
  }

  .auth-hero__visual {
    position: relative;
    min-height: 360px;
  }

  .auth-hero__panel {
    min-height: auto;
    padding: 26px 20px 28px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 1) 100%);
  }

  .auth-hero__pattern {
    width: 66px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-menu,
  .footer-social-row {
    justify-content: flex-start;
  }

  .footer-newsletter,
  .newsletter-form {
    justify-content: flex-start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 54px;
  }

  .site-logo-image {
    max-width: 132px;
    height: 23px;
  }

  .header-inner {
    padding-right: 12px;
  }

  .lang-switcher {
    gap: 5px;
    font-size: 8px;
  }

  .header-action {
    width: 26px;
    height: 26px;
  }

  .auth-hero__visual {
    min-height: 260px;
  }

  .auth-card {
    width: 100%;
    padding: 26px 18px 20px;
  }

  .auth-card h1 {
    font-size: 28px;
  }

  .auth-copy {
    font-size: 11px;
  }

  .form-field-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .newsletter-shell {
    width: 100%;
    grid-template-columns: 60px 1fr 76px;
  }

  .newsletter-shell button {
    font-size: 8px;
  }

  .footer-legal {
    display: flex;
    margin-left: 0;
    margin-top: 4px;
  }
	.footer-inner {
    padding: 16px 10px 10px;
}
	
}

/* Contact Page Styles */
.contact-page-main {
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
  display: flex;
  flex-direction: column;
}

.contact-hero {
  position: relative;
  min-height: 600px;
  background: url("https://alasmakhrealestate.com/wp-content/uploads/2026/04/content_our_head-office_paner_image.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 53, 0.1) 0%, rgba(6, 26, 53, 0.4) 100%);
}

.contact-glass-box {
  position: relative;
  z-index: 10;
  max-width: 600px;
  text-align: center;
  padding: 50px 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.contact-glass-box h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.glass-divider {
  width: 50px;
  height: 1px;
  background: var(--white);
  margin: 0 auto 24px;
  opacity: 0.5;
}

.contact-glass-box p {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-info-section {
  position: relative;
  margin-top: -45px;
  z-index: 20;
  padding: 0 1px 60px;
}

.contact-cards-wrapper {
 /* max-width: calc(var(--content-max) - 40px); */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top:64px;
}

.contact-card {
  background: var(--navy-strong);
  color: var(--white);
  padding: 38px 24px;
  border-radius: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 35px rgba(6, 26, 53, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(6, 26, 53, 0.35);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.card-icon svg {
  width: 16px;
  height: 16px;
}

.contact-card h3 {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.card-divider {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  margin: 0 auto 18px;
}

.card-details {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.card-details .sep {
  margin: 0 10px;
  opacity: 0.25;
}

.location-details {
  line-height: 1.7;
}

.hours-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.hours-details div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
}

.hours-details div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-details .day {
  color: rgba(255, 255, 255, 0.75);
}

.hours-details .time {
  opacity: 0.75;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(35px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.emergency-strip {
  background: #fff2f2;
  color: #df4c4c;
  text-align: center;
  padding: 18px 20px;
  margin: 20px auto 0;
 /* max-width: calc(var(--content-max) - 40px); */
  border-radius: 4px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

.emergency-strip .fw-medium {
  font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
  padding: 40px 15px 60px;
}
.form-full .contact-form {
    max-width: 97%;
}

.form-container {
  max-width: calc(var(--content-max) - 40px);
  margin: 0 auto;
  background-color: #eef0f2;
  border-radius: 4px;
  padding: 50px 60px;
}

.form-title {
  text-align: center;
  color: var(--navy-strong);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.form-title-divider {
  width: 50px;
  height: 1px;
  background: rgba(6, 26, 53, 0.15);
  margin: 0 auto 20px;
}

.form-description {
  text-align: center;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
	margin:0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-group label {
  font-size: 11px;
  color: var(--navy-strong);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(6, 26, 53, 0.04);
  border-radius: 4px;
  background-color: var(--white);
  font-size: 11.5px;
  color: var(--text);
  font-family: var(--font);
  height: 45px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a0a6b1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(6, 26, 53, 0.3);
  box-shadow: 0 0 0 3px rgba(6, 26, 53, 0.05);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #a0a6b1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0a6b1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px;
  padding-right: 40px;
}

.contact-form select:not(:invalid) {
  color: var(--text);
}

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

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(6, 26, 53, 0.3);
  border-radius: 2px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  position: relative;
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--navy);
  border-color: var(--navy);
}

.form-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox label {
  font-size: 11px;
  color: var(--navy-strong);
  cursor: pointer;
}

.form-checkbox .field-error {
  flex-basis: 100%;
  margin-top: 0;
  padding-left: 26px;
}

.submit-btn {
  background-color: var(--navy-strong);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: var(--navy);
  transform: translateY(-1px);
}

/* Office Locations Section */
.locations-section {
  padding: 40px 1px 40px;
}

.locations-container {
  margin: 0 auto;
}

.locations-title {
  color: var(--navy-strong);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
}

.locations-title-divider {
  width: 100%;
  max-width: 500px;
  height: 1px;
  background: rgba(6, 26, 53, 0.1);
  margin-bottom: 20px;
}

.locations-description {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.7;
  max-width: 1050px;
  margin-bottom: 12px;
}

.locations-scroll-hint {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
}

.locations-grid {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(6, 26, 53, 0.25) transparent;
}

.locations-grid::-webkit-scrollbar {
  height: 8px;
}

.locations-grid::-webkit-scrollbar-track {
  background: rgba(6, 26, 53, 0.05);
  border-radius: 999px;
}

.locations-grid::-webkit-scrollbar-thumb {
  background: rgba(6, 26, 53, 0.24);
  border-radius: 999px;
}

.location-card {
  flex: 0 0 clamp(260px, 24vw, 340px);
  background-color: #ededed;
  border-radius: 4px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 200px;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(6, 26, 53, 0.1);
}

.location-card-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 28px;
  background-image: var(--pattern-light);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

.location-content {
  padding: 30px 20px;
  position: relative;
  z-index: 2;
}

.location-content h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-strong);
  margin-bottom: 4px;
}

.office-type {
  font-size: 9px;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 12px;
}

.location-divider {
  width: 30px;
  height: 1px;
  background: rgba(6, 26, 53, 0.15);
  margin-bottom: 18px;
}

.location-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 9.5px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.location-details li:last-child {
  margin-bottom: 0;
}

.location-details svg {
  min-width: 12px;
  margin-top: 1px;
  color: rgba(6, 26, 53, 0.35);
}


/* Start Journey Section */
.start-journey-section {
  position: relative;
  background-color: #f4f5f7;
  padding: 60px 1px;
  overflow: hidden;
}

.start-journey-pattern {
  position: absolute;
  inset: 0;
  background-image: var(--pattern-light);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
}

.journey-container {
  max-width: calc(var(--content-max) - 40px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.journey-container-full {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 1px 50px 1px;
}

.journey-content-left {
  flex: 1;
  max-width: 800px;
}

.journey-title {
  color: var(--navy-strong);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
}

.journey-title-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: rgba(6, 26, 53, 0.1);
  margin-bottom: 20px;
}

.journey-description {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.7;
}

.journey-content-right {
  flex-shrink: 0;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: var(--navy-strong);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 500;
  transition: background-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn-explore:hover {
  background-color: var(--navy);
  transform: translateY(-2px);
  color: var(--white);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .contact-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-info-section {
    margin-top: -60px;
  }
}

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

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .form-row-3 {
    grid-template-columns: 1fr;
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-cards-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-hero {
    min-height: 450px;
  }
  .contact-info-section {
    margin-top: -20px;
  }
  .contact-glass-box {
    padding: 35px 25px;
  }
  .contact-glass-box h1 {
    font-size: 22px;
  }
  .form-container {
    padding: 30px 20px;
  }
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
  .journey-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .journey-content-right {
    width: 100%;
  }
  .btn-explore {
    justify-content: center;
    width: 100%;
  }
}

/* ==========================================================================
   Expert Agents Hero Section
   ========================================================================== */

.expert-page-main {
  background: var(--light);
}

.expert-hero {
  position: relative;
  width: 100%;
  padding: 120px 24px 60px; /* Space for content */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.expert-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/images/experts5.webp') center/cover no-repeat;
  z-index: 1;
}

.expert-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* Dark overlay */
}

.expert-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expert-hero-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.12); /* Glassmorphism background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 60px 40px 40px;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.expert-hero-title {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #ffffff;
}

.expert-hero-subtitle {
  font-size: 14px;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 50px;
  color: rgba(255, 255, 255, 0.9);
}

.expert-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 30px;
  margin: 0 -40px; /* Push out to align with padding, or keep inside */
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-number {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.expert-search-wrap {
  width: 100%;
  max-width: 600px;
  margin-top: -24px; /* Move up to overlap edge */
  position: relative;
  z-index: 3;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 4px;
    padding: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-top: 160px;
    margin-bottom: -90px;
}

.search-icon-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 3px;
  cursor: pointer;
  /* Button element reset */
  border: none;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  outline: none;
  transition: background 0.2s;
}
.search-icon-nav:hover { background: #133d6b; }
.search-icon-nav:focus-visible { outline: 2px solid #5bc0eb; outline-offset: 2px; }


.search-input {
  flex: 1;
  height: 46px;
  border: none;
  background: transparent;
  padding: 0 16px;
  font-size: 13px;
  color: var(--text);
  outline: none;
}

.search-input::placeholder {
  color: #8d95a2;
}

/* FIX: Mic icon — use button element for proper clickability */
.mic-icon-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
  outline: none;
}

.mic-icon-nav:hover {
  background: rgba(11, 39, 77, 0.07);
  transform: scale(1.1);
}

.mic-icon-nav:active {
  transform: scale(0.95);
  background: rgba(11, 39, 77, 0.12);
}

/* Recording/active state */
.mic-icon-nav.is-recording {
  background: rgba(220, 38, 38, 0.1);
  animation: micPulse 1.2s ease-in-out infinite;
}

.mic-icon-nav.is-recording svg path,
.mic-icon-nav.is-recording svg * {
  stroke: #dc2626;
}

@keyframes micPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

/* ==========================================================================
   Expert Agents Filters Section
   ========================================================================== */

.expert-filters-section {
    background: rgba(6, 26, 53, 0.05);
    padding: 18px 24px;
    border-bottom: 1px solid rgba(6, 26, 53, 0.08);
    margin-top: 70px;
}

.expert-filters-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.expert-filter-btn {
  background: var(--navy);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 18px 0 16px;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(6, 26, 53, 0.15);
}

.expert-filter-btn:hover {
  background: var(--navy-strong);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 26, 53, 0.2);
}

.expert-filter-btn .btn-icon {
  display: flex;
  align-items: center;
  opacity: 1;
  flex-shrink: 0;
  /* Ensure SVG strokes inside icons are white (visible on dark bg) */
  color: #ffffff;
}

/* Force map pin SVG to be fully visible and consistent */
.expert-filter-btn .btn-icon svg {
  stroke: #ffffff;
  fill: none;
}

/* Map pin inner circle — fill with semi-transparent white so it reads clearly */
.expert-filter-btn .btn-icon svg circle {
  stroke: #ffffff;
  fill: rgba(255, 255, 255, 0.25);
}

/* Star icon on Specialties — give a subtle fill */
.expert-filter-btn .btn-icon svg polygon {
  stroke: #ffffff;
  fill: rgba(255, 255, 255, 0.2);
}

.expert-filter-btn .btn-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 12px;
  flex-shrink: 0;
}

.expert-filter-btn .btn-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-right: 10px;
  white-space: nowrap;
}

.expert-filter-btn .btn-chevron {
  display: flex;
  align-items: center;
  opacity: 0.85;
  margin-left: auto;
  flex-shrink: 0;
}

/* Active/open state for filter dropdown buttons */
.expert-filter-btn.is-open {
  background: var(--navy-strong);
  box-shadow: 0 8px 20px rgba(6, 26, 53, 0.28);
}

.expert-filter-btn.is-open .btn-chevron svg {
  transform: rotate(180deg);
}

/* Filter dropdown panel */
.filter-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(6, 26, 53, 0.18);
  z-index: 100;
  padding: 8px 0;
  border: 1px solid rgba(6, 26, 53, 0.08);
  animation: dropdownFadeIn 0.18s ease;
}

.filter-dropdown-panel.is-visible {
  display: block;
}

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

.filter-dropdown-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}

.filter-dropdown-panel ul::-webkit-scrollbar {
  width: 5px;
}
.filter-dropdown-panel ul::-webkit-scrollbar-track {
  background: transparent;
}
.filter-dropdown-panel ul::-webkit-scrollbar-thumb {
  background: rgba(6, 26, 53, 0.15);
  border-radius: 4px;
}
.filter-dropdown-panel ul::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 26, 53, 0.3);
}

.filter-dropdown-panel ul li a,
.filter-dropdown-panel ul li button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
  text-decoration: none;
}

.filter-dropdown-panel ul li a:hover,
.filter-dropdown-panel ul li button:hover {
  background: rgba(6, 26, 53, 0.05);
  color: var(--navy-strong);
}

.expert-filter-btn-wrap {
  position: relative;
  display: inline-flex;
}

/* ==========================================================================
   Agent List Section
   ========================================================================== */

.agent-list-section {
  background: #fbfbfc;
}

.agent-list-container {
  max-width: 1240px;
  margin: 0 auto;
}

.agent-list-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.showing-text {
  font-size: 12px;
  color: var(--muted);
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.agent-card {
  background: #f0f2f5;
  border-radius: 0px;
  box-shadow: 0 4px 16px rgba(6, 26, 53, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.agent-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(6, 26, 53, 0.1);
}

.agent-card-image-wrap {
  position: relative;
  height: 250px;
  background-color: #e5e8ec;
  background-image: radial-gradient(circle, #cbd2db 2px, transparent 2px);
  background-size: 16px 16px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.agent-photo-placeholder {
  width: 100%;
  height: 100%;
  background: url('assets/images/experts2.webp');
  position: relative;
  z-index: 2;
	background-size: cover;
  transition: transform 0.5s ease;
}
.placeholder-mohammed {
    width: 100%;
    height: 100%;
    background: url(assets/images/experts1.webp);
    position: relative;
    z-index: 2;
    background-size: cover;
    transition: transform 0.5s ease;
}
.agent-card:hover .agent-photo-placeholder {
  transform: scale(1.05);
}

/* FIX: Watermark/logo — hidden cleanly, no circle artifact */
.agent-watermark {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: none;
  visibility: hidden;
  pointer-events: none;
}

.agent-image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 3;
}

.gradient-light {
  background: linear-gradient(to top, #f0f2f5 0%, transparent 100%);
}

.gradient-dark {
  background: linear-gradient(to top, rgba(11, 39, 77, 0.7) 0%, transparent 100%);
}

.agent-card-content {
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 4;
  margin-top: -56px;
}
/* FIX: Glossy background — full width, proper position, no broken/cut effect */
.agent-card-content:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(248, 249, 252, 0.98) 100%
    );
    border-radius: 0;
}
.agent-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 5px;
  margin-bottom: 4px;
}

.agent-title {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.agent-stats {
  display: flex;
  margin: 0 16px 16px;
  background: #ffffff;
  border-radius: 4px;
}

.agent-stat {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.agent-stat:first-child {
  border-right: 1px solid rgba(6, 26, 53, 0.07);
}

/* Typography fix: value number should be prominently larger than the label */
.stat-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.stat-lbl {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.agent-details {
  padding: 0 16px 16px;
}

.detail-row {
  background: #ffffff;
  padding: 5px 12px;
  margin-bottom: 10px;
  border-radius: 4px;
  text-align: center;
}

.detail-row:last-child {
  margin-bottom: 0;
}

/* Typography fix: label should be small/muted, value should be the prominent text */
.detail-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 3px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.detail-value {
  display: block;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  text-align: left;
  line-height: 1.4;
}

.agent-actions {
  display: flex;
  gap: 10px;
  padding: 0 16px 20px;
}

.agent-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0px;
  transition: background 0.2s ease;
}

.agent-btn:hover {
  background: var(--navy-strong);
}

/* ==========================================================================
   Expert CTA Section
   ========================================================================== */

.expert-cta-section {
  background: #f4f5f7;
  padding: 80px 24px;
}

.expert-cta-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.expert-cta-content {
  flex: 1;
  max-width: 800px;
}

.expert-cta-title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 24px;
}

.expert-cta-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: rgba(6, 26, 53, 0.08); /* faint line */
  border: none;
  margin-bottom: 24px;
}

.expert-cta-text {
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 700px; /* text wraps in the screenshot slightly earlier than divider */
}

.expert-cta-action {
  flex-shrink: 0;
}

.expert-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 44px;
  padding: 0 24px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.expert-cta-btn:hover {
  background: var(--navy-strong);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .expert-hero-title {
    font-size: 28px;
  }
  .expert-stats {
    flex-direction: column;
    gap: 30px;
    margin: 0;
  }
  .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 30px;
    width: 100%;
  }
  .expert-search-wrap {
    margin-top: 20px;
    padding: 0 20px;
  }
  .expert-cta-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .expert-cta-divider {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1120px) {
  .auth-hero__panel {
    padding-right: 92px;
  }

  .footer-top {
    grid-template-columns: 150px 1fr 280px;
  }
}

@media (max-width: 980px) {
  :root {
    --footer-height: auto;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
    padding: 0 16px 0 12px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(6, 26, 53, 0.08);
    box-shadow: 0 16px 30px rgba(6, 26, 53, 0.12);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav>.menu,
  .primary-nav>div>.menu,
  .primary-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-menu>li:not(:last-child)::after {
    display: none;
  }

  .primary-menu>li>a {
    height: auto;
    padding: 12px 0;
    border-bottom: 1px solid rgba(6, 26, 53, 0.08);
    font-size: 11px;
  }

  .primary-menu .sub-menu {
    position: static;
    min-width: 0;
    margin: 0 0 10px 12px;
    padding: 6px 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .primary-menu .sub-menu a {
    padding: 8px 0;
  }

  .auth-main {
    min-height: auto;
  }

  .auth-hero {
    display: block;
    background: var(--light);
  }

  .auth-hero__visual {
    position: relative;
    min-height: 360px;
  }

  .auth-hero__panel {
    min-height: auto;
    padding: 26px 20px 28px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 1) 100%);
  }

  .auth-hero__pattern {
    width: 66px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-menu,
  .footer-social-row {
    justify-content: flex-start;
  }

  .footer-newsletter,
  .newsletter-form {
    justify-content: flex-start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 54px;
  }

  .site-logo-image {
    max-width: 132px;
    height: 23px;
  }

  .header-inner {
    padding-right: 12px;
  }

  .lang-switcher {
    gap: 5px;
    font-size: 8px;
  }

  .header-action {
    width: 26px;
    height: 26px;
  }

  .auth-hero__visual {
    min-height: 260px;
  }

  .auth-card {
    width: 100%;
    padding: 26px 18px 20px;
  }

  .auth-card h1 {
    font-size: 28px;
  }

  .auth-copy {
    font-size: 11px;
  }

  .form-field-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .newsletter-shell {
    width: 100%;
    grid-template-columns: 60px 1fr 76px;
  }

  .newsletter-shell button {
    font-size: 8px;
  }

  .footer-legal {
    display: flex;
    margin-left: 0;
    margin-top: 4px;
  }
	.header-tools {
    display: none;
    align-items: center;
    gap: 12px;
}
}

/* Custom responsiveness for ultra-wide desktop monitors (e.g., 2054 x 1329) */
@media (min-width: 1900px) {
  .auth-hero__panel {
    align-items: center; /* Center the login card vertically for tall screens */
    padding-right: 12%; /* Keep it from clinging to the absolute extreme right */
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 45%, rgba(244, 245, 247, 0.4) 65%, rgba(255, 255, 255, 0.95) 85%, rgba(255, 255, 255, 1) 100%);
  }
  .auth-hero__pattern {
    width: 6vw; /* Adjust the pattern decor size proportionally */
  }
  .auth-card {
    transform: scale(1.15); /* Scale up the card for better readability */
    transform-origin: center right;
  }
}

/* Swiper Overrides for Testimonial Client Stories */
.home-clients__viewport.swiper {
    overflow: hidden !important;
    padding: 20px 0; /* Add some padding so box-shadows are not clipped */
}
.home-clients__track.swiper-wrapper {
    display: flex !important;
    gap: 0 !important; /* Swiper handles spacing instead */
    flex-wrap: nowrap !important;
}
.client-story.swiper-slide {
    height: auto; /* Allow items to stretch to equal height if needed */
}
.home-clients__dots.swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* Depending on their original dot styling */
}

.letfull-section {
    background: #eef0f2;
	margin: 0px 20px;
    border-radius: 5px;
}


