/* Import Fonts */

@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap");


@font-face {
    font-family: '29LT Kaff';
    src: url('https://naht-re.sa/wp-content/Arabic/29LTKaff-Regular_2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: '29LT Kaff';
    src: url('https://naht-re.sa/wp-content/Arabic/29LTKaff-Bold_2.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, button {
    font-family: '29LT Kaff', 'Tajawal', sans-serif !important;
    
    
}

/* CSS Variables */

:root {
    --naht-gold: #A6937C;
    --naht-cream: #EDE9E1;
    --naht-dark: #4F4949;
    --naht-sage: #B5B693;
    --spacing: 0.25rem;
}


/* Reset & Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
 
}


body {
    font-family: '29LT Kaff' !important;
    background: linear-gradient(135deg, #ede9e1 0%, #fff 50%, #f5f3ee 100%);
    color: var(--naht-dark);
    direction: rtl;
    position: relative;
    line-height: 1.6;
     
}

body::before {
    content: "";
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle at 1px 1px, #a6937c0d 1px, transparent 0);
    background-size: 40px 40px;
    position: fixed;
    inset: 0;
}

.hero-indicator {
    border: none !important;
}

button {
    font-family: '29LT Kaff', sans-serif;
}


/* Typography */

h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

p {
    font-size: 1.125rem;
    line-height: 1.75;
}


/* Container */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* Utility Classes */

.text-gold {
    color: var(--naht-gold);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none !important;
}

.mb-4 {
    margin-bottom: 1rem;
}


/* Header Styles */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    transform: translateY(0);
    opacity: 1;
}


/* Dark background for internal pages */

body:not([data-page="home"]) .header {
    background: rgba(79, 73, 73, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(166, 147, 124, 0.3);
}

body:not([data-page="home"]) .header .nav-link {
    color: white;
}

body:not([data-page="home"]) .header .hamburger-btn {
    color: white;
}

body:not([data-page="home"]) .header .logo img {
    filter: brightness(0) invert(1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--naht-cream);
}


/* Override scrolled state for internal pages */

body:not([data-page="home"]) .header.scrolled {
    background: rgba(79, 73, 73, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

body:not([data-page="home"]) .header.scrolled .nav-link {
    color: white;
}

body:not([data-page="home"]) .header.scrolled .hamburger-btn {
    color: white;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}
 .hero-cta-btn {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                background: #b5b693; /* Gold/Primary color */
                color: #fff;
                padding: 12px 30px;
                border: none;
                border-radius: 20px;
                font-size: 1rem;
                font-weight: 600;
                text-decoration: none !important;
                cursor: pointer;
                transition: all 0.3s ease;
            }
.logo img {
    height: 3.5rem;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: block;
}

.header.scrolled .logo img {
    height: 3rem;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}
.contact-info-item a {
    
    direction: ltr !important;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
}

.header.scrolled .nav-link {
    color: var(--naht-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--naht-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--naht-gold);
}

.nav-link:hover::after {
    width: 3rem;
}

.hamburger-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    color: var(--naht-gold);
}

.hamburger-btn:active {
    transform: scale(0.95);
}

.header.scrolled .hamburger-btn:hover {
    background: rgba(166, 147, 124, 0.1);
}

.hamburger-btn .menu-icon,
.hamburger-btn .close-icon {
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    opacity: 1;
    visibility: visible;
}

.hamburger-btn:hover .menu-icon,
.hamburger-btn:hover .close-icon {
    transform: rotate(5deg) scale(1.1);
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.header.scrolled .hamburger-btn {
    color: var(--naht-dark);
}

.header.scrolled .hamburger-btn:hover {
    color: var(--naht-gold);
    background: rgba(166, 147, 124, 0.15);
}

.hamburger-menu {
    position: absolute;
    top: 100%;
    left: 1.5rem;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    border: 1px solid rgba(166, 147, 124, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    padding: 0.5rem;
    display: none;
}

.hamburger-menu.active,
.hamburger-menu:not(.hidden) {
    display: block;
}

.hamburger-menu.hidden {
    display: none !important;
}

.menu-item {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--naht-dark);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.75rem;
    position: relative;
    overflow: visible;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    right: 1.5rem;
    width: 0;
    height: 2px;
    background: var(--naht-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.menu-item:hover::after {
    width: 3rem;
}

.menu-item:hover {
    background: rgba(237, 233, 225, 0.6);
    color: var(--naht-gold);
}

.menu-item:active {
    transform: translateX(-2px);
}

.mobile-menu {
    margin-top: 1.5rem;
    padding-bottom: 1rem;
    display: none;
}

.mobile-menu.active,
.mobile-menu:not(.hidden) {
    display: block;
}

.mobile-menu.hidden {
    display: none !important;
}

.mobile-menu-item {
    display: block;
    padding: 0.75rem 0;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.3s;
    position: relative;
}

.header.scrolled .mobile-menu-item {
    color: var(--naht-dark);
    border-bottom-color: var(--naht-cream);
}

.mobile-menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--naht-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-item:hover {
    color: var(--naht-gold);
}

.mobile-menu-item:hover::after {
    width: 3rem;
}

.mobile-cta-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--naht-sage);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-cta-btn:hover {
    background: #9D9E7B;
}


/* Hero Section */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 1px 1px, rgba(166, 147, 124, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide.exit {
    opacity: 0;
    transform: scale(0.95);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-content-inner {
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content-inner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 56rem;
    color: white;
}

.hero-content-inner p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    text-align: center;
    max-width: 42rem;
    color: #EDE9E1;
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.hero-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.5s;
}

.hero-indicator.active {
    width: 3rem;
    background: var(--naht-gold);
}


/* Secondary Banner */

.secondary-banner {
    background: var(--naht-sage);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.secondary-banner h3 {
    color: white;
    font-size: 2rem;
}




/* Section Styles */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    will-change: opacity, transform;
}

.section-header h2 {
    color: var(--naht-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.section-header h2 span {
    color: var(--naht-gold);
}

.section-header-title {
    color: var(--naht-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.section-header-title span {
    color: var(--naht-gold);
}


/* Ensure transform is reset after animation */

.section-header.animated,
.section-header.animate-in {
    transform: translate(0, 0) !important;
    opacity: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(166, 147, 124, 0.1);
    border: 1px solid rgba(166, 147, 124, 0.2);
    color: var(--naht-gold);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.section-badge.section-badge2 {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.section-badge.section-badge2::before {
    background: white;
}

.section-badge::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--naht-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.section-header h2 {
    color: var(--naht-dark);
    margin-bottom: 1.5rem;
}

.section-header p {
    color: rgba(79, 73, 73, 0.7);
    max-width: 42rem;
    margin: 0 auto;
}


/* Breadcrumb */

.breadcrumb {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(to bottom, #EDE9E1, white);
    overflow: hidden;
    margin-top: 0;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: linear-gradient(rgb(79, 73, 73) 1px, transparent 1px), linear-gradient(to right, rgb(79, 73, 73) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.breadcrumb-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    opacity: 1;
    transform: none;
}

.breadcrumb-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(166, 147, 124, 0.1);
    border: 1px solid rgba(166, 147, 124, 0.2);
    color: var(--naht-gold);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.breadcrumb-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--naht-gold);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.breadcrumb-title {
    color: var(--naht-dark);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.breadcrumb-title span {
    color: var(--naht-gold);
}

.breadcrumb-description {
    color: rgba(79, 73, 73, 0.7);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.75;
    font-size: 1.125rem;
}


/* Old breadcrumb list styles (for backward compatibility) */

.breadcrumb-list {
    display: none;
}

.breadcrumb-item {
    display: none;
}

.breadcrumb-link {
    display: none;
}

.breadcrumb-current {
    display: none;
}


/* Services Features Section */

.services-features-section {
    padding: 0rem 0;
    background: white;
}

.services-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .services-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .secondary-banner h3 {
        font-size: 2rem;
    }
   .breadcrumb {
    padding: 5rem 0 5rem;
}
}

.services-feature-item {
    text-align: center;
    opacity: 1;
    transform: none;
}

.services-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: rgba(166, 147, 124, 0.1);
    color: var(--naht-gold);
    margin-bottom: 1rem;
}

.services-feature-icon svg {
    width: 32px;
    height: 32px;
}

.services-feature-item h3 {
    color: var(--naht-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.services-feature-item p {
    color: rgba(79, 73, 73, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}


/* Study Request Section */

.study-request-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, #EDE9E1);
}

.study-request-wrapper {
    max-width: 42rem;
    margin: 0 auto;
    opacity: 1;
    transform: none;
}

.study-request-header {
    text-align: center;
    margin-bottom: 3rem;
}

.study-request-header h2 {
    color: var(--naht-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.study-request-header h2 span {
    color: var(--naht-gold);
}

.study-request-header p {
    color: rgba(79, 73, 73, 0.7);
    font-size: 1rem;
}

.study-request-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(166, 147, 124, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .breadcrumb-content {
    margin: 46px auto 0 auto;
}
}

.study-request-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.study-request-form label {
    display: block;
    color: var(--naht-dark);
    margin-bottom: 0.5rem;
    text-align: right;
    font-size: 0.875rem;
    font-weight: 500;
}

.study-request-form input,
.study-request-form textarea {
    width: 100%;
    min-width: 0;
    padding: 0.75rem;
    border: 1px solid rgba(166, 147, 124, 0.3);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background: #f9f9f9;
    transition: all 0.2s;
    text-align: right;
    outline: none;
}

.study-request-form input::placeholder,
.study-request-form textarea::placeholder {
    color: rgba(79, 73, 73, 0.5);
}

.study-request-form input:focus,
.study-request-form textarea:focus {
    border-color: var(--naht-gold);
    box-shadow: 0 0 0 3px rgba(166, 147, 124, 0.1);
}

.study-request-form textarea {
    resize: none;
    min-height: 120px;
}


/* CV Upload Area */

.cv-upload-area {
    margin-top: 0.5rem;
}

.cv-upload-label {
    display: block;
    border: 2px dashed rgba(166, 147, 124, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.cv-upload-label:hover {
    border-color: var(--naht-gold);
    background: rgba(166, 147, 124, 0.05);
}

.cv-upload-label svg {
    margin: 0 auto 0.75rem;
    color: var(--naht-gold);
    display: block;
}

.cv-upload-label p {
    color: rgba(79, 73, 73, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.cv-upload-hint {
    color: rgba(79, 73, 73, 0.5) !important;
    font-size: 0.75rem !important;
    margin-top: 0.25rem !important;
}

.cv-upload-input {
    display: none;
}

.study-submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: var(--naht-sage);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.study-submit-btn:hover {
    background: #9D9E7B;
}

.study-submit-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(166, 147, 124, 0.2);
}


/* Projects Section */

.projects-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, white, var(--naht-cream));
}

.projects-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    padding: 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(166, 147, 124, 0.2);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    color: var(--naht-dark);
    cursor: pointer;
    transition: all 0.3s;
    font-family: '29LT Kaff', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.tab-btn.active {
    background: var(--naht-sage);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-btn:hover:not(.active) {
    color: var(--naht-gold);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.6s ease forwards;
}

.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.project-card:nth-child(4) {
    animation-delay: 0.4s;
}

.project-card:nth-child(5) {
    animation-delay: 0.5s;
}

.project-card:nth-child(6) {
    animation-delay: 0.6s;
}

.project-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px) scale(1.02);
}

.project-image {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-image {
    width: 100%;
    height: 16rem !important;
    object-fit: cover;
    position: relative;
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(8px);
}

.project-status-badge.available {
    background: #b9ba99 !important;
    color: #ffffff !important;
}

.project-status-badge.sold {
    background: #585252 !important;
    color: #ffffff !important;
}

.project-status-badge.soon {
    background: #ab9983 !important;
    color: #ffffff !important;
}

.project-status-badge.coming-soon {
    background: #ab9983 !important;
    color: #ffffff !important;
}


.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: var(--naht-dark);
    margin-bottom: 0.9375rem;
    font-size: 1.25rem;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(79, 73, 73, 0.6);
    margin-bottom: 1rem;
}

.project-description {
    color: rgba(79, 73, 73, 0.7);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--naht-gold);
    font-size: 0.875rem;
    text-decoration: none !important;
}
.btn-show-more {
    display: block;
    margin: 4rem auto 0;
    padding: 1.5rem 2rem;
    background: var(--naht-sage);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.5s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-show-more:hover {
    background: var(--naht-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}


/* Map Section */

.map-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom right, white, rgba(237, 233, 225, 0.2));
    position: relative;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    border: 4px solid var(--naht-cream);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: var(--naht-cream);
}

@media (min-width: 768px) {
    .map-container {
        height: 600px;
    }
}

@media (min-width: 1024px) {
    .map-container {
        height: 700px;
    }
}

.achievements {
    margin-top: 8rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    background: linear-gradient(to bottom right, rgba(166, 147, 124, 0.1), white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(166, 147, 124, 0.2);
    transition: box-shadow 0.3s;
}

.stat-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    color: var(--naht-gold);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(79, 73, 73, 0.7);
    font-size: 0.875rem;
}


/* Contact Section */

.contact-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--naht-cream), white);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--naht-cream);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-card:hover {
    border-color: var(--naht-gold);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background: rgba(166, 147, 124, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1.75rem;
    transition: background 0.3s;
}

.contact-card:hover .contact-icon {
    background: var(--naht-gold);
}

.contact-card h4 {
    color: var(--naht-dark);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: rgba(79, 73, 73, 0.7);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--naht-cream);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--naht-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--naht-cream);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--naht-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


/* Buttons */

.btn-primary {
    padding: 1.5rem 2rem;
    background: var(--naht-sage);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #9D9E7B;
    transform: scale(1.02);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}


/* Footer */

.footer {
    background: linear-gradient(to bottom, #4F4949, #3A3535, #2A2525);
    color: white;
    padding: 5rem 0 2rem;
    padding-right: 13px;
padding-left: 13px;
    position: relative;
    overflow: hidden;
}

.footer .container {
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3,
.footer-section h4 {
    color: #A5947D;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    right: 0;
    width: 3rem;
    height: 2px;
    background: var(--naht-gold);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.625;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--naht-gold);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact .contact-icon {
    background: rgba(166, 147, 124, 0.2);
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    color: var(--naht-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--naht-gold);
}

.text-muted {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.newsletter {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 42rem;
    margin: 3rem auto;
    text-align: center;
}

.newsletter h4 {
    color: #A5947D;
    margin-bottom: 0.75rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 28rem;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--naht-sage);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: '29LT Kaff';
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #9D9E7B;
}

.social-media {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-link i {
    font-size: 1.25rem;
}

.social-link:hover {
    background: var(--naht-gold);
    border-color: var(--naht-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-bottom-left span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-left a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-left a:hover {
    color: var(--naht-gold);
}

.footer-bottom-center {
    text-align: center;
}

.footer-bottom-center p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}


/* New Footer Styles */

.footer-content-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-content-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content-new {
        grid-template-columns: repeat(12, 1fr);
        gap: 3rem;
    }
}

.footer-col {
    text-align: right;
}

.footer-col-logo {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .footer-col-logo {
        grid-column: span 3;
    }
}

@media (min-width: 1024px) {
    .footer-col:not(.footer-col-logo) {
        grid-column: span 3;
    }
}

.footer-logo-wrapper {
    margin-bottom: 2rem;
}

.footer-logo-svg {
    height: 5rem;
    width: auto;
    display: inline-block;
}

.footer-logo-full {
    display: block;
    width: auto !important;
    height: auto;
    object-fit: contain;
    max-width: 142px;
}

.footer-text-new {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.75;
    text-align: right;
}

.footer-title-new {
    color: #A5947D;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: right;
    position: relative;
    display: inline-block;
}

.footer-title-new::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    right: 0;
    width: 3rem;
    height: 0.125rem;
    background: #A6937C;
}

.footer-links-new {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.875rem;
    position: relative;
}

.footer-link-item:hover {
    color: #A6937C;
}

.footer-link-underline {
    width: 0;
    height: 1px;
    background: #A6937C;
    transition: width 0.3s;
}

.footer-link-item:hover .footer-link-underline {
    width: 1.5rem;
}

.footer-services-list .footer-link-item {
    font-size: 0.875rem;
}

.footer-link-dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: #A6937C;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-service-link:hover .footer-link-dot {
    opacity: 1;
}

.footer-contact-new {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: right;
}

.footer-contact-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

.footer-contact-link:hover {
    color: #A6937C;
}

.footer-contact-icon {
    background: rgba(166, 147, 124, 0.2);
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s;
}

.footer-contact-icon i {
    font-size: 1.125rem;
    color: #A6937C;
}

.footer-contact-item:hover .footer-contact-icon {
    background: rgba(166, 147, 124, 0.3);
}

.footer-contact-text {
    text-align: right;
}

.footer-contact-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    margin: 0 0 0.25rem 0;
}

.footer-contact-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}


/* Footer Decorative Line */

.footer-decorative-line {
    position: absolute;
    width: 16rem;
    height: 0.25rem;
    background: linear-gradient(to right, transparent, #A6937C, transparent);
    margin: 2rem auto;
    left: 50%;
    bottom: -65px;
    transform: translateX(-50%);
}

.scroll-top-btn {
    background: rgba(166, 147, 124, 0.2);
    border: 1px solid rgba(166, 147, 124, 0.3);
    color: var(--naht-gold);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.scroll-top-btn i {
    font-size: 1.25rem;
}

.scroll-top-btn:hover {
    background: var(--naht-gold);
    color: white;
    border-color: var(--naht-gold);
    transform: translateY(-3px);
}

.scroll-top-btn.fixed {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.scroll-top-btn.fixed.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn.fixed:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


/* Footer Logo Styles */

.footer-logo-link {
    display: inline-block;
    transition: transform 0.3s;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 2.6rem;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo-link:hover .footer-logo-img {
    opacity: 1;
}


/* Map Section Styles */

.map-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, white, #EDE9E1/20, white);
}

.map-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid #EDE9E1;
}

.map-filter-panel {
    direction: rtl;
}

.map-filter-panel h3 {
    font-family: '29LT Kaff', sans-serif;
}

.map-filter-option:hover {
    background: rgba(166, 147, 124, 0.05) !important;
}

.map-legend {
    direction: rtl;
}

.map-legend h3 {
    font-family: '29LT Kaff', sans-serif;
}


/* Responsive Map */

@media (max-width: 768px) {
    .map-filter-panel,
    .map-legend {
        position: static !important;
        margin: 1rem 0;
        min-width: auto;
        width: 100%;
    }
    .map-container {
        height: 400px;
    }
}


/* Toast Notifications */

.toast-container {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-right: 4px solid var(--naht-gold);
    min-width: 300px;
    animation: slideIn 0.3s ease;
    pointer-events: auto;
}

.toast-success {
    border-right-color: #10b981;
}

@keyframes slideIn {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
}


/* Fade In Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Animated Particles */

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--naht-gold);
    border-radius: 50%;
    pointer-events: none;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-30px);
        opacity: 0.8;
    }
}


/* Smooth Transitions */

* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}


/* Intersection Observer Animations */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}


/* Menu Animations */

.hamburger-menu {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu {
    animation: slideDown 0.3s ease;
}


/* Contact Card Hover Effects */

.contact-card {
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(166, 147, 124, 0.1), transparent);
    transition: right 0.5s ease;
}

.contact-card:hover::before {
    right: 100%;
}


/* Button Shine Effect */

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 1s ease;
}

.btn-primary:hover::before {
    left: 100%;
}


/* Project Status Badge Animation */

.project-status {
    animation: scaleIn 0.3s ease;
}


/* Loading States */

.loading {
    opacity: 0.6;
    pointer-events: none;
}


/* Smooth Scroll Behavior */

html {
    scroll-behavior: smooth;
}


/* Reduce Motion for Accessibility */


/* @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} */


/* Page Section */

.page-section {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
}

.error {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--naht-dark);
}


/* Page Hero */

.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #ede9e1 0%, #fff 50%, #f5f3ee 100%);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.page-hero-content {
    text-align: right;
}

.page-hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--naht-dark);
}

.page-hero-content p {
    color: rgba(79, 73, 73, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.page-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.page-hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    border: 1px solid rgba(166, 147, 124, 0.2);
}

.page-hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--naht-gold);
    margin-bottom: 0.5rem;
}

.page-hero-stat .stat-label {
    font-size: 0.875rem;
    color: var(--naht-dark);
}

.page-hero-media img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
    }
    .page-hero-stats {
        grid-template-columns: 1fr;
    }
}


