/*--------------------------------------------------------------
# General & Typography
--------------------------------------------------------------*/
body {
    font-family: 'Poppins', sans-serif;
    color: #444444;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
}

.section-bg {
    background-color: #EAF3FC;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #0d2c4a;
    bottom: 0;
    left: 0;
}

.section-title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/*--------------------------------------------------------------
# Header / Navigation
--------------------------------------------------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 997;
    transition: all 0.5s;
    padding: 0px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#header.scrolled {
    background: rgba(13, 44, 74, 0.9);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand {
   font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
    color: #fff !important;
    width: 20%;
}

.navbar .nav-link {
    color: #fff;
    padding: 10px 15px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    color: #d1e7ff;
}

/*--------------------------------------------------------------
# Hero Slider Section (Owl Carousel)
--------------------------------------------------------------*/
#hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 44, 74, 0.7);
}

.hero-container {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.hero-slide h1 {
    font-size: 57px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

.hero-slide .lead {
    font-size: 18px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.stats-bar {
    position: relative;
    z-index: 2;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.stat-item p {
    font-size: 15px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

#hero-slider .owl-nav button.owl-prev,
#hero-slider .owl-nav button.owl-next {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    font-size: 24px !important;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#hero-slider .owl-nav button.owl-prev { left: 30px; }
#hero-slider .owl-nav button.owl-next { right: 30px; }

#hero-slider .owl-nav button.owl-prev:hover,
#hero-slider .owl-nav button.owl-next:hover {
    background: rgba(255, 255, 255, 0.5) !important;
}

#hero-slider .owl-dots { display: none; }

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
#partners .partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    height: 80px;
    border:1px solid #dee2e6;
}

#partners .partner-logo img {

    max-height: 50px;
    filter: grayscale(100%);
    transition: 0.3s;
    opacity: 0.7;
    padding: 7px;
}

#partners .partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.slick-slide {
    margin: 0 10px;
}

.slick-prev:before, .slick-next:before {
    color: #0d2c4a;
}

/*--------------------------------------------------------------
# Find Place Section
--------------------------------------------------------------*/
.find-place-tabs {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    padding: 5px;
    display: inline-flex;
    margin-bottom: 40px;
}

.find-place-tabs .nav-link {
    border: none;
    border-radius: 6px;
    color: #444;
    margin: 0 2px;
    font-weight: 500;
    transition: 0.3s;
    padding: 10px 11px;
}

.find-place-tabs .nav-link.active {
    background-color: #0d2c4a;
    color: #fff;
}

.property-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    color: white;
}

.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.property-card:hover img {
    transform: scale(1.05);
}

.property-card .card-img-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.property-card .badge { position: absolute; top: 15px; left: 15px; }
.property-card .badge-featured { left: 90px; }
.property-card .property-info span { margin-left: 15px; }

.properties-overview {
    background-color: #0d2c4a;
    color: white;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.properties-overview h3, .properties-overview p { color: #fff; }

.properties-overview .rounded-circle {
    border-radius: 50% !important;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
}

/*--------------------------------------------------------------
# Services & Why Us Section
--------------------------------------------------------------*/
#services-why-us {
    background: linear-gradient(rgba(13, 44, 74, 0.85), rgba(13, 44, 74, 0.85)), url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?q=80&w=2070&auto=format&fit=crop') center center;
    background-attachment: fixed; /* Added for parallax effect */
    background-size: cover;
    color: white;
    padding: 80px 0;
}

#services-why-us h3 { color: #fff; }
#services-why-us .service-item, #services-why-us .why-us-item { padding: 15px 0; }
#services-why-us .service-item { border-bottom: 1px solid rgba(255,255,255,0.2); }
#services-why-us .why-us-item i { color: #198754; margin-right: 10px; }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
#testimonials .testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

#testimonials .testimonial-card .quote-icon {
    font-size: 48px;
    color: #e9ecef;
    position: absolute;
    top: 20px;
    right: 20px;
}

#testimonials .testimonial-author img {
    width: 70px;
    border-radius: 50%;
    margin-right: 15px;
}

#testimonials .stats-box {
    padding: 30px;
    text-align: center;
}

