/********** Template CSS **********/
:root {
    --primary: #009fe3;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 85px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}




/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #241919;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 30px 0;
    color: var(--light);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    font-size: 14px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
        right: -175%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* header-social-icons */

.header-icons {
    display: flex;
    justify-content: right;
    gap: 10px;
    align-items: center;
}

.header-icons a img {
    width: 30px;
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 400px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }

    .back-to-top {
        bottom: 120px;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgb(0 0 0 / 37%), rgb(0 0 0 / 40%)), url(../img/carousel-1.webp) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    /* letter-spacing: 5px; */
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.back-black {
    background-color: #000;
}



/* gallery */

.main .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}

.main .card {
    color: #252a32;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}

.main .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #fff;
    object-fit: cover;
}

.main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 240px !important;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .main .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }

    .gallery-img {
        max-width: 100%;
        height: 240px;
    }

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

.gallery-img {
    max-width: 100%;
    height: 240px;
}

.gallery-img-modal {
    max-width: 100%;
    height: 500px;
}

/* gallery */

.footer-image img {
    width: 300px;
}


/* keyword pages start */
.key-image img {
    width: 100%;
}

.padd-0 {
    padding: 0 !important;
}

.keyword-content h5 {
    font-size: 24px;
}

.keyword-content .about {
    border: 1px solid #000;
    padding: 15px;
}

.keyword-content .key-page-links {
    border: 1px solid #000;
    padding: 15px;
    margin: 20px 0px;
}

.keyword-content .key-page-links ul {
    padding: 0px;
    margin: 0;
}

.keyword-content .key-page-links ul li {
    list-style: none;
    background-color: lightblue;
    margin-top: 10px;
    transition: 0.3s ease;
    padding: 10px;
    border-radius: 5px;
}

.keyword-content .key-page-links ul li:hover {
    background-color: rgb(0, 182, 243);
}

.keyword-content .key-page-links ul .active {
    background-color: rgb(0, 182, 243);
}

.keyword-content .key-page-links ul li a {
    color: #000;
}

.keyword-content .key-contact {
    border: 1px solid #000;
    padding: 15px;
}

