
   :root {
            --xprimary-green: #10b981;
            --xlight-green: #d1fae5;
            --xdark-green: #059669;
            --xnavy: #1e3a8a;
            --xlight-gray: #f8fafc;
            
            --primary-green: #F66603;
            --light-green: #F9AC63;
            --dark-green: #F66603;
            --navy: #058757;
            --navyd: #057857;
            --light-gray: #f8fafc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: roboto,'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(135deg, #25B86C 0%, var(--navy) 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem !important;
        }

        .nav-link:hover {
            color: var(--primary-green) !important;
            transform: translateY(-2px);
        }

        .btn-cta {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        .btn-cta:hover {
            background: var(--dark-green);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--navyd) 0%, var(--navy) 100%),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231e3a8a" width="1200" height="600"/><path fill="%232563eb" opacity="0.3" d="M0 300L50 280C100 260 200 220 300 200C400 180 500 180 600 200C700 220 800 260 900 280C1000 300 1100 300 1150 300L1200 300L1200 600L1150 600C1100 600 1000 600 900 600C800 600 700 600 600 600C500 600 400 600 300 600C200 600 100 600 50 600L0 600Z"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: var(--primary-green);
            border-radius: 50%;
            top: -250px;
            right: -250px;
            opacity: 0.1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
        }

        .hero-content .highlight {
            color: var(--primary-green);
            display: block;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 0.8s ease 0.4s both;
            flex-wrap: wrap;
        }

        .btn-secondary-hero {
            background: white;
            color: var(--navy);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary-hero:hover {
            background: var(--light-green);
            transform: translateY(-2px);
            color: var(--dark-green);
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease;
        }

        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            width: 100%;
        }

        /* Stats Section */
        .stats-section {
            background: white;
            padding: 3rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            z-index: 10;
            margin-top: -40px;
            border-radius: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-green);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #64748b;
            font-size: 1rem;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 3rem;
            text-align: center;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 100%;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
            border-color: var(--primary-green);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--dark-green);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotate(5deg) scale(1.1);
        }
        .stats-section  h3 {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--navy);
            margin-bottom: 1rem;
            line-height:1.8rem;
        }
        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .service-card ul {
            list-style: none;
            padding: 0;
        }

        .service-card li {
            padding: 0.5rem 0;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-card li::before {
            content: "✓";
            color: var(--primary-green);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Why Us Section */
        .why-us-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--navyd) 0%, var(--navy) 100%);
            color: white;
        }

        .why-us-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .why-us-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateX(10px);
        }

        .why-us-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-green);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        /* Projects Section */
        .projects-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .project-card {
            border-radius: 20px;
            overflow: hidden;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .project-image {
            height: 160px;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .project-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover .project-image::after {
            opacity: 1;
        }

        .project-content {
            padding: 2rem;
        }

        .project-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .project-link {
            color: var(--primary-green);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .project-link:hover {
            gap: 1rem;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: white;
        }

        .testimonial-card {
            background: var(--light-gray);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .testimonial-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-5px);
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-style: italic;
            color: #64748b;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .stars {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        /* Contact Form */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--navy) 0%, #2563eb 100%);
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .form-control, .form-select {
            padding: 0.875rem 1rem;
            border-radius: 10px;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
        }

        /* Footer */
        footer {
             background: linear-gradient(135deg, var(--navyd) 0%, var(--navy) 100%);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-green);
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-green);
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }
        
        .logo{
          width:150px;
        }
        .tenant{
          width: 167px;
    margin: 1rem;
    margin-bottom: 1rem;
            
        }
        .logo_tenant{
            width:100%;
        }
.team-section li::before {
    content: "✓ ";
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
    width: 20px;
}
#name{ display:none}
#message{
 min-height:300px;
}
.contact_form{
 margin-bottom:15px;
}

@media screen and (min-width: 992px){
.rs-contact.main-home.office-modify1 .contact-section {
    padding: 70px 40px 46px;
}
}