/* Page Section Variants */

.page-section-light {
    background: rgba(255, 255, 255, 0.5);
}

.page-section-alt {
    background: rgba(166, 147, 124, 0.05);
}
section.page-section.page-section-light {
    padding-top: 130px;
    
}

/* Service Grid */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom right, #EDE9E1, white);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #EDE9E1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom left, rgba(166, 147, 124, 0.05), transparent);
    border-radius: 50%;
    transform: translateY(-4rem) translateX(-4rem);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.service-card:hover::before {
    transform: translateY(-4rem) translateX(-4rem) scale(1.5);
}

.service-card:hover {
    border-color: var(--naht-gold);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(to right, var(--naht-gold), transparent);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::after {
    width: 100%;
}

.service-card-icon {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 40px;
    height: 40px;
    color: var(--naht-gold);
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    color: var(--naht-dark);
    margin-bottom: 0.75rem;
    text-align: right;
    transition: color 0.3s;
    font-weight: 600;
}

.service-card:hover h3 {
    color: var(--naht-gold);
}

.service-card p {
    color: rgba(79, 73, 73, 0.7);
    margin-bottom: 1rem;
    line-height: 1.75;
    text-align: right;
    flex: 1;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--naht-dark);
    position: relative;
    padding-right: 1.5rem;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--naht-gold);
    font-weight: bold;
}


