 @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    max-width: 100%;
    background-color: #081317;
    font-family: "Tajawal", sans-serif;
    position: relative;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.navbar {
    background-color: rgba(8, 19, 23, 0.9);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #000000;
    background: rgba(240, 241, 248, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 104, 145, 0.4);
}

.nav-link.active {
    background: linear-gradient(135deg, #C29D29, #f7d672);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(194, 157, 41, 0.4);
}
.hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-8px, 6px);
            background: #ffffff;
        }

.hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-8px, -6px);
            background: #ffffff;
        }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}
        @media screen and (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: -50vh; 
                left: 0;
                width: 100%;
                height: 50vh; 
                max-height: 400px;  
                background: rgba(0, 0, 0, 0.781);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 999;
                border-radius: 0 0 25px 25px;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            }
              section.add{
            display: none !important;
        }

            .nav-menu.active {
                top: 0; 
            }

            .nav-link {
                font-size: 1.1rem;
                padding: 0.8rem 2rem;
                width: 80%;
                text-align: center;
                margin: 0.3rem 0;
                border-radius: 15px;
            }

            .nav-container {
                padding: 0 1rem;
            }
            .nav-container img{
                width: 130px;

            }

            .section-title {
                font-size: 2rem;
            }

            .section-text {
                font-size: 1rem;
            }
        }

        @media screen and (max-width: 480px) {
            .nav-menu {
                height: 45vh; 
                gap: 1.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .hamburger span {
                width: 25px;
            }

            .nav-link {
                font-size: 1rem;
                padding: 0.7rem 1.5rem;
            }
        }

        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInFromTop {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

section.hero {
    background: linear-gradient(145deg, #3f6473, #64818c, #000a0d, #1b4e59, #022326);
    padding: 100px 0 80px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

section.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -0%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(360deg); }
}
@media (max-width: 958px) {
    section.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
}
}

section.hero div.hero-content {
    padding: 50px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    direction: rtl;
    position: relative;
    z-index: 2;
}

section.hero div.image-container {
    margin-left: 20px;
    position: relative;
    width: 45%;
    height: 600px;
    text-align: center;
    order: 1;
    aspect-ratio: 5 / 3;
}

div.image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 5/3;
    margin: 0 auto;
}

div.image-container svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

