html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a2e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    background: linear-gradient(135deg, #16222A 0%, #3A6073 100%);
    border-radius: 15px;
    width: 100%;
    max-width: 1400px;
    margin: 1rem;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    min-height: calc(100vh - 2rem);
}

.content-wrap {
    padding: 2rem 2rem 0 2rem;
    flex: 1 0 auto;
}

.navbar {
    background-color: #0F2027;
    padding: 1rem 2rem;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 600;
}

.hero-section {
    padding: 2rem 0;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.15rem;
    color: #b3c5d1;
    max-width: 600px;
    margin: 0 auto 1rem auto;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
}

.info-card .card-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00aaff;
}

.info-card p, .info-card li {
    font-size: 1rem;
    line-height: 1.6;
    color: #dce4e9;
}

.info-card ul {
    padding-left: 20px;
}

.info-card li {
    margin-bottom: 0.8rem;
}

.table {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.table th, .table td {
    padding: 0.75rem;
}

footer {
    background-color: #0F2027;
    padding: 2rem;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 100%;
}

footer h5 {
    font-weight: 600;
}

footer a {
    color: #b3c5d1;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.social-icon {
    font-size: 1.5rem;
    margin: 0 0.5rem;
}

/* Carousel Styles */
.carousel {
    margin: 0 auto 2rem auto;
    max-width: 900px;
}

.carousel-item .info-card {
    height: 450px; /* Fixed height to prevent jumping */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
}

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 0 7px;
}

.carousel-indicators .active {
    background-color: #ffffff;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 15px;
    background-size: 50%;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .carousel-item .info-card {
        min-height: auto;
        padding: 1rem;
    }
    .info-card p, .info-card li {
        font-size: 0.9rem;
    }
}