/* Info Grid */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(166, 147, 124, 0.2);
}

.info-card h3 {
    color: var(--naht-gold);
    margin-bottom: 1rem;
}

.info-card p {
    color: rgba(79, 73, 73, 0.7);
    line-height: 1.8;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.75rem 0;
    color: var(--naht-dark);
    border-bottom: 1px solid rgba(166, 147, 124, 0.1);
}

.values-list li:last-child {
    border-bottom: none;
}


/* Project Page Styles */

.project-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    margin-top: -10px;
    background-image: url('https://images.unsplash.com/photo-1542621334-a254cf47733d?ixlib=rb-4.1.0&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .project-hero {
        min-height: 50vh;
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .project-hero {
        min-height: 40vh;
    }
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.project-status-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .project-status-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
}



.project-hero-content {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
    color: white;
    width: 100%;
}

.project-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-meta-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .project-hero-content {
        padding: 2rem 0;
    }
    .project-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .project-meta-info {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .project-hero-content h1 {
        font-size: 1.75rem;
    }
    .project-meta-info {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.project-meta-item i {
    color: var(--naht-gold);
}

.project-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .project-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .project-details-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
}

.project-details-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (max-width: 768px) {
    .project-details-main {
        gap: 2rem;
    }
}

.project-description-section h2,
.project-features-section h2,
.project-gallery-section h2 {
    color: var(--naht-dark);
    font-size: 2rem;
}

.project-description-section h2,
.project-features-section h2,
.project-gallery-section h2 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .project-description-section h2,
    .project-features-section h2,
    .project-gallery-section h2 {
        font-size: 1.5rem;
    }
}

