.culture-hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.87), rgba(0, 0, 0, 0.89)),
        url('https://img.freepik.com/free-photo/foreman-businessman-solar-energy-station_1157-35684.jpg?t=st=1774265520~exp=1774269120~hmac=5445afdbfe11bc2b8701e66ca07d8d34cdc0e73b79a762d15ff5a2c07b690b79&w=1480') center/cover no-repeat;
}

.culture-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.culture-hero p {
    max-width: 800px;
    display: flex;
    margin: 20px auto 0;
}

.content-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-section p {
    color: #555;
    line-height: 1.7;
}

.integrity-card {
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    margin-bottom: 10px;
}

.integrity-card:hover {
    transform: translateX(6px);
    background: #f9fdfb;
}

.integrity-card span {
    color: #095763;
    background-color: #09576341;
    border-radius: 50%;
    padding: 4px 8px;
    margin-right: 10px;
}

.integrity-text-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    line-height: 1.7;
    color: #444;
}

.vision-hero {
    padding: 3rem 0;
    /* background: linear-gradient(to top, #f8fafc 0%, #ffffff 100%); */
    text-align: center;
}

.growth-section,
.content-section,
.human-layer-section {
    background: #f8fafc;
}

.growth-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.growth-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.growth-card p {
    font-size: 14px;
    color: #666;
}

.growth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.growth-highlight {
    background: linear-gradient(135deg, #095763, #095763c0);
    color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
}

.growth-image-wrapper {
    position: relative;
    display: inline-block;
}

.main-img {
    width: 100%;
}

.growth-arrow {
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 150px;
    animation: upDown 2.5s ease-in-out infinite;
}

@media screen and (max-width: 425px) {
    .growth-arrow {
        right: 0px;
    }
}

/* Only Vertical Movement */
@keyframes upDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.human-image-wrapper img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.human-card {
    background: #f3f3f3;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 500;
    transition: 0.3s;
}

.human-card:hover {
    transform: translateX(6px);
    background: #0957631a;
}

.nation-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.35s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.nation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: #e6f4ec;
}

.nation-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background: #095763;
    transition: 0.4s;
}

.nation-card:hover::before {
    width: 60%;
}

.nation-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nation-icon img {
    width: 60px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.nation-card:hover .nation-icon img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.nation-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.nation-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.environment-section {
    background: #ffffff;
}

.env-card-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
}

.env-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.env-card-img .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
}

.env-card-img h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.env-card-img p {
    font-size: 13px;
    opacity: 0.9;
}

/* Hover Effect */
.env-card-img:hover img {
    transform: scale(1.1);
}

/* Swiper spacing */
.envSwiper {
    padding: 20px 10px 40px;
}

.ethics-section {
    background: #f8f9fa;
}

/* Cards */
.ethics-card {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border-left: 4px solid #095763;
}

.ethics-card:hover {
    transform: translateX(6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Highlight Box */
.ethics-highlight {
    background: linear-gradient(135deg, #095763, #095763b6);
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    font-size: 16px;
    margin-top: 20px;
}

.impact-section {
    /* min-height: 60vh; */
    background: linear-gradient(135deg, #074650, #095763);
    color: #ffffff;
    padding: 80px 0;
}

/* Wrapper */
.impact-wrapper {
    max-width: 800px;
    margin: auto;
}

/* Title */
.impact-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Highlight */
.impact-text-highlight {
    color: #e5b73b;
}