    /* Custom Font Import */
    /* تعريف الخط العادي */
    @font-face {
    font-family: "FrutigerLTArabic45Light";
    src: url("/assets/fonts/FrutigerLTArabic45Light.ttf") format("truetype");
        font-weight: 400; /* الوزن: عادي */
    font-style: normal;
    }

    /* تعريف الخط العريض */
    @font-face {
    font-family: "FrutigerLTArabic55Roman";
    src: url("/assets/fonts/FrutigerLTArabic55Roman.ttf") format("truetype");
    font-weight: 700; /* الوزن: Bold */
    font-style: normal;
    }

    /* استخدام الخط */
    body {
    font-family: FrutigerLTArabic55Roman,FrutigerLTArabic45Light;
    }

    /* CSS Variables - Color Palette */
    :root {
    --primary:#262626
    ;
    --secondary:#ebebe2;
    --third:d0c3b1;
    --white: #ffffff;
    --black: #000000;
    --text-primary: var(--primary-darkest);
    --text-secondary: var(--primary-medium);
    --text-white: var(--white);
    --font-family-primary: FrutigerLTArabic55Roman, FrutigerLTArabic45Light;
    }

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

    html,
    body {
    max-width: 100vw;
    overflow-x: hidden;
    }
    html {
    font-size: 62.5%; /* 1rem = 10px */
    }

    body {
    font-family:var(--font-family-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color:#f9f4ef;
    }

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

    /* Button Fill Hover Animation */
    .btn-fill-hover {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .btn-fill-hover::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: var(--primary-darkest);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    }

    .btn-fill-hover:hover::before {
    right: 0;
    }

    .btn-fill-hover:hover {
    color: var(--white);
    }

    /* Secondary Button Fill Animation */
    .btn-fill-hover-secondary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--text-primary);
    border-color: var(--primary-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .btn-fill-hover-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: var(--primary-darkest);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    }

    .btn-fill-hover-secondary:hover::before {
    right: 0;
    }

    .btn-fill-hover-secondary:hover {
    color: var(--white);
    border-color: var(--primary-darkest);
    }

    /* NAVBAR STYLES */
    .navbar {
    background-color: var(--white);
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

    .navbar .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    }

    .navbar .logo img {
        width: 4rem;
        height: auto;
    transition: transform 0.3s ease;
    
    }

    .navbar .logo img:hover {
    transform: scale(1.02);
    }

    .navbar .nav-items {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    }

    .navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    }

    .navbar .nav-link {
    color: #333333;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
    }

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

    .navbar .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-darkest);
    }






    .navbar .lang-button {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #333333;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    }

    .navbar .lang-button:hover {
    transform: translateY(-1px);
    }

    .navbar .mobile-menu-button {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    }

    .navbar .hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    position: relative;
    }

    .navbar .hamburger span {
    background-color: #333333;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
    }

    .navbar .hamburger span:nth-child(1) {
    position: absolute;
    top: 0;
    }

    .navbar .hamburger span:nth-child(2) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    }

    .navbar .hamburger span:nth-child(3) {
    position: absolute;
    bottom: 0;
    }

    .navbar .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    }

    .navbar .hamburger.active span:nth-child(2) {
    opacity: 0;
    }

    .navbar .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    }

    /* ----PROJECT DETAILS PAGE---- */

    .hero-container{
        margin: 0;
    max-width: 100%;
    height:90vh;
    overflow: hidden;
        display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    }

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


    /*----PROJECT IMG----*/
    .project-img{
        display: flex;
        gap:   2rem;
        margin: 0 auto;
    justify-content: center;
    padding: 2.1rem 0 0 0;
    }