.project-description-text {
    color: rgba(79, 73, 73, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .project-description-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(166, 147, 124, 0.05);
    border-radius: 0.5rem;
    color: var(--naht-dark);
}

.feature-item i {
    color: var(--naht-gold);
    font-size: 1.25rem;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .project-gallery {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.project-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-info-card,
.project-register-card,
.project-contact-card {
    background: white;
    padding: 2rem;
}

@media (max-width: 768px) {
    .project-info-card,
    .project-register-card,
    .project-contact-card {
        padding: 1.5rem;
    }
}

border-radius: 1rem;
border: 1px solid rgba(166,
147,
124,
0.2);
box-shadow: 0 2px 10px rgba(0,
0,
0,
0.05);

}
.project-info-card h3,
.project-register-card h3,
.project-contact-card h3 {
    color: var(--naht-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(166, 147, 124, 0.1);
}
@media (max-width: 480px) {
    .info-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
}
.info-item:last-child {
    border-bottom: none;
}
.info-label {
    color: rgba(79, 73, 73, 0.7);
    font-weight: 500;
}
.info-value {
    color: var(--naht-dark);
    font-weight: 600;
}
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(166, 147, 124, 0.3);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: white;
    color: var(--naht-dark);
    outline: none;
    transition: border-color 0.3s;
}
.form-select:focus {
    border-color: var(--naht-gold);
    box-shadow: 0 0 0 3px rgba(166, 147, 124, 0.1);
}
.btn-full-width {
    width: 100%;
}
.project-register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (max-width: 768px) {
    .project-register-form {
        gap: 0.75rem;
    }
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--naht-dark);
}
@media (max-width: 480px) {
    .contact-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
}
.contact-info-item:not(:last-child) {
    border-bottom: 1px solid rgba(166, 147, 124, 0.1);
}
.contact-info-item i {
    color: var(--naht-gold);
    font-size: 1.25rem;
    width: 24px;
}
.contact-info-item a {
    color: var(--naht-dark);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info-item a:hover {
    color: var(--naht-gold);
}

/* Timeline */
.timeline {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    padding-right: 2rem;
}
.timeline::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--naht-gold);
}
.timeline-item {
    position: relative;
    padding-right: 3rem;
}
.timeline-item::before {
    content: "";
    position: absolute;
    right: -6px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--naht-gold);
    border: 2px solid white;
}
.timeline-year {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--naht-gold);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.timeline-item h3 {
    color: var(--naht-dark);
    margin-bottom: 0.5rem;
}
.timeline-item p {
    color: rgba(79, 73, 73, 0.7);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.step-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(166, 147, 124, 0.2);
    text-align: right;
}
.step-number {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    background: var(--naht-gold);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.step-card h3 {
    color: var(--naht-dark);
    margin-bottom: 1rem;
}
.step-card p {
    color: rgba(79, 73, 73, 0.7);
}

/* CTA Panel */
.cta-panel {
    background: linear-gradient(135deg, var(--naht-gold) 0%, var(--naht-sage) 100%);
    padding: 3rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: white;
}
.cta-panel h3 {
    color: white;
    margin-bottom: 0.5rem;
}
.cta-panel p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}
@media (max-width: 768px) {
    .cta-panel {
        flex-direction: column;
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }
}

