@import 'https://fonts.googleapis.com/css?family=Montserrat:700|Roboto:400,700';

:root {
    --primary-green: #28a745;
    --dark-green: #1e7e34;
    --light-green: #e8f5e8;
    --gray: #6c757d;
    --dark: #343a40;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

/* Home page starts */

.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 1.6rem;
    padding-bottom: 10px;
    padding-left: 30px !important;
    text-decoration: none;
}

.nav-link:focus {
    outline: none;
}

.navbar-brand:focus {
    outline: none;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    text-decoration: underline;
}

.navbar-brand img {
    /*height: 50px;*/
    height: 16rem;
    width: auto; /*16rem;*/
    margin-top: -5rem;
}
/* Hero Slider - Auto-scroll only, no indicators */
.carousel-hero {
    height: 100vh;
    position: relative;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

    .carousel-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
    }

.carousel-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
}

    .carousel-content h1 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        animation: fadeInUp 1s ease-out;
    }

    .carousel-content p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        animation: fadeInUp 1s ease-out 0.2s both;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Hide carousel indicators */
.carousel-indicators {
    display: none !important;
}
/* Enhanced carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    opacity: 0.8;
    transition: all 0.3s;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
        transform: scale(1.1);
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-size: 20px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: white;
    transform: scale(1.1);
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.4s both;
}

    .btn-outline-custom:hover {
        background: white;
        color: var(--primary-green);
        transform: translateY(-2px);
    }

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 1rem;
    }

.features .card {
    border: none;
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s;
}

    .features .card:hover {
        transform: translateY(-10px);
    }

.features i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.services .card {
    border: none;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

    .services .card:hover {
        transform: translateY(-5px);
    }

.services .card-img-top {
    height: 250px;
    object-fit: cover;
}

.cta {
    background: var(--primary-green);
    color: white;
    padding: 4rem 0;
}

.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
}

    .footer img {
        height: 17rem;
        margin-bottom: -5rem;
        margin-top: -5rem;
    }

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 8%;
    }

    .carousel-content h1 {
        font-size: 2.5rem;
    }

    .carousel-content p {
        font-size: 1.2rem;
    }
}

/* Home page ends */

/* Customise home starts */

.hero-custom {
    background: linear-gradient(rgb(28 70 10), rgba(40, 167, 69, 0.8)), url(CutomizeHome.jpg) center / cover no-repeat;
    height: 46vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

    .hero-custom h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 1rem;
    }

.amenities .card {
    border: none;
    text-align: center;
    padding: 2rem;
    transition: all 0.3s;
    background: var(--accent);
    border-radius: 15px;
}

    .amenities .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

.amenities i {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.process .step {
    text-align: center;
    padding: 2rem;
}

.process .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

#portfolio-list .portfolio-item {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    overflow: hidden;
}

    #portfolio-list .portfolio-item img {
        width: 100%;
        height: 300px; /* Set your desired height */
        object-fit: cover;
        display: block;
    }

.gallery img {
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

    .gallery img:hover {
        transform: scale(1.05);
    }

.cta-custom {
    background: var(--dark);
    color: white;
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .hero-custom h1 {
        font-size: 2.5rem;
    }
}

/* Customise home ends */

/* House plan starts */

.hero-plans {
    background: linear-gradient(rgb(28 70 10), rgba(40, 167, 69, 0.8)), url(CutomizeHome.jpg) center / cover no-repeat;
    height: 46vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

    .hero-plans h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.section-title {
    text-align: center;
    margin: 4rem 0;
}

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--gray-dark);
        margin-bottom: 1rem;
    }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: var(--gray-dark);
    color: white !important;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

    .plan-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

.plan-image {
    height: 250px;
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

    .plan-image::after {
        content: attr(data-icon);
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
    }

.plan-content {
    padding: 2rem;
    text-align: center;
}

.plan-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #23923c;
}

