@charset "utf-8";
/* CSS Document */


        :root {
            --primary-green: #1acc8d;
            --dark-bg: #222222;
            --text-muted: #666666;
            --border-color: #eeeeee;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            background-color: #fcfcfc;
            font-size: 1.0rem;
        }

p {
    font-size: 1.0rem !important;
}

        /* Header & Nav */
        .navbar-brand .logo-main { font-weight: 300; font-size: 1.8rem; color: var(--primary-green); line-height: 1; }
        .navbar-brand .logo-sub { font-weight: 700; color: #444; letter-spacing: 2px; }
        
        .nav-link {
            color: #444 !important;
            font-weight: 500;
            padding: 15px 20px !important;
            transition: 0.3s;
        }
        .nav-link.active {
            background-color: var(--primary-green) !important;
            color: white !important;
        }

        /* Hero / Carousel */
        .hero-section {
            background: white;
            padding: 20px 0;
            border-bottom: 4px solid var(--primary-green);
        }
        .hero-img-container {
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .info-card {
            background: #fff;
            padding: 25px;
            border-left: 1px solid #eee;
        }
        .info-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 0.9rem;
        }
        .info-label { color: #888; }
        .info-value { font-weight: 500; color: #444; }

        /* Home Page Specific Refinements */
        .section-header {
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 5px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
        .section-header-text {
            font-size: 1.15rem;
            text-transform: uppercase;
            color: #222;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        .section-header-text .cap { font-size: 1.6rem; font-weight: 400; }
        .section-header-text .green {color: var(--primary-green);border: 00;}
        .section-header .read-more { font-size: 0.8rem; color: var(--primary-green); text-decoration: none; margin-bottom: 4px; }

        .multi-line-separator {
            height: 7px;
            background: repeating-linear-gradient(to bottom, #dcdcdc, #dcdcdc 1px, transparent 1px, transparent 3px);
            margin: 40px 0;
            opacity: 0.7;
        }

        .custom-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--primary-green);
            color: white;
            padding: 15px 12px;
            cursor: pointer;
            z-index: 5;
            border: none;
            opacity: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            width: auto;
            text-decoration: none;
        }
        .custom-slider-arrow:hover {
            color: white;
            opacity: 0.9;
        }
        .custom-slider-arrow.left { left: 0; }
        .custom-slider-arrow.right { right: 0; }
        
        .info-card-home {
            background: #fff;
            padding: 30px;
            position: relative;
        }
        .info-card-home .info-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f4f4f4;
            font-size: 0.85rem;
        }
        .row-total-area { position: relative; }
        .arrow-right-green {
            position: absolute;
            right: -30px;
            top: -12px;
            bottom: -12px;
            background-color: var(--primary-green);
            color: white;
            width: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .btn-green-small {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 6px 18px;
            font-size: 0.9rem;
        }

        /* Sections */
        .section-title {
            font-size: 1.7rem;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        .section-title span { color: var(--primary-green); font-weight: 300; }
        .read-more { font-size: 0.8rem; color: var(--primary-green); text-decoration: none; float: right; }

        /* Sidebar Capabilities */
        .capabilities-card {
            border-left: 1px solid #ddd;
            padding-left: 20px;
        }

        /* Forms */
        .form-control {
            border-radius: 2px;
            border: 1px solid #7c7c7c;
            margin-bottom: 10px;
            font-size: 0.9rem;
            --bs-border-opacity: aqua;
        }
        .btn-submit {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 8px 30px;
            border-radius: 2px;
            width: 100%;
        }

        /* Footer */
        .main-footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 30px 0;
            margin-top: 50px;
        }
        .social-icons a {
            background: #444;
            color: white;
            width: 35px;
            height: 35px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: 5px;
            text-decoration: none;
            transition: 0.3s;
        }
        .social-icons a:hover { background: var(--primary-green); }
        .bottom-bar {
            background-color: var(--primary-green);
            color: white;
            padding: 10px 0;
            font-size: 0.8rem;
        }

        /* SPA Routing Visibility */
        .page-content { display: none; min-height: 65vh; }
        .page-content.active { display: block; animation: fadeIn 0.3s; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

        .gallery-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .gallery-item img:hover { transform: scale(1.05); }

        .client-logo {
            padding: 5px;
            border: 1px solid #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
        }
        .client-logo img {max-width: 100%;max-height: 100%;}