    /* Navbar styling */
    .navbar {
      padding: 0.8rem 2rem;
      background-color: #fefefe;
      box-shadow: 0 1px 5px rgba(0,0,0,0.05);
      position: fixed;
      font-family: poppins, sans-serif;

    }

    .navbar-brand img {
      height: 55px;
    }

    .navbar-nav .nav-link {
      color: #000;
      font-weight: 500;
      margin: 0 10px;
      transition: color 0.3s ease;
            font-size: 0.9rem !important;

    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #e63950;
    }

    /* Language switch */
    .lang-switch a {
      color: #000;
      font-weight: 600;
      text-decoration: none;
      margin-left: 5px;
      transition: color 0.3s ease;
    }

    .lang-switch a.active,
    .lang-switch a:hover {
      color: #e63950;
    }

    /* Call button */
    .call-btn {
      background-color: #e63950;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 8px 18px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all 0.3s ease;
            font-family: 'Rubik', sans-serif !important;

    }

    .call-btn:hover {
      background-color: #d32f45;
    }

    /* Make sure right content stays aligned */
    .right-section {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    @media (max-width: 992px) {
      .navbar-nav {
        text-align: center;
      }
      .right-section {
        flex-direction: column;
        align-items: start;
        gap: 10px;
      }
    }
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
    /* border: none; */
}

















        /* Hero Section Background */
    .hero-section {
      background: url('../images/85f3a0b985d078a95d8ae00ba61d5a7f2cebfb2c.png') center center/cover no-repeat;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      position: relative;
      /* filter:brightness(0.8); */
    
    }

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55);  /* Increase opacity for darker image */
  z-index: 1;
}