.plan-details {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.plan-cta {
    background: #3b8741;
    color: white;
    padding: 10px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s;
    font-size: 1.5rem;
}

    .plan-cta:hover {
        background: var(--dark-green);
        color: white;
        transform: translateY(-2px);
    }

.cta-section {
    background: var(--primary-green);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.footer {
    background: var(--gray-dark);
    color: white;
    padding: 3rem 0 1rem;
}

@media (max-width: 768px) {
    .hero-plans h1 {
        font-size: 2.5rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }
}

/* House plan ends */

/* Image Gallery Slider */
.main-image {
    height: 500px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.thumbnail-container {
    position: relative;
    background: var(--light-gray);
    border-radius: 0 0 20px 20px;
    padding: 1rem;
}

.thumbnail-slider {
    display: flex;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) transparent;
    overflow: hidden;
}

    .thumbnail-slider::-webkit-scrollbar {
        height: 6px;
    }

    .thumbnail-slider::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .thumbnail-slider::-webkit-scrollbar-thumb {
        background: var(--primary-green);
        border-radius: 3px;
    }

.thumbnail-img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    flex-shrink: 0;
}

    .thumbnail-img.active,
    .thumbnail-img:hover {
        border-color: var(--primary-green);
        transform: scale(1.05);
    }

@media (max-width: 768px) {
    .main-image {
        height: 350px;
    }

    .thumbnail-img {
        width: 80px;
        height: 60px;
    }
}

.hero-detail {
    background: linear-gradient(rgb(28 70 10), rgba(40, 167, 69, 0.8)), url(CutomizeHome.jpg) center / cover no-repeat;
    min-height: 42vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

    .hero-detail h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.breadcrumb-custom {
    background: var(--light-gray);
    padding: 1rem 0;
}

.plan-overview {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 3rem 0;
}

.overview-image {
    height: 400px;
    object-fit: cover;
}

.features-table {
    background: var(--light-gray);
}

    .features-table th {
        background: var(--primary-green) !important;
        color: white !important;
        font-weight: 600 !important;
    }

.amenities-grid {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.amenity-item {
    text-align: center;
    padding: 1.5rem;
    border-right: 1px solid #eee;
}

    .amenity-item:last-child {
        border-right: none;
    }

.amenity-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.floorplan-container {
    position: relative;
    /*height: 500px;*/
    background: #f0f0f0;
    border: 2px dashed var(--primary-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.floorplan-placeholder {
    font-size: 4rem;
    color: var(--primary-green);
    opacity: 0.5;
    text-align: center;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 4rem 0;
    text-align: center;
   /* border-radius: 20px;
    margin: 3rem 0;*/
}

.btn-custom {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border: none !important;
    padding: 15px 40px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s !important;
    color: #fff !important;
}

    .btn-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(40,167,69,0.4);
    }

.back-to-plans {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

    .back-to-plans:hover {
        color: var(--dark-green);
    }

@media (max-width: 768px) {
    .hero-detail {
        min-height: 50vh;
    }

        .hero-detail h1 {
            font-size: 2.2rem;
        }

    .overview-image {
        height: 300px;
    }

    .amenity-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

        .amenity-item:last-child {
            border-bottom: none;
        }
}

/* House plan details ends */

/* Services starts */

.hero-services {
    background: linear-gradient(rgb(28 70 10), rgba(40, 167, 69, 0.8)), url(CutomizeHome.jpg) center / cover no-repeat;
    min-height: 42vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

    .hero-services h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }

.service-image {
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2.5rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.features-list {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

    .features-list li {
        margin-bottom: 0.8rem;
        position: relative;
        font-size: 1.5rem;
        list-style: none;
    }

        .features-list li::before {
            content: "✓";
            color: var(--primary-green);
            font-weight: bold;
            position: absolute;
            left: -1.5rem;
        }

.cta-section {
    background: var(--primary-green);
    color: white;
    padding: 4rem 0;
    text-align: center;
  /*  border-radius: 20px;
    margin: 4rem 0;*/
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-services h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Services ends */

/* Gallery starts */

.hero-gallery {
    background: linear-gradient(rgb(28 70 10), rgba(40, 167, 69, 0.8)), url(CutomizeHome.jpg) center / cover no-repeat;
    min-height: 42vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

    .hero-gallery h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

#portfolio {
    display: inline-block;
    margin-top: 60px;
}

#contnet {
    padding: 60px 0;
    display: inline-block;
}

.controls {
    margin: 25px 0;
}

    .controls a {
        display: inline-block;
        border-radius: 2px;
        cursor: pointer;
        margin: 0 5px;
        color: #666;
        text-transform: uppercase;
        border: 1px solid #4caf50;
        padding: 10px 15px;
        -webkit-transition: all .9s ease;
        -moz-transition: all .9s ease;
        -ms-transition: all .9s ease;
        -0-transition:all0.9sease;
        transition: all .9s ease;
    }

        .controls a:hover, .controls .active {
            background: #4caf50;
            color: #fff;
        }

#portfolio-list .mix {
    display: none;
}

#products .mix {
    display: none;
}

#portfolio-list .mix {
    padding-left: 0;
    padding-right: 0;
}

.portfolio-item {
    overflow: hidden;
    display: block;
    position: relative;
}

    .portfolio-item img {
        zoom: 1;
        width: 100%;
        -webkit-transition: all .9s ease;
        -moz-transition: all .9s ease;
        -ms-transition: all .9s ease;
        -0-transition:all0.9sease;
        transition: all .9s ease;
    }

    .portfolio-item:hover img {
        -webkit-transform: scale(1.4);
        -moz-transform: scale(1.4);
        -ms-transform: scale(1.4);
        -0-transform:scale(1.4);
        transform: scale(1.4);
    }

    .portfolio-item .overlay {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: rgba(43,44,48,.8);
        opacity: 0;
        filter: alpha(opacity=0);
        padding: 30px;
        -webkit-transition: all 600ms ease-out 0s;
        -moz-transition: all 600ms ease-out 0s;
        -o-transition: all 600ms ease-out 0s;
        transition: all 600ms ease-out 0s;
    }

    .portfolio-item .icon {
        left: 0;
        right: 0;
        width: 42%;
        top: 40%;
        text-align: center;
        position: absolute;
        opacity: 0;
        margin: 0 auto;
        -webkit-transition: all 600ms ease-out 0s;
        -moz-transition: all 600ms ease-out 0s;
        -o-transition: all 600ms ease-out 0s;
        transition: all 600ms ease-out 0s;
    }

        .portfolio-item .icon i {
            width: 48px;
            height: 48px;
            font-size: 18px;
            text-align: center;
            margin-right: 5px;
            display: inline-block;
            margin-left: 5px;
            border: 1px solid #fff;
            color: #fff;
            line-height: 48px;
            -webkit-transition: all .4s ease;
            -moz-transition: all .4s ease;
            transition: all .4s ease;
        }

            .portfolio-item .icon i:hover {
                color: #4caf50;
                border-color: #4caf50;
            }

        .portfolio-item .icon .left {
            -webkit-transform: translateY(25px);
            -moz-transform: translateY(25px);
            transform: translateY(25px);
        }

        .portfolio-item .icon .right {
            -webkit-transform: translateY(-25px);
            -moz-transform: translateY(-25px);
            transform: translateY(-25px);
        }

    .portfolio-item .content {
        width: 100%;
        position: absolute;
        bottom: 30px;
        left: 0;
        opacity: 1;
        margin: 0 auto;
        padding: 10px 22px;
        text-align: center;
        -webkit-transform: translateY(90px);
        -moz-transform: translateY(90px);
        transform: translateY(90px);
        -webkit-transition: all .4s ease-in-out 0s;
        -moz-transition: all .4s ease-in-out 0s;
        -ms-transition: all .4s ease-in-out 0s;
        -0-transition:all0.4sease-in-out0s;
        transition: all .4s ease-in-out 0s;
    }

        .portfolio-item .content h3 {
            color: #31302c;
            font-size: 18px;
            text-transform: uppercase;
            font-weight: 400;
            line-height: 33px;
        }

            .portfolio-item .content h3 a {
                color: #fff;
            }

        .portfolio-item .content p {
            color: #fff;
            font-size: 16px;
        }

    .portfolio-item:hover .overlay {
        opacity: 1;
        filter: alpha(opacity=100);
        visibility: visible;
    }

    .portfolio-item:hover .icon {
        opacity: 1;
        filter: alpha(opacity=100);
        visibility: visible;
    }

    .portfolio-item:hover .left {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transform: translateY(0px);
    }

    .portfolio-item:hover .right {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transform: translateY(0px);
    }

    .portfolio-item:hover .content {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transform: translateY(0px);
    }

/* Gallery ends */

/* About starts */
.hero-about {
    background: linear-gradient(rgb(28 70 10), rgba(40, 167, 69, 0.8)), url(CutomizeHome.jpg) center / cover no-repeat;
    min-height: 42vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

    .hero-about h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.why-section {
    background: white;
    padding: 4rem 0;
}

.why-image {
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(40,167,69,0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.team-grid {
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

.team-image {
    height: 300px;
    object-fit: cover;
}

.cta-section {
    background: var(--primary-green);
    color: white;
    padding: 4rem 0;
    text-align: center;
    /*border-radius: 20px;
    margin: 4rem 0;*/
}

@media (max-width: 768px) {
    .hero-about h1 {
        font-size: 2.5rem;
    }

    .why-image {
        height: 350px;
    }
}
/* About ends */

/* Contact us starts */
#map {
    height: 450px;
    border-radius: 20px;
    border: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-contact {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin: 3rem 0;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(40,167,69,0.25);
}

.hero-contact {
    background: linear-gradient(rgb(28 70 10), rgba(40, 167, 69, 0.8)), url(CutomizeHome.jpg) center / cover no-repeat;
    min-height: 42vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

    .hero-contact h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.contact-info {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 3rem;
    margin: 3rem 0;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

/* Contact us ends */

/* Custom CSS starts */
.f-2 {
    font-size: 1.8rem;
}
/* Custom CSS ends */