#testimonials .stats-box h3 { font-size: 36px; }
#testimonials .stars i { color: #ffc107; }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#contact .info-item .icon {
    font-size: 24px;
    margin-right: 15px;
    color: #0d2c4a;
}

#contact .info-item a {
    text-decoration: none;
    color: #444444;
    font-size: 18px;
    font-weight: 500;
}

#contact .form-control { padding: 12px; }

#contact .btn-submit {
    background: #0d2c4a;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background-color: #0d2c4a;
    color: #fff;
    padding: 60px 0 30px 0;
    font-size: 14px;
}

#footer .footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#footer h4 {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}

#footer .footer-links ul { list-style: none; padding: 0; margin: 0; }

#footer .footer-links ul a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    padding: 8px 0;
}

#footer .footer-links ul a:hover { color: #fff; }

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover { background: #0d6efd; color: #fff; }

 #about, #partners, #find-place, #testimonials, #contact, #services-why-us, #partners {
        padding-top:120px;
        padding-bottom: 120px;
    }

/*--------------------------------------------------------------
# RESPONSIVE STYLES
--------------------------------------------------------------*/

/* Tablets and below (stacking columns) */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    #about .col-lg-6:last-child,
    #testimonials .col-lg-7 {
        margin-top: 30px;
    }
    
    .find-place-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .find-place-tabs .nav-item {
        margin-bottom: 5px;
    }
}

/* Large Phones and below */
@media (max-width: 768px) {
    /* Hero Slider */
    .hero-slide, #hero-slider {
        height: auto;
        min-height: 90vh;
    }
    .hero-container {
         padding: 120px 0 60px 0;
         text-align: center;
    }
    .hero-slide h1 {
        font-size: 38px;
        line-height: 1.3;
    }
    .stats-bar { 
        position: static; 
        margin-top: 40px; 
        padding: 20px 0;
    }
    .stat-item { 
        margin-bottom: 20px; 
    }
    .stat-item:last-child { 
        margin-bottom: 0; 
    }
    #hero-slider .owl-nav {
        display: none;
    }

    /* General Section Spacing */
    #about, #partners, #find-place, #testimonials, #contact {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    #services-why-us {
        padding: 60px 0;
    }

    /* Find Place */
    .property-card, .property-card.h-100 {
        height: 350px;
    }
    
    /* Testimonials */
    #testimonials .stats-box {
        padding: 15px;
    }

    /* Contact */
    #contact .info-item {
        font-size: 16px;
    }

    /* Footer */
    #footer {
      
    }
    #footer .footer-links {
        margin-top: 30px;
    }
    #footer .text-md-end {
        text-align: center !important;
    }
}

/* Small Phones */
@media (max-width: 576px) {
    .section-title h2 {
        font-size: 26px;
    }
    
    .hero-slide h1 {
        font-size: 32px;
    }

    .find-place-tabs {
        padding: 5px 0;
    }
    .find-place-tabs .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }
    
    .testimonial-author img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    #contact .info-item {
        justify-content: center;
        width: 100%;
    }
	
	body #testimonials .slick-next {
    right: 26px !important;
    top: 420px !important;
}

	body #testimonials .slick-prev{
  
    top: 420px !important;
}
.navbar-collapse {
   flex-basis: 100%
100%
;
        flex-grow: 1;
        align-items: center;
        background: #0d2c4a;
       
        padding: 13px 0px;
      
        position: absolute;
        width: 100%;
        left: 0px;
        top: 64px;
}

#partners .slick-prev{ display:none!important}
#partners .slick-next{ display:none!important}
.mobile-imagea img{ width:100%}

}


.scrolled{ background:#0d2c4a}

#testimonials .slick-next {
    right: 26px!important;
    top: 289px!important;
}


#testimonials .slick-prev{
  right: 95px !important;
    left: auto !important;
    top: 289px !important;
}


.innerboeq{ background:#fff; padding:20px;border-radius: 10px;}
#testimonials .slick-next{width: 60px;
    height: 60px;
    border-radius: 80px; background:#fff!important;}
#testimonials .slick-prev{width: 60px;
    height: 60px;
    border-radius: 80px; background:#fff!important;}