
body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to bottom, #fffaf7, #ffecec);
    color: #333;
}

/* =========================
   MODERN BLACK GLASS NAVBAR
========================= */
.navbar {
    background:  #8B3A3A !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    padding: 12px 20px;
}

/* LINKS */
.navbar .nav-link {
    color: white !important;
    font-weight: 500;
    margin-left: 15px;
    transition: 0.3s;
    position: relative;
}

/* hover effect */
.navbar .nav-link:hover {
    color: #ffb3b3 !important;
}

/* underline animation */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #ffb3b3;
    transition: 0.3s;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

/* logo effect */
.navbar-brand img {
    border-radius: 50%;
    object-fit: cover;
    transition: 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}







.carousel{
    width: 92%;
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

.carousel-item img{
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: scale-down; 
    filter: brightness(100%); 
}


.carousel-caption h1{
    font-size: 55px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.carousel-caption p{
    font-size: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}


.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
    padding: 18px;
}



h2{
    color: #b84545;
    font-weight: bold;
}

.about-section p{
    font-size: 18px;
    line-height: 1.7;
}



.card{
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.08);
}

.card:hover{
    transform: translateY(-8px);
}

.card img{
    height: 250px;
    object-fit: cover;
}

.card-body h5{
    color: #b84545;
    font-weight: bold;
}



.card h4{
    color: #b84545;
    font-weight: bold;
}

iframe{
    border-radius: 15px;
}


.card div{
    scrollbar-width: thin;
}



footer{
    background-color: #b84545;
    color: white;
    padding: 40px 20px;
    margin-top: 40px;
}

footer h4{
    font-size: 28px;
    margin-bottom: 10px;
}

footer p{
    margin: 5px 0;
    font-size: 16px;
}



@media(max-width:768px){

    .carousel-item img{
        height: 320px;
    }

    .carousel-caption h1{
        font-size: 32px;
    }

    .carousel-caption p{
        font-size: 16px;
    }
.wa-btn{
    background: #25D366;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 10px;
}

.wa-btn:hover{
    background: #1ebe5d;
    transform: scale(1.05);
}

}