.project-img2{
    margin-bottom: 3.2rem;
}


    .pro-img{
        max-width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        width:35rem;
        height:20rem;
        overflow: hidden;
    }

    .pro-img img{
        display: inline-block;
        object-fit: cover;
        width: 100% ;
        height: 100%;
        border-radius:20px;

    }

    /* ----PROJECT DETAILS---- */

    .details-txt{   
        max-width: 120rem;
    display: flex;
    align-items: center;
    justify-self: unset;
    gap: 8.4rem;
    margin: 0 auto;
    margin-bottom: 9.6rem;
    }

    .pro-txt{
        font-size: 2.3rem;
        width:64rem;
        margin: 1.6rem;
        line-height: 1.6;
        color: var(--primary);
    }

    .btn-site{
        display: inline-block;
        background-color: #3a271c;
        color: white;
        padding: 1rem 4.8rem;
        border-radius: 10px;
        font-size:1.6rem ;
        margin-right: 1.6rem;
        border: none;
    font-family: var(--font-family-primary);
    border-radius: 16px;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    }

    .btn-site:hover{
        background-color:#f9f4ef;
        cursor: pointer;
        color: var(--primary);
        border: solid 1px var(--primary);
        
    }

    /* LEFT-SIDE */


    .fs-line{
        display: flex;
        gap: 3.2rem;
            margin-top: 2.4rem;

        margin-bottom: 2.4rem;
    }
    .unit{
        display: flex;
        gap: 1.6rem;
        align-items: center;
    }
    .unit-icon{
        max-width: 5.6rem;
        height: auto;
    }   

    .unit-txt{
        font-size: 2.4rem;
        font-weight: 500;
        line-height: 1.3;
    }




    /* FOOTER STYLES */
    .footer {
    background-color:#3a271c;
    background-image: 
        repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
        );
    padding: 4rem 0 2rem;
    direction: rtl;
    }

    .footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    }

    .footer .footer-content {
    display: flex;
    
    align-items: center;
    justify-content:space-around;
    }

    .footer .left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }


    .footer .fal-number {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    }



    .footer .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    }

    .footer .section-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    }

    .footer .links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    }

    .footer .footer-link {
    color: var(--secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    }

    .footer .dyari-logo img{
    width: 25rem;
    }


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

    .fade-in-up {
    animation: fadeInUp 0.8s ease-out;
    }


    /*----Responsive Design----*/ 

    /* RESPONSIVE DESIGN */
    @media (max-width: 1024px) {
    .navbar .nav-items {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .navbar .nav-items.mobile-open {
        transform: translateX(0);
    }

    .navbar .nav-links {
        flex-direction: column;
        gap: 2rem;
    }

    .navbar .nav-items .nav-link{
        font-size:1.8rem;
        padding: 0.5rem 0;
    }


    .navbar .mobile-menu-button {
        display: block;
    }

    .navbar .container {
        justify-content: space-between;
    }

    .navbar .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    }


    /* === ≤480px === */

    @media (max-width: 400px)
    {
        @media (max-width: 1024px) {
    .navbar .nav-items {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .navbar .nav-items.mobile-open {
        transform: translateX(0);
    }

    .navbar .nav-links {
        flex-direction: column;
        gap: 2rem;
    }

    .navbar .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 0;
    }

    .navbar .mobile-menu-button {
        display: block;
    }

    .navbar .container {
        justify-content: space-between;
    }

    .navbar .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    
    .language-toggle{
        display: none;
    }
    /* ----PROJECT DETAILS PAGE---- */

    .hero-container{
    margin: 0;
    max-width: 100%;
    height:26rem;
    overflow: hidden;
    margin-bottom: 0px;
    }

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

    /*----PROJECT IMG----*/
    .project-img{
    padding: 1.6rem 1.6rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
        margin:0 auto; 
    gap: 1rem;
    margin-bottom: 2.1rem;   
    }


    /* ----PROJECT DETAILS---- */

    .details-txt{
        padding: 0rem 10rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 4.8rem;
    }

    .right-side{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pro-txt{
        max-width: 30rem;
        font-size: 1.6rem;
    
        margin: 1.6rem;
        text-align: center;
        line-height: 1.6;
        color: var(--primary);
    }

    .btn-site{
        background-color: #3a271c;
        color: white;
        padding: 0.8rem 2.4rem;
        border-radius: 10px;
        font-size:1.6rem ; 
        border: none;
        margin-bottom: 1.6rem;
    }

    .btn-site:hover{
        background-color:#947f7b;
        cursor: pointer;
        
    }

    /* LEFT-SIDE */



    .unit{
        display: flex;
        gap:0.64rem;
        align-items: center;
    }
    .unit-icon{
        max-width: 4.8rem;
        height: auto;
        text-align: center;
        margin-right: 2rem;
    }   



    .unit-txt{
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.3;
    }




    .pro-img{
    
        justify-content: center;
        align-items: center;
            max-width:  16.5rem;
            height:10rem;
        overflow: hidden;
        
    }

    .pro-img img{
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius:10px;
    }



    .footer .footer-content {
    display: flex;
    align-items: center;
    gap:30rem;
    flex-direction: column;
    padding: 0 10rem;
    
    }

    .footer .middle-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer .footer-content{
        display: flex;
        gap: 3rem;
    }

    }

    /* Accessibility */
    @media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-section .hero-image:hover {
        transform: none;
    }
    }

    /* High DPI displays */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar .logo img
    {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    }

    /*------------------Start navbar------------------*/
    .navbar {
        background-color: #f8f9fa;
    }

    .navbar-brand {
        font-size: 24px;
        font-weight: bold;
        color: #2c3e50;
    }

    .navbar-nav .nav-link {
        color: #2c3e50;
        margin-right: 20px;
        transition: color 0.3s ease-in-out;
    }

    .navbar-nav .nav-link:hover {
        color: #3498db;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
    /*------------------End navbar------------------*/


    /*------------------Start Responsive------------------*/
    @media (max-width: 992px) {
        .nav-item {
            text-align: center;
            margin: 10px 0;
        }

        .carousel-caption {
            bottom: 20px;
        }

        .carousel-caption h5 {
            font-size: 20px;
        }

        .carousel-caption p {
            font-size: 14px;
        }
    }
}

.copyright{
  margin-top: 1.6rem;
  text-align: center;
  color: #f8e5db;
      font-size:1.6rem;


}

@media (max-width: 480px) {
  .copyright{
    font-size: 0.8rem;
  }
}
