﻿/* ================================
GLOBAL STYLES
================================ */

body
{
    font-family: Calibri, Arial, sans-serif;
    padding-top:80px; /* adjust based on navbar height */
    
}


.navbar .dropdown-toggle::after {
    display: none !important;
}

section{
padding:80px 0;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}





/* ================================
NAVBAR
================================ */



.navbar{
  background:var(--dark);
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1200;
}
.navbar-collapse{ overflow:visible !important; }
.navbar-nav{ position:static; }

.navbar-brand img{ height:80px; }
.navbar-nav .nav-link{ color:#fff!important; }
.navbar-nav .nav-link:hover{ color:var(--yellow)!important; }

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  z-index:2000;
  max-height:70vh;
  overflow-y:auto;
}

@media(max-width:991px){
  .navbar-brand img{ height:55px; }
}










/* ================================
CORE VALUES SECTION
================================ */

.core-values{
background:#ffffff;
}

.values-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
}

.value-card{
background:#ffffff;
border-radius:12px;
padding:30px 20px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:all 0.35s ease;
color:#333;
}

.value-card i{
font-size:40px;
color:#0B4F9C;
margin-bottom:15px;
transition:0.3s;
}

.value-card h3{
font-size:20px;
margin-bottom:10px;
}

.value-card p{
font-size:14px;
line-height:1.6;
}

/* hover effect */

