/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color:  rgba(250, 181, 253, 0.603);
}

.bgdarkpurple {
    background-color:  rgba(33, 2, 34, 1);
}


a {
    text-decoration: none;
}

.text-kecil1 {
    font-size: 6px;
}
.text-kecil2 {
    font-size: 7px;
}
.text-kecil3 {
    font-size: 8px;
}
.text-kecil4 {
    font-size: 10px;
}
.text-kecil5 {
    font-size: 12px;
}
.text-normal {
    font-size: 14px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    z-index: 99;
    font-size: 18px;
    border: orchid 2px solid;
    border-radius: 50%;
    outline: none;
    color: white;
    background-color: rgba(54, 3, 56,0.8);
    cursor: pointer;
    padding: 5px;
    border-radius: 30px;
}
#myBtn:hover {
    background-color:   rgba(33, 2, 34, 1);
}

/* Navbar */
.navbar .navbar-purple {
    background-color:  #3d053f;   
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: rgba(249, 214, 250, 0.603);
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #7f8c8d;
}

/* Carousel Section */
.carousel-section {
    padding: 80px 0;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Testimonials */
.testimonials .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    background-color: #2c3e50;
}

footer h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #1abc9c !important;
}

.gallery-card {
            border: none;
            overflow: hidden;
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        .gallery-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .gallery-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .gallery-card:hover img {
            transform: scale(1.05);
        }
        .card-body {
            background: #fff;
            padding: 15px;
        }
        .card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
        }
        .card-meta {
            font-size: 0.85rem;
            color: #6c757d;
        }
        .page-title {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
        }
        .modal-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        
.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #1abc9c;
    color: white !important;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .carousel-item img {
        height: 300px;
    }
}

        