/* Hero Section */
.hero {
    background: #E7EDF2;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text{
    position: relative;
    z-index: 3;
}
.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    width: 800px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    right:0;
}

.hero-graphic {
    width: 100%;
    height: 100%;
    background: url("../images/home-banner.png") no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00d4aa 0%, #00e6b8 100%);
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(40px);
}

.hero-graphic::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 15%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(30px);
}

/* About Section */
.about-section {
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

/* Vision & Values Section */
.vision-values-section {
    background: linear-gradient(135deg, #00d4aa 0%, #00e6b8 100%);
    color: white;
}

.white-title {
    color: white;
}

.white-title::after {
    background: linear-gradient(90deg, #ffffff 0%, #a8e063 100%);
}

.white-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.vision-box {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}

.vision-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.vision-box p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

.values-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background: white;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-card:nth-child(4),
.value-card:nth-child(5) {
    grid-column: span 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Make last row center with 2 cards */
.value-card:nth-child(4) {
    grid-column: 1 / 2;
}

.value-card:nth-child(5) {
    grid-column: 2 / 3;
}

.value-icon {
    width: 70px;
    height: 70px;    
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}
.value-icon img{
    width: 100%;
    height: 100%;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-image {
        height: 300px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-card:nth-child(4),
    .value-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card:nth-child(4),
    .value-card:nth-child(5) {
        grid-column: 1;
    }

    .vision-box {
        padding: 30px 20px;
    }
}
