 body {
     font-family: 'Poppins', sans-serif;
     background-color: #f4f4f4;
     color: #333;
 }


 .bg-primary,
 .bg-dark {
     background-color: #2c3e50 !important;
 }

 /* Carousel Styling */
 .hero-carousel {
     height: 600px;
     overflow: hidden;
     position: relative;
     /* Space for search box */
 }

 .carousel-indicators [data-bs-target] {
     background-color: #2c3e50;
 }

 .hero-carousel .carousel-item {
     height: 600px;
     position: relative;
     background: #ffffff;
 }

 .hero-carousel .carousel-item .carousel-text {
     position: absolute;
     top: 45%;
     width: 100%;
     text-align: center;
     color: #2c3e50;
 }

 .hero-carousel .carousel-item .carousel-title {
     font-size: 2.5rem;
     font-weight: bold;
 }

 .hero-carousel .carousel-item .carousel-subtitle {
     font-size: 1.2rem;
     margin-bottom: 30px;
     opacity: 0.9;
 }


 .hero-section {
     background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
     color: white;
     min-height: 60vh;
     display: flex;
     align-items: center;
 }

 .logo-section {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .logo-icon {
     width: 50px;
     height: 50px;
     background: white;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #2c3e50;
     font-size: 24px;
 }

 .logo-icon img {
     width: 250px;
     margin-top: 2rem;
 }

 .brand-text {
     font-size: 1.8rem;
     font-weight: bold;
     margin: 0;
 }

 .brand-subtitle {
     font-size: 0.9rem;
     opacity: 0.9;
     letter-spacing: 2px;
     margin: 0;
 }

 .hero-title {
     font-size: 4rem;
     font-weight: bold;
     line-height: 1.1;
     margin-bottom: 1.5rem;
 }

 .hero-subtitle {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     opacity: 0.95;
 }

 .hero-description {
     font-size: 1.1rem;
     opacity: 0.9;
     max-width: 600px;
 }

 .content-section {
     background: #f8f9fa;
 }

 .section-title {
     font-size: 1.8rem;
     font-weight: bold;
     color: #2c3e50;
     margin-bottom: 1.5rem;
 }

 .check-item {
     display: flex;
     align-items: center;
     margin-bottom: 0.8rem;
 }

 .check-icon {
     color: #27ae60;
     margin-right: 10px;
     font-size: 1.1rem;
 }

 .cta-button {
     background: #2c3e50;
     color: white;
     padding: 12px 30px;
     border: none;
     border-radius: 5px;
     font-weight: 600;
     text-decoration: none;
     display: inline-block;
     transition: all 0.3s ease;
 }

 .cta-button:hover {
     background: #34495e;
     color: white;
     transform: translateY(-2px);
 }

 .insight-box {
     background: white;
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     margin-bottom: 20px;
 }

 .footer-section {
     background: #2c3e50;
     color: white;
     padding: 40px 0;
 }

 @media (max-width: 768px) {
     .hero-title {
         font-size: 2.5rem;
     }

     .hero-subtitle {
         font-size: 1.2rem;
     }

     .brand-text {
         font-size: 1.4rem;
     }

     .hero-section {
         padding: 3rem 1rem 3rem 1rem;
     }
 }

 .chart-container {
     position: relative;
     width: 100%;
     margin-top: 20px;
     background: linear-gradient(135deg, rgba(20, 30, 48, 0.9) 0%, rgba(30, 40, 60, 0.8) 100%);
     border-radius: 10px;
     padding: 20px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 }

 .chart-title {
     font-size: 16px;
     font-weight: bold;
     margin-bottom: 10px;
     color: #FFFFFF;
     text-align: left;
 }

 .chart-source {
     font-size: 11px;
     color: rgba(255, 255, 255, 0.6);
     position: absolute;
     bottom: 8px;
     left: 20px;
 }

 .dubai-areas-section {
     background: white;
     padding: 80px 0;
 }

 .areas-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     grid-auto-rows: 200px;
     gap: 20px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .area-card {
     position: relative;
     border-radius: 15px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .area-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .large-card {
     grid-row: span 2;
     grid-column: span 2;
 }

 .medium-card {
     grid-row: span 2;
 }

 .small-card {
     grid-row: span 1;
 }

 .area-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     /* background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(52, 73, 94, 0.5) 100%); */
     background: linear-gradient(135deg, rgb(0 0 0 / 70%) 0%, rgba(52, 73, 94, 0.5) 100%);
     display: flex;
     align-items: flex-end;
     padding: 25px;
     transition: all 0.3s ease;
 }

 .area-card:hover .area-overlay {
     background: linear-gradient(135deg, rgb(0 0 0 / 80%) 0%, rgba(52, 73, 94, 0.6) 100%);
 }

 .area-content {
     color: white;
     width: 100%;
 }

 .property-count {
     font-size: 14px;
     opacity: 0.9;
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
 }

 .area-name {
     font-size: 1.8rem;
     font-weight: bold;
     margin-bottom: 15px;
     color: white;
 }

 .more-details-btn {
     background: rgba(255, 255, 255, 0.2);
     border: 1px solid rgba(255, 255, 255, 0.3);
     color: white;
     padding: 8px 15px;
     border-radius: 25px;
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 8px;
     backdrop-filter: blur(10px);
 }

 .more-details-btn:hover {
     background: rgba(255, 255, 255, 0.3);
     border-color: rgba(255, 255, 255, 0.5);
     transform: translateX(5px);
 }

 .more-details-btn i {
     font-size: 10px;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .areas-grid {
         grid-template-columns: 1fr;
         grid-auto-rows: 250px;
     }

     .large-card,
     .medium-card,
     .small-card {
         grid-row: span 1;
         grid-column: span 1;
     }

     .area-name {
         font-size: 1.5rem;
     }

     .dubai-areas-section {
         padding: 60px 0;
     }
 }

 @media (max-width: 992px) {
     .large-card {
         grid-column: span 1;
     }
 }

 .blog-section {
     background: white;
     padding: 80px 0;
 }

 .featured-blog-card {
     background: white;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .featured-blog-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .featured-blog-card .blog-image {
     height: 250px;
     background-size: cover;
     background-position: center;
     position: relative;
 }

 .featured-blog-card .blog-content {
     padding: 30px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .featured-blog-card .blog-category {
     background: #2c3e50;
     color: white;
     padding: 6px 12px;
     border-radius: 15px;
     font-size: 12px;
     font-weight: 600;
     display: inline-block;
     margin-bottom: 15px;
 }

 .featured-blog-card .blog-title {
     font-size: 1.5rem;
     font-weight: bold;
     color: #2c3e50;
     margin-bottom: 15px;
     line-height: 1.4;
 }

 .featured-blog-card .blog-title a {
     color: inherit;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .featured-blog-card .blog-title a:hover {
     color: #34495e;
 }

 .featured-blog-card .blog-excerpt {
     color: #666;
     line-height: 1.6;
     margin-bottom: 20px;
     flex-grow: 1;
 }

 .featured-blog-card .blog-meta {
     display: flex;
     gap: 15px;
     font-size: 13px;
     color: #888;
     border-top: 1px solid #eee;
     padding-top: 15px;
 }

 .blog-card-small {
     background: white;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     height: 120px;
 }

 .blog-card-small:hover {
     transform: translateX(5px);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
 }

 .blog-image-small {
     height: 120px;
     background-size: cover;
     background-position: center;
 }

 .blog-content-small {
     padding: 15px;
     height: 120px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .blog-category-small {
     background: #f8f9fa;
     color: #2c3e50;
     padding: 3px 8px;
     border-radius: 10px;
     font-size: 10px;
     font-weight: 600;
     display: inline-block;
     margin-bottom: 8px;
 }

 .blog-title-small {
     font-size: 0.95rem;
     font-weight: 600;
     color: #2c3e50;
     margin-bottom: 8px;
     line-height: 1.3;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .blog-title-small a {
     color: inherit;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .blog-title-small a:hover {
     color: #34495e;
 }

 .blog-meta-small {
     display: flex;
     gap: 10px;
     font-size: 11px;
     color: #999;
 }

 @media (max-width: 768px) {
     .blog-section {
         padding: 60px 0;
     }

     .featured-blog-card .blog-image {
         height: 200px;
     }

     .featured-blog-card .blog-content {
         padding: 20px;
     }

     .featured-blog-card .blog-title {
         font-size: 1.3rem;
     }

     .blog-card-small {
         margin-bottom: 15px;
     }

     .blog-meta {
         flex-wrap: wrap;
         gap: 10px !important;
     }

     .navbar-toggler {
         position: absolute;
         right: 10px;
     }

 }

 .para-text {
     font-weight: 500;
     line-height: 30px;
 }

 /* Carousel Styling */
 .about-carousel {
     height: 450px;
     overflow: hidden;
     position: relative;
     /* Space for search box */
 }

 .carousel-indicators [data-bs-target] {
     background-color: #2c3e50;
 }

 .about-carousel .carousel-item {
     height: 450px;
     position: relative;
     background: #ffffff;
 }

 .about-carousel .carousel-item .row {
     position: absolute;
     top: 20%;
     left: 20%;
     width: 100%;
 }

 .about-carousel .carousel-item .row .para-text {
     font-style: italic;
 }