.key-contact .mobile {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.key-contact .email1 {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

/* keyword pages end */


/* section 1 */

.sect-1 {
    padding: 70px 0px;
    background-color: #f5f5f5;
}

/* .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
} */

.full-width-paragraph {
    width: 100%;
    /* padding: 30px 20px; */
    /* background-color: #f8f8f8; */
    border-radius: 8px;
    margin-bottom: 40px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.full-width-paragraph p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.cards-container .card {
    flex: 1 1 300px;
    min-width: 250px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.cards-container .card:hover {
    transform: translateY(-10px);
}

.cards-container .card-icon {
    font-size: 50px;
    color: #009fe3;
    margin-bottom: 20px;
}

.cards-container .card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.cards-container .card p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

@media (max-width: 768px) {
    .cards-container .cards-container {
        flex-direction: column;
    }

    .cards-container .card {
        width: 100%;
    }

    .full-width-paragraph p {
        font-size: 16px;
    }

    .full-width-paragraph {
        padding: 30px 10px;
    }

    .cards-container .card {
        margin: 0px 0px;
    }
}


.services-container {
    /* max-width: 1200px;
    margin: 40px auto; */
    padding: 0 10px;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 30px;
}

.services-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.services-header h1:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: #009fe3;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.services-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    height: 200px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.highlight-tag {
    display: inline-block;
    background: #009fe3;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.residential {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.commercial {
    background: linear-gradient(135deg, #009fe3, #c0392b);
}

.interior {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.elevation {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.sustainable {
    background: linear-gradient(135deg, #f39c12, #d35400);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h1 {
        font-size: 2rem;
    }

    .services-container {
        padding: 0px;
    }
}


/* section-3 */

.our-work {
    background-color: #f9f9f9;
    padding: 60px 0px;
}

.fc-work-process-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    padding: 0px 10px;
}

.fc-section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.fc-section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.fc-section-title h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: #009fe3;
    bottom: -10px;
    left: 20%;
}

.fc-section-title p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Timeline */
.fc-process-timeline {
    position: relative;
    padding: 40px 0;
}

.fc-process-timeline:before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #009fe3;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.fc-process-step {
    padding: 15px 30px;
    position: relative;
    background-color: white;
    width: 45%;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fc-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.fc-process-step-left {
    left: 0;
}

.fc-process-step-right {
    left: 55%;
}

.fc-step-number {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #009fe3;
    color: white;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    top: 20px;
}

.fc-step-number-left {
    right: -47px;
}

.fc-step-number-right {
    left: -47px;
}

.fc-step-content {
    padding: 15px;
}

.fc-step-title {
    font-size: 1.3rem;
    color: #0051a3;
    margin-bottom: 10px;
    font-weight: 600;
}

.fc-step-desc {
    color: #7f8c8d;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fc-process-timeline:before {
        left: 40px;
    }

    .fc-process-step {
        width: calc(100% - 90px);
        float: none;
        margin-left: 70px;
        margin-bottom: 20px;
    }

    .fc-process-step-left,
    .fc-process-step-right {
        left: 0;
    }

    .fc-step-number-left,
    .fc-step-number-right {
        left: -60px;
        right: auto;
    }

    .fc-section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .fc-process-step {
        width: calc(100% - 50px);
        margin-left: 40px;
        padding: 15px 15px 15px 20px;
    }

    .fc-step-number {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .fc-step-number-left,
    .fc-step-number-right {
        left: -45px;
    }

    .fc-section-title h2 {
        font-size: 1.8rem;
    }
}

/* section-3 end*/

/* section-4 start */

.our-commitment {
    padding: 90px 0px;
}

.fc-sustainable-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 60px 20px; */
    background-color: #ffffff;
}

.fc-sustainable-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.fc-sustainable-content {
    flex: 1;
    min-width: 300px;
}

.fc-sustainable-image {
    flex: 1;
    min-width: 300px;
}

.fc-sustainable-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fc-sustainable-image img:hover {
    transform: scale(1.02);
}

.fc-section-heading {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.fc-section-heading:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #009fe3;
    bottom: 0;
    left: 0;
}

.fc-intro-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.fc-features-list {
    margin: 30px 0;
}

.fc-feature-item {
    display: flex;
    align-items: flex-start;
    /* margin-bottom: 20px; */
}

.fc-feature-icon {
    color: #009fe3;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 25px;
}

.fc-feature-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

.fc-conclusion-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-commitment {
        padding: 50px 0px;
    }

    .fc-sustainable-wrapper {
        flex-direction: column;
    }

    .fc-sustainable-content,
    .fc-sustainable-image {
        width: 100%;
    }

    .fc-section-heading {
        font-size: 1.8rem;
    }

    .fc-sustainable-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .fc-section-heading {
        font-size: 1.6rem;
    }

    .fc-intro-text,
    .fc-conclusion-text {
        font-size: 1rem;
    }
}

/* section-4 end */


/* section-4 */
.why-choose {
    background-color: #f5f7fa;
    padding: 60px 0px;
}

.why-choose-container {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.landscape-card {
    /* background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    /* padding: 40px; */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* .landscape-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
} */

/* .landscape-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    transition: all 0.4s ease;
} */

.landscape-card:hover::before {
    width: 8px;
}

.card-header-keypage {
    margin-bottom: 30px;
    position: relative;
}

.card-header-keypage h1 {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-header-keypage p {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    gap: 25px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #009fe3;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0079ad;
}

.feature-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    /* padding-top: 10px; */
    font-weight: 600;
}

.feature-item img {
    width: 40px;
    padding-right: 7px;
}

.feature-item p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight {
    color: #009fe3;
    font-weight: 600;
}

.cta {
    margin-top: 40px;
    text-align: center;
}

.cta p {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta .highlight {
    font-size: 1.4rem;
}

.mobile-logo img {
    width: 50%;
}

@media (max-width: 768px) {
    .mobile-logo img {
        width: 100%;
    }

    .navbar-light .navbar-toggler {
        background-color: #fff;
        border-radius: 10px;
    }

    .landscape-card {
        padding: 0px 0px;
    }

    .types-of-buildings .section-title p {
        text-align: justify;
    }

    .sect-4-content p {
        text-align: justify;
    }

    .landscape-card .card-header-keypage p {
        text-align: justify;
    }

    .card-header-keypage h1 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-choose {
        padding: 55px 0px !important;
    }
}

/* section-4 end */

.our-building-design {
    padding: 50px 0px 40px;
}

/* keyword page - 2 */

/* body {
    background-color: #f5f7fa;
    padding: 60px 20px;
} */

.land-sec {
    padding: 80px 0px 80px;
    background: #f2f3ff;
}

.landscape-services-container {
    margin: 0 auto;
}

.landscape-header {
    text-align: center;
    margin-bottom: 50px;
}

.landscape-header h2 {
    color: #2c3e50;
    font-size: 2.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.landscape-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.landscape-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Individual Service Cards with Unique Classes */
.lawn-card {
    --card-color: #27ae60;
}

.terrace-card {
    --card-color: #16a085;
}

.vertical-card {
    --card-color: #2980b9;
}

.stone-card {
    --card-color: #8e44ad;
}

.pergola-card {
    --card-color: #e67e22;
}

.water-card {
    --card-color: #3498db;
}

.lighting-card {
    --card-color: #9b59b6;
}

.playarea-card {
    --card-color: #e74c3c;
}

.landscape-service-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--card-color);
}

.landscape-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--card-color) 0%, rgba(0, 0, 0, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.landscape-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.landscape-service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--card-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.landscape-service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--card-color);
}

.service-title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.landscape-service-card:hover .service-title {
    color: var(--card-color);
}

.landscape-cta {
    text-align: center;
    margin-top: 50px;
}

.landscape-cta p {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
}

.highlight-text {
    color: #27ae60;
    font-weight: 600;
}

@media (max-width: 768px) {
    .landscape-header h2 {
        font-size: 1.8rem;
    }

    .landscape-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .landscape-cards-wrapper {
        grid-template-columns: 1fr;
    }
}


/* types of buildings */
.types-of-buildings {
    background-color: #f5f7fa;
    color: #333;
    padding: 40px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.types-of-buildings .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.types-of-buildings .section-title h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.types-of-buildings .section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: #4a90e2;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.types-of-buildings .section-title p {
    font-size: 1.1rem;
    color: #666;
    /* max-width: 700px; */
    margin: 0 auto;
    line-height: 1.6;
    margin-top: 20px;
}

.types-of-buildings .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.types-of-buildings .service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.types-of-buildings .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #4a90e2;
}