@media (max-width: 992px) {
  .hero-section {
    padding-top: 140px; /* adjust based on navbar height */
  }
}



    /* Hero Content */
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1100px;
      padding: 20px;
      font-family: poppins, sans-serif;

    }

    .hero-content h1 {
      font-size: 2rem;
      font-weight: 700;
      /*color: #FFFFFF !important;*/
    }

    /*.hero-content h1 span {*/
    /*  color: #EF314B !important;*/
    /*}*/

    .hero-content p {
      font-size: 1rem;
      margin-top: 10px;
      color: #c3c3c3;
      font-weight: 400;
    }

    /* Tabs (Buy, Rent, Off Plan) */
    .option-tabs {
      background: #fff;
      border-radius: 10px 10px 0 0;
      display: flex;
      width: fit-content;
      overflow: hidden;
      margin-top: 40px;
    }

    .option-tabs a {
      color: #000;
      padding: 10px 25px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
      border-bottom: 2px solid transparent;
      font-size: 1rem !important;

    }

    .option-tabs a:hover,
    .option-tabs a.active {
      color: #EF314B;
      border-bottom: 2px solid #e63950;
    }

    /* Filter Card */
    .filter-card {
      background: #fff;
 
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      border-top-right-radius: 10px;
      border-top-left-radius: 0px;
      padding: 25px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    .filter-item {
      flex: 1 1 220px;
      text-align: left;
      border-right: 1px solid #ddd;
      padding-right: 20px;
    }

    .filter-item:last-child {
      border-right: none;
    }

    .filter-item h6 {
      font-weight: 600;
      color: #000;
    }

    .filter-item select {
      border: none;
      outline: none;
      width: 100%;
      color: #777;
      background: transparent;
      border-bottom: 1px solid #ddd;
      font-size: 0.95rem;
      padding: 5px 0;
      cursor: pointer;
    }

    /* Search Button */
    .search-btn {
      background-color: #e63950;
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 10px;
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: 0.3s;
        width: 100%; 
  /* max-width: 300px; */
    }

    .search-btn:hover {
      background-color: #d32f45;
    }

    /* Responsive adjustments */
   @media (max-width: 992px) {
  .filter-card {
    flex-direction: row;
    align-items: stretch;

  }

}



/* Responsive size adjustment for mobile */
@media (max-width: 768px) {
  /* Hero title and paragraph smaller */
  /* .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  } */

  /* Tabs smaller */
  .option-tabs a {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  /* Filter section adjustments */


  .filter-item {
    padding: 0;
    margin: 0;
    border: none;
  }

  .filter-item h6 {
    font-size: 0.85rem;
    margin-bottom: 3px;
  }

  .filter-item select {
    font-size: 0.85rem;
    padding: 4px 0;
  }

  /* Search button smaller */
  .search-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 8px;
    width: 100%;
  }
}

/* Even smaller devices (phones under 480px) */
@media (max-width: 480px) {
  /* .hero-content h1 {
    font-size: 1.25rem;
  } */

  /* .hero-content p {
    font-size: 0.8rem;
  } */

  .filter-item h6 {
    font-size: 0.8rem;
  }

  .filter-item select {
    font-size: 0.8rem;
  }

  .search-btn {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}























.listing-section {
    padding: 60px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;

    
  }

  .listing-section h2 {
    font-size: 2.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1C1C1E;
    font-family: 'Inter', sans-serif;
  }

  .listing-section p.subtitle {
    font-size: 14px;
    color: #8E8E93;
    margin-bottom: 40px;
    font-weight: 400;
  }


.listing-item {
  display: flex;
  flex-direction: column; /* Stack image + text vertically */
  align-items: center;   
  text-align: center;
  margin: 10px;
  text-decoration: none;
}

.listing-item img {
    width: 105px !important;
    height: 105px !important;
    object-fit: cover;
    border-radius: 50% !important;
    margin-bottom: 10px;
}

.listing-item h6 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: black;
    /* Remove margin-left completely */
}

.listing-item span {
    font-size: 0.9rem;
    color: #777;
}







/* Custom Owl Carousel arrows */
  .listing-carousel .owl-nav button.owl-prev,
  .listing-carousel .owl-nav button.owl-next {
    background-color: #EF314B !important;
    color: #fff !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    position: absolute;
    top: 30% !important;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
  }

  .listing-carousel .owl-nav button.owl-prev {
    left: -20px; /* gap from left */
  }

  .listing-carousel .owl-nav button.owl-next {
    right: -20px; 
  }

  .listing-carousel .owl-nav button:hover {
    background-color: #e63950 !important;
  }

  .listing-carousel .owl-nav button:focus {
    outline: none;
  }

  .listing-carousel .owl-dots {
    display: none;
  }
  @media (max-width: 768px) {
    .listing-carousel .owl-nav button{
        display: none !important;
    }
     .listing-carousel  .owl-dots {
    display: block !important;
  }

    
  }




  


















  .about-section {
    padding: 60px 0px;

  }

   .about-image{
    /* border: 2px solid red; */
    width: 500px;
    height: 100%;
   }

 
  .about-image img {
    width: 100%;
    height: 100%;
    max-height: 750px;
    border-radius: 0px;
    object-fit: cover;
  }

 
  .about-content .small-title {
    font-size: 15px;
    font-weight: 400 !important;
    color: #FF6D81;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
  }

  .about-content .main-title {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 18px;
    color:#0D263B !important;
    font-family: 'Inter', sans-serif;
  }

  .about-content .subtitle {
    font-size: 12px;
    color: #7C8893;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    line-height: 25px !important;
  }



  .feature-item {

    margin-bottom: 30px;
   
  }

  .feature-item i {
 font-size: 2.2rem !important;
 stroke-width: 1.5 !important;
 color: #FF6D81 !important;


    /* margin-right: 15px; */
  }

  .feature-item .feature-text h6 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #0D263B;
    margin-top: 8px;
  


  }

  .feature-item .feature-text p {
    font-size: 13px;
    color: #7C8893;
    margin: 0;
    font-family: 'Inter', sans-serif;
    min-width: 180px;
    line-height: 25px !important;
  



  }

  .about-content .btn-learn {
    margin-top: 20px;
 
    color: #FF6D81;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 13px;

  }

  .about-content .btn-learn:hover {
    background-color: #e63950;
    color: #fff;
  }

  /* Responsive adjustments */
  @media (max-width: 767px) {
    .feature-item {
      flex-direction: row;
      align-items: center;
    }

    .feature-item img {
      margin-bottom: 0;
    }
  }




























.discover-title{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #060606;
    font-size: 2.3rem;
    margin-bottom: 20px;
}


