:root {
    --primary-color: #006845;
    --secondary-color: #00ab72;
    --dark-color: #222;
    --light-color: #fff;
    --gray-color: #f5f5f5;
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-left .welcome-text {
    font-weight: 700;
    text-transform: uppercase;
}

.top-bar-right {
    text-align: right;
}

.contact-info {
    margin-left: 20px;
}

.contact-info i {
    margin-right: 5px;
}

/* Header */
.header {
    background: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand .logo {
    height: 80px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #333;
    margin: 0 10px;
    text-transform: uppercase;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
    margin-top: 0;
}

.carousel-item img {
    height: 600px;
    object-fit: cover;
}

/* Services Section */
.services-section {
    background: var(--gray-color);
}

.service-item {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* About Section */
.about-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-content h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

/* All Services Section */
.all-services-section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.all-services-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-card {
    text-align: center;
    background: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h4 {
    padding: 20px;
    color: var(--primary-color);
    margin: 0;
}

/* Strengths Section */
.strengths-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.strength-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-5px);
}

.strength-icon img {
    width: 500px;
    height: 400px;
    margin-bottom: 15px;
}

.strength-card h5 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.clients-track {
    display: flex;
    width: max-content;
    gap: 40px;
    animation: scroll-left 45s linear infinite;
}

/* Pause on hover */
.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

.client-logo {
    width: 180px;
    height: 120px;
    flex: 0 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Infinite scroll animation */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--light-color);
}

.footer-top {
    background: var(--primary-color);
}

.footer-widget h4 {
    color: var(--light-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-logo {
    height: 60px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
}

.design-credit a {
    color: var(--light-color);
    text-decoration: none;
}

.design-credit a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar-right {
        text-align: left;
        margin-top: 10px;
    }

    .contact-info {
        display: block;
        margin: 5px 0;
    }

    .carousel-item img {
        height: 300px;
    }

    .navbar-nav {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .clients-slider {
        gap: 15px;
    }
.strength-icon img {
    width: 350px;
    height: 250px;
    margin-bottom: 15px;
}
      
}

.mobilebtn {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    background: #4ed1aa;
    border-top: 1px solid #cecece;
}

.mobile-fixed-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-fixed-box {
    flex: 1;
    text-align: center;
}

.bottom-fixed-box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
}

.bottom-fixed-box a span {
    font-size: 14px;
    margin-top: 3px;
}

.fa-phone,
.fa-envelope,
.fa-whatsapp {
    font-size: 22px;
    color: #fff;
}

.border-left1 {
    border-right: 1px solid #fff;
}

/* Optional: Slight resizing for smaller screens */
@media (max-width: 480px) {
    .bottom-fixed-box a span {
        font-size: 12px;
    }

    .fa-phone,
    .fa-envelope,
    .fa-whatsapp {
        font-size: 20px;
    }
}

 