.types-of-buildings .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4a90e2, #6bb9f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.service-icon img {
    width: 100%;
}

.types-of-buildings .types-of-buildings .service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.types-of-buildings .types-of-buildings .service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #45b7d1, #7ad0e0);
    box-shadow: 0 5px 15px rgba(69, 183, 209, 0.3);
}

.types-of-buildings .service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #a162e8, #b88df0);
    box-shadow: 0 5px 15px rgba(161, 98, 232, 0.3);
}

.types-of-buildings .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}

.types-of-buildings .service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .types-of-buildings .section-title h2 {
        font-size: 2rem;
    }

    .types-of-buildings .services-grid {
        grid-template-columns: 1fr;
    }
}


/* complete construction section  */
.complete-cons {
    background-color: #f3f3f3;
    color: #333;
    padding: 40px 0px 30px;
}

.complete-cons .construction-services-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 20px; */
}

.complete-cons .construction-intro {
    text-align: center;
    margin-bottom: 60px;
}

.complete-cons .construction-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin: 0 auto;
}

.complete-cons .services-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
}

.complete-cons .services-column {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.complete-cons .left-services {
    text-align: right;
}

.complete-cons .right-services {
    text-align: left;
}

.complete-cons .construction-image {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    text-align: center;
}

.complete-cons .construction-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.complete-cons .service-item {
    margin-bottom: 30px;
    position: relative;
}

.complete-cons .left-services .service-item {
    padding-right: 30px;
}

.complete-cons .right-services .service-item {
    padding-left: 30px;
}

.complete-cons .service-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #4a90e2;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 82px;
    padding-top: 14px;
}

