/* ============================================= */
/* =========== Google Fonts & Variables ======== */
/* ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

:root {
    --primary-color: #ff914d;
    --secondary-color: #2c3e50;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    /* --font-family: 'Poppins', sans-serif; */
    --font-family: 'Outfit', sans-serif;
}

/* ============================================= */
/* =============== Base Styles ================= */
/* ============================================= */
body {
    font-family: var(--font-family);
    color: var(--secondary-color);
    line-height: 1.7;
        overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark-color);
}
a {
    text-decoration: none;
    transition: all 0.3s ease;
}
.about-section img 
{
    background:none !important;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #e67e3a;
    border-color: #e67e3a;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* ============================================= */
/* ================= Header ==================== */
/* ============================================= */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    padding: 5px 0;
    box-shadow: none;
}
.header.header-scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.navbar-brand .logo {
    max-height: 50px;
}
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}
.offcanvas {
    background-color: var(--white-color);
    z-index:9999;
    height: 100vh !important;
    width: 100% !important;
}
.swiper-slide .value-card 
{
    transition: all .5s ease-in-out;
}

.swiper-slide .value-card:hover  
{
    background-color: var(--primary-color);
    color: var(--white-color);
}

.swiper-slide .value-card:hover  i, .swiper-slide .value-card:hover  h4 
{
    color:#fff;
}

/* ============================================= */
/* ================= Banner ==================== */
/* ============================================= */

.banner-section  h4 
{
    color: #000;
    /* background:rgba(244, 244, 244, 0.6);; */
    border-radius: 20px;
    padding: 10px 20px;
    margin-top:50px;
}

.banner-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: top;
    /*height:600px;*/
    position: relative;
    color: var(--white-color);

}
.banner-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
}
.slider-content {
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    margin-top:30px;
}
/* .slider-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1rem;
    margin-top:3rem;
}
.slider-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
} */
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
    color: #000;
    background-color: rgba(249, 247, 247, 0.537);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    top:57%;
    
}
.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.banner-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.banner-swiper .swiper-button-prev::after,
.banner-swiper .swiper-button-next::after {
    font-size: 1rem; /* You can adjust this value (e.g., 2rem) */
}

.banner-swiper .swiper-pagination-bullet 
{
    background-color:#fff;
    opacity:0.7;
}
.banner-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

/* ============================================= */
/* =============== Counter Section ============== */
/* ============================================= */
.counter-section {
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
}
.counter-section h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color);
}
.counter-section h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================= */
/* ============== Projects Section ============== */
/* ============================================= */
.project-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.project-card img 
{
    width: 100%;
    height:200px;
    object-fit: cover;
    object-position: top;
}
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.project-card .card-body {
    padding: 1.5rem;
}
.project-card .card-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.project-card .card-text {
    margin-bottom: 0.5rem;
}
.project-card .card-footer {
    background-color: var(--white-color);
    border-top: 1px solid #eee;
}
.project-card .card-footer a 
{
    background: linear-gradient(to left, #fff 50%, var(--primary-color) 0%);
    background-size:200% 100%;
    background-position: right;
    transition: all .5s ease;
}
.project-card .card-footer a:hover 
{
    background-position: left;
    outline: none;
    border: none;
}

/* ============================================= */
/* ============ Upcoming Projects =============== */
/* ============================================= */
.upcoming-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    height: 100%;
}
.upcoming-card:hover {
    transform: translateY(-10px);
    background-color: var(--primary-color);
}
.upcoming-card:hover h3,
.upcoming-card:hover p,
.upcoming-card:hover .icon-wrapper i {
    color: var(--white-color);
}
.upcoming-card .icon-wrapper {
    background-color: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.upcoming-card:hover .icon-wrapper {
    background-color: var(--white-color);
}
.upcoming-card:hover .icon-wrapper i {
    color: var(--primary-color);
}
.upcoming-card .icon-wrapper i {
    color: var(--white-color);
    transition: all 0.3s ease;
}
.upcoming-card h3 {
    margin-bottom: 1rem;
}

/* ============================================= */
/* ============ Building More Section =========== */
/* ============================================= */
.value-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}
.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.swiper-navigation-buttons {
    position: relative;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.swiper-navigation-buttons .swiper-button-prev,
.swiper-navigation-buttons .swiper-button-next {
    position: static;
    margin: 0;
    width: 45px;
    height: 45px;
    background: var(--white-color);
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.swiper-navigation-buttons .swiper-button-prev:hover,
.swiper-navigation-buttons .swiper-button-next:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}
.swiper-navigation-buttons .swiper-button-prev::after,
.swiper-navigation-buttons .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 900;
}

.building-section .swiper-pagination,
.testimonials-section .swiper-pagination {
    position: static;
    margin-top: 2rem;
}
.building-section .swiper-pagination-bullet-active,
.testimonials-section .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}


