/* General */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
}

/* Hero Section */
.hero {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background-color: rgba(0,0,0,0.4);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}
.btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}
.btn-primary:hover {
    background-color: #0056b3;
}

/* Services */
.services {
    padding: 5rem 2rem;
    text-align: center;
}
.services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.service-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    width: 250px;
    transition: transform 0.3s;
    cursor: pointer;
}
.card:hover {
    transform: translateY(-10px);
}
.card img {
    width: 60px;
    margin-bottom: 1rem;
}

/* Infographics */
.infographics {
    background: #e9ecef;
    padding: 5rem 2rem;
    text-align: center;
}
.infographic-items {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}
.infographic-items .item img {
    width: 150px;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery {
    padding: 5rem 2rem;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    transition: transform 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