.complete-cons .left-services .service-icon {
    float: right;
    margin-left: 15px;
}

.complete-cons .right-services .service-icon {
    float: left;
    margin-right: 15px;
}

.complete-cons .service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.complete-cons .service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Different colors for icons */
.complete-cons .service-item:nth-child(1) .service-icon {
    background: #4a90e2;
    /* Blue */
}

.complete-cons .service-item:nth-child(2) .service-icon {
    background: #ff6b6b;
    /* Red */
}

.complete-cons .service-item:nth-child(3) .service-icon {
    background: #45b7d1;
    /* Teal */
}

.complete-cons .service-item:nth-child(4) .service-icon {
    background: #a162e8;
    /* Purple */
}

.complete-cons .service-item:nth-child(5) .service-icon {
    background: #f9a73e;
    /* Orange */
}

.complete-cons .service-item:nth-child(6) .service-icon {
    background: #6bbd68;
    /* Green */
}

@media (max-width: 992px) {
    .complete-cons .services-layout {
        flex-direction: column;
    }

    .complete-cons .services-column,
    .complete-cons .construction-image {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center !important;
        padding: 0;
    }

    .complete-cons .left-services .service-item,
    .complete-cons .right-services .service-item {
        padding: 0 20px !important;
        margin-bottom: 25px;
    }

    .complete-cons .service-icon {
        float: none !important;
        margin: 0 auto 15px !important;
        display: block;
    }

    .complete-cons .construction-image {
        order: -1;
        margin-bottom: 40px;
    }
}

/* end complete construction section  */


/* meeting section */
.meeting-sec {
    background-color: #f5f7fa;
    color: #333;
    padding: 40px 0;
}

.meeting-sec .meeting-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 20px; */
}

.meeting-sec .meeting-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* background: #fff; */
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.meeting-sec-content {
    margin-bottom: 30px;
}

.meeting-sec .meeting-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 60px;
}

.meeting-sec .meeting-content p {
    text-align: justify;
}

.meeting-sec .meeting-image {
    flex: 0 0 50%;
    max-width: 50%;
    height: 100%;
}

