/* ---------------- Modern Futuristic Awards Section ---------------- */
.awards {
    padding: 50px 15px;
   background: linear-gradient(135deg, #000000, #1ebbbb, #005f73);
    font-family: 'Inter', sans-serif;
    color: #f0f0f5;
    overflow: hidden;
}

/* Section Title */
.awards h2 {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    color: #00ffcc; /* neon cyan */
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
    position: relative;
}

/* Futuristic underline with soft glow */
.awards h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #0a0a0a, #0088ff);
    margin: 12px auto 0;
    border-radius: 3px;
    box-shadow: 0 0 12px #00ffcc, 0 0 20px #0088ff;
}

/* Horizontal scroll container (marquee alternative) */
.awards-marquee {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.awards-marquee::-webkit-scrollbar {
    height: 8px;
}

.awards-marquee::-webkit-scrollbar-thumb {
    background: #00ffcc;
    border-radius: 4px;
}

.awards-marquee::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

/* Award Card */
.awards-card {
    flex: 0 0 auto;
    width: 280px;
    background: linear-gradient(145deg, #849ae0, #111627);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,255,204,0.2);
    transition: transform 0.5s, box-shadow 0.5s;
}

/* Hover effect for card */
.awards-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,255,204,0.5), 0 5px 15px rgba(0,136,255,0.3);
}

/* Award Image */
.awards-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,255,204,0.2);
    transition: transform 0.5s, filter 0.5s;
}

.awards-card img:hover {
    transform: scale(1.08);
    filter: brightness(1.2);
}

/* Award Title */
.awards-card h4 {
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    color: #00ffcc;
    margin: 12px 0 15px;
    text-shadow: 0 2px 8px rgba(0,255,204,0.3);
}

/* Optional: Award description under title */
.awards-card p {
    font-size: 14px;
    color: #b0dfff;
    text-align: center;
    margin: 0 12px 15px;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .awards-card {
        width: 240px;
    }
    .awards-card img {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .awards-card {
        width: 200px;
    }
    .awards-card img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .awards-card {
        width: 160px;
    }
    .awards-card img {
        height: 140px;
    }
}
/* ===== General Page Styling ===== */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Breadcrumb/Header styling */
.bg-img.main_breadcrumb_area {
    background-color: #f2f2f2;
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 10px;
    font-family: Cambria, serif;
}
.bg-img.main_breadcrumb_area h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

/* ===== Tables Styling ===== */
.data_table_main {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    margin-bottom: 40px;
}
.data_table_main th, .data_table_main td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}
.data_table_main th {
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
}
.data_table_main td {
    font-size: 14px;
}
.data_table_main tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.data_table_main tbody tr:hover {
    background-color: #f1f1f1;
}

/* Faculty Image */
.sp_img {
    max-width: 80px;
    max-height: 80px;
    border-radius: 5px;
    object-fit: cover;
}

/* Profile button styling */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 7px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}
.btn-primary:hover {
    background-color: #0056b3;
}

/* ===== SSR Tabs Styling ===== */
.tabs_container {
    background-color: #e6ffe6;
    padding: 10px 5px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}
.criterion_tab_heads {
    background-color: #333;
    color: #fff;
    padding: 8px 15px;
    margin: 5px 5px;
    border-radius: 5px;
    font-family: Cambria, serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}
.criterion_tab_heads:hover {
    background-color: #BB5108;
}
.city {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}
.city.active {
    display: block;
}

/* SSR table headers */
.ssr_doc_table th {
    background-color: #7A297B !important;
    color: #fff;
    text-align: center;
}

/* Smooth fade-in animation */
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .criterion_tab_heads {
        display: block;
        width: 90%;
        margin: 5px auto;
    }
    .data_table_main, .ssr_doc_table {
        font-size: 12px;
    }
    .sp_img {
        max-width: 60px;
        max-height: 60px;
    }
}

