/*  Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

/* Panner section starts here */
.hero-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    .hero-image img {
        height: 70vh;
    }
}

/* our milestones starts here */
.heading{
    width: 100%;
    text-align: center;
    margin: 30px 0px;
    h2{
        font-size: 40px;
    }
}
.head-color{
    color: #FFCC00;
}

/* General Styles */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Adds space between images */
    padding: 20px;
}

.row {
    display: flex;
    justify-content: center;
}

.row img {
    width: 80%;
    max-width: 300px; /* Prevents images from being too large */
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px; /* Smooth corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.row img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Responsive Grid */
@media screen and (min-width: 576px) {
    .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns for small screens */
    }
}

@media screen and (min-width: 768px) {
    .container {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
    }
}

@media screen and (min-width: 1024px) {
    .container {
        grid-template-columns: repeat(4, 1fr); /* 4 columns for desktops */
    }
}

@media screen and (min-width: 1200px) {
    .container {
        grid-template-columns: repeat(5, 1fr); /* 5 columns for larger screens */
    }
}