﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ================= TOPBAR ================= */

.topbar {
    background: #111827;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

    .topbar a {
        color: #fff;
        margin-right: 20px;
        transition: .3s;
    }

        .topbar a:hover {
            color: #facc15;
        }

.top-social a {
    margin-left: 15px;
    font-size: 16px;
}

/* ================= NAVBAR ================= */

.navbar {
    background: #ffffff !important;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.navbar-brand {
    font-size: 30px;
    font-weight: 700;
}


.nav-link {
    color: #111827 !important;
    font-weight: 600;
    margin-left: 18px;
    transition: .3s;
}

    .nav-link:hover {
        color: #f59e0b !important;
    }

.btn-contact {
    background: #f59e0b;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

    .btn-contact:hover {
        background: #d97706;
        color: #fff;
    }

/* ================= SLIDER ================= */

.carousel-item {
    height: 90vh;
    min-height: 500px;
    position: relative;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.55);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    z-index: 10;
}

    .carousel-caption h1 {
        font-size: 65px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .carousel-caption p {
        font-size: 20px;
        max-width: 700px;
        margin: auto;
        margin-bottom: 30px;
    }

.slider-btn {
    background: #f59e0b;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

    .slider-btn:hover {
        background: #d97706;
    }

/* ================= FOOTER ================= */

footer {
    background: #111827;
    color: #d1d5db;
    padding: 70px 0 20px;
}

    footer h4 {
        color: #fff;
        margin-bottom: 25px;
        font-weight: 700;
    }

    footer p {
        line-height: 28px;
    }

.footer-links a {
    display: block;
    color: #d1d5db;
    margin-bottom: 12px;
    transition: .3s;
}

    .footer-links a:hover {
        color: #f59e0b;
        padding-left: 5px;
    }

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #1f2937;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: .3s;
}

    .footer-social a:hover {
        background: #f59e0b;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width:991px) {
    .topbar {
        text-align: center;
    }

    .top-social {
        margin-top: 10px;
    }

    .navbar-nav {
        margin-top: 15px;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .btn-contact {
        margin-top: 10px;
    }

    .carousel-caption h1 {
        font-size: 42px;
    }

    .carousel-caption p {
        font-size: 16px;
    }
}

@media (max-width:576px) {
    .topbar {
        font-size: 12px;
    }

    .carousel-item {
        height: 75vh;
    }

    .carousel-caption h1 {
        font-size: 30px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .slider-btn {
        padding: 12px 22px;
        font-size: 15px;
    }
}
/* ================= ABOUT SECTION ================= */

.about-section {
    background: #f8fafc;
}

/* ===== STATS ===== */

/* ===== CONTENT ===== */

.about-tag {
    display: inline-block;
    background: #fef3c7;
    color: #d97706;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-content p {
    color: #6b7280;
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 18px;
}

.about-list {
    margin-top: 30px;
}

.about-item {
    margin-bottom: 15px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .about-item i {
        color: #f59e0b;
        font-size: 20px;
    }

.about-btn {
    background: #f59e0b;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    transition: .3s;
}

    .about-btn:hover {
        background: #d97706;
        color: #fff;
    }

/* ===== IMAGE ===== */

.about-img {
    position: relative;
}

    .about-img img {
        width: 100%;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(0,0,0,.15);
    }

/* ===== RESPONSIVE ===== */

@media (max-width:991px) {

    .about-content h2 {
        font-size: 36px;
    }

    .about-content {
        text-align: center;
    }

    .about-item {
        justify-content: center;
    }
}

@media (max-width:576px) {

    .stat-box {
        padding: 22px 10px;
    }

        .stat-box h2 {
            font-size: 28px;
        }

        .stat-box p {
            font-size: 13px;
        }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 28px;
    }

    .about-btn {
        width: 100%;
    }
}
/* ================= CONTACT SECTION ================= */

.contact-section {
    background: #f8fafc;
}

/* ===== TITLE ===== */

.contact-tag {
    display: inline-block;
    background: #fef3c7;
    color: #d97706;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.contact-subtitle {
    color: #6b7280;
    max-width: 700px;
    margin: auto;
    line-height: 28px;
}

/* ===== LEFT BOX ===== */

.contact-info-box {
    background: #111827;
    padding: 45px;
    border-radius: 25px;
    color: #fff;
    height: 100%;
}

    .contact-info-box h3 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .contact-info-box p {
        color: #d1d5db;
        line-height: 28px;
        margin-bottom: 35px;
    }

/* ===== INFO ITEM ===== */

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

    .contact-info-item .icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        background: #f59e0b;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .contact-info-item h5 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .contact-info-item span {
        color: #d1d5db;
        line-height: 26px;
    }

/* ===== FORM BOX ===== */

.contact-form-box {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

/* ===== INPUT ===== */

.custom-input {
    height: 58px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    padding: 12px 18px;
    font-size: 15px;
    box-shadow: none !important;
}

    .custom-input:focus {
        border-color: #f59e0b;
    }

.textarea {
    height: auto;
    resize: none;
}

/* ===== BUTTON ===== */

.contact-btn {
    background: #f59e0b;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    transition: .3s;
}

    .contact-btn:hover {
        background: #d97706;
    }

/* ===== RESPONSIVE ===== */

@media (max-width:991px) {

    .contact-title {
        font-size: 38px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 35px;
    }
}

@media (max-width:576px) {

    .contact-title {
        font-size: 30px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 25px;
        border-radius: 18px;
    }

        .contact-info-box h3 {
            font-size: 26px;
        }

    .contact-btn {
        width: 100%;
    }

    .contact-info-item {
        gap: 14px;
    }

        .contact-info-item .icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            font-size: 18px;
        }
}
/* ================= CONTACT BANNER ================= */

.contact-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    background: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ===== OVERLAY ===== */

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
}

/* ===== CONTENT ===== */

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 850px;
    margin: auto;
    padding: 40px 15px;
}

.banner-tag {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.banner-content h1 {
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.banner-content p {
    font-size: 19px;
    line-height: 34px;
    color: #e5e7eb;
    max-width: 750px;
    margin: auto auto 35px;
}

/* ===== BUTTONS ===== */

.banner-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.banner-btn {
    background: #f59e0b;
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
}

    .banner-btn:hover {
        background: #d97706;
        color: #fff;
    }

.banner-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
}

    .banner-btn-outline:hover {
        background: #fff;
        color: #111827;
    }

/* ================= RESPONSIVE ================= */

@media(max-width:991px) {
    .contact-banner;

{
    min-height: 420px;
}

.banner-content h1 {
    font-size: 52px;
}

.banner-content p {
    font-size: 17px;
    line-height: 30px;
}

}

@media (max-width:767px) {

    .contact-banner {
        min-height: 380px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content p {
        font-size: 15px;
        line-height: 28px;
    }
}

@media (max-width:576px) {

    .contact-banner {
        min-height: 340px;
    }

    .banner-content {
        padding: 20px 10px;
    }

    .banner-tag {
        font-size: 12px;
        padding: 8px 18px;
    }

    .banner-content h1 {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .banner-content p {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 25px;
    }

    .banner-btn,
    .banner-btn-outline {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 13px 20px;
    }
}
/* ================= ABOUT PAGE BANNER ================= */

.about-banner {
    position: relative;
    width: 100%;
    min-height: 520px;
    background: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ===== OVERLAY ===== */

.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
}

/* ===== CONTENT ===== */

.about-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 850px;
    margin: auto;
    padding: 40px 15px;
}

.about-banner-tag {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.about-banner-content h1 {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-banner-content p {
    font-size: 19px;
    line-height: 34px;
    color: #e5e7eb;
    max-width: 760px;
    margin: auto auto 35px;
}

/* ===== BUTTONS ===== */

.about-banner-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.about-btn-main {
    background: #f59e0b;
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
}

    .about-btn-main:hover {
        background: #d97706;
        color: #fff;
    }

.about-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
}

    .about-btn-outline:hover {
        background: #fff;
        color: #111827;
    }

/* ================= RESPONSIVE ================= */

@media (max-width:991px) {

    .about-banner {
        min-height: 450px;
    }

    .about-banner-content h1 {
        font-size: 52px;
    }

    .about-banner-content p {
        font-size: 17px;
        line-height: 30px;
    }
}

@media (max-width:767px) {

    .about-banner {
        min-height: 400px;
    }

    .about-banner-content h1 {
        font-size: 42px;
    }

    .about-banner-content p {
        font-size: 15px;
        line-height: 28px;
    }
}

@media (max-width:576px) {

    .about-banner {
        min-height: 350px;
    }

    .about-banner-content {
        padding: 20px 10px;
    }

    .about-banner-tag {
        font-size: 12px;
        padding: 8px 18px;
    }

    .about-banner-content h1 {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .about-banner-content p {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 25px;
    }

    .about-btn-main,
    .about-btn-outline {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 13px 20px;
    }
}
/* ================= SIMPLE ABOUT BANNER ================= */

.simple-about-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ===== OVERLAY ===== */

.simple-about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.60);
}

/* ===== CONTENT ===== */

.simple-about-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

    .simple-about-content h1 {
        font-size: 70px;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .simple-about-content p {
        font-size: 20px;
        color: #e5e7eb;
        max-width: 700px;
        margin: auto;
        line-height: 34px;
    }

/* ================= RESPONSIVE ================= */

@media (max-width:991px) {

    .simple-about-banner {
        min-height: 360px;
    }

    .simple-about-content h1 {
        font-size: 52px;
    }

    .simple-about-content p {
        font-size: 17px;
    }
}

@media (max-width:576px) {

    .simple-about-banner {
        min-height: 300px;
    }

    .simple-about-content h1 {
        font-size: 38px;
    }

    .simple-about-content p {
        font-size: 14px;
        line-height: 28px;
    }
}
/* ================= BUSINESS PLAN BANNER ================= */

.business-plan-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ===== OVERLAY ===== */

.business-plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
}

/* ===== CONTENT ===== */

.business-plan-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

    .business-plan-content h1 {
        font-size: 72px;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .business-plan-content p {
        font-size: 20px;
        color: #e5e7eb;
        max-width: 750px;
        margin: auto;
        line-height: 34px;
    }

/* ================= RESPONSIVE ================= */

@media (max-width:991px) {

    .business-plan-banner {
        min-height: 360px;
    }

    .business-plan-content h1 {
        font-size: 54px;
    }

    .business-plan-content p {
        font-size: 17px;
    }
}

@media (max-width:576px) {

    .business-plan-banner {
        min-height: 300px;
    }

    .business-plan-content h1 {
        font-size: 38px;
    }

    .business-plan-content p {
        font-size: 14px;
        line-height: 28px;
    }
}
/* ================= PROJECT SECTION ================= */

.project-section {
    background: #f8fafc;
}

/* ===== TITLE ===== */

.project-tag {
    display: inline-block;
    background: #fef3c7;
    color: #d97706;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.project-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.project-subtitle {
    color: #6b7280;
    max-width: 700px;
    margin: auto;
    line-height: 30px;
}

/* ===== CARD ===== */

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 320px;
    cursor: pointer;
}

    .project-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

/* ===== OVERLAY ===== */

.project-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
    color: #fff;
}

    .project-overlay h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .project-overlay p {
        margin: 0;
        color: #e5e7eb;
    }

/* ===== HOVER ===== */

.project-card:hover img {
    transform: scale(1.1);
}

/* ================= RESPONSIVE ================= */

@media (max-width:991px) {

    .project-title {
        font-size: 38px;
    }
}

@media (max-width:576px) {

    .project-title {
        font-size: 30px;
    }

    .project-subtitle {
        font-size: 14px;
        line-height: 28px;
    }

    .project-card {
        height: 260px;
        border-radius: 18px;
    }

    .project-overlay h4 {
        font-size: 20px;
    }
}

.project-card {
    overflow: hidden;
    border-radius: 20px;
}

    .project-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: .4s;
        cursor: pointer;
    }

    .project-card:hover img {
        transform: scale(1.08);
    }

@media (max-width:576px) {

    .project-card img {
        height: 250px;
    }
}
/* ================= AMENITIES SECTION ================= */

.amenities-section {
    background: #f8fafc;
}

/* ===== TITLE ===== */

.amenities-tag {
    display: inline-block;
    background: #fef3c7;
    color: #d97706;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.amenities-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.amenities-subtitle {
    color: #6b7280;
    max-width: 700px;
    margin: auto;
    line-height: 30px;
}

/* ===== CARD ===== */

.amenity-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,.06);
    transition: .4s;
    height: 100%;
}

    .amenity-card:hover {
        transform: translateY(-8px);
    }

    /* ===== IMAGE ===== */

    .amenity-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    /* ===== TEXT ===== */

    .amenity-card h5 {
        padding: 18px 10px;
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: #111827;
    }

