/* General Styles */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #E3F2FD;
    color: #343A40;
    margin: 0;
    padding: 0;
}

/* Enhanced Visual Effects */
.section-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-hover {
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Header / Hero Section */
.hero-section {
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    background: #01bcff;
}

/* Navigation Bar */
.navigation-bar {
    background-color: rgb(45 132 185);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.navigation-bar .nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.navigation-bar .nav-link:hover {
    color: #FFD700 !important;
    transform: translateY(-2px);
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.5rem;
    color: white;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(to bottom, rgb(114, 208, 233) 0%, rgb(232, 245, 253) 100%);
    padding: 3rem 0;
}

.welcome-text {
    font-size: 2rem !important;
    color: #5fb1dd;
    font-weight: 400;
}

.welcome-section p {
    color: #5fb1dd;
    font-size: 1.2rem;
}

h2 {
    color: #2d84b9;
}


.program-item {
    border: 1px solid #2d84b9 !important;
    padding: 30px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(45, 132, 185, 0.1);
    font-weight: 500;
    font-size: 1.1rem;
}

.program-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(45, 132, 185, 0.2);
    border-color: #01bcff !important;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .welcome-text {
        font-size: 1.5rem;
    }
    
    .navigation-bar .navbar-nav {
        flex-direction: revert-layer;
        align-items: center;
    }
    
    .navigation-bar .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .program-item {
        margin-top: 10px;
    }

    #galleryCarousel {
        max-width: 90% !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }

        .program-item {
        margin-top: 10px;
    }

    #galleryCarousel {
        max-width: 90% !important;
    }
}

/* Existing Styles */
.hero {
    padding: 50px 20px;
}

.hero button {
    padding: 10px 20px;
}

.program-item {
    background-color: #E3F2FD;
}

.gallery-grid img {
    border-radius: 10px;
}

/* Gallery Carousel */
#galleryCarousel {
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#galleryCarousel img {
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#galleryCarousel:hover img {
    transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
    background: rgba(45, 132, 185, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Optional Custom Navbar Styles */
.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
}

.img-fluid {
    max-width: 90%;
    height: 90%;
}