@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans+Arabic:wght@100..800&display=swap');
/*-----------------------------------*\
  #main.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Roboto:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}
body{
    background-color: #161616;
    background: url(../Image/back\ \(1\).jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
:root{
    --white-show:#fff;
    --forest-green:#345e42;
    --subset-orange:#90A1B9;
    --slate-gray:#5c5c5c;
    --charcoal-black:#2e2e2e;
    --pg-color:#bcbcbc;
}
body{
    overflow-x: hidden;
}
body::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.696);

}
.section{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 8%;
    gap: 50px;
    position: relative;
}

.section_page{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.After_effect::after{
    content: "";
    position: absolute;
    top: -50%;
    left: -120%;
    height: 200%;
    width: 20px;
    background-color: #fff;
    filter: blur(20px);
    transform: rotate(30deg);
    transition: .6s;
}
.After_effect:hover::after{
    left: 150%;
    transform: rotate(30deg) translateY(80px);
}
.sectin_page img{
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.section_title{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: start;
    flex-direction: column;
    gap: 30px;
}
.section_title h1{
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 6rem;
    color: var(--white-show);
    font-family: 'Marcellus' , serif;
}
.section_title h2{
    font-size: 2rem;
    font-family: 'Marcellus';
    color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);
    letter-spacing: 1px;
}
.section_title p{
    color: var(--pg-color);
    font-weight: 300;
    font-size: 18px;
    line-height: 2rem;
    font-weight: 500;
}
nav{
    height: 90px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:absolute;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 0 8% 0 2%;
}
.sticky_nav{
    box-shadow: 0 8px 10px #b3fbac57;
}
.ri-menu-5-fill{
    font-size: 28px;
    padding: 8px;
    border-radius: 8px;
    z-index: 9;
    color: var(--white-show);
    display: none;
}
.ri-close-large-line{
    color: var(--white-show);
    font-size: 28px;
    width: 100%;
    padding: 0;
    display: none;
    position: absolute;
    top: 1%;
    text-align: right;
    padding: 20px;
}
.ul{
    display: flex;
    align-items: center;
    gap: 30px;
    width: fit-content;
    height: fit-content;
    background-color: transparent;
    list-style: none;
}
.ul li{
    margin-bottom: 0;
}
.button{
    background-color: transparent;
    font-family: 'Urbanist' , sans-serif;
    color:  rgb(255, 255, 255);
    border: none;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 10px;
    cursor: pointer;
    position: relative;
    padding-left: 11px;
    text-align: center;
    transition: 0.1s;
    z-index: 1;
}
.button::before{
    content: '';
    border-radius: 1px;
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: transparent;
    left: -10px;
    top: 19px;
    cursor: pointer;
    transform: rotate(225deg);
    transition: 0.3s;
    z-index: -1;
}
.button:hover:before{
    transform: rotate(0deg);
    width: 100%;
    height: 40px;
    top: -1px;
    left: -2px;
    border-radius: 3px;
    background-color: #fff;
}
.ul li .button .p{
    color: var(--white-show);
    letter-spacing: 1px;
}
.ul li .button:hover .p{
    color: #222;
}
.logo{
    width: 270px;
    margin-top: 5.5vh;
    cursor: pointer;
}
.logo img{
    width: 100%;
    object-fit: contain;
}
.btn1{
    height: 50px;
    width: 180px;
    border: none;
    font-size: 18px;
    text-transform: uppercase;
    background-color: var(--subset-orange);
    font-weight: 600;
    transition: all 0.6s;
    color: var(--white-show);
    box-shadow: 4px 4px 3px #272727dd, inset 4px 4px 25px #D4D4D4 ;
    transform: scale(0.9);
    cursor: pointer;
}
.btn1:active{
    transform: scale(1.2);
}
/* =========================
   Responsive Navbar & Section
   ========================= */

/* شاشات التابلت */
@media (max-width: 992px) {
    .section {
        flex-direction: column;
        padding: 100px 6%;
        text-align: center;
    }

    .section_page,
    .section_title {
        width: 100%;
    }

    .section_title {
        align-items: center;
    }

    .section_title h1 {
        font-size: 2.2rem;
        line-height: 4rem;
        text-align: center;
    }

    .section_title h2 {
        font-size: 1.8rem;
    }
}

