/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color:#1f242d;
}

/* Section Styling */
.discover-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Image Grid Layout */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.image-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
}

.grid-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid #f1f1f1;
}

/* Caption Styling */
.image-caption {
    padding: 1.5rem;
    text-align: center;
}

.image-caption p {
    text-align: justify;
}

.caption-heading {
    color: #2d3436;
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    text-align: left;
}

.caption-text {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.4;
}

.hero-btn-temp{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #3f6cff;
    border-radius: 10px;
    padding: 12px 34px;
    font-size: 13px;
    background:#3f6cff ;
    
    cursor: pointer;
    margin-bottom: 5px;
}

.hero-btn-temp:hover{
    border: 1px solid#050f28;
    background:#050f28;
    transition: 0.3s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid-image {
        height: 250px;
    }
}