:root {
    /* --capacit-primary: #00A86B; */
    --capacit-primary: #00693E;
    --capacit-dark: #426e4b;
    --capacit-bg: #f8f9fa;
    --white: #ffffff;
    --black: #212529;
}

/* Original 00A86B */
/* :root {
    --capacit-primary: #5d9d6b;
    --capacit-dark: #426e4b;
    --capacit-bg: #f8f9fa;
    --white: #ffffff;
    --black: #212529;
} */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #212529;
    line-height: 1.5;
}

/* Utility Classes */
.text-capacit-primary {
    color: var(--capacit-primary) !important;
}

.bg-capacit-primary {
    background-color: var(--capacit-primary) !important;
}

.bg-capacit-dark {
    background-color: var(--capacit-dark) !important;
}

.bg-light-primary {
    background-color: rgba(93, 157, 107, 0.1) !important;
}

.bg-light-secondary {
    background-color: #f5f5f5 !important;
}

.hover-shadow:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    transition: box-shadow 0.3s ease;
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.hover-white:hover {
    color: white !important;
    transition: color 0.3s ease;
}

/* Navbar */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.fixed-top {
    transition: all 0.3s ease;
}

.fixed-top.scrolled {
    background-color: var(--white) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-nav .nav-link {
    color: #212529;
    font-weight: 500;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    padding-top: 7rem;
    padding-bottom: 4rem;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 9rem;
        padding-bottom: 6rem;
    }
}

.text-capacit-primary-2 {
    color: #00A86B;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-section .container {
    z-index: 1;
}

.hero-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 3rem;
    }
}

/* Section styles */
.py-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .py-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 2.5rem;
    }
}

/* Process Timeline */
.process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2rem;
    width: 2px;
    background-color: rgba(93, 157, 107, 0.3);
    z-index: 0;
}

@media (min-width: 768px) {
    .process-timeline::before {
        left: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .process-timeline::before {
        left: 50% !important;
    }

    .process-timeline .process-icon {
        margin: 0 auto;
        margin-bottom: 48px;
    }
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Button */
.btn-gradient-primary {
    position: relative;
    font-weight: 500 !important;
    color: #fff !important;
    background: linear-gradient(155deg, var(--capacit-primary) 0%, #00A86B 99%) !important;
    border-color: var(--capacit-primary) !important;
    transition: 1s ease-in-out !important;
}

.btn-gradient-primary:after {
    content: '';
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    z-index: 2;
    background: rgba(255, 255, 255, .125);
    border-radius: var(--bs-border-radius-pill);
    opacity: 0;
    transition: .125s ease-in-out
}

.btn-gradient-primary:hover:after,
.btn-gradient-primary:focus:after,
.btn-gradient-primary:focus-visible:after,
.btn-gradient-primary:active:after {
    opacity: 1;
    width: 100%;
}

.btn-gradient-primary:focus,
.btn-gradient-primary:focus-visible,
.btn-gradient-primary:active {
    box-shadow: 0 0 0 0.25rem rgba(0, 105, 62, .5)
}

.btn-primary:hover {
    background: #009961;
    border-color: #009961;
    font-weight: 500;
    color: #fff;
}

.btn-primary {
    background: #008051;
    border-color: #008051;
    font-weight: 500;
    color: #fff;
}

.text-secondary {
    color: #53595f !important;

}

.btn-outline-light:hover {
    color: var(--capacit-primary) !important;
}

/* Make sure buttons are proper size */
.btn {
    padding: 0.5rem 1.25rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
}

/* Aspect Square */
.aspect-square {
    aspect-ratio: 1/1;
}

/* Custom Rounded */
.rounded-4 {
    border-radius: 0.75rem !important;
}

.card-type-1 {
    position: relative;
    border-radius: 1.5rem;
    bottom: 0;
    transition: .125s ease-in-out !important;
}

.card-type-1:hover {
    bottom: 20px;
}

#services {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2240%22%20height%3D%2240%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Crect%20width%3D%2240%22%20height%3D%2240%22%20fill%3D%22none%22/%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%222%22%20fill%3D%22%23e6ffe6%22%20/%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2210%22%20r%3D%222%22%20fill%3D%22%23e6ffe6%22%20/%3E%3Ccircle%20cx%3D%2230%22%20cy%3D%2210%22%20r%3D%222%22%20fill%3D%22%23e6ffe6%22%20/%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2230%22%20r%3D%222%22%20fill%3D%22%23e6ffe6%22%20/%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2230%22%20r%3D%222%22%20fill%3D%22%23e6ffe6%22%20/%3E%3Ccircle%20cx%3D%2230%22%20cy%3D%2230%22%20r%3D%222%22%20fill%3D%22%23e6ffe6%22%20/%3E%3C/svg%3E") !important;
    background-repeat: repeat;
    background-size: 80px 80px;
}

#navbar:not(.bg-white) .nav-link {
    color: #fff !important;
}

.bg-light-1 {
    background: #e6ffe6;
}

#cases .card {
    border: 0;
}

/* Technologies Section */
.tech-logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  padding: 0.5rem;
}

.tech-logo:hover {
  transform: translateY(-5px);
}

#technologies h3 {
    color: #008051;
    font-size: 20px !important;
}

#technologies .card {
    border: 0 !important;
    border-radius: 1rem;
}

footer {
    background: #00A86B !important;
}

.text-secondary-2 {
    color: #e6e6e6 !important;
}