  /* General Styling */
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    
}

/* Slideshow Styling */
.carousel img {
    width: 100%;
    height: auto; /* Adjust height automatically for responsive scaling */
    object-fit: cover;
    
}

.carousel-inner {
    position: relative;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}

/* Mobile Responsive Slideshow */
@media (max-width: 768px) {
    .carousel img {
        height: 400px; /* Set a fixed height for mobile devices */
        
    }
}

@media (max-width: 576px) {
    .carousel img {
        height: 300px; /* Smaller height for extra small screens */
    }
}

/* About Section */
.about-section {
    background-color: #121212;
    padding: 30px;
}
.about-image img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.about-image img:hover {
    transform: scale(1.1);
}
.custom-logo {
    width: 450px;
}
.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: center;
}

@media (max-width: 576px) {
    .about-image img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
}
@media (max-width: 576px) {
    .custom-logo {
        width: 250px;
        margin-bottom:10px;
    }
}
.btn-outline-light {
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background-color: #ffffff;
    color: #121212;
}

/* Service Section Styling */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-radius: 15px;
    padding: 30px;
    background: linear-gradient(145deg, #1c1c1c, #252525);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-in-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.5), -10px -10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: #ffd633;
    transform: rotate(15deg);
}

.service-icon {
    font-size: 3rem;
    color: #121212;
    animation: iconBounce 1.5s infinite;
}

.service-card h5 {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-card p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Button Styling */
.btn-outline-light {
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #121212;
}


/* Album Card Styling */
.album-card {
position: relative;
overflow: hidden;
border-radius: 10px; /* Rounded corners */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
height: 320px; /* Consistent height for all cards */
}

.album-card img {
width: 100%;
height: 100%;
object-fit: cover; /* Ensures image covers the entire card */
transition: transform 0.3s ease;
}

.album-card:hover img {
transform: scale(1.05); /* Slight zoom on hover */
}

.album-card:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Elevation on hover */
}

/* Overlay for Text */
.album-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; /* Covers the entire card */
background: rgba(0, 0, 0, 0.1); /* Semi-transparent black background */
display: flex;
flex-direction: column;
justify-content: flex-end; /* Align text at the bottom */
padding: 15px;
color: #ffffff; /* White text */
text-align: center;
transition: background 0.3s ease;
}

.album-title {
font-size: 1.2rem; /* Slightly larger title */
font-weight: bold;
margin: 0;
text-transform:uppercase;
line-height: 1.2; /* Compact spacing */

}

.album-subtitle {
font-size: 0.9rem;
color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
.album-card {
height: 350px; /* Adjust card height for tablets */
}
}

@media (max-width: 576px) {
.album-card {
height: 250px; /* Smaller height for mobile devices */
}
}
@media (max-width: 576px) {
.featured-albums .row.g-3 > [class*='col-'] {
margin-bottom: -1px;
}

.album-card {
margin: -5px;
}
}


    

    /* Feedback Section */
    .feedback-content img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid #fff;
    }
    .feedback-message {
        font-size: 1rem;
        color: #ffffff;
    }
    .feedback-message-container {
        margin-bottom: 10px;
    }
    .carousel-indicators button {
        width: 8px; /* Adjust the width */
        height: 8px; /* Adjust the height */
        border-radius: 50%; /* Makes it circular */
        background-color: #fff; /* White color for visibility */
        opacity: 0.7; /* Slightly transparent */
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    /* WhatsApp Icon */
    .whatsapp-icon {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .whatsapp-icon:hover {
        transform: scale(1.2);
    }

    .whatsapp-icon img {
        width: 30px;
        height: 30px;
    }

    .album-category {
font-size: 1rem;
color: #ffffff;
margin-top: 5px;
text-transform:uppercase;


}