.discover-description{
    color: #060606;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
}



  .property-filter .btn {
    border-radius: 50px;
    border: 1px solid #C5C5C5;
    padding: 0.35rem 1.2rem;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin: 5px 10px;
    font-family: 'Poppins', sans-serif;

}
.property-filter .btn.active {
    background-color: #ff3b57;
    color: #fff;
    border-color: #ff3b57;
}

/* Cards */
.property-card {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}
.property-card:hover {
    transform: translateY(-5px);
}
.property-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
}
.property-card .card-body {
    padding: 1rem;
    text-align: left !important;
}
.property-card .card-title {
    font-weight: 600;
    color: #060606;
    font-family: 'Poppins', sans-serif;


}
.property-card .property-location {
    font-size: 0.85rem;
    color: #060606;
    margin-bottom: 0.5rem;
}
.property-card .property-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #060606;
}
.property-card .property-icons i {
    margin-right: 0.25rem;
}
.property-card .btn-view {
    background-color: #EF314B;
    color: #fff;
    border-radius: 10px !important;
    padding: 0.8rem 1rem;
  
    border: none;
    float: right;
    width: 30%;
    font-weight: 400;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;

}
.property-card .btn-view:hover {
    background-color: #e0334d;
}

/* View All Button */
.view-all-btn {
    border: 1px solid #ff3b57;
    color: #282828;
    border-radius: 10px;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    background-color: transparent;
    transition: all 0.3s;
}
.view-all-btn:hover {
    background-color: #ff3b57;
    color: #fff;
}












.banner{
    background-color: #FFE4E4;
 
}

.b1{
    margin: 0px 50px;
  
    
}

.b1 i {
    font-size: 50px;
    color: #EF314B; 
    /* margin: 50px 0px !important; */
    text-align: center;
  
    width: 100%;
  }

  .b1 h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2rem; 
    margin-bottom: 10px;
  }

  .b1 p {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;

    color: #292B2C;
  }

  /* Optional: adjust gap on smaller screens */
  @media (max-width: 768px) {
    .banner .container {
      gap: 2rem;
    }
  }

















.trending{
    background-color: #ECECED;
}



  .trending-title{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #060606;
    font-size: 2.3rem;
    margin-bottom: 20px;
}


.trending-description{
    color: #060606;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
}





.trending-carousel .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    /*filter: brightness(60%); */
}



.carousel-caption h5 {
    font-size: 16px;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 14px;
    margin: 0;
}




/* Custom Owl Carousel arrows */
  .trending-carousel .owl-nav button.owl-prev,
  .trending-carousel .owl-nav button.owl-next {
    /* background-color: #EF314B !important; */
    color: #0f0f0f !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    position: absolute;
    top: 30% !important;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
    z-index: 10;
  }

  .trending-carousel .owl-nav button.owl-prev {
    left: -60px; /* gap from left */
  }

  .trending-carousel .owl-nav button.owl-next {
    right: -60px; 
  }

  .trending-carousel .owl-nav button:hover {
    background-color: #1d1c1c !important;
    color: white !important;
  }

  .trending-carousel .owl-nav button:focus {
    outline: none;
  }
/* 
  .trending-carousel .owl-dots {
    display: block;
  } */
  @media (max-width: 768px) {
   .trending-carousel .owl-nav button{
        display: none !important;
    }
    .trending-carousel  .owl-dots {
    display: block !important;

  }

    
  }































  
/*  .service-title{*/
/*    font-family: 'Inter', sans-serif;*/
/*    font-weight: 500;*/
/*    color: #060606;*/
/*    font-size: 2.3rem;*/
/*    margin-bottom: 20px;*/
/*}*/


/*.service-description{*/
/*    color: #EF314B;*/
/*    font-family: 'Roboto', sans-serif;*/
/*    font-weight: 400;*/
/*    font-size: 1rem !important;*/
/*    max-width: 350px;*/
/*    text-align: center;*/
/*    margin: 0 auto;*/
   
/*}*/




/*.custom-card {*/
/*    border-radius: 10px;*/
/*    background-color: #fff;*/
/*    transition: all 0.3s ease;*/
/*    cursor: pointer;*/
/*    position: relative;*/
/*    padding-bottom: 20px;*/
 
/*}*/