/* ================= RESPONSIVE ================= */

@media (max-width:991px) {

    .amenities-title {
        font-size: 38px;
    }

    .amenity-card img {
        height: 190px;
    }
}

@media (max-width:576px) {

    .amenities-title {
        font-size: 30px;
    }

    .amenities-subtitle {
        font-size: 14px;
        line-height: 28px;
    }

    .amenity-card {
        border-radius: 16px;
    }

        .amenity-card img {
            height: 140px;
        }

        .amenity-card h5 {
            font-size: 15px;
            padding: 14px 8px;
        }
}
/* ================= PROJECT HEADING BG ================= */

.project-heading {
    position: relative;
    width: 100%;
    min-height: 380px;
    background: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border-radius: 30px;*/
    overflow: hidden;
    padding: 40px 20px;
}

/* ===== OVERLAY ===== */

.project-heading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
}

/* ===== CONTENT ===== */

.project-heading-content {
    position: relative;
    z-index: 2;
}

/* ===== TITLE ===== */

.project-heading .project-title {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* ===== SUBTITLE ===== */

.project-heading .project-subtitle {
    color: #e5e7eb;
    max-width: 750px;
    margin: auto;
    line-height: 32px;
}

/* ================= RESPONSIVE ================= */

@media (max-width:991px) {

    .project-heading {
        min-height: 320px;
    }

        .project-heading .project-title {
            font-size: 40px;
        }
}

@media (max-width:576px) {

    .project-heading {
        min-height: 260px;
        border-radius: 20px;
        padding: 30px 15px;
    }

        .project-heading .project-title {
            font-size: 28px;
        }

        .project-heading .project-subtitle {
            font-size: 14px;
            line-height: 26px;
        }
}
/* ===== SLIDER HEIGHT CONTROL ===== */

.carousel-item {
    height: 75vh; /* before maybe 100vh */
    min-height: 450px;
}

    .carousel-item img {
        width: 100%;
        height: 95vh;
        object-fit: cover;
    }

/* ===== TABLET ===== */

@media (max-width:991px) {

    .carousel-item {
        height: 60vh;
        min-height: 350px;
    }
}

/* ===== MOBILE ===== */

@media (max-width:576px) {

    .carousel-item {
        height: 40vh;
        min-height: 220px;
    }
}
/* ===== ICON STYLE ===== */

/* ===== STAT BOX ===== */

.stat-box{
    background:#fff;

    padding:30px 15px;

    border-radius:20px;

    height:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

    transition:.3s;
}

/* HOVER */

.stat-box:hover{
    transform:translateY(-5px);
}

/* NUMBER */

.stat-box h2{
    font-size:42px;
    font-weight:800;

    color:#f59e0b;

    margin-bottom:12px;
}

/* ICON */

.stat-icon{
    font-size:42px;

    color:#f59e0b;

    margin-bottom:12px;

    line-height:1;
}

/* TEXT */

.stat-box p{
    font-size:15px;
    font-weight:700;

    color:#374151;

    margin:0;

    line-height:24px;
}

/* MOBILE */

@media (max-width:576px){

    .stat-box{
        padding:22px 10px;
        border-radius:16px;
    }

    .stat-box h2,
    .stat-icon{
        font-size:30px;
    }

    .stat-box p{
        font-size:13px;
        line-height:20px;
    }
}
/* IMAGE BOX */

.gallery-box{
    overflow:hidden;
    border-radius:10px;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    transition:0.3s;
}

/* IMAGE */

.gallery-box img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    transition:0.3s;
}

/* HOVER */

.gallery-box:hover img{
    transform:scale(1.05);
}

/* MOBILE */

@media (max-width:576px){

    .gallery-box img{
        height:180px;
    }

}
@media (max-width:576px){

    #mainSlider .carousel-item img{
        height:auto;
        min-height:220px;
        object-fit:cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width:2rem;
        height:2rem;
    }

}
@media (max-width:576px){

    .project-heading{
        border-radius:0 !important;
    }

    .project-heading-overlay{
        border-radius:0 !important;
    }

}