/* About Hero Section Styles */
.about-hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #ede9e1 0%, #fff 50%, #f5f3ee 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.about-hero-content {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(166, 147, 124, 0.1);
    border: 1px solid rgba(166, 147, 124, 0.2);
    color: var(--naht-gold);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    width: fit-content;
}
.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--naht-gold);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    
    50% {
        opacity: 0.5;
    }
}
.about-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--naht-dark);
    margin: 0;
}
.title-underline {
    width: 5rem;
    height: 0.25rem;
    background: linear-gradient(to left, var(--naht-gold), transparent);
    margin: 1rem 0;
}
.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-text-primary {
    color: rgba(79, 73, 73, 0.7);
    font-size: 1.125rem;
    line-height: 1.75;
    margin: 0;
}
.about-text-secondary {
    color: rgba(79, 73, 73, 0.6);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
}
.about-stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(166, 147, 124, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.5s;
    cursor: pointer;
}
.about-stat-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}
.about-stat-card::before {
    content: '';
    position: absolute;
    inset: -0.5rem;
    background: linear-gradient(135deg, rgba(166, 147, 124, 0.2), rgba(181, 182, 147, 0.1));
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    filter: blur(1rem);
}
.about-stat-card:hover::before {
    opacity: 1;
}
.stat-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
.stat-icon-wrapper svg {
    width: 3rem;
    height: 3rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--naht-gold), var(--naht-sage));
    color: white;
}
.stat-number-wrapper {
    text-align: center;
    margin-bottom: 0.5rem;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--naht-dark);
}
.stat-number-plus {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--naht-gold);
}
.stat-label {
    text-align: center;
    color: rgba(79, 73, 73, 0.6);
    font-size: 0.875rem;
}
.btn-discover-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    background: var(--naht-sage);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: fit-content;
    white-space: nowrap;
    text-decoration: none !important;
}
.btn-discover-more:hover {
    background: #9D9E7B;
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}
.btn-discover-more i {
    transition: transform 0.3s;
}
.btn-discover-more:hover i {
    transform: translateX(0.25rem);
}
.about-hero-image {
    position: relative;
    height: 100%;
    align-self: stretch;
}
.about-hero-image .image-wrapper {
    position: relative;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}