/*.custom-card:hover {*/
/*    border-bottom: 3px solid #EF314B;*/
/*}*/


/*.custom-card:hover .card-btn {*/
/*    color: #EF314B;*/
/*}*/


/*.custom-card:hover .card-title {*/
/*    color: #EF314B;*/
/*}*/


/*.card-icon {*/
/*    width: 80px;*/
/*    height: 80px;*/
/*    margin: 0 auto;*/
/*    background-color: #fff; */
/*    color: #EF314B;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    box-shadow: 0 4px 6px rgba(0,0,0,0.1);*/
/*    font-size: 24px;*/
/*}*/

/*.card-title {*/
/*    font-weight: 500;*/
/*    margin-top: 30px;*/
/*    margin-bottom: 15px;*/
/*    color: #000000;*/
/*    font-family: 'Roboto', sans-serif;*/

/*}*/

/*.card-text {*/
/*    font-size: 0.9rem;*/
/*    color: #7C8893;*/
/*    margin-bottom: 20px;*/
/*    font-weight: 400;*/
/*    font-family: 'Roboto', sans-serif;*/
/*    line-height: 28px;*/

/*}*/

/*.card-btn {*/
/*    background: none;*/
/*    border: none;*/
/*    color: #7C8893;*/
/*    font-weight: 400;*/
/*    cursor: pointer;*/
/*    transition: color 0.3s;*/
/*    font-size: 0.95rem;*/
/*    font-family: 'Roboto', sans-serif;*/
/*    text-decoration: none !important;*/

/*}*/

/*.card-btn i {*/
/*    transition: transform 0.3s;*/
/*}*/

/*.card-btn:hover i {*/
/*    transform: translateX(5px);*/
/*}*/












  
  .Featured-title{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #060606;
    font-size: 2.3rem;
    margin-bottom: 20px;
}


.Featured-description{
    color: #060606;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    max-width: 550px;
    text-align: start;
    /* margin: 0 auto; */
 

}
.desc a{
    border: 1px solid #E3DDDD;
    padding: 0.57rem 1.3rem;
    border-radius: 12px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    
}






.Featured-carousel .item img,
.luxury-carousel .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    /*filter: brightness(60%);*/
}




.carousel-caption h5 {
    font-size: 16px;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 14px;
    margin: 0;
}



/* Custom Owl Carousel arrows */
  .Featured-carousel .owl-nav button.owl-prev,
  .Featured-carousel .owl-nav button.owl-next,
  .luxury-carousel .owl-nav button.owl-prev,
  .luxury-carousel .owl-nav button.owl-next {
    background-color: #EF314B !important;
    color: #faf8f8 !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    position: absolute;
    top: 30% !important;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
    z-index: 10;
  }

  .Featured-carousel .owl-nav button.owl-prev,
  .luxury-carousel .owl-nav button.owl-prev {
    left: -60px; /* gap from left */
  }

  .Featured-carousel .owl-nav button.owl-next,
  .luxury-carousel .owl-nav button.owl-next {
    right: -60px;
  }

  .Featured-carousel .owl-nav button:hover,
  .luxury-carousel .owl-nav button:hover {
    background-color: #f34f65 !important;
    color: white !important;
  }

  .Featured-carousel .owl-nav button:focus,
  .luxury-carousel .owl-nav button:focus {
    outline: none;
  }
/* 
  .trending-carousel .owl-dots {
    display: block;
  } */
  @media (max-width: 768px) {
   .Featured-carousel .owl-nav button,
   .luxury-carousel .owl-nav button{
        display: none !important;
    }
    .Featured-carousel .owl-dots,
    .luxury-carousel .owl-dots {
    display: block !important;

  }

    
  }





















  .testimonial-section {
            background-color: #FFE9E9;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
    font-family: 'Inter', sans-serif;

        }

        .quote-icon-top {
            position: absolute;
            top: 40px;
            left: 140px;
            font-size: 120px;
            color: #e8d4d4;
            font-family: Georgia, serif;
            line-height: 1;
            opacity: 0.6;
        }

        .quote-icon-bottom {
            position: absolute;
            bottom: 20px;
            right: 80px;
            font-size: 120px;
            color: #e8d4d4;
            font-family: Georgia, serif;
            line-height: 1;
            opacity: 0.6;
            transform: rotate(180deg);
        }

        /* .section-title-small {
            text-align: center;
            color: #d4534f;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #060606;
    font-size: 2.3rem;
    margin-bottom: 20px;
        } */





          .section-title{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #060606;
    font-size: 2.3rem;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 10px;
}


