.map_data_blac {
	width:100%;
	height:120px;
}	
.section {
    padding: 80px 20px;
    text-align: center;
}

.section h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #1a2a44;
    letter-spacing: 1px;
}

.section p {
    color: #666;
    margin-bottom: 50px;
}

.container_one {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #0f9b0f, #38ef7d);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f9b0f;
}

.card span {
    font-size: 14px;
    color: #777;
}

.footer-note {
    margin-top: 40px;
    font-size: 15px;
    color: #555;
}

/* Animation */
.card {
    opacity: 0;
    transform: translateY(40px);
}

.card.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}