.value-card:hover{
transform:translateY(-10px);
background:#0B4F9C;
color:#fff;
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.value-card:hover i{
color:#F4B400;
}




/* Carousel Full Width */

#mainCarousel
{
    width:100%;
    background:#000;
}

.carousel-item
{
    text-align:center;
}

.carousel-img
{
    width:100%;
    height:auto;
    max-height:90vh;
    object-fit:contain;
    display:block;
    margin:auto;
}

@media(max-width:768px)
{
    .carousel-img
    {
        max-height:50vh;
    }
}


.carousel-caption
{
left:50%;
transform:translateX(-50%);
bottom:8%;
max-width:350px;

background: rgba(244,180,0,0.65);
padding:10px 18px;
border-radius:8px;

text-align:center;

/* highlight effects */
border:2px solid rgba(255,255,255,0.7);
box-shadow:0 0 15px rgba(244,180,0,0.8);
backdrop-filter: blur(4px);

/* animation */
animation: captionPulse 5s ease-in-out infinite;
}


/* Background faint → dark animation */

@keyframes captionPulse
{
0%
{
background: rgba(244,180,0,0.35);
box-shadow:0 0 8px rgba(244,180,0,0.4);
}

50%
{
background: rgba(244,180,0,0.85);
box-shadow:0 0 25px rgba(244,180,0,1);
}

100%
{
background: rgba(244,180,0,0.35);
box-shadow:0 0 8px rgba(244,180,0,0.4);
}
}


/* Caption Text */

.carousel-caption h1
{
color:#FFFFFF;
font-weight:300;
font-size:24px;
margin-bottom:4px;
}

.carousel-caption p
{
color:#FFFFFF;
font-size:13px;
margin:0;
}

/* Nav */


.precision-navbar
{
background:#040200;
padding:10px 0;
}

/* Logo */

.nav-logo
{
height:50px;
}

/* Nav Links */

.navbar-nav .nav-link
{
color:#ffffff;
font-weight:500;
margin-left:20px;
font-size:16px;
position:relative;
padding-bottom:6px;
transition:0.3s;
}

/* Underline animation */

.navbar-nav .nav-link::after
{
content:"";
position:absolute;
left:0;
bottom:0;
width:0%;
height:2px;
background:#F4B400;
transition:0.35s ease;
}

/* Hover underline */

.navbar-nav .nav-link:hover::after
{
width:100%;
}

/* Hover text color */

.navbar-nav .nav-link:hover
{
color:#FAFAFA !important;
}

/* Dropdown */

.dropdown-menu
{
border-radius:6px;
border:none;
padding:10px;
}

.dropdown-item:hover
{
background:#F5F8FC;
color:#0B4F9C;
}








/* SECTION BACKGROUND */

/* SECTION */

.working-areas
{
padding:80px 0;
background: linear-gradient(180deg, #ffffff, #DCE9F7);
text-align:center;
}

/* TITLE */

.section-title
{
font-size:36px;
font-weight:700;
color:#0B4F9C;
margin-bottom:20px;
}

/* DESCRIPTION */

.core-desc
{
max-width:850px;
margin:auto;
color:#555555;
font-size:17px;
line-height:1.7;
margin-bottom:60px;
}

/* GRID */

.areas-grid
{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.areas-grid .area-card
{
    width:100%;
}

/* 📲 Tablet (2 columns) */
@media (min-width: 576px)
{
    .areas-grid .area-card
    {
        width:calc(50% - 20px);
    }
}

/* 💻 Desktop (3 columns) */
@media (min-width: 992px)
{
    .areas-grid .area-card
    {
        width:calc(33.333% - 20px);
    }
}











/* CARD */

.area-card
{
background:white;
border-radius:10px;
padding:50px 20px 0;
text-decoration:none;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.4s;
position:relative;
overflow:hidden;
}

/* ICON */

.area-card i
{
font-size:42px;
margin-bottom:40px;
display:block;
}

/* FULL WIDTH TITLE BAR */

.area-title
{
width:100%;
padding:12px 0;
font-weight:600;
color:white;
background:rgba(0,0,0,0.6);
transition:0.3s;
}

/* HOVER EFFECT */

.area-card:hover
{
transform:translateY(-10px);
box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

/* HEALTHCARE */

.healthcare i
{
color:#808285;
}

.healthcare .area-title
{
background:#808285;
}

.healthcare:hover
{
background:#808285;
}

.healthcare:hover i
{
color:white;
}

/* EDUCATION */

.education i
{
color:#FFD24D;
}

.education .area-title
{
background:#FFD24D;
}

.education:hover
{
    background:#FFD24D;
}

.education:hover i
{
color:white;
}

/* SOCIAL */

.social i
{
color:#FF4D4D;
}

.social .area-title
{
background:#FF4D4D;
}

.social:hover
{
background:#FF4D4D;
}

.social:hover i
{
color:white;
}

/* ART */

.art i
{
color:#341539;
}

.art .area-title
{
background:#341539;
color:#fff;
}

.art:hover
{
background:#341539;
}

.art:hover i
{
color:#fff;
}

/* SUSTAINABILITY */

.sustainability i
{
color:#3BAA4A;
}

.sustainability .area-title
{
background:rgba(59,170,74,0.85);
}

.sustainability:hover
{
background:#3BAA4A;
}

.sustainability:hover i
{
color:white;
}




/* SECTION */

.impact-section
{
padding:90px 0;
text-align:center;
}

/* TITLE */

.impact-title
{
font-size:36px;
font-weight:700;
margin-bottom:60px;
color:#0B4F9C;
}

/* FLEX LAYOUT */

.impact-wrapper
{
display:flex;
justify-content:center;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

/* IMPACT ITEM */
.impact-item
{
border-radius:8px;
transition:0.3s;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
color:#ed1c24;
padding:15px;
}

/* BIG NUMBERS */


.impact-item h3
{
font-size:64px;
font-weight:700;
color:#ed1c24;
margin-bottom:10px;

}

/* DESCRIPTION */

.impact-item p
{
font-size:18E;
transition:0.3s;
}

/* HOVER EFFECT */

.impact-item:hover
{
border-color:#F4B400;
transform:translateY(-6px);
box-shadow:0 10px 30px rgba(0,0,0,0.4);
background-color:#F4B400;
}

.impact-item:hover p
{
color:#ffffff;
}

.impact-item:hover h3
{
color:#ffffff;
}

/* DIVIDER */

.impact-divider
{
width:1px;
height:80px;
background:rgba(255,255,255,0.2);
}






.stories-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff, #DCE9F7);
}

.stories-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0B4F9C;
    margin-bottom: 40px;
    text-align: center;
}

.stories-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual Story Row */
.story-row {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #E6E6E6;
    transition: 0.3s;
}

.story-row:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: #ffffff;
}

/* Story Date Circle */
.story-date {
    width: 55px;
    height: 55px;
    background: #0B4F9C;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    transition: 0.3s;
}

.story-row:hover .story-date {
    background: #F4B400;
}

.story-date .day {
    font-weight: 700;
    font-size: 16px;
}

.story-date .month {
    font-size: 12px;
}

/* Story Content */
.story-content h4 {
    font-size: 17px;
    color: #ed1c24;
    margin-bottom: 5px;
    transition: 0.3s;
}

.story-row:hover h4 {
    color: #F4B400;
}

.story-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Read More Link */
.story-link {
    font-size: 13px;
    font-weight: 600;
    color: #0B4F9C;
    text-decoration: none;
    transition: 0.3s;
}

.story-link:hover {
    color: #F4B400;
}

/* Responsive */
@media(max-width: 991px) {
    .impact-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .story-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .story-date {
        margin-bottom: 10px;
    }
}

.footer-section
{
    background:#083A73;
    color:#F5F8FC;
    padding:60px 0 30px 0;
    font-family:Arial, sans-serif;
}

.footer-section h4
{
    color:#F4B400;
    margin-bottom:20px;
    font-size:18px;
}

.footer-links,
.footer-contact
{
    list-style:none;
    padding:0;
}

.footer-links li,
.footer-contact li
{
    margin-bottom:10px;
}

.footer-links li a
{
    color:#F5F8FC;
    text-decoration:none;
    transition:0.3s;
}

.footer-links li a:hover
{
    color:#F4B400;
}

.footer-contact li i
{
    margin-right:8px;
    color:#F4B400;
}

.footer-social a
{
    display:inline-block;
    width:35px;
    height:35px;
    background:#0B4F9C;
    color:#fff;
    text-align:center;
    line-height:35px;
    border-radius:50%;
    margin-right:10px;
    transition:0.3s;
}

.footer-social a:hover
{
    background:#F4B400;
    color:#083A73;
}

.footer-divider
{
    border-top:1px solid rgba(255,255,255,0.2);
    margin:30px 0;
}

.footer-bottom p
{
    color:#E6E6E6;
    font-size:14px;
    margin:0;
}






.philosophy-section
{
    padding:10px 0;
    background:#F5F8FC;
    font-family:Arial, sans-serif;
}

.philosophy-image img
{
    width:100%;
    max-width:365px;
    border-radius:50%;
    transition: transform 0.5s ease;
}

.philosophy-image img:hover
{
    transform: scale(1.05);
}

.philosophy-content
{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.philosophy-box
{
    padding:5px;
    border-left:5px solid #0B4F9C;
    background:rgba(255,255,255,0.9);
    border-radius:8px;
    transition: all 0.3s ease;
}

.philosophy-box h3
{
    color:#0B4F9C;
    font-size:16px;
    margin-bottom:5px;
}

.philosophy-box p
{
    font-size:15px;
    color:#333333;
    line-height:1.6;
}

.philosophy-box:hover
{
    border-left-color:#F4B400;
    background:rgba(255,255,255,1);
    transform: translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}


/* PRESIDENT SECTION */
.president-section
{
  padding:80px 0;
  background:#F5F8FC;
}

.president-photo img
{
  width:100%;
  max-width:300px;
  border-radius:8px;
  transition: transform 0.5s ease;
  box-shadow: none;
}

.president-photo img:hover
{
  transform: scale(1.05);
  
}

.president-message h3
{
  font-size:26px;
  color:#0B4F9C;
  margin-bottom:15px;
}

.president-message p
{
  font-size:16px;
  color:#333333;
  line-height:1.6;
}

/* TRUSTEES SECTION */
/* ================================
TRUSTEES SECTION (FINAL FIX)
================================ */

.trustees-section
{
  padding:80px 0;
  background:#FFFFFF;
}

.section-title
{
  text-align:center;
  font-size:32px;
  color:#0B4F9C;
  margin-bottom:20px;
  font-weight:700;
}

/* CARD */

.trustee-card
{
  background:#FCFCFC;
  padding:25px 20px;
  margin-bottom:30px;
  border-radius:12px;
  text-align:center;
  transition:all 0.35s ease;
  box-shadow:0 5px 15px rgba(0,0,0,0.06);
}

/* IMAGE FIX (NO CROPPING) */

.trustee-card img
{
  width:100%;
  max-width:180px;
  height:180px;
  object-fit:contain;   /* ✅ IMPORTANT */
  margin:0 auto 15px;
  display:block;
  background:#fff;
  padding:10px;
  border-radius:50%;    /* circle style */
  transition:0.3s;
}

/* TEXT */

.trustee-card h4
{
  color:#0B4F9C;
  font-size:18px;
  margin-bottom:5px;
}

.trustee-card p
{
  color:#666;
  font-size:14px;
  margin:0;
}

/* HOVER EFFECT */

.trustee-card:hover
{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.trustee-card:hover img
{
  transform:scale(1.08);
}



/* ================================
UPCOMING EVENTS CAROUSEL
================================ */

/* CARD */
.upevents-card
{
display:flex;
background:#FCFCFC;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:all 0.4s ease;
}

/* IMAGE */
.upevents-img
{
width:45%;
height:auto;
object-fit:contain;
transition:transform 0.5s ease;
}

/* CONTENT */
.upevents-content
{
padding:15px;
width:55%;
transition:0.3s;
}

.upevents-content h5
{
color:#0B4F9C;
font-size:18px;
margin-bottom:8px;
transition:0.3s;
}

.upevents-content p
{
margin:3px 0;
font-size:14px;
color:#555;
transition:0.3s;
}

.upevents-content i
{
color:#F4B400;
margin-right:6px;
}

/* 🔥 HOVER EFFECT */
.upevents-card:hover
{
transform:scale(1.04);
background:#0B4F9C;
box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

/* IMAGE ZOOM */
.upevents-card:hover .upevents-img
{
transform:scale(1.1);
}

/* TEXT COLOR CHANGE */
.upevents-card:hover h5,
.upevents-card:hover p
{
color:#ffffff;
}

/* ICON COLOR */
.upevents-card:hover i
{
color:#F4B400;
}


/* BASE BUTTON */
.precision-btn
{
display:inline-block;
padding:12px 22px;
font-size:15px;
font-weight:600;
border-radius:30px;
text-decoration:none;
color:#ffffff;
transition:all 0.35s ease;
box-shadow:0 6px 18px rgba(0,0,0,0.15);
border:none;
position:relative;
}

/* ICON */
.precision-btn i
{
margin-right:8px;
}

/* 🔵 VACHAN (Education - Blue Gradient) */
.btn-vachan
{
background: linear-gradient(135deg, #383838, #666666);
color:#040200;
}

/* 💬 GUPPA (Social - Gold Gradient) */
.btn-guppa
{
background: linear-gradient(135deg, #C9B000, #E0C800);
color:#040200;
}

/* 🎵 SANGEET (Art - Grey Elegant) */
.btn-sangeet
{
background: linear-gradient(135deg, #ED1C24, #FF4D4D);
color:#040200;
}

/* 🎬 FILM FESTIVAL (Premium Dark + Gold) */
.btn-film
{
background: linear-gradient(135deg,#040200,#0B4F9C);
}

/* 🔥 HOVER EFFECT */
.precision-btn:hover
{
transform:translateY(-4px) scale(1.05);
box-shadow:0 12px 30px rgba(0,0,0,0.25);
opacity:0.95;
}

/* CLICK EFFECT */

.precision-btn.active
{
    transform: translateY(2px) scale(0.97);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    outline: 2px solid rgba(0,0,0,0.5);
    color: #000000;
    background: linear-gradient(135deg, #ffffff, #f1f1f1) !important;
    opacity: 1;
    position: relative;
        border-radius:0px !important;
}

/* Soft glow + shine effect */
.precision-btn.active::after
{
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: 0 0 14px rgba(255,255,255,0.5);
    pointer-events: none;
    font-size:18px;
    border-radius:0px !important;
    
}

/* Optional: subtle inner shine */
.precision-btn.active::before
{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.6),
        transparent 40%
    );
    opacity: 0.6;
    pointer-events: none;
    font-size:18px;
    border-radius:0px !important;
    
}





/* SECTION BACKGROUND (Compact + Premium) */
.vachan-section
{
padding:50px 0 70px 0; /* reduced top gap */
background: linear-gradient(135deg,#F5F8FC,#E3ECF7);
}

/* HEADER DESIGN */
.vachan-header
{
text-align:center;
margin-bottom:25px;
}

.vachan-header h2
{
color:#0B4F9C;
font-weight:700;
font-size:32px;
margin-bottom:8px;
}

.vachan-header .underline
{
width:80px;
height:3px;
background:linear-gradient(135deg,#F4B400,#FFD24D);
margin:auto;
border-radius:5px;
}

/* CONTENT BOX (GLASS EFFECT) */
.vachan-content
{
background:rgba(255,255,255,0.75);
backdrop-filter: blur(10px);
padding:25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.vachan-content:hover
{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.vachan-content p
{
font-size:15px;
color:#555;
line-height:1.6;
}

/* IMAGE CARDS (EXTRAORDINARY DESIGN) */
.vachan-img-card
{
position:relative;
border-radius:10px;
overflow:hidden;
border:2px solid transparent;
background: linear-gradient(#fff,#fff) padding-box,
linear-gradient(135deg,#0B4F9C,#F4B400) border-box;
}

.vachan-img-card img
{
width:100%;
transition:0.6s;
}

/* SHINE EFFECT */
.vachan-img-card::before
{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
transition:0.6s;
}

.vachan-img-card:hover::before
{
left:100%;
}

/* HOVER ZOOM */
.vachan-img-card:hover img
{
transform:scale(1.12);
filter:brightness(1.1);
}

/* TABLE BOX */
/* TABLE CONTAINER */
.vachan-table-box
{
background: linear-gradient(135deg,#ffffff,#F5F8FC);
padding:25px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* TABLE BASE */
.vachan-table
{
border-collapse:separate;
border-spacing:0 10px; /* space between rows */
}

/* HEADER */
.vachan-table thead tr
{
background: linear-gradient(135deg,#0B4F9C,#1F6ED4);
color:#fff;
}

.vachan-table thead th
{
padding:14px;
font-size:14px;
border:none;
}

/* BODY ROW STYLE (CARD LOOK) */
.vachan-table tbody tr
{
background:#ffffff;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* ALTERNATE ROW COLORS (PREMIUM SOFT SHADES) */
.vachan-table tbody tr:nth-child(odd)
{
background:#FFFFFF;
}

.vachan-table tbody tr:nth-child(even)
{
background:#F5F8FC;
}

/* CELLS */
.vachan-table td
{
padding:14px;
font-size:14px;
border:none;
color:#333;
}

/* ROUND CORNERS FOR EACH ROW */
.vachan-table tbody tr td:first-child
{
border-top-left-radius:8px;
border-bottom-left-radius:8px;
}

.vachan-table tbody tr td:last-child
{
border-top-right-radius:8px;
border-bottom-right-radius:8px;
}

/* HOVER EFFECT (GOLD PREMIUM) */
.vachan-table tbody tr:hover
{
background:linear-gradient(135deg,#F4B400,#FFD24D);
color:#040200;
transform:scale(1);
box-shadow:0 10px 25px rgba(244,180,0,0.4);
}

/* TEXT COLOR CHANGE ON HOVER */
.vachan-table tbody tr:hover td
{
color:#040200;

}

/* SMOOTH TRANSITION */
.vachan-table tbody tr td
{
transition:0.3s;
}









/* Art and Culture Guppa SECTION */
.guppa-section
{
padding:50px 0 70px 0;
background: linear-gradient(135deg,#F5F8FC,#E3ECF7);
}

/* HEADER */
.guppa-header
{
text-align:center;
margin-bottom:25px;
}

.guppa-header h2
{
color:#0B4F9C;
font-weight:700;
font-size:32px;
margin-bottom:8px;
}

.guppa-header .underline
{
width:80px;
height:3px;
background:linear-gradient(135deg,#F4B400,#FFD24D);
margin:auto;
border-radius:5px;
}

/* CONTENT */
.guppa-content
{
background:rgba(255,255,255,0.75);
backdrop-filter: blur(10px);
padding:25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.guppa-content:hover
{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.guppa-content p
{
font-size:15px;
color:#555;
line-height:1.6;
}

/* IMAGE CARDS */
.guppa-img-card
{
position:relative;
border-radius:10px;
overflow:hidden;
border:2px solid transparent;
background: linear-gradient(#fff,#fff) padding-box,
linear-gradient(135deg,#0B4F9C,#F4B400) border-box;
}

.guppa-img-card img
{
width:100%;
transition:0.6s;
}

.guppa-img-card::before
{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
transition:0.6s;
}

.guppa-img-card:hover::before
{
left:100%;
}

.guppa-img-card:hover img
{
transform:scale(1.12);
filter:brightness(1.1);
}

/* TABLE BOX */
.guppa-table-box
{
background: linear-gradient(135deg,#ffffff,#F5F8FC);
padding:25px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* TABLE */
.guppa-table
{
border-collapse:separate;
border-spacing:0 10px;
}

.guppa-table thead tr
{
background: linear-gradient(135deg,#0B4F9C,#1F6ED4);
color:#fff;
}

.guppa-table thead th
{
padding:14px;
font-size:14px;
border:none;
}

.guppa-table tbody tr
{
background:#ffffff;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.guppa-table tbody tr:nth-child(even)
{
background:#F5F8FC;
}

.guppa-table td
{
padding:14px;
font-size:14px;
border:none;
color:#333;
}

.guppa-table tbody tr td:first-child
{
border-top-left-radius:8px;
border-bottom-left-radius:8px;
}

.guppa-table tbody tr td:last-child
{
border-top-right-radius:8px;
border-bottom-right-radius:8px;
}

.guppa-table tbody tr:hover
{
background:linear-gradient(135deg,#F4B400,#FFD24D);
color:#040200;
transform:scale(1);
box-shadow:0 10px 25px rgba(244,180,0,0.4);
}

.guppa-table tbody tr:hover td
{
color:#040200;

}





/* Sangeet Mahotsav */




.sangeet-section {
padding:50px 0 70px;
background: linear-gradient(135deg,#F5F8FC,#E3ECF7);
}

/* HEADER */
.sangeet-header { text-align:center; margin-bottom:25px; }
.sangeet-header h2 { color:#0B4F9C; font-size:32px; font-weight:700; }
.sangeet-header .underline {
width:80px; height:3px;
background:linear-gradient(135deg,#F4B400,#FFD24D);
margin:auto;
}

/* CONTENT BOX */
.sangeet-content {
background:rgba(255,255,255,0.75);
padding:25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* YEAR */
.year-title {
color:#0B4F9C;
font-weight:600;
margin-bottom:10px;
}

/* IMAGE CARD */
.sangeet-img-card {
border-radius:10px;
overflow:hidden;
border:2px solid transparent;
background:linear-gradient(#fff,#fff) padding-box,
linear-gradient(135deg,#0B4F9C,#F4B400) border-box;
}
.sangeet-img-card img {
width:100%;
transition:0.5s;
}
.sangeet-img-card:hover img {
transform:scale(1.1);
}

/* TABLE */
.sangeet-table-box {
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.sangeet-table thead tr {
background:linear-gradient(135deg,#0B4F9C,#1F6ED4);
color:#fff;
}

.sangeet-table tbody tr {
background:#fff;
transition:0.3s;
}
.sangeet-table tbody tr:nth-child(even){
background:#F5F8FC;
}
.sangeet-table tbody tr:hover {
background:linear-gradient(135deg,#F4B400,#FFD24D);
color:#040200;
transform:scale(1);
box-shadow:0 10px 25px rgba(244,180,0,0.4);
}

.sangeet-table tbody tr:hover td
{
color:#040200;

}










/* BASE BUTTON */
.precision-btn
{
    display:inline-block;
    padding:12px 22px;
    font-size:15px;
    font-weight:600;
    border-radius:30px;
    text-decoration:none;
    color:#ffffff;
    transition:all 0.35s ease;
    box-shadow:0 6px 18px rgba(0,0,0,0.15);
    border:none;
}

/* ICON */
.precision-btn i
{
    margin-right:8px;
}

/* ❤️ HEALTHCARE (Red Medical Gradient) */
.btn-health
{
    background: linear-gradient(135deg, #383838, #666666);
}

/* 🔵 EDUCATION (Blue Knowledge Gradient) */
.btn-education
{
    background: linear-gradient(135deg, #C9B000, #E0C800);
}

/* 💬 SOCIAL ISSUES (Warm Orange Impact) */
.btn-social
{
    background: linear-gradient(135deg, #383838, #666666);
}

/* 🎨 ART & CULTURE (Royal Purple Creative) */
.btn-art
{
    background: linear-gradient(135deg, #C9B000, #E0C800);
}

/* 🌱 SUSTAINABILITY (Green Eco) */
.btn-sustain
{
    background: linear-gradient(135deg, #ED1C24, #FF4D4D);
}

/* ⚫ OTHERS (Neutral Dark Premium) */
.btn-other
{
    background: linear-gradient(135deg, #ED1C24, #FF4D4D);
}

/* 🔥 HOVER EFFECT */
.precision-btn:hover
{
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
    opacity:0.95;
}

/* CLICK EFFECT */
.precision-btn:active
{
    transform:scale(0.97);
}





/* BASE BUTTON */
.gallery-btn
{
    display:inline-block;
    padding:12px 22px;
    font-size:15px;
    font-weight:600;
    border-radius:30px;
    text-decoration:none;
    color:#ffffff;
    transition:all 0.35s ease;
    box-shadow:0 6px 18px rgba(0,0,0,0.15);
    border:none;
}

/* ICON */
.gallery-btn i
{
    margin-right:8px;
}

/* ❤️ HEALTHCARE */
.gallery-health
{
    background: linear-gradient(135deg, #383838, #666666);
}

/* 🔵 EDUCATION */
.gallery-education
{
   background: linear-gradient(135deg, #C9B000, #E0C800);
}

/* 💬 SOCIAL */
.gallery-social
{
   background: linear-gradient(135deg, #383838, #666666);
}

/* 🎨 ART */
.gallery-art
{
   background: linear-gradient(135deg, #C9B000, #E0C800);
}

/* 🌱 SUSTAIN */
.gallery-sustain
{
    background: linear-gradient(135deg, #ED1C24, #FF4D4D);
}

/* ⚫ OTHER */
.gallery-other
{
     background: linear-gradient(135deg, #ED1C24, #FF4D4D);
}

/* HOVER */
.gallery-btn:hover
{
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
    opacity:0.95;
    filter: brightness(1.1);
}

/* CLICK */
.gallery-btn:active
{
    transform:scale(0.97);
}








/* Optional Press Feel */
.press-room-section {
    background: #f9f9f9;
}

/* Stronger Precision hover */
.border-img:hover {
    border-color: #CF352E; /* red accent */
    box-shadow: 0 0 20px rgba(207,53,46,0.5);
}

/* Slight grayscale for press look */
.press-room-section img {
    filter: grayscale(15%);
}

.press-room-section img:hover {
    filter: grayscale(0%);
}