
/* ---------------- AI Premium Awards Section (Marquee Version) ---------------- */
.awards {
    padding: 40px 15px;
   background: linear-gradient(135deg, #10122c, #17264b, #0b2a5f);

 /* dark blue gradient */
    font-family: 'Inter', sans-serif;
    color: #fff;
}

/* Section Title */
.awards h2 {
    color: #00bfff; /* bright blue */
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    padding: 12px;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

/* Optional futuristic underline glow */
.awards h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00bfff, #1e90ff);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* Marquee styling */
.marquee {
    font-family: 'Inter', sans-serif;
    color: #00bfff;
    font-size: 20px;
    height: 450px;
    line-height: 1.5;
}

/* Award Card inside marquee */
.awards-image {
    height: 340px;
    width: 300px !important;
    display: inline-block; /* make inline-table modern */
    margin: 20px;
    box-shadow: 0 5px 15px rgba(0,191,255,0.4); /* blue glow */
    border-radius: 15px;
    background: rgba(10, 15, 35, 0.85); /* dark blue glass effect */
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s;
}

.awards-image:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,191,255,0.7); /* strong blue glow on hover */
}

/* Award Image */
.awards-image img {
    width: 100%;
    height: 340px !important;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.5s, filter 0.5s;
    border: 1px solid #00bfff;
}

.awards-image img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Award Title */
.awards-image h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #00bfff; /* neon blue title */
    margin: 10px 0;
    text-shadow: 0 2px 8px rgba(0,191,255,0.5);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .awards-image {
        width: 260px !important;
        height: 300px;
    }
}

@media (max-width: 992px) {
    .awards-image {
        width: 220px !important;
        height: 260px;
    }
    .awards-image img {
        height: 260px;
    }
}

@media (max-width: 576px) {
    .awards-image {
        width: 180px !important;
        height: 200px;
        margin: 10px;
    }
    .awards-image img {
        height: 200px;
    }
}



/* ===== 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;
    }
}