/* ============================================= */
/* ============ Why Choose Us Section =========== */
/* ============================================= */
.why-choose-us-section .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px !important;
    overflow: hidden;
}
.why-choose-us-section .accordion-button {
    font-weight: 600;
    color: var(--dark-color);
}
.why-choose-us-section .accordion-button:not(.collapsed) {
    color: var(--white-color);
    background-color: var(--primary-color);
    box-shadow: none;
}
.why-choose-us-section .accordion-button:focus {
    box-shadow: none;
}
.why-choose-us-section .accordion-button::after {
    filter: brightness(0) invert(1);
}
.final-tagline {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================= */
/* =============== Testimonials ================ */
/* ============================================= */
.testimonial-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}
.testimonial-card .rating {
    color: #f1c40f;
    margin-bottom: 1rem;
}
.testimonial-card p {
    /* font-style: italic; */
    margin-bottom: 1.5rem;
}
.client-info {
    display: flex;
    align-items: center;
}
.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}
.client-info h5 {
    margin-bottom: 0;
}
.client-info span {
    font-size: 0.9rem;
    color: #777;
}

/* ============================================= */
/* =================== Footer ================== */
/* ============================================= */
.footer-section {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
}
.footer-section h5 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-section a:hover {
    color: var(--primary-color);
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.footer-contact i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    width: 20px;
}
.social-icons .social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    margin-right: 10px;
}
.social-icons .social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}
.footer-section hr {
    border-color: rgba(255,255,255,0.1);
}
.footer-section .footer-logo {
    max-width: 250px;
}

/* ============================================= */
/* ============== Floating Buttons ============= */
/* ============================================= */
.whatsapp-float, .back-to-top-float {
    position: fixed;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--white-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}
.back-to-top-float i 
{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:1.5rem;
    margin-top:15px;
}
.whatsapp-float {
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
}
.back-to-top-float {
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    display: none; /* Hidden by default */
}
.whatsapp-float:hover, .back-to-top-float:hover {
    transform: scale(1.1);
    color: var(--white-color);
}

/* ============================================= */
/* ============== Responsiveness =============== */
/* ============================================= */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin: 10px 0;
        text-align: center;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .contact-btn {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
    .slider-title {
        font-size: 2.5rem;
    }
    .slider-subtitle {
        font-size: 1rem;
    }
    .about-section .text-center {
        text-align: left !important;
        margin-top:0px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    /* .banner-swiper .swiper-button-next,
    .banner-swiper .swiper-button-prev {
        display: none;
    } */
    .counter-section h3 {
        font-size: 2.5rem;
    }
    .about-section .text-center {
        text-align: left !important;
        margin-top:0px;
    }
}



/* Realestate section css */
.Realestte-services .lead
{
    max-width: 800px;
    margin: auto;
}
.Realestte-services .card 
{
    padding: 20px !important;
    border-left: 5px solid var(--primary-color);
    text-align: start;
    margin-bottom:0px !important;
}
.Realestte-services .card p 
{
    line-height:0px;
}
@media screen and (max-width: 768px)
{
   .Realestte-services .card p 
    {
        line-height:30px;
    } 
}
.Realestte-services .card  h3 
{
    font-size: 1.2rem;
    margin-top: -20px;
    margin-bottom:0px;
}
.Realestte-services .column-title
{
    color: var(--primary-color);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.Realestte-services {
    background: var(--white-color);
    padding: 10px 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    height: 100%;
}
.Realestte-services .icon-wrapper {
    background-color: #FFF5EB;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.Realestte-services .icon-wrapper i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}


/* Timeline section css */
.services-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-weight: 700;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 15px auto 0;
}

/* --- Timeline Styles --- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* The static, grey timeline line */
.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #e9ecef;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

/* The animated, colored timeline line */
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color:var(--primary-color); /* Active line color */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
    height: var(--line-height, 0); /* Controlled by JS */
    transition: height 0.3s ease-out;
    z-index: 1;
}


.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

/* The circle icon on the timeline */
.timeline-item .timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #FFF5EB;
    border: 1px solid #000;
    top: 0px;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Position items on the left */
.timeline-item.left {
    left: 0;
}
.timeline-item.left .timeline-icon {
    right: -20px;
}

/* Position items on the right */
.timeline-item.right {
    left: 50%;
}
.timeline-item.right .timeline-icon {
    left: -20px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}



.timeline-content ul li:last-child {
    margin-bottom: 0;
}

.timeline-content ul li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

/* --- FINAL & DEFINITIVE RESPONSIVE STYLES --- */
@media screen and (max-width: 991px) {
    /* Move the timeline line to the left */
    .timeline::before,
    .timeline::after {
        left: 20px;
        margin-left: 0;
    }

    /* Adjust all items to be full-width */
    .timeline-item {
        width: 100%;
        padding-left: 70px; /* Provide space for the icon */
        padding-right: 20px;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    /*
    --- THE SPECIFICITY FIX ---
    This new, more specific selector targets the icons inside BOTH
    .left and .right items, ensuring it overrides the desktop styles
    for all timeline items on mobile.
    */
    .timeline-item.left .timeline-icon,
    .timeline-item.right .timeline-icon {
        left: 20px;
        transform: translateX(-50%);
        right: auto;
    }
}