div.image-container svg rect {
    x: 20%;
    y: 5%;
    width: 60%;
    height: 90%;
    fill: none !important;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
    animation: rect_ani 4s 1 forwards ease-in-out;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

div.image-container img.responsive-img {
    position: absolute;
    top: 5%;
    left: 15%;
    width: 70%;
    height: 90%;
    object-fit: cover;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* @keyframes rect_ani {
       0% {
                stroke-dasharray: 0;
                stroke-dashoffset: 50px;
            }
            25% {
                stroke-dasharray: 100;
                stroke-dashoffset: 100px;
            }
            50% {
                stroke-dasharray: 200;
                stroke-dashoffset: 150px;
            }
            75% {
                stroke-dasharray: 100;
                stroke-dashoffset: 100px;
            }
            100% {
                stroke-dasharray: 0;
                stroke-dashoffset: 50px;
            }
        } */

section.hero div.hero-content div.hero-image {
    display: none;
}

section.hero div.hero-content div.hero-text {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 30px;
    margin-top: 50px;
    flex: 1 1 45%;
    text-align: right;
    margin-right: 50px;
}

section.hero div.hero-content div.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
    width: 90%;
    text-align: right;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInRight 1s ease-out;

    /* تدرج لوني للنص */
    background: linear-gradient(45deg, #ffffff, #d4a90e); /* غيّر الألوان حسب رغبتك */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* دعم فايرفوكس */
    background-clip: text;
    color: transparent;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

section.hero div.hero-content div.hero-text p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    width: 85%;
    text-align: right;
    line-height: 1.7;
    animation: slideInRight 1s ease-out 0.3s both;
}

section.hero div.hero-content p.subtext {
    text-align: end;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    animation: slideInRight 1s ease-out 0.6s both;
}

/* Buttons */
body section.hero div.hero-content div.btn1 {
    direction: rtl;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 30px;
    align-items: center;
    order: 2;
    animation: slideInUp 1s ease-out 0.9s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body section.hero div.hero-content button.gold {
    order: -1;
    font-family: "Tajawal", sans-serif;
    width: 300px;
    color: white;
    height: 80px;
    border-radius: 40px;
    font-size: 28px;
    border: 0;
    background: linear-gradient(135deg, #C29D29, #f7d672);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(194, 157, 41, 0.3);
    position: relative;
    overflow: hidden;
}

body section.hero div.hero-content button.gold::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 0.5s;
}

body section.hero div.hero-content button.gold:hover::before {
    left: 100%;
}

body section.hero div.hero-content button.gold:hover {
    background: linear-gradient(135deg, #d4aa2c, #f8e2a1);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(194, 157, 41, 0.4);
}

body section.hero div.hero-content div.btn1 button.white {
    font-family: "Tajawal", sans-serif;
    cursor: pointer;
    width: 200px;
    height: 50px;
    font-size: 20px;
    border: 0;
    background: none;
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
}
div.btn{
    display: none;
}

body section.hero div.hero-content div.btn1 button.white:hover {
    border-bottom-color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 1025px) {
    section.hero{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
 section.hero div.hero-content {
    padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: auto;
  flex-wrap: wrap;
  direction: rtl;
}
 section.hero div.image-container{
  display: none;
}
section.hero div.hero-content div.hero-image {
display:initial;
  flex: 1 1 40%;
  text-align: center;
  order: 1;
}


section.hero div.hero-content div.hero-image img {

  max-width: 100%;
 min-height: 380px;
  margin: 0;
}
section.hero div.hero-content div.alamertat-hero-image img {
  max-width: 100%;
 min-height: 280px;
  margin: 0;
}
   div.alamertat-hero-image{
    width: 100%;
}
div.alamertat-hero-image img{
    width: 100%;

     
}
section.hero div.hero-content div.emad-skar img {
  max-width: 100%;
 min-height: 280px;
 
}
   div.emad-skar{
    width: 100%;
}
div.emad-skar img{
    width: 100%;

     
}
body section.hero div.hero-content div.btn1{
  display: none;
}
body section.hero div.hero-content div.btn{
    margin-top: 50px;
    width: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: start;
    gap: 0px;
    align-items:center;
    justify-content: center;
    order: 2;
}
 section.hero {
   margin: 0px 0px;
  }

 section.hero div.hero-content {
    flex-direction: column;
    text-align: center;
    max-width: 100%;
  }
  section.hero div.hero-content div.hero-text {
    
   margin: 0;
   margin-top: 20px;
    gap: 10px;
   
  }

  section.hero div.hero-content div.hero-text h1 {
    font-size: 28px;
    text-align: center;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 auto;
    width: 90%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInRight 1s ease-out;
}

  section.hero div.hero-content p.subtext{

    margin: 0 auto!important;
    width: 90%  !important;
    font-size: 17px !important;
    text-align: center !important;
    color: rgb(255, 255, 255) !important;
  }
  body section.hero div.hero-content button.gold{
    order: -1;
    bottom: 40px;
    font-family: "Tajawal", sans-serif;
    width: 90%;
    color: white;
    height: 80px;
    border-radius: 40px;
    font-size: 30px;
     border: 0;
    background: linear-gradient(135deg, #C29D29, #f7d672);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(194, 157, 41, 0.3);
    position: relative;
    overflow: hidden;
    margin: 0;

     
}
body section.hero div.hero-content button.gold::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 0.5s;
}

body section.hero div.hero-content button.gold:hover::before {
    left: 100%;
}

body section.hero div.hero-content button.gold:hover {
    background: linear-gradient(135deg, #d4aa2c, #f8e2a1);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(194, 157, 41, 0.4);
}

body section.hero div.hero-content div.btn button.white{
  order: 1;
   font-family: "Tajawal", sans-serif;
   cursor: pointer;
    width: 200px;
    height: 40px;
    font-size: 21px;
    border: 0; 
    background: none;
    color:white;
    border-bottom: 2px solid rgb(255, 255, 255);
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
}
body section.hero div.hero-content div.btn button.white:hover {
    border-bottom-color: #ffffff;
    transform: translateY(-2px);
}
  
}

/* Project Services Section */
body section.project-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 80px 20px;
    padding: 60px 0;
}

body section.project-services h1 {
    margin: 0 0 60px 0;
    font-size: 56px;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

body section.project-services h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #C29D29, #f7d672);
    border-radius: 2px;
}

body section.project-services div.p-services {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: start;
    direction: rtl;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

body section.project-services div.p-services div.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:280px;
    height: 320px;
    margin: 0 auto;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body section.project-services div.p-services div.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 157, 41, 0.1), rgba(113, 174, 243, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

body section.project-services div.p-services div.service:hover::before {
    opacity: 1;
}

body section.project-services div.p-services div.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

body section.project-services div.p-services div.service div.s-text h2,
body section.project-services div.p-services div.service div.s-text p {
    color: white;
    text-align: center;
    line-height: 1.5;
    margin: 10px 0;
    position: relative;
    z-index: 2;
}

body section.project-services div.p-services div.service div.s-text h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

body section.project-services div.p-services div.service div.s-text p {
    font-size: 16px;
    opacity: 0.9;
}

body section.project-services div.p-services div.service div.s-logo {
    background-color: none;
    border-radius: 20px;
    order: -1;
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

body section.project-services div.p-services div.service:hover div.s-logo {
    background: rgba(194, 157, 41, 0.2);
    transform: scale(1.1);
}

body section.project-services div.p-services div.service div.s-logo svg {
    width: 50px;
    height: 50px;
    fill: white;
    transition: all 0.3s ease;
}

/* Areas Section */
section.areas {
    margin: 100px 20px;
    display: flex;
    flex-direction: column;
    padding: 60px 0;
}

section.areas h1 {
    margin-bottom: 60px;
    font-size: 56px;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

section.areas h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #C29D29, #f7d672);
    border-radius: 2px;
}

section.areas > div {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
}

section.areas div.area-cont {
    margin: 0 auto;
    height: 700px;
    padding: 20px;
    max-width: 340px;
    border-radius: 25px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
section.areas div.engineering-tower {
    margin: 0 auto;
    height: 140px;
    padding: 20px;
    max-width: 340px;
    border-radius: 25px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

section.areas div.area-cont:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

section.areas div.area-cont h1 {
    font-size: 28px;
    margin: 10px 0;
    color: #081317;
    text-align: right;
    margin-right: 15px;
    direction: rtl;
    font-weight: 700;
}
div.area-4-amerat h1{
    font-size: 23px !important;
    font-weight: 800 !important;
}

section.areas div.area-cont div.area-info {
    height: 85px;
    width: 95%;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(62, 64, 65, 0.9), rgba(62, 64, 65, 0.7));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

section.areas div.area-cont div.area-info div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 0;
}

section.areas div.area-cont div.area-info div h4 {
    color: white;
    font-size: 14px;
    direction: rtl;
    margin: 0;
    font-weight: 600;
}

section.areas div.area-cont p {
    color: #555;
    margin-right: 15px;
    text-align: right;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Area Images */
section.areas div.area1 div.area-img,
section.areas div.area2 div.area-img,
section.areas div.area3 div.area-img,
section.areas div.area4 div.area-img {
    flex: 0.40;
    min-height: 250px;
    border-radius: 20px;
    margin-top: 10px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
} 

/* div.emad-skar{
    width: 100%;
}
div.emad-skar img{
    width: 100% !important;
    height: 440px;
} */

section.areas div.area1 div.area-img {
    background-image: url('./assets/images/area1\ \(1\).png');
}

section.areas div.area2 div.area-img {
    background-image: url('./assets/images/area2.png');
}

section.areas div.area3 div.area-img {
    background-image: url('./assets/images/area3.png');
}

section.areas div.area4 div.area-img {
    background-image: url('./assets/images/area4.png');
}
section.areas div.area1 div.img-tijan{
    background-image: url("./assets/images/tijan-area.png");
}
section.areas div.area1 div.img-alhyat{
    background-image: url("./assets/images/2.jpg");
}
section.areas div.area1 div.img-fullja {
    background-image: url('./assets/images/f-area1.png');
}

section.areas div.area2 div.img-fullja {
    background-image: url('./assets/images/f-area2.png');
}

section.areas div.area3 div.img-fullja {
    background-image: url('./assets/images/f-area3\ \(2\).png');
}

section.areas div.area4 div.img-fullja {
    background-image: url('./assets/images/f-area4.png');
}
section.areas div.area1 div.emad-img {
    background-image: url('./assets/images/emad-area1.jpg');
}

section.areas div.area2 div.emad-img {
    background-image: url('./assets/images/emad-area2.jpg');
}

section.areas div.area3 div.emad-img {
    background-image: url('./assets/images/emad-area3.jpg');
}
section.areas div.area1 div.img-alamerat {
    background-image: url('./assets/images/amerat-area1-removebg-preview.jpg');
}

section.areas div.area2 div.img-alamerat {
    background-image: url('./assets/images/amerat-area3-.JPG');
}

section.areas div.area3 div.img-alamerat {
    background-image: url('./assets/images/amerat-area2-removebg-preview.jpg');
}

section.areas div.area4 div.img-alamerat {
    background-image: url('./assets/images/amerat-area2-removebg-preview.jpg');
}
section.areas div.area5 div.area-img {
    flex: 0.40;
    min-height: 250px;
    border-radius: 20px;
    margin-top: 10px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
} 
section.areas div.area5 div.img-alamerat {
    background-image: url('./assets/images/amerat-area2-removebg-preview.jpg');
}
/* Interior Images */
section.areas div.area-cont div.interior-images,
section.areas div.area-cont div.tijan-interior {
    flex: 0.16;
    margin: 0 auto;
    height: 100px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    gap: 10px;
}

section.areas div.area-cont div.interior-images div.int-img,
section.areas div.area-cont div.tijan-interior div.int-img {
    width: 85px;
    height: 85px;
    border-radius: 15px;
    background-position: center;
    background-size: cover;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

section.areas div.area-cont div.interior-images div.int-img:hover,
section.areas div.area-cont div.tijan-interior div.int-img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
section.areas div.area-cont div.interior-images div.int-img1{
    background-image: url("./assets/images/interior1.jpg");
}
section.areas div.area-cont div.interior-images div.int-img2{
    background-image: url("./assets/images/interior2.jpg");
}
section.areas div.area-cont div.interior-images div.int-img3{
    background-image: url("./assets/images/interior3.jpg");
}
section.areas div.area-cont div.tijan-interior div.int-img1{
    background-image: url("./assets/images/tijan-int1.png");
}
section.areas div.area-cont div.tijan-interior div.int-img2{
    background-image: url("./assets/images/tijan-int2\ \(1\).png");
}
section.areas div.area-cont div.tijan-interior div.int-img3{
    background-image: url("./assets/images/tijan-int3\ \(2\).png");
}
section.areas div.area-cont div.alhyat-interior div.int-img1{
    background-image: url("./assets/alhyat/1\ \(1\).jpg");
}
section.areas div.area-cont div.alhyat-interior div.int-img2{
    background-image: url("./assets/alhyat/2.jpg");
}
section.areas div.area-cont div.alhyat-interior div.int-img3{
    background-image: url("./assets/alhyat/3.jpg");
}
section.areas div.area-cont div.interior-emadskar div.int-img1{
    background-image: url("./assets/images/emad_int1.jpg");
}
section.areas div.area-cont div.interior-emadskar div.int-img2{
    background-image: url("./assets/images/emad_int2.jpg");
}
section.areas div.area-cont div.interior-emadskar div.int-img3{
    background-image: url("./assets/images/emad_int3.jpg");
}

section.areas div.area1 div.amerat-first-floor div.int-img1{
    margin: 0 auto;
    background-image: url("./assets/images/first-floor-amerat-500.png");
}
section.areas div.area2 div.amerat-first-floor div.int-img1{  
    margin: 0 auto;
    background-image: url("./assets/images/first-floor-amerat-250-r.png");
}

section.areas div.area3 div.amerat-first-floor div.int-img1{
    margin: 0 auto;
    background-image: url("./assets/images/first-floor-amerat1.png");
}

section.areas div.area4 div.amerat-first-floor div.int-img1{
    margin: 0 auto;
    background-image: url("./assets/images/half-first-floor-amerat.png");
}


/* Form Section */
section.form-location {
    display: flex;
    flex-direction: row;
    gap: 60px;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
    justify-content: center;
    align-items: stretch;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    /* width: 100%;
    max-width: 620px; */
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
  direction: rtl;
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group select {
  direction: rtl;
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #33a6f3;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 18px;
       background: linear-gradient(135deg, #589cdb, #035981);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}
.success-message {
    display: none;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
}
@media (max-width: 768px) {
 
    section.areas {
    margin: 10px 20px;
    display: flex;
    flex-direction: column;
    padding: 0px 0;
}
    .form-location{
        margin: 0;
    }
    .form-container {
        max-width: 90%;
        padding: 35px 25px;
    }
    
    .form-header h1 {
        font-size: 24px;
    }
       .form-container {
       width: 100%;    
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .form-container {
       width: 100%;    
        margin: 0 auto;
    }
    
  
    
    .form-header h1 {
        font-size: 22px;
    }
}

@media (max-width: 360px) {
    .form-container {
       width: 100%;
      
    }
    
    .form-header h1 {
        font-size: 20px;
    }
}


.map-container {

            background: linear-gradient(185deg, #3f6473, #64818c, #000a0d, #1b4e59, #022326);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
             flex: 0.8;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            
        }

        .map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .map-title {
            direction: rtl;
            text-align: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            background-clip: text;
        }

        .map-wrapper {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.555);
            transition: transform 0.3s ease;
        }

        .map-wrapper:hover {
            transform: scale(1.02);
        }

        .map-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
            pointer-events: none;
            z-index: 1;
            transition: opacity 0.3s ease;
        }

        .map-wrapper:hover::before {
            opacity: 0;
        }

        .google-map {
            width: 100%;
            height: 450px;
            border: none;
            border-radius: 15px;
            filter: saturate(1.1) contrast(1.05);
            transition: filter 0.3s ease;
        }

        .google-map:hover {
            filter: saturate(1.3) contrast(1.1);
        }

        .map-info {
            margin-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            font-weight: 500;
        }

        .coordinates {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 15px;
            border-radius: 25px;
            display: inline-block;
            margin-top: 15px;
            font-family: "Tajawal", sans-serif;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

       
        @media (max-width: 868px) {
          section.form-location{
            flex-direction: column;
                gap: 20px;
          }
            .map-container {
                 margin: 0 auto;
                padding: 20px;
                 order: -1;
                width: 90%;
            
                
            }
            
            .map-title {
                direction: rtl;
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .google-map {
                height: 450px;
            }
            
          
        }

        @media (max-width: 480px) {
          section.form-location{
            padding: 0;
            margin: 0;
          }
            .map-container,
            .form-container {
                padding: 15px;
            }
            
            .map-title {
                font-size: 1.5rem;
            }
             .form-title {
                font-size: 1rem;
            }
            
            .google-map {
                height: 300px;
            }
            
            .coordinates {
                font-size: 0.8rem;
                padding: 8px 12px;
            }
        }
.coordinates {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 20px;
    font-family: "Tajawal", sans-serif;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(145deg, #242424, #1a1a1a);
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 1400px;
    width: 100%;
    border: 1px solid #333;
    margin: 100px auto;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
 @media screen and (max-width: 1199px) and (min-width: 1024px) {
            .contact-section::before {
                top: -45%;
                left: -45%;
                width: 190%;
                height: 190%;
                background: radial-gradient(circle, rgba(100, 181, 246, 0.07) 0%, transparent 65%);
                animation: rotateLaptop 25s linear infinite;
            }

            @keyframes rotateLaptop {
                from { transform: rotate(0deg); }
                25% { transform: rotate(90deg) scale(1.01); }
                50% { transform: rotate(180deg) scale(1.02); }
                75% { transform: rotate(270deg) scale(1.01); }
                to { transform: rotate(360deg); }
            }
        }

        /* Tablet (768px - 1023px) */
        @media screen and (max-width: 1023px) and (min-width: 768px) {
            .contact-section::before {
                top: -40%;
                left: -40%;
                width: 180%;
                height: 180%;
                background: radial-gradient(circle, rgba(100, 181, 246, 0.08) 0%, transparent 60%);
                animation: rotateTablet 22s linear infinite;
            }

            @keyframes rotateTablet {
                from { transform: rotate(0deg) scale(1); }
                33% { transform: rotate(120deg) scale(1.03); }
                66% { transform: rotate(240deg) scale(1.05); }
                to { transform: rotate(360deg) scale(1); }
            }
        }

        /* Mobile Large (600px - 767px) */
        @media screen and (max-width: 767px) and (min-width: 600px) {
            .contact-section::before {
                top: -35%;
                left: -35%;
                width: 170%;
                height: 140%;
                background: radial-gradient(circle, rgba(100, 181, 246, 0.09) 0%, transparent 55%);
                animation: rotateMobileLarge 20s linear infinite;
            }

            @keyframes rotateMobileLarge {
                from { transform: rotate(0deg) scale(1); }
                25% { transform: rotate(90deg) scale(1.04); }
                50% { transform: rotate(180deg) scale(1.08); }
                75% { transform: rotate(270deg) scale(1.04); }
                to { transform: rotate(360deg) scale(1); }
            }
        }

        /* Mobile Medium (480px - 599px) */
        @media screen and (max-width: 599px) and (min-width: 480px) {
            .contact-section::before {
                top: -30%;
                left: -30%;
                width: 160%;
                height: 120%;
                background: radial-gradient(circle, rgba(100, 181, 246, 0.1) 0%, transparent 50%);
                animation: rotateMobile 18s linear infinite;
            }

            @keyframes rotateMobile {
                from { transform: rotate(0deg) scale(1); }
                20% { transform: rotate(72deg) scale(1.03); }
                40% { transform: rotate(144deg) scale(1.06); }
                60% { transform: rotate(216deg) scale(1.08); }
                80% { transform: rotate(288deg) scale(1.05); }
                to { transform: rotate(360deg) scale(1); }
            }
        }

        /* Mobile Small (320px - 479px) */
        @media screen and (max-width: 479px) and (min-width: 320px) {
            .contact-section::before {
                top: -25%;
                left: -25%;
                width: 150%;
                height: 100%;
                background: radial-gradient(circle, rgba(100, 181, 246, 0.12) 0%, transparent 65%);
                animation: rotateMobileSmall 15s linear infinite;
            }

            @keyframes rotateMobileSmall {
                from { transform: rotate(0deg) scale(1); }
                16.66% { transform: rotate(60deg) scale(1.05); }
                33.33% { transform: rotate(120deg) scale(1.08); }
                50% { transform: rotate(180deg) scale(1.1); }
                66.66% { transform: rotate(240deg) scale(1.08); }
                83.33% { transform: rotate(300deg) scale(1.05); }
                to { transform: rotate(360deg) scale(1); }
            }
        }

        /* Very Small Mobile (<320px) */
        @media screen and (max-width: 319px) {
            .contact-section::before {
                top: -20%;
                left: -20%;
                width: 140%;
                height: 140%;
                background: radial-gradient(circle, rgba(100, 181, 246, 0.15) 0%, transparent 40%);
                animation: rotateVerySmall 12s linear infinite;
            }

            @keyframes rotateVerySmall {
                from { transform: rotate(0deg) scale(1); }
                12.5% { transform: rotate(45deg) scale(1.06); }
                25% { transform: rotate(90deg) scale(1.1); }
                37.5% { transform: rotate(135deg) scale(1.12); }
                50% { transform: rotate(180deg) scale(1.15); }
                62.5% { transform: rotate(225deg) scale(1.12); }
                75% { transform: rotate(270deg) scale(1.1); }
                87.5% { transform: rotate(315deg) scale(1.06); }
                to { transform: rotate(360deg) scale(1); }
            }
        }


.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    background: linear-gradient(135deg, #64b5f6, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: #b0b0b0;
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center
}
 .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: #2a2a2a;
            border-radius: 20px;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid #404040;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(64, 181, 246, 0.2), transparent);
            transition: left 0.5s;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            transform: translateY(-8px) scale(1.05);
            border-color: #40b5f6;
            box-shadow: 0 15px 30px rgba(64, 181, 246, 0.3);
            background: linear-gradient(135deg, #2a2a2a, #3d3d3d);
        }

        .social-link svg {
            width: 35px;
            height: 35px;
            transition: all 0.3s ease;
        }

        
        .social-link.whatsapp:hover svg {
            fill: #25D366;
            filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.5));
        }

        
        .social-link.facebook:hover svg {
            fill: #1877F2;
            filter: drop-shadow(0 0 10px rgba(24, 119, 242, 0.5));
        }

       
        .social-link.instagram:hover svg {
            fill: url(#instagram-gradient);
            filter: drop-shadow(0 0 10px rgba(225, 48, 108, 0.5));
        }

  @media (max-width: 768px) {
            .contact-section {
                margin-top: 50px !important;
                margin: 1rem;
                padding: 2rem 1.5rem;
            }
             .contact-section{
                width: 100%;
                margin:0 auto;

             }
            .section-title {
                font-size: 1.8rem;
            }
            
            .social-links {
                gap: 1rem;
            }
            
            .social-link {
                width: 70px;
                height: 70px;
            }
            
            .social-link svg {
                width: 30px;
                height: 30px;
            }
        }

       
        .social-link {
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.6s ease forwards;
        }

        .social-link:nth-child(1) { animation-delay: 0.1s; }
        .social-link:nth-child(2) { animation-delay: 0.2s; }
        .social-link:nth-child(3) { animation-delay: 0.3s; }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
         .sticky-book-btn {
           font-family: "Tajawal", sans-serif;
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(135deg, #C29D29, #f7d672);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            transform: translateY(100px);
            animation: slideUp 0.5s ease-out forwards;
        }

        .sticky-book-btn:hover {
             background: linear-gradient(135deg, #d4aa2c, #f8e2a1);
            transform: translateY(-3px);
             box-shadow: 0 12px 25px rgba(194, 157, 41, 0.4);
        }

        .sticky-book-btn:active {
            transform: translateY(0);
        }

    
        .sticky-book-btn.show {
            opacity: 1;
            transform: translateY(0);
        }

        .sticky-book-btn.hide {
            opacity: 0;
            transform: translateY(100px);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

       
        .sticky-book-btn.pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
      
        @media (max-width: 768px) {
            .sticky-book-btn {
                bottom: 15px;
                right: 15px;
                padding: 12px 25px;
                font-size: 16px;
            }
        }
    





         .slider-container {
            margin: 0 auto;
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 750px;
            perspective: 1000px;
            cursor: grab;
            overflow: hidden;
        }
        .slider-container h1 {
             margin: 0 0 60px 0;
             font-size: 56px;
             text-align: center;
             font-weight: bold;
             color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
             position: relative;
            }

         .slider-container h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, #C29D29, #f7d672);
            border-radius: 2px;
            }

        .slider-container:active {
            cursor: grabbing;
        }

        .cards-wrapper {
            position: relative;
            width: 100%;
            height: 70%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .card {
            position: absolute;
            width: 400px;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            transform-origin: center;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .dots-container {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 20;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.1);
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .slider-container {
                height: 550px;
                padding: 0 10px;
            }
            .slider-container h1 {
             margin: 0 0 60px 0;
             font-size: 46px;
             text-align: center;
             font-weight: bold;
             color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
             position: relative;
            }

            .card {
                width: 280px;
                height: 360px;
            }

            .card-title {
                font-size: 24px;
            }

            .card-subtitle {
                font-size: 12px;
            }

            .card-overlay {
                padding: 30px 20px 20px;
            }
        }

        @media (max-width: 480px) {
            .slider-container {
                height: 480px;
                padding: 10px 5px;margin-bottom: 30px;
            }

            .card {
                width: 220px;
                height: 300px;
            }

            .card-title {
                font-size: 20px;
            }

            .card-subtitle {
                font-size: 11px;
            }

            .card-overlay {
                padding: 25px 15px 15px;
            }

            .dots-container {
                bottom: 2px;
                gap: 8px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 360px) {
            .slider-container {
                height: 320px;
            }

            .card {
                width: 180px;
                height: 240px;
            }

            .card-title {
                font-size: 18px;
            }

            .card-subtitle {
                font-size: 10px;
            }

            .card-overlay {
                padding: 20px 12px 12px;
            }
        }