.section-title-small{
    color: #EF314B;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem !important;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
   
}



        .testimonial-card {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 30px;
            margin: 20px 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            min-height: 200px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.7;
            color: #666666;
            margin-bottom: 30px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #000000;
            font-weight: 400;
        }

        .author-image {
            width: 50px !important;
            height: 50px !important;
            border-radius: 50% !important;
            object-fit: cover;
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-size: 16px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 3px;
        }

        .author-designation {
            font-size: 13px;
            color: #0D263B;
        }

        .testimonial-section .owl-carousel .owl-dots {
            text-align: center;
            margin-top: 40px;
        }

        .testimonial-section .owl-carousel .owl-dot {
            display: inline-block;
            margin: 0 5px;
        }

        .testimonial-section .owl-carousel .owl-dot span {
            width: 12px;
            height: 12px;
            background-color: #FFE9E9;
            border: 2px solid #EF314B;
            border-radius: 50%;
            display: block;
            transition: all 0.3s ease;
        }

        .testimonial-section .owl-carousel .owl-dot.active span {
            background-color: #EF314B !important;
        }

        .testimonial-section .owl-carousel .owl-dot:hover span {
            background-color: #EF314B !important;
        }

        @media (max-width: 768px) {
            .testimonial-section {
                padding: 50px 0;
            }

            .section-title {
                font-size: 30px;
                margin-bottom: 40px;
            }

            .quote-icon-top {
                font-size: 10px !important;
                left: 20px;
                top: 20px;
                display: none;
            }

            .quote-icon-bottom {
                font-size: 20px !important;
                right: 20px;
                bottom: 20px;
                display: none;

            }

            .testimonial-card {
                margin: 10px;
            }
        }











          .blog-title{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #060606;
    font-size: 2.3rem;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 10px;
}


.blog-description{
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem !important;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
   
}

.blog-card {

      border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
  background-color: #D9D9D966 !important;
}

.blog-card .card-title{
    font-size: 1.2rem;
    font-weight: 500;
  
    color: #000000 !important;
    font-family: 'Inter', sans-serif;
}
.blog-card .card-text {
    font-size: 0.85rem;
    color: #000000BF !important;
    margin: 10px 0 15px 0;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 25px !important;

}


.blog-card .small{
    color: #EF314B !important;
    font-family: 'Inter', sans-serif;


}

.blog-card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.blog-card .btn {
    color: #EF314B;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.7s;

}

.blog-card .btn:hover {
    border: 1px solid #EF314B;
  
 

}

