.meeting-sec .meeting-image img {
    width: 85%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.meeting-sec .meeting-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.meeting-sec .meeting-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.meeting-sec .contact-method {
    margin-bottom: 25px;
}

.meeting-sec .contact-title {
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.meeting-sec .contact-title i {
    margin-right: 10px;
    color: #4a90e2;
    font-size: 1.4rem;
}

.meeting-sec .contact-details {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    /* padding-left: 30px; */
}

.meeting-sec .contact-details a {
    color: #4a90e2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.meeting-sec .contact-details a:hover {
    color: #2a70c2;
    text-decoration: underline;
}

@media (max-width: 992px) {

    .meeting-sec .meeting-content,
    .meeting-sec .meeting-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .meeting-sec .meeting-content {
        padding: 40px 30px;
        order: 2;
    }

    .meeting-sec .meeting-image {
        height: 300px;
        order: 1;
    }

    .meeting-sec .meeting-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .meeting-sec .meeting-content {
        padding: 30px 20px 0px;
    }

    .meeting-sec .meeting-title {
        font-size: 1.6rem;
    }

    .meeting-sec .meeting-description {
        font-size: 1rem;
    }
}

/* end meeting section */


/* table keypages */

.key-table {
    background-color: #f9f9f9;
    padding: 60px 0px 60px;
}

.renovation-container {
    /* font-family: 'Arial', sans-serif; */
    /* max-width: 1000px; */
    /* margin: 30px auto; */
    /* padding: 20px; */

    border-radius: 8px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

/* Header styling */
.renovation-header {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.renovation-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.renovation-header p {
    font-size: 16px;
    color: #7f8c8d;
}

/* Table styling */
.services-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 6px;
}

.services-table thead {
    background-color: #3498db;
    color: white;
}

.services-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.services-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.services-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.services-table tbody tr:hover {
    background-color: #e3f2fd;
}

/* Availability indicator */
.availability-yes {
    color: #27ae60;
    font-weight: bold;
}

/* Description styling */
.service-description {
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

/* Footer note */
.renovation-footer {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #7f8c8d;
    font-size: 14px;
}

/* end table keypages */



/* end types of buildings */

/* keyword pages responsive */

@media (max-width: 768px) {
    .cards-container .card p {
        text-align: justify;
    }

    .complete-cons .construction-intro p {
        text-align: justify;
    }

    .services-header p {
        text-align: justify;
        margin-bottom: 20px;
    }

    .meeting-sec-content p {
        text-align: justify;
    }

    .meeting-sec {
        padding: 40px 0 10px;
    }

    .meeting-sec .meeting-image img {
        width: 100%;
    }

    .cards-container p {
        text-align: justify;
    }
}

.key-headings {
    font-size: 2.8rem !important;
    font-weight: 500 !important;
}

/* ============= faq section ============ */

/* onnn */
.ptb-20 {
    padding-top: 10px;
    padding-bottom: 30px;
}


.brochures-prgs {
    cursor: pointer;
    border-top: 4px solid #009FE3;
    ;
    border-left: 3px solid #009FE3;
    ;
    padding: 11px;
    color: #373333;
    border-radius: 9px;
    background: #d3d3d336;
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
}

.disp {
    display: none;
    padding: 20px;
}


.rotate {
    transform: rotate(180deg);
}

.brochures-prgs .fa {
    font-size: 18px;
    right: 0;
    position: absolute;
    padding: 10px;
    border-radius: 6px;
    margin-top: -7px;
    margin-right: 6px;
    background: #009FE3;
    color: #fff;
}

.trin-trin {
    animation-name: trin;
    animation-duration: 1.8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes trin {
    from {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    20%,
    32%,
    44%,
    56%,
    68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    23%,
    35%,
    47%,
    59%,
    71% {
        transform: rotate3d(0, 0, 1, 12deg);
    }

    26%,
    38%,
    50%,
    62%,
    74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    29%,
    41%,
    53%,
    65%,
    77% {
        transform: rotate3d(0, 0, 1, -12deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

/* onnn */


/* funnels */

/* -funnels-Css--- */
/*mobile footer css starts*/

.navbar-footer a {
    float: left;
    display: none;
    width: 25%;
    color: #fff;
    text-align: center;
    padding: 25px 22px 38px 20px;
    text-decoration: none;
    font-size: 21px;
    /* margin-right: 22px;
    margin-left: 21px; */
}

.navbar-footer a:hover {
    background: #F1F1F1;
    color: black;
}

.w_app>i {
    color: #fff;
}

.w_app {
    background-color: #28A745;
}

.e_mail>i {
    color: #fff;
}

.e_mail {
    background-color: #DC3545;
}

.ems_call>i {
    color: #fff;
}

.ems_call {
    background-color: #007BFF;
}

.ems_enquiry>i {
    color: #fff;
}

.ems_enquiry {
    background-color: #FFC107;
}

.upside {
    display: none;
}

.mobile-hidden i {
    color: white;
}

@media screen and (min-width :315px) and (max-width :768px) {
    .upside {
        display: block;
    }

    .funnal-mobile {
        display: none !important;
    }

    .mobile-footer {
        display: block !important;
    }

    .social-mobile li a .fa {
        display: none;
    }

    .navbar-footer {
        overflow: scroll;
        z-index: 9999999 !important;
        background-color: #ccc;
        position: fixed;
        bottom: -16px;
        width: 100%;
    }

    .navbar-footer a:hover {
        background: #f1f1f1;
        color: black;
    }

    .main {
        padding: 0px;
        margin-bottom: 54px;
    }

    .navbar-footer {
        display: block !important;
    }

}

.mobile-hidden a {
    font-size: 16px;
}

/* mobile footer css end*/
@media only screen and (max-width:768px) {


    .mobile-hidden {
        display: none !important;
    }

    .tab {
        margin: 4px 4px !important;
    }

    .brochures-prgs .fa-plus {
        margin-right: 30px !important;
    }

    .foot-soc-images {
        margin-top: 20px;
    }

    .mob-text-a a {
        font-size: 14px !important;
    }

    .home-caraousel-headings {
        font-size: 3rem !important;
    }
}

/* Funnel css start */
.btn-success {
    color: #fff !important;
    background-color: #5cb85c;
    border-color: #4cae4c;
    padding: 15px 30px;
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-danger {
    color: #fff !important;
    background-color: #d9534f;
    border-color: #d43f3a;
    padding: 15px 30px;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-warning {
    color: #fff !important;
    background-color: #f0ad4e;
    border-color: #eea236;
    padding: 15px 30px;
}

.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

/* .btn-primary {
      color: #fff!important;
      background-color: #0084bd;
      border-color: #0d668d;
      padding: 15px 30px;
    }
    .btn-primary:hover {
      color: #fff;
      background-color: #0d668d;
      border-color: #204d74
    } */
.pb-20 {
    padding-top: 10px;
    padding-bottom: 30px;
}


/* -funnels-Css-Ends--- */


.form-control {
    margin: 10px 0px;
}

.eqn-btn {
    border: none;
    padding: 12px 25px;
    background-color: #009FE3;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s ease;
}

.eqn-btn:hover {
    background-color: #028fcc;
}

.foot-soc-images {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.foot-soc-images img {
    width: 30px;
}

.foot-soc-images a .bor-rad {
    border-radius: 50%;
}

/* 
.foot-soc-images .bg-w{
    background-color: white;
} */

.home-headings {
    font-size: 3rem;
}

.home-caraousel-headings {
    font-size: 5rem;
}

.our-pro-div h5 {
    font-size: 35px;
    font-weight: 700;
}

.our-pro-heading {
    font-size: 25px;
}

.why-choose-section {
    padding: 80px 0;
    margin: 0 auto;
}

.section-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.content-side {
    flex: 1;
    min-width: 300px;
}

.image-side {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-heading {
    font-size: 1.5rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 10px;
}

/* .main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
} */

.sub-heading {
    font-size: 2.2rem;
    color: #34495e;
    margin: 5px 0 15px;
}

.content-text {
    color: #555;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.4;
}

.feature-box {
    background: rgb(245, 245, 245);
    border-radius: 10px;
    padding: 15px 15px;
    margin-bottom: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.feature-title i {
    margin-right: 10px;
    color: #3498db;
}

.feature-box .feature-title img{
    width: 50px;
    padding-right: 10px;
}

.feature-image {
    width: 100%;
    /* max-width: 500px; */
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.feature-image:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
    }

    .content-side,
    .image-side {
        width: 100%;
    }

    .main-heading {
        font-size: 2.2rem;
    }

    .feature-image {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 50px 5%;
    }

    .main-heading {
        font-size: 1.8rem;
    }

    .sub-heading {
        font-size: 1.3rem;
    }

    .feature-box {
        padding: 20px;
    }
}