
/* Common */

/* Remove box-shadow for all buttons on focus */
.btn:focus,
.btn-check:focus + .btn {
  box-shadow: none !important;
  outline: none !important; /* optional, removes default outline */
}

.navbar-light .navbar-nav .nav-link {
  color: #333333 !important;
  font-weight: 500;
  transition: 0.3s;
}
.footer-bg{
    background-color: #333333;
}





header, .navbar {
  position: fixed;   /* Fixes header at top */
  top: 0;            /* Position from top */
  left: 0;
  width: 100%;       /* Full width */
  z-index: 1050;     /* Ensure it stays above other content */
  transition: top 0.3s; /* Smooth transition for hide/show if needed */
}

/* Optional: Add spacing for content below header */
body {
  padding-top: 70px; /* Adjust according to header height */
}

.clsnav{
    background-color: #f8f8f8;
    min-height: 80px;
}


body{
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}
@media (max-width: 768px) {
    body {
        overflow-x: hidden; /* Hides horizontal scrollbar */
    }
   
.navbar-brand img{
    width:135px;
}
}

.nav-item a,.navbar-dark .navbar-nav .nav-link{
    color: #333333;
    font-weight: 500;
}

.nav-item a:hover {
    text-decoration: underline;
    text-decoration-color: #9B2C65; /* Blue underline on hover */
    text-underline-offset: 4px; 
    color: #333333 !important;;
}



/* Common */

     /* === Banner Section === */
