/* Custom Styling for About Us */
:root {
    --theme-primary: #000;
    /* Using a dark green/blue that signifies agriculture/tech */
    --theme-primary-rgb: 45, 106, 79;
    --theme-dark: #1b4332;
    --theme-light: #f8f9fa;
    --theme-accent: #1e60aa;
}

.section-title {
    font-weight: 800;
    color: var(--theme-dark);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--theme-accent);
    border-radius: 2px;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-muted-custom {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.vision-mission-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    height: 100%;
    border-bottom: 4px solid #00000029;
}

.vision-mission-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--theme-accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vision-mission-card .icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--theme-primary-rgb), 0.1);
    color: #1a4b82;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.vertical-card {
    background: var(--theme-light);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #eef2f5;
}

.vertical-card:hover {
    background: #3776d1;
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.vertical-card:hover h4,
.vertical-card:hover p {
    color: white;
}

.vertical-card .icon {
    font-size: 45px;
    color: #1a4b82;
    margin-bottom: 25px;
    transition: 0.4s;
}

.vertical-card:hover .icon {
    color: white;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.approach-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.approach-item .icon {
    font-size: 24px;
    color: var(--theme-primary);
    margin-right: 20px;
    background: rgba(var(--theme-primary-rgb), 0.1);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-section {
    color: white;
}

/* .impact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
} */

.impact-stat {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-box {
    padding: 10px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.card-box .card_inner {
    box-shadow: 0 0 2px #fff;
    padding: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #000;
}

.impact-stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.impact-stat p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-us-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    border-left: 5px solid #1a4b82;
    transition: 0.3s;
}

.why-us-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.why-us-item i {
    font-size: 28px;
    color: #1a4b82;
    margin-right: 20px;
}

.why-us-item h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.15rem;
    color: #000;
}

.belief-section {
	/* background: var(--theme-light); */
	/* padding: 100px 0; */
	text-align: center;
	position: relative;
	color: #fff;
}

.belief-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: #fff;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.quote-icon {
    position: absolute;
    font-size: 180px;
    color: rgba(var(--theme-primary-rgb), 0.05);
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    line-height: 1;
    font-family: Georgia, serif;
}

.future-timeline {
    position: relative;
    padding-left: 35px;
    border-left: 3px solid rgb(28, 92, 163);
    margin-top: 30px;
}

.future-item {
    position: relative;
    margin-bottom: 35px;
}

.future-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1974bf;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(var(--theme-primary-rgb), 0.2);
}

.future-item h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

/* .cta-section { background: linear-gradient(rgba(27, 67, 50, 0.8), rgba(27, 67, 50, 0.9)), url('/assets/Front/images/gallery/1.webp') center/cover fixed; position: relative; padding: 120px 0; text-align: center; color: white; border-radius: 20px; overflow: hidden; margin-bottom: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
    .cta-content { position: relative; z-index: 1; }
    .cta-content h2 { font-size: 3rem; font-weight: 800; color: white; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 2px; } */

.btn-custom {
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-primary-custom {
    background: var(--theme-accent);
    color: white;
    border: 2px solid var(--theme-accent);
    box-shadow: 0 10px 20px rgba(82, 183, 136, 0.3);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--theme-accent);
    transform: translateY(-3px);
}

.btn-outline-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--theme-dark);
    transform: translateY(-3px);
}

.hero-img-wrapper {
    position: relative;
    padding: 15px;
}

.hero-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 30%;
    border-top: 5px solid var(--theme-accent);
    border-left: 5px solid var(--theme-accent);
    border-radius: 15px 0 0 0;
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 30%;
    border-bottom: 5px solid var(--theme-accent);
    border-right: 5px solid var(--theme-accent);
    border-radius: 0 0 15px 0;
}

.hero-img-wrapper img {
    border-radius: 15px;
    object-fit: cover;
}

.list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.list-check li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--theme-accent);
}