﻿/*Auther: YENETCH*/
/*Date Created: 05 August 2025*/
/*Project: Sanjeevni Build Home*/


.banner-btns {
    text-align: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 13px;
}

.banner-btns .btn-banner {
    margin: 0 10px;
    padding: 10px 20px;
    background: #e41f25;
    color: white;
    border-radius: 50px;
}



.banner-btns .btn-banner:hover {
    background: #e7c873;
    /* color: black; */
}


/*MEGA-MENU*/
/* Mega Menu Specific Styles */
.mega-menu-parent {
    position: relative;
}

.mega-menu-dropdown {
    height: 285px;
    position: absolute;
    top: 100%;
    left: -100px;
    width: 750px;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.mega-menu-parent:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    display: flex;
    min-height: 400px;
}

/* Left Sidebar - Locations */
.location-sidebar {
    width: 200px;
    background: #f8f9fa;
    border-radius: 8px 0 0 8px;
    padding: 20px 0;
}

.location-item {
    padding: 10px 29px;
    cursor: pointer;
    /* border-bottom: 1px solid #e9ecef; */
    transition: all 0.3s ease;
    position: relative;
    border-right: 1px solid red;
}

    .location-item:hover, .location-item.active
    {
        color: #e74c3c;
        /* color: white; */
    }

        .location-item.active::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 8px solid #ffffff;
        }

.location-name {
    font-weight: 500;
    font-size: 14px;
}

/* Right Side - Project Cards */
.projects-content {
    flex: 1;
    padding: 35px 12px 20px 20px;
    /* overflow-y: auto; */
    max-height: 284px;
}
.project-scroll {
    overflow-y: auto;
    max-height: 230px;
    padding: 10px;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.project-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .project-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.project-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-details
{
    padding: 5px 15px;
}

    .project-details h4 {
        margin: 0 0 5px 0;
        font-size: 16px;
        font-weight: 600;
        color: #2c3e50;
    }

.project-location {
    margin: 0 0 10px 0;
    font-size: 12px;
    color: #7f8c8d;
}

.project-features {
    margin-bottom: 10px;
}

.feature-tag {
    display: inline-block;
    background: #e8f5e8;
    color: #27ae60;
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 3px;
    margin-right: 5px;
    margin-bottom: 3px;
}

.project-link {
    display: inline-block;
    color: #e74c3c;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

    .project-link:hover {
        border-bottom-color: #e74c3c;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .mega-menu-dropdown {
        width: 100vw;
        left: -50vw;
        margin-left: 50%;
    }

    .mega-menu-container {
        flex-direction: column;
    }

    .location-sidebar {
        width: 200px;
        /* background: #f8f9fa; */
        border-radius: 8px 0 0 8px;
        padding: 35px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.box-dream .image img {
    width: 100%;
    height: 250px !Important;
    object-fit: cover;
}

/* width */
.mega-menu-container ::-webkit-scrollbar {
    width: 4px;
}

/* Track */
.mega-menu-container ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 4px;
}

/* Handle */
.mega-menu-container ::-webkit-scrollbar-thumb {
    background: red;
    border-radius: 3px;
}

    /* Handle on hover */
    .mega-menu-container ::-webkit-scrollbar-thumb:hover {
        background: #b30000;
    }


.vision .avatar-image {
    margin-bottom: 30px;
}

.vision.director {
    padding: 60px 40px;
    background: #f7f7f7;
    border-radius: 30px;
}
.vision .avatar-image img {
    border: 2px solid;
}

.flat-title.inner-page.thinner
{
    border-radius: 24px;
    background-image: url(../images/section/page-title-about.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 50px;
    height: 191px;
}

.mar-b-l {
    margin-bottom: 150px;
}

.mar-t-l {
    margin-top: 150px;
}

section {
    border-radius: 30px;
}