:root {
            --primary-green: #1a7f5c;
            --primary-gold: #d4af37;
            --dark-bg: #0f2d20;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }
        .bg-gradient-green {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-green) 100%);
        }
        .text-gold {
            color: var(--primary-gold);
        }
        .btn-gold {
            background-color: var(--primary-gold);
            color: var(--dark-bg);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: #b8941f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .btn-outline-gold {
            border: 2px solid var(--primary-gold);
            color: var(--primary-gold);
            background: transparent;
            font-weight: 600;
            padding: 10px 28px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-outline-gold:hover {
            background-color: var(--primary-gold);
            color: var(--dark-bg);
            transform: translateY(-3px);
        }
        .navbar {
            background-color: rgba(15, 45, 32, 0.95);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-gold) !important;
        }
        .hero-section {
            background: url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 45, 32, 0.8);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .section-padding {
            padding: 100px 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 60px;
            text-align: center;
        }
        .section-title h2 {
            color: var(--dark-bg);
            display: inline-block;
            padding-bottom: 15px;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            margin-bottom: 30px;
        }
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 25px;
        }
        .portfolio-item {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 300px;
            position: relative;
        }
        .portfolio-item:hover {
            transform: translateY(-10px);
        }
        .portfolio-img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.05);
        }
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(15,45,32,0.9) 0%, transparent 100%);
            color: white;
            padding: 30px 20px 20px;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        .team-card {
            text-align: center;
            margin-bottom: 30px;
        }
        .team-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 5px solid var(--primary-green);
        }
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            height: 100%;
        }
        .client-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            float: left;
            margin-right: 15px;
        }
        .contact-info-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-10px);
        }
        .contact-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 80px 0 30px;
        }
        .footer-links h5 {
            color: var(--primary-gold);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-links h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--primary-gold);
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--primary-gold);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        .flink {
            background: rgba(255,255,255,0.05);
            padding: 8px 15px;
            border-radius: 5px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s;
            color: #ddd;
            text-decoration: none;
        }
        .flink:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-3px);
        }
        .news-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            height: 100%;
        }
        .news-card:hover {
            transform: translateY(-10px);
        }
        .news-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        .news-content {
            padding: 25px;
            background: white;
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 50px auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary-green);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -13px;
            background-color: white;
            border: 4px solid var(--primary-gold);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .timeline-item:nth-child(even)::after {
            left: -12px;
        }
        @media screen and (max-width: 768px) {
            .hero-section {
                padding: 150px 0 80px;
            }
            .section-padding {
                padding: 70px 0;
            }
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item:nth-child(even) {
                left: 0;
            }
            .timeline-item::after {
                left: 18px;
            }
        }
        .stats-box {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255,255,255,0.9);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        .counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 10px;
        }
        .award-logo {
            max-height: 80px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        .award-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