.banner-section {
  position: relative;
  
  display: flex;
  align-items: center; /* Vertically center content */
  color: #f8f8f8;
  background: url('../img/banner-1.jpg') center/cover no-repeat;
}
@media (min-width: 1300px) {
.banner-section {
min-height: 100vh; /* or your desired height */
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.banner-content .row {
  align-items: center; /* ensures both columns align vertically */
}

.banner-left,
.banner-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === Typography & Highlights === */
.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.highlight {
  color: #00ff88;
  font-weight: 600;
}

.fa-check {
  color: #00ff88;
  margin-right: 8px;
}

/* === Call-to-Action Button === */


/* === Form Card === */
.form-card {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  color: #333333;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1200px) and (max-width: 1280px ) {
  .form-card {        
        margin-top: 26px;
        margin-bottom: 10px;
  }
}

/* === Animations === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}

.banner-left {
  animation: slideInLeft 1s ease-out 0.3s both;
}

.banner-right {
  animation: slideInRight 1s ease-out 0.6s both;
}

/* === Responsive Styles === */
@media (max-width: 768px) {
  .banner-left,
  .banner-right {
    display: none;
  }

  .banner-section {
    padding: 200px 0;
  }
}

/* === Mobile Info Section === */
.mobile-banner-info {
  display: none;
}

@media (max-width: 768px) {
  .mobile-banner-info {
    display: block;
    background-color: #333333;
    color: #f8f8f8;
    text-align: center;
    padding: 40px 20px;
  }

  .mobile-banner-info .highlight {
    color: #00ff88;
    font-weight: 600;
  }

  .mobile-banner-info .fa-check {
    color: #00ff88;
    margin-right: 8px;
  }

  .mobile-banner-info .cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #9B2C65;
    border: none;
    color: #f8f8f8;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 30px;
    text-align: center;
  }
}


/* Banner Section */

/* Emaar Sector 86 Overview */
@media (min-width: 1300px) {
.download-btn{
    width: 50%;
}
}
.cta-btn-orange{
     background-color: #9B2C65;
      border: none;
      color: #f8f8f8;
      padding: 12px 25px;
      font-weight: 600;
      border-radius: 30px;
      transition: all 0.3s ease;
}
.fa-overview{
    color: #9B2C65;
}
 .overview-section {
    background-color: #f8f8f8;
  }

  .overview-section h2 {
    color: #333333;
    font-weight: 700;
  }

  .overview-section p {
    color: #f8f8f8;
  }

  .project-details li {
    display: grid;
    grid-template-columns: 30px 150px 1fr; /* icon | label | value */
    gap: 15px;
    align-items: start;
    margin-bottom: 15px;
    font-size: 1rem;
  }

  .project-details li i {
    font-size: 1.2rem;
    margin-top: 3px;
  }

  .project-details .detail-label {
    font-weight: 600;
  }

  .project-details .detail-value {
    line-height: 1.5;
  }

  .cta-btn {
    background-color: #9B2C65;
    color: #f8f8f8;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 25px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
  }

  /* Image Animation */
.animated-image {
  max-width: 100%;
  border-radius: 25px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

/* Active state when in view */
.animated-image.in-view {
  transform: translateY(0);
  opacity: 1;
}

  @keyframes fadeSlideIn {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @media (max-width: 767.98px) {
    .overview-section {
      padding: 40px 15px;
    }
    .project-details li {
      grid-template-columns: 25px 120px 1fr;
    }
  }
/* Emaar Sector 86 Overview */

/* Highlights */ 

.highlights-section {
  background-color: #E9E9ED;
}

.main-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #7a2350, #9B2C65, #c04880);
  margin: 10px auto 0;
  border-radius: 2px;
}

.highlights-list li {
  font-size: 1.05rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  line-height: 1.6;
  background: #f8f8f8;
  padding: 12px 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlights-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.highlights-list i {
  font-size: 1.3rem;
  margin-right: 12px;
}

/* Scroll animation */
.animated-image {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease-out;
  border-radius: 25px;
}
.animated-image.in-view {
  transform: translateY(0);
  opacity: 1;
}
/* Highlights */ 


/* Gallery */
/* Section Styling */

/* Section Background */
.gallery-section {
  background-color: #333333;
}

/* Titles */
.section-subtitle {
  font-weight: 600;
  letter-spacing: 1px;
  color: #f8f8f8;
}

.section-title {
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  padding-bottom: 10px;
  color: #f8f8f8;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  border-radius: 5px;
  background: linear-gradient(to right, #7a2350, #9B2C65, #c04880);
}

/* Gallery Items */
.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures all images crop nicely */
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.gallery-item.large {
  height: 350px; /* equal large row height */
}

.gallery-item.small {
  height: 250px; /* equal small row height */
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .gallery-item.large {
    height: 250px;
  }

  .gallery-item.small {
    height: 200px;
  }
}


/* Gallery */

/* Amenities */

:root {
  --brand-primary: #9B2C65;
  --brand-gradient: linear-gradient(to right, #7a2350, #9B2C65, #c04880);

  --brand-light: #f8f8f8;
}

.amenities-section {
  background: #E9E9ED;
  padding: 80px 0;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #9B2C65;
  border-radius: 18px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(155, 44, 101, 0.25);
  backdrop-filter: blur(8px);
  transform: translateY(0);
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.amenity-card h5 {
  font-weight: 600;
  color: #333333;
  margin-top: 10px;
  font-size: 1rem;
  min-height: 40px; /* ✅ keeps titles visually aligned */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #f8f8f8;
  background: var(--brand-gradient);
  box-shadow: 0 5px 15px rgba(249, 115, 83, 0.4);
  transition: all 0.4s ease;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(249, 115, 83, 0.25);
  border-color: #9B2C65;
}

.amenity-card:hover .icon-wrapper {
  transform: rotate(10deg) scale(1.1);
  background: linear-gradient(to right, #7a2350, #9B2C65, #c04880);
}

/* Fade-up animation when entering viewport */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.amenity-card {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.amenity-card:nth-child(1) { animation-delay: 0.1s; }
.amenity-card:nth-child(2) { animation-delay: 0.2s; }
.amenity-card:nth-child(3) { animation-delay: 0.3s; }
.amenity-card:nth-child(4) { animation-delay: 0.4s; }
.amenity-card:nth-child(5) { animation-delay: 0.5s; }
.amenity-card:nth-child(6) { animation-delay: 0.6s; }


/* Amenities */

/* Layout */

/* ===== LAYOUT SECTION STYLES ===== */
.layout-section {
  background-color: #333333;
  color:#f8f8f8;
}

/* ===== BULLET LIST ===== */
.layout-bullets-wrapper {
  text-align: left; /* Align bullets left */
}

.layout-bullets {
  display: inline-block;
  text-align: left;
  padding-left: 0;
  margin: 0 auto; /* Center wrapper on page */
}

.layout-bullets li {
  font-size: 1.05rem;
  color: #f8f8f8;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.layout-bullets i {
  color: #9B2C65;
  margin-right: 10px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== LAYOUT CARDS ===== */
/* ===== LAYOUT CARDS ===== */
.layout-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #f8f8f8;
  box-shadow: 0 8px 20px rgba(249, 115, 83, 0.15);
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.layout-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(249, 115, 83, 0.25);
}

/* Image fills card */
.layout-card img.plan-img {
  width: 100%;
  height: 250px; /* fixed height for uniformity */
  object-fit: cover; /* crop to fill */
  border-radius: 16px 16px 0 0; /* rounded top corners */
  filter: blur(2px) brightness(0.8);
  transition: all 0.4s ease;
}

/* Hover effect removes blur */
.layout-card:hover img.plan-img {
  filter: blur(0) brightness(1);
}

/* Overlay button centered */
.layout-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* View Plan button */
.view-btn {
  background-color: #9B2C65;
  color: #f8f8f8;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
  transition: all 0.3s;
}

.view-btn:hover {
  background-color: #f8f8f8;
  color: #9B2C65;
  border: 2px solid #9B2C65;
  box-shadow: 0 0 10px rgba(155, 44, 101, 0.4);
}

/* Card title */
.layout-card h5 {
  margin-top: 15px;
  color: #333333;
  font-weight: 600;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .layout-card img.plan-img {
    height: 200px; /* smaller on tablets */
  }
}

@media (max-width: 575px) {
  .layout-card img.plan-img {
    height: 180px; /* smaller on mobile */
  }
}



/* ===== MODAL ===== */

/* Input focus shadow */
.modal-content .form-control:focus {
  border-color: #9B2C65; /* border on focus */
  box-shadow: 0 0 0 0.25rem rgba(155, 44, 101, 0.25); /* soft shadow in brand color */
  outline: none; /* remove default outline */
}

/* Optional: for textarea if any */
.modal-content textarea.form-control:focus {
  border-color: #9B2C65;
  box-shadow: 0 0 0 0.25rem rgba(155, 44, 101, 0.25);
  outline: none;
}

/* Remove focus shadow from buttons if needed */
.modal-content .btn:focus {
  box-shadow: none;
  outline: none;
}


.modal-content {
  border-radius: 12px;
  border: 3px solid #9B2C65;
  padding: 20px;
}

.modal .btn-close {
  border: none;
}



/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .layout-card img.plan-img {
    height: 250px;
  }
}

@media (max-width: 575px) {
  .layout-bullets {
    text-align: left;
    display: block;
  }
}

/* Layout */

/* Configuration */
/* ===== CONFIGURATIONS / PRICING STYLES ===== */
.config-section {
  background-color: #E9E9ED;
}

.config-section .main-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}



.config-card {
  background: #f8f8f8;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.config-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(155, 44, 101, 0.25);
}

.config-card h5 {
  color: #333333;
  margin-bottom: 8px;
}

.config-card .price {
  color: #9B2C65;
  font-weight: 600;
  font-size: 1.25rem;
}

.config-card .unit-size {
  color: #333333;
  font-size: 0.95rem;
}


/* Configuration */

/* Location */


.location-section .main-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.location-section{
    background-color: #f8f8f8;
}


/* Location Points List */
.location-points li {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.location-points i {
  color: #9B2C65;
  font-size: 1.2rem;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 3px; /* Align icon with text */
}

/* Map Image */
.map-img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 991px) {
  .location-points {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .location-points li {
    font-size: 0.95rem;
  }
}


/* Location */

/* About Us */

/* ===== ABOUT EMAAR SECTOR 86 SECTION ===== */
.about-section {
  background-color: #333333;
  color: #f8f8f8;
}

.about-section .main-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}


.about-section .section-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  
  margin-bottom: 10px;
}

.about-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .about-section p {
    text-align: left;
  }
}

/* About Us */

/* FAQ */

/* ===== FAQ SECTION ===== */
.faq-section {
  background-color: #f8f8f8;
  color: #333333;
  padding: 60px 0;
}

.faq-section .main-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 2rem;
  color: #333333;
}

.accordion-item {
  border: none; /* remove default borders */
  margin-bottom: 15px;
  border-radius: 12px; /* uniform rounding */
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  font-weight: 600;
  color: #333333;
  background-color: #fff;
  border: none;
  border-radius: 0;
  padding: 1rem 1.25rem;
  box-shadow: none;
  transition: background-color 0.3s, color 0.3s;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #9B2C65;
  color: #f8f8f8;
}

/* Arrow styling */
.accordion-button::after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23333333' stroke='%23333333' stroke-width='1' d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s, filter 0.3s;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f8f8f8' stroke='%23f8f8f8' stroke-width='1' d='M1.5 10.5l6-6 6 6'/%3E%3C/svg%3E");
}

/* Accordion body styling */
.accordion-body {
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1rem 1.25rem;
  color: #555555;
  background-color: #fdfdfd;
  border-top: 1px solid rgba(0,0,0,0.05); /* subtle separation */
}

/* Uniform border radius for first & last items */
.accordion-item:first-child {
  border-radius: 12px;
}

.accordion-item:last-child {
  border-radius: 12px;
}


/* FAQ */


