/* style.css */

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
    background-color: #000; /* Dark background */
    color: #fff; /* White text for contrast */
}
/* Custom styles for rounded corners, shadows, and button effects */
.card {
    border-radius: 1.5rem; /* More pronounced rounded corners */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2); /* Stronger shadow */
}
.btn {
    border-radius: 9999px; /* Pill shape */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.btn:hover {
    transform: translateY(-3px); /* More pronounced lift effect */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}
.section-heading {
    font-size: 3rem; /* Larger headings */
    font-weight: 800; /* Extra bold */
    color: #ffcc00; /* Gold color from your original */
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Specific header background styling for Eden Ai Campus Full Backgrown.png and sky-blue look */
.hero-header {
    background-image: url('images/Eden Ai Campus Full Backgrown.png'); /* Using .png extension */
    background-size: cover;
    background-position: center center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 0;
    overflow: hidden; /* Hide overflow for absolute positioned elements */
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Sky-blue gradient overlay */
    background: linear-gradient(to bottom, rgba(135, 206, 235, 0.4) 0%, rgba(70, 130, 180, 0.6) 100%); /* Sky blue to steel blue, slightly transparent */
    z-index: -1;
}

/* Floating OS Lab image styling */
.os-lab-image {
    position: absolute;
    bottom: 5%; /* Adjust position as needed */
    right: 5%; /* Adjust position as needed to float it */
    max-width: 250px; /* Max width for smaller screens */
    opacity: 0.9;
    border-radius: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
    z-index: 1; /* Ensure it's above the overlay */
}
.os-lab-image:hover {
    transform: translateY(-10px) scale(1.05);
    opacity: 1;
}

@media (min-width: 768px) { /* Larger screens */
    .os-lab-image {
        max-width: 350px;
        bottom: 10%;
        right: 10%;
    }
}
@media (min-width: 1024px) { /* Even larger screens */
    .os-lab-image {
        max-width: 450px;
        bottom: 15%;
        right: 15%;
    }
}

/* Responsive image grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adaptive columns */
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
    padding: 1rem;
}
.image-grid img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensures image fits within its box without cropping, preventing smudge from stretching */
    border-radius: 1.25rem; /* Consistent rounding */
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.image-grid img:hover {
    transform: scale(1.03); /* Slight zoom on hover */
}

/* Adjust padding for sections */
section {
    padding: 5rem 1.5rem; /* More vertical padding */
    text-align: center;
}

/* Dark background for certain sections */
.bg-dark-section {
    background-color: #1a1a1a;
}
.text-accent {
    color: #ffcc00; /* Gold accent color */
}