.subcribe-section{
    font-family: 'Inter', sans-serif;

}


        .subscribe-wrapper {
            background-image: url('images/3b15984528108fab836cf541428bd05aadfb3044.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 25px;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
            height: 400px !important;
        }

        .subscribe-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
            z-index: 1;
        }

        .subscribe-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .subscribe-title {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.3;
    font-family: 'Inter', sans-serif;

        }

        .subscribe-description {
            font-size: 16px;
            color: #E4E4E4;
            margin-bottom: 30px;
            line-height: 1.6;
            opacity: 0.95;
            font-weight: 400;
        }

        .subscribe-form {
            position: relative;
            max-width: 550px;
        }

        .email-input-wrapper {
            position: relative;
            display: flex;
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .email-icon {
            position: absolute;
            left: 25px;
            top: 50%;
            transform: translateY(-50%);
            color: #999999;
            font-size: 16px;
            z-index: 3;
        }

        .email-input {
            flex: 1;
            border: none;
            padding: 18px 25px 18px 55px;
            font-size: 15px;
            outline: none;
            color: #333333;
        }

        .email-input::placeholder {
            color: #999999;
        }

        .subscribe-button {
            background-color: #e63946;
            color: #ffffff;
            border: none;
            padding: 13px 35px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            margin: 5px;
            border-radius: 10px;

        }

        .subscribe-button:hover {
            background-color: #d62828;
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .subscribe-wrapper {
                padding: 80px 30px;
                border-radius: 20px;
            }

            .subscribe-title {
                font-size: 22px;
                margin-bottom: 14px;
            }

            .subscribe-description {
                font-size: 12px;
                margin-bottom: 25px;
            }

            /* .email-input-wrapper {
                flex-direction: column;
                border-radius: 15px;
            } */

            .email-input {
                padding: 16px 20px 16px 45px;
                font-size: 14px;
                border-radius: 15px 15px 0 0;
            }

            .subscribe-button {
                padding: 6px 10px;
                font-size: 12px;
                /* border-radius: 0 0 15px 15px; */
            }

            .email-icon {
                left: 20px;
            }
        }

        @media (max-width: 576px) {
            .subscribe-wrapper {
                padding: 80px 20px;
                border-radius: 15px;
            }

            .subscribe-title {
                font-size: 18px;
            }

            .subscribe-description {
                font-size: 12px;
            }
        }




        
        @media (max-width: 576px) {
    .email-input-wrapper {
        flex-direction: row; /* keep horizontal */
        padding: 0;
        height: auto;
    }

    .email-input {
        padding: 10px 10px 10px 40px; /* smaller padding */
        font-size: 13px; /* smaller font */
    }

    .email-icon {
        font-size: 14px; /* smaller icon */
        left: 15px; 
    }

    .subscribe-button {
        padding: 8px 15px; /* smaller button */
        font-size: 13px;
        margin: 2px; /* remove extra margin */
    }


    .email-input {
    flex: 1 1 auto; /* allow shrinking */
    min-width: 0; /* prevent overflow */
}

}






























/*.brand-img {*/
/*  max-width: 100px;*/
/*  max-height: 100%;*/
/*  object-fit: contain;*/
/*  opacity: 0.8;*/
/*  transition: opacity 0.3s ease;*/
/*}*/

/*.nakheel{*/
/*  max-width: 70px;*/


/*}*/

/*.brand-img:hover {*/
/*  opacity: 1;*/
/*}*/



/*@media (max-width: 768px) {*/
/*  .brand-img {*/
/*    max-width: 80px;*/
/*    margin: 10px 0;*/
/*  }*/
/*  .nakheel{*/
/*  max-width: 60px;*/


/*}*/
    
/*}*/







.brand-img-wrapper {
  width: 180px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c7c6c6;
  margin: 0 10px; /* gap between logos */
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
  padding: 20px;
}

.brand-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  opacity: 0.8;
}

.brand-img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .brand-img-wrapper {
    width: 120px;
    height: 80px;
    padding: 20px;
  }
}

/* Marquee container */
.brand-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}


/* Pause animation on hover */
.brand-marquee .brand-row:hover {
  animation-play-state: paused;
}

/* Marquee row */
.brand-marquee .brand-row {
  display: flex;
  gap: 1rem;
  /* duplicate logos to loop smoothly */
  animation: marquee 10s linear infinite;
}

/* Duplicate logos container */
.brand-marquee .brand-row .brand-img-wrapper {
  flex-shrink: 0; /* prevent shrinking */
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


































  .footer-section {
            background-color: #000000;
            color: #ffffff;
            padding: 40px 0 30px;
        }

        .footer-logo {
            max-width: 130px;
            /* margin-bottom: 20px; */
        }

        .footer-tagline {
            font-size: 16px;
            color: #ffffff;
            /* margin-bottom: 30px; */
            line-height: 1.5;
        }

        .footer-heading {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .contact-info p {
            color: #cccccc;
            margin-bottom: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .contact-info a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #ffffff;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 5px;
        }

        .social-icons a {
            color: #ffffff;
            font-size: 24px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            color: #cccccc;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #333333;
            /* margin-top: 40px; */
            padding-top: 25px;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright-text {
            color: #888888;
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-bottom-links a {
            color: #888888;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .footer-section {
                padding: 40px 0 20px;
            }


                    .footer-logo {
            max-width: 150px;
            margin-bottom: 20px;
        }


            .footer-heading {
                margin-top: 30px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }

            .social-icons {
                justify-content: center;
            }
        }
