body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Header layout */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #111;
    color: white;
    border-bottom: 4px solid #b5651d; /* Elegant golden/brown accent */
}
/* -------------------------
   STICKY HEADER
-------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Add subtle shadow when sticky */
.site-header {
    background: #111;
    transition: box-shadow 0.3s ease;
}

.sticky {
    box-shadow: 0px 2px 10px rgba(0,0,0,0.5);
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 65px;
    width: auto;
    margin-right: 15px;
}

.site-title {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    margin: 0;
    color: #f5d093; /* Gentle gold tone works well for Indian classical theme */
    font-weight: normal;
}

/* Navigation menu */
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    margin-left: 25px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    padding-bottom: 3px;
}

.menu a:hover {
    color: #f5d093;
    border-bottom: 2px solid #f5d093;
}

/* --- Mobile Friendly --- */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
    }

    .menu ul {
        margin-top: 10px;
        flex-direction: column;
        text-align: center;
    }

    .menu li {
        margin: 10px 0;
    }
}

/* -------------------------------------------
   HERO IMAGE GALLERY (FULL-WIDTH SLIDER)
-------------------------------------------- */
/* Hero Section Container */
.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* Swiper full size */
.mySwiper, .swiper-wrapper, .swiper-slide {
    width: 100%;
    height: 100%;
}

/* Image formatting */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Zoom animation */
.swiper-slide img {
    animation: zoomHero 6s ease-in-out infinite;
}

@keyframes zoomHero {
    0%   { transform: scale(1); }
    100% { transform: scale(1.12); }
}


/* Overlay text */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 52px;
    color: #f5d093;
    font-family: 'Great Vibes', cursive;
    text-shadow: 0px 3px 8px rgba(0,0,0,0.7);
    z-index: 10;
}

/* Pagination dots */
.swiper-pagination-bullet {
    background: rgba(255,255,255,0.7);
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #f5d093;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        height: 300px;
    }
    .hero-text {
        font-size: 32px;
    }
}

/* Swiper Image Gallery Arrows styling */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    text-shadow: 0px 3px 6px rgba(0,0,0,0.6);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 32px;
}

/* On hover */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #f5d093; /* gold */
}


    
/* -------------------------
   FOOTER STYLING
-------------------------- */
.site-footer {
    background: #111;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 4px solid #b5651d; /* gold accent */
}

.site-footer p {
    color: #eee;
    margin: 0;
}

.back-to-top {
    color: #f5d093;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: #fff;
}

.dashboard-wrapper {
    max-width: 800px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
}

.logout-btn {
    background: #cc0000;
    color: white;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
}

.logout-btn:hover {
    background: #a00000;
}


.badge-high { background:#dc2626; color:#fff; }
.badge-medium { background:#f59e0b; color:#fff; }
.badge-low { background:#16a34a; color:#fff; }

     


