/* General Section Styles */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: var(--fs-heading-3);
    font-weight: 700;
    color: var(--c-dark-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header .divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--c-green), var(--c-yellowgreen));
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-header .subtitle {
    font-size: var(--fs-xlarge);
    color: #666;
    font-weight: 300;
}

.bg-light {
    background-color: #f9f9f9;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: var(--fs-medium);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--br-medium);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--c-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(52, 180, 74, 0.3);
}

.btn-primary:hover {
    background-color: var(--c-yellowgreen);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 180, 74, 0.4);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use a nice dark gradient or placeholder image */
    background: linear-gradient(135deg, rgba(14, 14, 14, 0.9), rgba(20, 40, 30, 0.8)), url('../assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-logo img.logo-text {
    max-width: 300px;
    margin-bottom: 60px;
}

.hero-content .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--c-yellow);
}

.hero-content .hero-desc {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #444;
    font-size: 1.05rem;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--c-dark-gray);
}

.value-item .icon {
    width: 32px;
    height: 32px;
    background-color: rgba(52, 180, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-vision-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mv-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--br-large);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--c-green);
    transition: transform 0.3s ease;
}

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

.mv-card:last-child {
    border-left-color: var(--c-yellow);
}

.mv-card h3 {
    font-size: var(--fs-xlarge);
    margin-bottom: 1rem;
    color: var(--c-dark-gray);
}

.mv-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--br-large);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--c-green);
}

.service-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-card h3 {
    font-size: var(--fs-heading-1);
    margin-bottom: 1.5rem;
    color: var(--c-dark-gray);
}

.service-card ul {
    list-style: none;
    text-align: left;
    padding-left: 1rem;
}

.service-card ul li {
    position: relative;
    margin-bottom: 0.8rem;
    color: #555;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: "•";
    color: var(--c-green);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Leadership Section */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white);
    border-radius: var(--br-large);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

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

.leader-info {
    padding: 2rem;
    text-align: center;
}

.leader-info h3 {
    font-size: var(--fs-heading-2);
    color: var(--c-dark-gray);
    margin-bottom: 0.5rem;
}

.leader-info .role {
    display: inline-block;
    color: var(--c-green);
    font-weight: 600;
    font-size: var(--fs-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.leader-info p {
    color: #666;
    line-height: 1.6;
}

/* Clients Section */
.clients-carousel-container {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.client-item {
    font-size: 2rem;
    font-weight: 800;
    color: #ccc;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.client-item:hover {
    color: var(--c-dark-gray);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Contact Section */
.contact-section {
    background-color: var(--c-dark-gray);
    color: var(--white);
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-info a,
.contact-info p {
    color: #aaa;
    font-size: 1.1rem;
    text-decoration: none;
}

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--br-large);
    color: var(--c-dark-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: var(--fs-small);
    text-transform: uppercase;
    color: #666;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--br-medium);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-green);
}

.full-width {
    width: 100%;
}

/* Animations included in HTML */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .clients-track {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-section {
        height: auto;
        padding: 100px 20px;
        padding-bottom: 20px;
    }

    .service-card {
        padding: 1.5rem;
    }
}