.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(79, 73, 73, 0.4), transparent);
    pointer-events: none;
    z-index: 1;
}
.image-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 1s ease;
    pointer-events: none;
    z-index: 2;
    width: 50%;
}
.image-group:hover .image-shimmer {
    transform: translateX(200%);
}
.about-hero-image::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(166, 147, 124, 0.2), rgba(181, 182, 147, 0.2));
    border-radius: 2rem;
    z-index: -1;
    filter: blur(2rem);
    opacity: 0;
    transition: opacity 0.5s;
}
.image-group:hover::before {
    opacity: 1;
}
.about-hero-image::after {
    content: '';
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: var(--naht-sage);
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0.2;
}
@media (max-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero-image {
        order: -1;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .about-hero-section {
        padding: 6rem 0 2rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-number-plus {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 19px;
}
h1 {
    font-size: 30px;
     line-height: 1.1;
}

h2 {
    font-size: 22px;
     line-height: 1.1;
}

h3 {
    font-size: 18px;
     line-height: 1.2;
}

h4 {
    font-size: 1rem;
    line-height: 1.2;
}

p {
    font-size: 14px;
    line-height: 1.55;
}
.section-header h2 {
        font-size: 22px !important;

}
.hero-content-inner h1 {
       font-size: 25px !important;
}
.hero-content-inner p {
    font-size: 13px;
    margin-bottom: 1rem;
  
}.btn-primary {
    padding: 10px 24px;
   
    font-size: 14px;
    
}.secondary-banner {
     padding: 2rem 0;
   
}
.secondary-banner h3 {
       font-size: 18px !important;
 
}
.mobile-cta-btn {
    width: fit-content !important;
    display: block;
    margin-right: auto;
    
}
.section-header {
     margin-bottom: 2rem;
 }
.e-n-tab-title {
    margin: 0 !important;
}

.section-header p {
        font-size: 14px !important;
    }
.section-header h2 {
     margin-bottom: 9px;
}
.elementor-element.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
    display: block;
}
.project-details {
    margin: 7px 0 !important;
    padding: 7px 0 !important;
}
.project-image {
     height: 100% !important;
 }
.elementor-grid-mobile-1 .elementor-grid {
    gap:15px ;
}
.project-content {
    padding: 12px;
}
.project-details div {
         font-size: 12px !important;

    
}
.btn-discover-more {
    
    padding: 8px 20px;
    font-size: 14px;
    
}
.project-link {
 
    font-size: 12px;
 }
.project-content h3 {
     margin-bottom: 5px;
    font-size: 16px !important;
}

.section-badge {
   
    padding: 6px 12px;
   
    font-size: 11px;
    margin-bottom: 1rem;
}
.stats-grid {
 
    gap: 1rem;
    margin-top: 1rem;
}
.achievements {
    margin-top: 4rem;
 }
 .elementor-element.elementor-element-1c41bb8.e-con-full.e-flex.e-con.e-child {
     
    padding: 10px !important;
   
}.footer-bottom {
    
    gap: 12px;
    padding-top: 1rem;
 }
.newsletter {
   
    padding: 1rem;
  
    margin: 1rem auto;
 }
 .footer-bottom-center p {
     font-size: 12px;
}
 .footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}
 
footer .elementor-form .elementor-form-fields-wrapper.elementor-labels- {
    display: flex;
    flex-direction: column !important;
    flex-wrap: wrap !important;
}

 
.elementor-field-type-email.elementor-field-group.elementor-column.elementor-field-group-email.elementor-col-100.elementor-field-required {
     width: 100% !important;
     flex: none !important;
     padding: 0;
}
 
 .elementor-field-group.elementor-column.elementor-field-type-submit.elementor-col-100.e-form__buttons {
    padding: 7px 10px !important;
    font-size: 13px !important;
}h3.naht-filter-header {
    font-size: 18px !important;
}
 .about-hero-content {
     
    gap: 10px;
}
 .footer-content-new {
    
    gap: 1rem;
    margin-bottom: 2rem;
}
 .about-text-primary {
     font-size: 13px;
 }
 .footer-link-item , .footer-services-list .footer-link-item ,.footer-text-new  {
  
    font-size: 13px;
 }
 .footer-links-new {
   
    gap: 5px;
}
 
img.leaflet-marker-icon.leaflet-zoom-animated.leaflet-interactive {
    max-width: 20px !important;
}
nav#mobile-menu {
    background-color: white;
    border-radius: 8px;
}
	.mobile-menu-item {
    display: block;
    padding: 1rem 28px;
    color: #4F4949;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.3s;
    position: relative;
}
.mobile-cta-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(
);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 30px;
}
.mobile-menu a.mobile-menu-item:last-child {
    margin-bottom: 30px !important;
	}
}
@media(max-width:528px){
          h1 {
        font-size: 1.5rem !important;
    }
   .breadcrumb-description {
        font-size: 14px;
    }
.breadcrumb {
    padding: 5rem 0 1rem 0;
}
.breadcrumb-content {
    margin: 39px auto 0 auto;
}
.breadcrumb-title {
    margin-bottom: 1.2rem;
}
    .services-features-section {
        padding: 0rem 0 3rem 0;
      
    }
h3 {
        font-size: 1.2rem !important;
    }
    .services-feature-item p {
    font-size: 0.80rem;
}
    h2 {
        font-size: 1.5rem !important;
    }
}
@media(max-width:320px){
        h1 {
        font-size: 1.5rem !important;
    }
    .secondary-banner h3 {
        font-size: 1rem;
    }
}
@media(max-width:425px){
    .container {
    padding: 0 15px;
}
    h3 {
        font-size: 1.2rem !important;
    }
    .elementor-form-fields-wrapper {
    gap: 0rem;
}
h1 {
        font-size: 1.8rem !important;
    }
    .breadcrumb-description {
        font-size: 0.8rem;
    }
        .services-features-section {
        padding: 0rem 0;
       
    }
}
}