/* شاشات الموبايل */
@media (max-width: 768px) {
    nav {
        padding: 0 5%;
    }

    .ri-menu-5-fill {
        display: block;
        cursor: pointer;
    }

    .ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        background-color: rgba(0, 0, 0, 0.95);
        transition: 0.4s ease;
        z-index: 8;
    }

    .ul.active {
        right: 0;
    }

    .ri-close-large-line {
        display: block;
        cursor: pointer;
    }

    .logo {
        width: 200px;
        margin-top: 0;
    }

    .section {
        padding: 90px 5%;
    }

    .section_title h1 {
        font-size: 2rem;
        line-height: 3.2rem;
        text-align: center;
    }

    .section_title p {
        font-size: 16px;
        text-align: center;
    }
}

/* شاشات صغيرة جداً */
@media (max-width: 480px) {
    .section_title h1 {
        font-size: 1.7rem;
        text-align: center;
    }

    .section_title h2 {
        font-size: 1.4rem;
        
    }

    .btn1 {
        width: 150px;
        font-size: 16px;
    }
}
.ul.active ~ .ri-menu-5-fill {
    display: none;
}


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
--white-show:#fff;
    --forest-green:#345e42;
    --subset-orange:#90A1B9;
    --slate-gray:#5c5c5c;
    --charcoal-black:#2e2e2e;
    --pg-color:#bcbcbc;
  /**
   * colors
   */

 
  /**
   * typography
   */

  --ff-rosario: 'Rosario', sans-serif;
  --ff-poppins: 'Poppins', sans-serif;
  
  --fs-1: 5rem;
  --fs-2: 4.2rem;
  --fs-3: 3rem;
  --fs-4: 2.6rem;
  --fs-5: 1.8rem;
  
  --fw-600: 600;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 12rem;

  /**
   * box shadow
   */

  --shadow-1: 0px 0px 30px 0px hsla(0, 0%, 0%, 0.2);

  /**
   * border radius
   */

  --radius-circle: 50%;
  --radius-20: 20px;
  --radius-16: 16px;
  --radius-6: 6px;
  --radius-4: 4px;
  --btn-radius: 32px 6px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { list-style: none; }

a,
img,
span,
ion-icon { display: block; }

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

img { height: auto; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--granite-gray);
  font-size: 1.6rem;
  line-height: 1.6;

}

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 16px; }



.section { padding-block: var(--section-padding); }

.h1 { font-size: var(--fs-1); }

.h1,
.h2,
.h3,
.h4 {
  color: var(--bistre);
  font-family: var(--ff-rosario);
  font-weight: var(--fw-600);
  line-height: 1.3;
}

.h1 .span { color: var(--french-bistre); }

.h2 { font-size: var(--fs-2); }

.h3 { font-size: var(--fs-3); }

.h4 { font-size: var(--fs-4); }

.btn {
      background-color: var(--subset-orange);

    color: var(--white-show);
    box-shadow: 4px 4px 3px #272727dd, inset 4px 4px 25px #D4D4D4 ;
  display: flex;
  align-items: center;
  max-width: max-content;
  gap: 12px;
  min-height: 58px;
  padding-inline: 36px;

  transition: var(--transition-1);
}

.btn:is(:hover, :focus-visible) { background-color: #d4d4d4c4; }

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--granite-gray);
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.text-center { text-align: center; color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);}

.grid-list {
  display: grid;
  gap: 60px;
}

.has-after {
  position: relative;
  z-index: 1;
}

.has-after::after {
  content: "";
  position: absolute;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}






.hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.552), rgba(0, 0, 0, 0.552)), 
                    url('../Image/1111.jpg');
        background-size: cover;
    background-position: center;
    position: relative;
}



.hero-content {
    position: relative;
    z-index: 2;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 6rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
      color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 30px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn2 {
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;

    transition: 0.3s;
}

.btn2.primary {
          background-color: var(--subset-orange);

    color: var(--white-show);
    box-shadow: 4px 4px 3px #272727dd, inset 4px 4px 25px #D4D4D4 ;
}

.btn2.primary:hover {
    background-color: var(--subset-orange);
}

.btn2.outline {
    border: 2px solid var(--subset-orange);
    color: #fff;
}

.btn2.outline:hover {
    background-color: var(--subset-orange);
    color: #fff;
}

/* =========================
   HERO RESPONSIVE (NO DESIGN CHANGE)
   ========================= */

/* لابتوب متوسط */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4.8rem;
    }
}

/* تابلت */
@media (max-width: 992px) {
    .hero {
        width: 100%;
        height: 90vh;
    }

    .hero-content h1 {
        font-size: 3.6rem;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* موبايل */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 85vh;
    }

    .hero-content {
        height: auto;
        padding: 190px 20px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn2 {
        width: 100%;
        text-align: center;
    }
}

/* موبايل صغير */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 15px;
    }
}


