
/* Hero Section */
#hero {
    padding: 150px 20px 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #1dbf73;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styles */
.content-box {
    max-width: 900px;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    text-align: center;
}

/* Project Overview (Better Readability) */
.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
}

/* Project Overview (Better Readability & Structure) */
.overview-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.overview-text {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.overview-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 15px;
}

.overview-list {
    list-style: none;
    padding: 0;
}

.overview-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.overview-list li span {
    font-size: 1.5rem;
}

/* Overview Image */
.overview-image {
    flex: 1;
    text-align: center;
}

.overview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .overview-container {
        flex-direction: column;
        text-align: center;
    }

    .overview-text {
        text-align: center;
        max-width: 100%;
    }

    .overview-list li {
        justify-content: center;
    }
}


/* Architecture Image */
.image-container img {
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    margin-top: 15px;
}

/* Deployment Steps (Better Alignment & Readability) */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.step {
    background: rgba(255, 255, 255, 0.15);
    width: 90%;
    max-width: 700px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    text-align: left;
}

.step:hover {
    transform: scale(1.05);
}

/* Tech Stack (Last Row Centered) */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
}

.tech {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    width: 150px;
}

.tech img {
    max-width: 80px;
    height: auto;
}

.tech:hover {
    transform: scale(1.1);
}

/* Challenges Section */
.challenges-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.challenge {
    background: rgba(255, 255, 255, 0.15);
    width: 90%;
    max-width: 700px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    margin-top: 40px;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .content-box {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .overview-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .tech-grid {
        justify-content: center;
    }

    .step {
        width: 100%;
        max-width: 600px;
    }
}

@media screen and (max-width: 480px) {
    #hero {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        align-items: center;
    }

    .tech-grid {
        justify-content: center;
    }

    .challenges-list {
        flex-direction: column;
        align-items: center;
    }
}

/* Keyframes for a pulse effect */
@keyframes pulse {
    0% {
        background-color: rgba(255, 255, 255, 0.1);
    }
    50% {
        background-color: rgba(255, 255, 255, 0.2);
    }
    100% {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

.info-banner {
    /* Base styles */
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 60px;
    
    /* Animation */
    animation: pulse 3s infinite;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.info-banner {
    /* Existing styles... */
    animation: pulse 3s infinite, slideDown 0.8s ease-out;
}
