body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
        }

        /* Top Bar CSS */
        .top-bar {
            background-color: #ffffff;
            font-size: 13px;
            border-bottom: 1px solid #eaeaea;
            padding: 8px 0;
        }
        .top-bar a {
            color: #555;
            text-decoration: none;
            margin-left: 12px;
            transition: color 0.2s;
        }
        .top-bar a:hover {
            color: #135e38;
        }
        .top-info span {
            color: #444;
            font-size: 13px;
        }

        /* Main Navbar CSS */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 12px 0;
        }
        .navbar-brand {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }
        .brand-title {
            font-weight: 800;
            font-size: 1.5rem;
            color: #135e38;
            letter-spacing: -0.5px;
        }
        .brand-subtitle {
            font-size: 9px;
            font-weight: 600;
            color: #666;
            margin-top: 3px;
            letter-spacing: 0.3px;
        }
        .nav-link {
            font-weight: 500;
            color: #333333 !important;
            font-size: 14px;
            padding: 8px 12px !important;
            transition: color 0.2s;
        }
        .nav-link:hover, 
        .nav-link.active {
            color: #135e38 !important;
        }
        
        /* Dropdown Styling */
        .dropdown-menu {
            border: 1px solid #edf2f7;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 8px 0;
        }
        .dropdown-item {
            font-size: 13.5px;
            color: #4a5568;
            padding: 6px 16px;
        }
        .dropdown-item:hover {
            background-color: #eaf4ed;
            color: #135e38;
        }

        /* Call To Action Button */
        .btn-request {
            background-color: #135e38;
            color: #ffffff !important;
            border-radius: 50px;
            padding: 9px 22px;
            font-size: 13.5px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .btn-request:hover {
            background-color: #0d4327;
            box-shadow: 0 4px 12px rgba(19, 94, 56, 0.25);
        }

        /* Responsive Adjustments for Mobile */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding-top: 15px;
            }
            .btn-request {
                margin-top: 10px;
                width: 100%;
                text-align: center;
            }
        }


        /* 3. Faded Slider Hero CSS */
        .hero-slider-section {
            position: relative;
            width: 100%;
            height: 80vh;
            min-height: 500px;
            overflow: hidden;
        }

        .carousel, 
        .carousel-inner, 
        .carousel-item {
            height: 100%;
        }

        /* Fade Animation Effect */
        .carousel-fade .carousel-item {
            opacity: 0;
            transition-property: opacity;
            transition-duration: 1.5s; /* ফেড অ্যানিমেশনের সময় */
            transition-timing-function: ease-in-out;
        }
        .carousel-fade .carousel-item.active {
            opacity: 1;
        }

        .slide-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: absolute;
            top: 0;
            left: 0;
        }

        /* Dark Overlay for Text Visibility */
        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 100%);
            display: flex;
            align-items: center;
        }

        .slider-caption-content {
            color: #ffffff;
            max-width: 650px;
        }

        .slider-caption-content h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .slider-caption-content p {
            font-size: 1.1rem;
            color: #e2e8f0;
            margin-bottom: 30px;
        }

        /* Custom Carousel Controls & Indicators */
        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ffffff;
            margin: 0 6px;
            opacity: 0.5;
        }
        .carousel-indicators .active {
            opacity: 1;
            background-color: #28a745;
            width: 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding-top: 15px;
            }
            .btn-request {
                margin-top: 10px;
                width: 100%;
                text-align: center;
            }
            .slider-caption-content h1 {
                font-size: 2.2rem;
            }
        }

        /* 4. About Us Section CSS */
        .about-section {
            padding: 80px 0;
            background-color: #ffffff;
        }
        .about-img-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .about-img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .about-img-wrapper:hover img {
            transform: scale(1.03);
        }
        .section-badge {
            display: inline-block;
            background-color: #eaf4ed;
            color: #135e38;
            font-weight: 700;
            font-size: 13px;
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .about-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #111111;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .about-text {
            color: #555555;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding-top: 15px;
            }
            .btn-request {
                margin-top: 10px;
                width: 100%;
                text-align: center;
            }
            .slider-caption-content h1 {
                font-size: 2.2rem;
            }
            .about-title {
                font-size: 1.8rem;
            }
        }

        /* 1. Only 10-in-1 Section Fixed Image Background */
    .eco-section-wrapper {
        position: relative;
        width: 100%;
        padding: 70px 0;
        /* ফিক্সড ব্যাকগ্রাউন্ড ইমেজ */
        background-image: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&q=80&w=1920');
        background-attachment: fixed; /* এর ফলে ইমেজের ওপর দিয়ে কনটেন্ট স্ক্রল হবে */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* 2. Light Transparent Overlay for clear text visibility */
    .eco-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.88); /* চাইলে আপনি এই ট্রান্সপারেন্সি বাড়াতে/কমাতে পারেন */
        z-index: 1;
    }

    .eco-content-container {
        position: relative;
        z-index: 2;
    }

    /* Header Styles */
    .brand-tag {
        color: #135e38;
        font-size: 13px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 6px;
    }

    .ecosystem-heading {
        font-size: 2rem;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 8px;
    }

    .ecosystem-subheading {
        font-size: 0.95rem;
        color: #555555;
        margin-bottom: 40px;
    }

    /* Grid & Cards Styles */
    .eco-grid-container {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .eco-card {
        background: #ffffff;
        border: 1px solid #e2ece5;
        border-radius: 12px;
        padding: 20px 10px;
        text-align: center;
        flex: 1 1 calc(10% - 12px); /* 10 cards in one row on desktop */
        min-width: 110px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .eco-card:hover {
        transform: translateY(-5px);
        border-color: #135e38;
        box-shadow: 0 10px 25px rgba(19, 94, 56, 0.15);
    }

    .eco-icon {
        font-size: 28px;
        color: #135e38;
        margin-bottom: 15px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .eco-title-wrap {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 4px;
        margin-bottom: 8px;
    }

    .eco-number {
        font-size: 1.1rem;
        font-weight: 800;
        color: #135e38;
    }

    .eco-title {
        font-size: 0.85rem;
        font-weight: 700;
        color: #135e38;
        line-height: 1.2;
        text-align: left;
    }

    .eco-desc {
        font-size: 0.72rem;
        color: #555555;
        line-height: 1.35;
        margin: 0;
    }

    /* Responsive Breakpoints */
    @media (max-width: 1400px) {
        .eco-card { flex: 1 1 calc(20% - 12px); } /* 5 in a row */
    }
    @media (max-width: 768px) {
        .eco-card { flex: 1 1 calc(33.33% - 12px); } /* 3 in a row */
        .ecosystem-heading { font-size: 1.5rem; }
    }
    @media (max-width: 576px) {
        .eco-card { flex: 1 1 calc(50% - 12px); } /* 2 in a row */
    }
    /* Solutions Section Styling */
    .solutions-section {
        padding: 80px 0;
        background-color: #f4f8f5;
    }

    .solutions-badge {
        display: inline-block;
        background-color: #e2f0e7;
        color: #135e38;
        font-weight: 700;
        font-size: 13px;
        padding: 6px 16px;
        border-radius: 30px;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .solutions-title {
        font-size: 2.2rem;
        font-weight: 800;
        color: #111111;
        margin-bottom: 12px;
    }

    .solutions-subtitle {
        font-size: 0.95rem;
        color: #666666;
        max-width: 650px;
        margin: 0 auto;
    }

    /* Solution Card */
    .solution-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 30px 25px;
        height: 100%;
        border: 1px solid #e1e9e3;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .solution-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(19, 94, 56, 0.12);
        border-color: #135e38;
    }

    .solution-card-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 18px;
    }

    .solution-icon {
        width: 50px;
        height: 50px;
        background-color: #eaf4ed;
        color: #135e38;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
    }

    .solution-tag {
        font-size: 11px;
        font-weight: 700;
        color: #888888;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: block;
    }

    .solution-card-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
        line-height: 1.3;
    }

    .solution-card-desc {
        font-size: 0.88rem;
        color: #555555;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Checklist */
    .solution-list {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }

    .solution-list li {
        font-size: 0.85rem;
        color: #333333;
        font-weight: 500;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .solution-list li i {
        color: #135e38;
        font-size: 14px;
    }

    /* Action Button */
    .solution-btn {
        color: #135e38;
        font-weight: 700;
        font-size: 0.88rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: color 0.2s;
    }

    .solution-btn:hover {
        color: #0b3a22;
        text-decoration: underline;
    }

    /* Custom Callout Card */
    .custom-consult-card {
        background: linear-gradient(135deg, #135e38 0%, #0a3a22 100%);
        border: none;
    }

    @media (max-width: 768px) {
        .solutions-title {
            font-size: 1.75rem;
        }
    }

    /* 1. Fixed Background Image Section Wrapper */
    .shop-section-wrapper {
        position: relative;
        width: 100%;
        padding: 80px 0;
        /* Fixed background image */
        background-image: url('https://images.unsplash.com/photo-1595974482597-4f6c8f706451?auto=format&fit=crop&q=80&w=1920');
        background-attachment: fixed; /* স্ক্রল করলে ব্যাকগ্রাউন্ড একই জায়গায় ফিক্সড থাকবে */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* 2. Transparent Background Overlay */
    .shop-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.90); /* ব্যাকগ্রাউন্ড পিকচার আবছা করার জন্য সাদা ওভারলে */
        z-index: 1;
    }

    .shop-content-container {
        position: relative;
        z-index: 2;
    }

    /* Header Styles */
    .shop-badge {
        display: inline-block;
        background-color: #e2f0e7;
        color: #135e38;
        font-weight: 700;
        font-size: 13px;
        padding: 6px 16px;
        border-radius: 30px;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .shop-title {
        font-size: 2.2rem;
        font-weight: 800;
        color: #111111;
        margin-bottom: 12px;
    }

    .shop-subtitle {
        font-size: 0.95rem;
        color: #555555;
        max-width: 650px;
        margin: 0 auto;
    }

    /* Shop Card Styles */
    .shop-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 30px 25px;
        height: 100%;
        border: 1px solid #e1e9e3;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .shop-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(19, 94, 56, 0.12);
        border-color: #135e38;
    }

    .shop-icon {
        width: 55px;
        height: 55px;
        background-color: #eaf4ed;
        color: #135e38;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .shop-card:hover .shop-icon {
        background-color: #135e38;
        color: #ffffff;
    }

    .shop-card-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .shop-card-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .shop-card-desc {
        font-size: 0.88rem;
        color: #555555;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    /* Action Button */
    .shop-btn {
        color: #135e38;
        font-weight: 700;
        font-size: 0.88rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: color 0.2s;
    }

    .shop-btn:hover {
        color: #0b3a22;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .shop-title {
            font-size: 1.75rem;
        }
        .shop-card {
            flex-direction: column;
            gap: 15px;
        }
    }

    /* Projects Section Styling */
    .projects-section {
        padding: 80px 0;
        background-color: #f8faf8;
    }

    .projects-badge {
        display: inline-block;
        background-color: #e2f0e7;
        color: #135e38;
        font-weight: 700;
        font-size: 13px;
        padding: 6px 16px;
        border-radius: 30px;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .projects-title {
        font-size: 2.2rem;
        font-weight: 800;
        color: #111111;
        margin-bottom: 12px;
    }

    .projects-subtitle {
        font-size: 0.95rem;
        color: #555555;
        max-width: 650px;
        margin: 0 auto;
    }

    /* Project Card Styling */
    .project-card {
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid #e1e9e3;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .project-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(19, 94, 56, 0.12);
        border-color: #135e38;
    }

    .project-img-box {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .project-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .project-card:hover .project-img-box img {
        transform: scale(1.05);
    }

    .project-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: rgba(19, 94, 56, 0.9);
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
        backdrop-filter: blur(4px);
    }

    .project-card-body {
        padding: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
    }

    .project-card-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .project-card-desc {
        font-size: 0.88rem;
        color: #555555;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .project-meta {
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        font-weight: 600;
        color: #666666;
        border-top: 1px solid #f0f0f0;
        padding-top: 12px;
    }

    /* Swiper Dots Accent Color */
    .swiper-pagination-bullet-active {
        background-color: #135e38 !important;
        width: 24px !important;
        border-radius: 10px !important;
    }

    /* Why Choose Us Styling */
    .why-choose-section {
        padding: 90px 0;
        background-color: #ffffff;
    }

    /* Left Image Block */
    .why-choose-img-wrapper {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .why-choose-img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 20px;
        transition: transform 0.5s ease;
    }

    .why-choose-img-wrapper:hover .why-choose-img {
        transform: scale(1.03);
    }

    .experience-badge {
        position: absolute;
        bottom: 25px;
        left: 25px;
        background-color: #135e38;
        color: #ffffff;
        padding: 15px 25px;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(19, 94, 56, 0.3);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .exp-num {
        font-size: 1.8rem;
        font-weight: 800;
        line-height: 1;
    }

    .exp-text {
        font-size: 0.85rem;
        font-weight: 600;
        line-height: 1.2;
    }

    /* Header & Badges */
    .why-badge {
        display: inline-block;
        background-color: #e2f0e7;
        color: #135e38;
        font-weight: 700;
        font-size: 13px;
        padding: 6px 16px;
        border-radius: 30px;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .why-title {
        font-size: 2.2rem;
        font-weight: 800;
        color: #111111;
        margin-bottom: 12px;
        line-height: 1.35;
    }

    .why-subtitle {
        font-size: 0.95rem;
        color: #555555;
        line-height: 1.6;
    }

    /* Feature Grid & Cards */
    .why-features-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .why-feature-card {
        background: #f9fbf9;
        border: 1px solid #e2ece5;
        border-radius: 14px;
        padding: 18px 20px;
        display: flex;
        align-items: flex-start;
        gap: 18px;
        transition: all 0.3s ease;
    }

    .why-feature-card:hover {
        background: #ffffff;
        border-color: #135e38;
        box-shadow: 0 10px 25px rgba(19, 94, 56, 0.1);
        transform: translateY(-3px);
    }

    .why-icon {
        width: 48px;
        height: 48px;
        background-color: #eaf4ed;
        color: #135e38;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .why-feature-card:hover .why-icon {
        background-color: #135e38;
        color: #ffffff;
    }

    .why-feature-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 4px;
    }

    .why-feature-desc {
        font-size: 0.85rem;
        color: #666666;
        line-height: 1.5;
        margin: 0;
    }

    @media (max-width: 991px) {
        .why-choose-img {
            height: 380px;
        }
        .why-title {
            font-size: 1.8rem;
        }
    }

    /* Stats Banner Styling */
    .stats-banner-wrapper {
        background-color: #028f82; 
        padding: 28px 20px;
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .stat-item {
        color: #ffffff;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.85rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.9rem;
        font-weight: 500;
        color: #e2f0e7;
        margin-top: 5px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .stat-icon {
            font-size: 1.5rem;
        }
        .stat-number {
            font-size: 1.4rem;
        }
        .stat-label {
            font-size: 0.8rem;
        }
    }

    /* 1. Main Banner Wrapper with Fixed Background */
    .enquiry-cta-section {
        position: relative;
        width: 100%;
        padding: 70px 0;
        /* ফিক্সড ব্যাকগ্রাউন্ড ইমেজ */
        background-image: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&q=80&w=1920');
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
    }

    /* 2. Dark Overlay for high contrast text readability */
    .enquiry-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(10, 40, 25, 0.92) 0%, rgba(19, 94, 56, 0.85) 100%);
        z-index: 1;
    }

    /* Content Container */
    .enquiry-content-wrapper {
        position: relative;
        z-index: 2;
    }

    /* Left Text Block */
    .enquiry-badge {
        display: inline-block;
        background-color: rgba(255, 255, 255, 0.15);
        color: #fff;
        font-weight: 700;
        font-size: 13px;
        padding: 6px 16px;
        border-radius: 30px;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
    }

    .enquiry-heading {
        font-size: 2.3rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 10px;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }

    .enquiry-subheading {
        font-size: 1rem;
        color: #fff;
        margin: 0;
        max-width: 600px;
        line-height: 1.5;
    }

    /* Right Stylish Button */
    .enquiry-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #ffffff;
        color: #135e38;
        font-weight: 800;
        font-size: 1rem;
        padding: 16px 32px;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .enquiry-btn .icon-arrow {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    /* Hover Effects */
    .enquiry-btn:hover {
        background: #8edaa8;
        color: #0a2819;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .enquiry-btn:hover .icon-arrow {
        transform: translateX(5px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .enquiry-heading {
            font-size: 1.75rem;
        }
        .enquiry-subheading {
            font-size: 0.9rem;
        }
        .enquiry-btn {
            padding: 14px 28px;
            font-size: 0.95rem;
            width: 100%;
            justify-content: center;
        }
    }

    /* Footer Styling */
    .site-footer {
        background-color: #111111; /* Black Background */
        color: #b0b0b0;
        padding-top: 70px;
        padding-bottom: 20px;
        font-size: 0.9rem;
    }

    /* Column 1: Logo & Text */
    .footer-logo .logo-text {
        font-size: 1.6rem;
        font-weight: 800;
        color: #ffffff;
    }

    .footer-logo .logo-highlight {
        color: #28a745; /* Vibrant Green */
    }

    .footer-text {
        color: #999999;
        line-height: 1.6;
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .footer-socials {
        display: flex;
        gap: 10px;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
        background-color: #222222;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-socials a:hover {
        background-color: #135e38;
        color: #ffffff;
        transform: translateY(-3px);
    }

    /* Titles */
    .footer-title {
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 22px;
        position: relative;
        padding-bottom: 8px;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 35px;
        height: 2px;
        background-color: #135e38;
    }

    /* Links List */
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #b0b0b0;
        text-decoration: none;
        font-size: 0.88rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.2s ease;
    }

    .footer-links a i {
        font-size: 10px;
        color: #135e38;
        transition: transform 0.2s;
    }

    .footer-links a:hover {
        color: #ffffff;
        padding-left: 5px;
    }

    .footer-links a:hover i {
        color: #28a745;
    }

    /* Contact List */
    .footer-contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        color: #b0b0b0;
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .footer-contact-list i {
        color: #28a745;
        font-size: 16px;
        margin-top: 3px;
        flex-shrink: 0;
    }

    /* Footer Bottom */
    .footer-bottom {
        border-top: 1px solid #222222;
        margin-top: 50px;
        padding-top: 25px;
    }

    .copyright-text {
        color: #777777;
        font-size: 0.82rem;
        margin: 0;
    }

    .bottom-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: flex-end;
        gap: 20px;
    }

    .bottom-links a {
        color: #777777;
        font-size: 0.82rem;
        text-decoration: none;
        transition: color 0.2s;
    }

    .bottom-links a:hover {
        color: #ffffff;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .bottom-links {
            justify-content: center;
            margin-top: 10px;
        }
    }