/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
   background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('../Image/11.jpg');
        background-size: cover;
}

.about .container {
  display: grid;
  gap: 30px;
}

.about-banner {
  border-radius: var(--radius-16);
  max-width: max-content;
}

.about-banner-1 { border-bottom-right-radius: 120px; }

.about .section-title {  color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show); }

.about .wrapper .section-title { margin-block-start: 20px; }

.about-banner-2 {
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}

.about-content .section-title { margin-block-end: 20px; }

.about .btn { margin-block: 30px; }

.about-banner-3 { border-bottom-right-radius: 100px; }





/*-----------------------------------*\
  #COLLECTION
\*-----------------------------------*/

.collection .section-text { margin-block: 20px 60px;
color: #fff; }
.collection{
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('../Image/222.jpg');
        background-size: cover;
}
.gg{
color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show); 
}
.collection-card .card-banner {
  border-radius: 250px 250px 20px 20px;
  max-width: max-content;
  margin-inline: auto;
}

.collection-card .card-title { margin-block: 20px; 
color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);}

.collection-card .btn {
  margin-inline: auto;
  margin-block-start: 24px;
}
.aa{
    color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);
}
.card-text{
    color: #fff;
}



/*-----------------------------------*\
  #FEATURES
\*-----------------------------------*/

.feature {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('../Image/222.jpg');
        background-size: cover;
}
.hh{
   color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show); 
}
.feature-banner { min-height: 520px; }

.feature-banner::after {
  inset: 0;
  background-color: var(--bistre);
  opacity: 0.4;
}

.feature .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bistre_a75);
  padding: 32px;
  border-radius: var(--radius-circle);
  animation: pulse 2.5s ease-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%,
  75.1% { box-shadow: 0 0 0 0 var(--golden-brown_a60); }

  75% { box-shadow: 0 0 0 20px transparent; }
}



.feature .section-text { margin-block: 30px; color:#fff;}

.feature-list-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block-end: 30px;
}

.feature-list-card .card-icon {
  background-color: var(--french-bistre);
  padding: 15px;
  padding-block-start: 20px;
  flex-shrink: 0;
  border-radius: var(--radius-6);
  border-top-left-radius: 40px;
}
.rr{
    color: #fff;
}
.feature-list-card .card-title { margin-block-end: 12px;   color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show)}





/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/

.testi { padding-block-start: 160px;  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('../Image/11.jpg');
        background-size: cover; }

.testi-card {
  position: relative;
  padding-inline: 36px;
}

.testi :is(.card-text, .client-name) {
  color: var(--bistre);
  font-family: var(--ff-rosario);
  line-height: 1.3;
}

.testi-card .card-text {
  font-size: var(--fs-3);
  margin-block-end: 40px;
}

.testi-card .client-name {
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
}

.testi-card .icon {
  position: absolute;
  top: -80px;
  left: 0;
}





/*-----------------------------------*\
  #GALLERY
\*-----------------------------------*/

.gallery-card {
  height: 430px;
  padding: 20px;
  padding-block-start: 50px;
}

.gallery-card::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bistre);
  opacity: 0.5;
  z-index: -1;
  transition: var(--transition-1);
}

.gallery-card:is(:hover, :focus-within)::after { opacity: 0.7; }

.gallery-card .card-content {
  display: grid;
  align-content: space-between;
  height: 100%;
}



.gallery-card .btn-link {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-1);
}

.btn-link:is(:hover, :focus-visible) { color: var(--french-bistre); }





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/
.blog{
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('../Image/222.jpg');
}
.blog .section-text { margin-block: 20px 36px; }

.blog .grid-list { gap: 30px; }

.blog-card .card-banner { border-radius: 50px 50px 0 0; }

.blog-card .img-cover { will-change: transform; }

.blog-card:is(:hover, :focus-within) .img-cover {
  transform: scale(1.05) rotate(2deg);
  opacity: 0.8;
}

.blog-card .card-content { padding: 10px; }

.blog-card .card-title { margin-block: 8px 20px; color: #fff;}

.blog-card :is(.card-meta, .card-meta-wrapper) {
  display: flex;
  align-items: center;
}

.blog-card .card-meta {
  flex-wrap: wrap;
  column-gap: 40px;
}

.blog-card .card-meta-wrapper { gap: 8px; color: #fff;}

.blog-card .card-meta-wrapper ion-icon { color: #fff; }

.blog .btn {
  margin-block-start: 80px;
  margin-inline: auto;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--bistre);
  color: var(--white);
}

.footer-top {
  display: grid;
  gap: 30px;
  padding-block-end: 50px;
  border-block-end: 1px solid var(--french-bistre);
}

.footer .logo {
  color: var(--french-bistre);
  font-size: 3.2rem;
}

.footer-brand .footer-text { margin-block: 20px; }

.social-list {
  display: flex;
  gap: 20px;
}

.social-link {
  color: var(--french-bistre);
  font-size: 1.8rem;
}

.footer-list-title {
  color: var(--french-bistre);
  font-family: var(--ff-rosario);
  font-size: 1.8rem;
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer-link { padding-block: 7px; }

.footer-list .footer-text { margin-block-end: 24px; }

.footer-bottom {
  padding-block: 40px;
  text-align: center;
}

.copyright {
  color: var(--french-bistre);
  font-family: var(--ff-rosario);
  font-size: var(--fs-5);
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .grid-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }



  /**
   * HERO
   */

  .hero .wrapper {
    grid-template-columns: 0.8fr 1fr;
    align-items: flex-end;
    column-gap: 20px;
  }



  /**
   * GALLERY
   */

  .gallery-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }



  /**
   * FOOTER
   */

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

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 4.8rem;
    --fs-3: 3.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 950px; }



  /**
   * HEADER
   */

  .nav-open-btn,
  .nav-close-btn,
  .overlay { display: none; }

  .header { padding-block: 20px; }

  .navbar,
  .navbar.active {
    all: unset;
    display: block;
  }

  .navbar-list {
    display: flex;
    gap: 40px;
  }

  .navbar-link { color: var(--bistre); }

  

  /**
   * HERO
   */

  .hero .container { grid-template-columns: 1fr 1fr; }

  .hero .wrapper {
    grid-template-columns: 0.6fr 1fr;
    align-items: flex-end;
    column-gap: 40px;
  }

  .hero-content { text-align: left; }

  .h1 .span { display: inline; }

  .hero .btn { margin-inline: 0; }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    gap: 50px;
  }

  .about .wrapper {
    align-self: flex-end;
    margin-inline-end: -140px;
  }

  .about-banner-1 {
    border-bottom-right-radius: var(--radius-16);
    border-top-left-radius: 120px;
  }

  .about-banner-3 {
    margin-block-start: 50px;
    margin-inline-start: -180px;
  }



  /**
   * COLLECTION
   */

  .collection .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * FEATURES
   */

  .feature {
    display: flex;
    align-items: stretch;
  }

  .feature-banner,
  .feature-content { width: 50%; }

  .feature-banner { min-height: 100%; }

  .feature-content { padding-inline: 80px; }



  /**
   * GALLERY
   */

  .gallery-list { grid-template-columns: repeat(4, 1fr); }

  .gallery-card {
    height: 560px;
    padding: 60px 40px;
  }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1250px; }



  /**
   * HERO
   */

  .hero { padding-block-start: 200px; }

  .hero .hero-banner-1 {
    margin-inline-start: -60px;
    margin-block-end: 60px;
  }



  /**
   * ABOUT
   */

  .about .container { gap: 70px; }

  .about .wrapper .section-title { margin-inline-end: -80px; }

  .about-banner-3 { margin-block-start: 60px; }



  /**
   * TESTIMONIALS
   */

  .testi .container { max-width: 680px; }



  /**
   * BLOG
   */

  .blog .grid-list { gap: 60px; }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 0.5fr 0.5fr 0.6fr; }

  .footer-brand { padding-inline-end: 60px; }

}













    /* Newsletter Section */
    .newsletter-section {
        padding: 100px 40px;
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                    url('../Image/99.jpg');
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
        position: relative;
    }
    
    .newsletter-container {
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    
    .newsletter-box {
        background-color:rgba(0,0,0,0.2) ;
        padding: 50px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(255,255,255,0.9);
        color: #333;
        transition: transform 0.3s ease;
    }
    
    .newsletter-box:hover {
        transform: translateY(-5px);
    }
    
    .newsletter-title {
        font-size: 36px;
        font-weight: 300;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
        display: inline-block;
         color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);
    text-align: center;
    }
    
    .newsletter-title:hover {
        transform: translateY(-13px);
    }
    
    .newsletter-title span {
        font-weight: bold;
    }
    
    .newsletter-description {
        font-size: 18px;
        margin-bottom: 30px;
        color: #fff;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .newsletter-description:hover {
        transform: translateY(-13px);
    }
    
    .newsletter-form {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .newsletter-input {
        flex: 1;
        max-width: 400px;
        padding: 15px 20px;
        border-radius: 8px 0 0 8px;
        border: 1px solid #ddd;
        font-size: 16px;
        outline: none;
        transition: transform 0.3s ease;
    }
    
    .newsletter-input:hover {
        transform: translateY(-13px);
    }
    
    .newsletter-submit {
        background: #000000;
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 0 8px 8px 0;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .newsletter-submit:hover {
        transform: translateY(-13px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .social-icon {
        background: #000;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .social-icon:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    /* Footer Section */
    footer {
        background-color: #000;
        color: #fff;
        padding: 60px 40px 30px;
        font-family: Arial, sans-serif;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid #333;
    }
    
    .footer-company {
        transition: transform 0.3s ease;
    }
    
    .footer-company:hover {
        transform: translateY(-13px);
    }
    
    .footer-company h3 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #fff;
    }
    
    .footer-company p {
        color: #aaa;
        line-height: 1.6;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-company p:hover {
        transform: translateY(-13px);
    }
    
    .footer-social {
        display: flex;
        gap: 15px;
    }
    
    .footer-social a {
        color: #fff;
        font-size: 20px;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        color: #ffffff;
        transform: translateY(-13px);
    }
    
    .footer-links h4 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-links h4:hover {
        transform: translateY(-13px);
    }
    
    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: #aaa;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .footer-links a:hover {
        color: #ffffff;
        transform: translateY(-13px);
    }
    
    .footer-contact h4 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-contact h4:hover {
        transform: translateY(-13px);
    }
    
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #aaa;
    }
    
    .footer-contact li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        transition: transform 0.3s ease;
    }
    
    .footer-contact li:hover {
        transform: translateY(-13px);
    }
    
    .footer-newsletter h4 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-newsletter h4:hover {
        transform: translateY(-13px);
    }
    
    .footer-newsletter p {
        color: #aaa;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-newsletter p:hover {
        transform: translateY(-13px);
    }
    
    .footer-form {
        display: flex;
        gap: 10px;
    }
    
    .footer-input {
        flex: 1;
        padding: 12px 15px;
        border: none;
        border-radius: 5px;
        font-size: 14px;
        transition: transform 0.3s ease;
    }
    
    .footer-input:hover {
        transform: translateY(-13px);
    }
    
    .footer-submit {
        background: #fff;
        color: #000;
        border: none;
        padding: 0 20px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
    }
    
    .footer-submit:hover {
        transform: translateY(-13px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .copyright {
        max-width: 1200px;
        margin: 30px auto 0;
        text-align: center;
        color: #777;
        font-size: 14px;
    }
    
    .copyright p {
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .copyright p:hover {
        transform: translateY(-13px);
    }
    
    .copyright a {
        color: #aaa;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .copyright a:hover {
        color: #ffffff;
        transform: translateY(-13px);
    }
    /* Add this at the end of your existing CSS */

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .mainImage img {
        width: 65%;
        margin-left: 450px;
        margin-top: -400px;
    }
    
    .property-info {
        width: 90%;
    }
    
    .stats-content {
        margin-right: 20px;
    }
}

@media (max-width: 992px) {
    .site-header {
        padding: 20px 30px;
    }
    
    .nav-links {
        margin-right: 60px;
        gap: 20px;
    }
    
    .hero {
        padding: 60px;
    }
    
    .hero-content {
        max-width: 60%;
    }
    
    .mainImage img {
        width: 70%;
        margin-left: 380px;
        margin-top: -350px;
    }
    
    .stats-grid {
        width: 100%;
    }
    
    .stats-content {
        max-width: 100%;
        margin-top: 40px;
        margin-right: 0;
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .logo h1 {
        font-size: 36px;
        margin-left: 0;
    }
    
    .nav-links {
        display: none; /* Will be shown in mobile menu */
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin: 20px 0 0 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding-bottom: 30px;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        margin-left: 0;
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .mainImage img {
        display: none; /* Hide on smaller screens or implement alternative layout */
    }
    
    .property-info {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .property-info hr {
        height: 1px;
        width: 100%;
    }
    
    .stats-section {
        padding: 60px 20px;
    }
    
    .stats-grid {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .featured-properties {
        padding: 60px 20px;
    }
    
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 8px;
        max-width: 100%;
    }
    
    .newsletter-submit {
        border-radius: 8px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 28px;
    }
    
    .hero {
        padding: 30px 20px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-form {
        flex-direction: column;
    }
    
    .footer-submit {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Mobile Menu Toggle Styles */
.menu-toggle {
    display: none; /* Will be shown on mobile */
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .login-btn {
        margin-left: auto;
        margin-right: 15px;
    }
}

/* Smooth transitions for responsive changes */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
    width: 100%;
}