body {
    line-height: 1.6;
}

:root{
--primary:#2e7d32;
--secondary:#2f5d32;
/*--secondary:#66bb6a;*/
--light:#dff3e2;
--border:#d7e7d9;
--gradient:linear-gradient(135deg,#2e7d32,#66bb6a);
/*--main-font: 'Poppins', sans-serif;*/
}

/* SECTION */
.podar-section{
padding:30px 15px;
}

/* TITLE */
.podar-section-title{
font-size:24px;
margin-bottom:25px;
border-left:5px solid var(--primary);
padding-left:12px;
}

/* GRID */
.staff-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

/* CARD */
.staff-card{
background:var(--light);
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
padding:20px;
text-align:center;
transition:.3s;
border-top:4px solid var(--primary);
border-bottom:4px solid var(--primary);
}

.staff-card:hover{
transform:translateY(-6px);
}

/* IMAGE */
.staff-card img{
width:110px;
height:110px;
border-radius:50%;
object-fit:cover;
margin-bottom:10px;
border:3px solid #fff;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

/* TEXT */
.staff-card h3{
margin:6px 0;
/*font-size:16px;*/
font-weight:bold;
}

.staff-card p{
/*font-size:14px;*/
color:#555;
margin:2px 0;
}

/* MOBILE IMPROVEMENTS */
@media(max-width:600px){

.section{
padding:20px 10px;
}

.section-title{
font-size:20px;
}

.staff-card{
padding:15px;
}

.staff-card img{
width:90px;
height:90px;
}

}

/* TABLE */
.podar-table{
width:100%;
border-collapse:collapse;
background:white;
box-shadow:0 5px 15px rgba(0,0,0,.05);
border-radius:8px;
overflow:hidden;
}

.podar-table th{
background:var(--primary);
color:white;
padding:12px;
}

.podar-table td{
padding:10px;
border-bottom:1px solid var(--border);
}

.podar-table tr:nth-child(even){
background:var(--light);
}
/* ✨ Hover Zoom Effect */
.podar-table tr{
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podar-table tr:hover{
    transform: scale(1.02);
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    position:relative;
    z-index:2;
}

/* TITLE DESIGN */

.podar-title{
    font-size:22px;
    font-weight:600;
    text-align:center;
    color:#fff !important;
    padding:10px 18px;
    margin:20px 0;
    border-radius:15px;
     font-family: var(--main-font);

    /* SAME GRADIENT */
    background:var(--gradient);

    position:relative;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
    letter-spacing:0.5px;
}

/* Leaf pattern overlay */
.podar-title::before{
    content:"🌿";
    position:absolute;
    font-size:60px;
    opacity:0.08;
    top:-15px;
    right:25px;
}

/* subtle animation */
.podar-title:hover{
    transform:scale(1.02);
    transition:0.3s;
}

/* GRID */
.podar-section-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:25px;
 font-family: var(--main-font);
}

/* CARD */
.podar-section-card{
background:var(--gradient); /* DEFAULT GRADIENT */
border-radius:18px;
padding:22px;
text-align:center;
color:#fff;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
position:relative;
overflow:hidden;
transition:0.4s;
cursor:pointer;
}

/* GLASS OVERLAY */
.podar-section-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(255,255,255,0.15);
backdrop-filter:blur(8px);
}

/* CONTENT ABOVE */
.podar-section-card *{
position:relative;
z-index:1;
}

/* ICON */
.podar-section-card i{
font-size:30px;
margin-bottom:12px;
animation:pulseIcon 2s infinite;
}

/* TEXT */
.podar-section-card span{
display:block;
font-weight:600;
}

/* HOVER */
.podar-section-card:hover{
transform:translateY(-8px) scale(1.03);
box-shadow:0 12px 30px rgba(0,0,0,0.2);
}

/* ICON BOUNCE */
.podar-section-card:hover i{
animation:bounce 0.6s;
}

/* ANIMATIONS */
@keyframes bounce{
0%{transform:translateY(0);}
30%{transform:translateY(-10px);}
60%{transform:translateY(0);}
100%{transform:translateY(-5px);}
}

@keyframes pulseIcon{
0%{transform:scale(1);}
50%{transform:scale(1.08);}
100%{transform:scale(1);}
}

/* MOBILE */
@media(max-width:600px){
.podar-section-card{
padding:18px;
}
.podar-section-card span{
font-size:14px;
}
}

/*PODAR ACCORDIAN */

.podar-department-wrapper{
max-width:1100px;
margin:auto;
padding:20px;
 font-family: var(--main-font);
}

.podar-department-title{
text-align:center;
font-size:28px;
font-weight:700;
background:var(--gradient);
-webkit-background-clip:text;
color:transparent;
margin-bottom:20px;
}

.podar-search-box{
text-align:center;
margin-bottom:20px;
}

.podar-search-box input{
width:100%;
max-width:400px;
padding:10px 15px;
border-radius:25px;
border:1px solid var(--border);
outline:none;
}

.podar-accordion-item{
margin-bottom:12px;
border-radius:12px;
overflow:hidden;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.podar-accordion-header{
padding:14px 18px;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
background:var(--gradient);
color:#fff;
font-weight:600;
}

.podar-accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    background:#fff;
    padding:0 15px;   /* only left-right */
}

.podar-accordion-content.active{
    padding:15px;
}

.podar-accordion-content-inner{
    padding:25px;
}

.podar-accordion-content ul{
padding:15px;
margin:0;
list-style:none;
}

.podar-accordion-content li{
margin:6px 0;
padding:8px 10px;
background:#f6fbf7;
border-radius:6px;
font-size:14px;
}

.podar-accordion-content li:hover{
background:#dff3e2;
transform:translateX(5px);
}

.podar-accordion-content li::before{
content:"🌿";
margin-right:8px;
}

.podar-accordion-header span{
transition:0.3s;
}

.podar-accordion-header.active span{
transform:rotate(45deg);
}

@media(max-width:600px){
.podar-department-title{font-size:22px;}
.podar-accordion-header{font-size:14px;}
.podar-accordion-content li{font-size:13px;}
}

/* DEAN PAGE TABLE AND GRID */

.dean-wrapper{
max-width:1100px;
margin:auto;
font-family:Arial, sans-serif;
line-height:1.7;
padding:20px;
}

/* GRID */

.dean-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:20px;
}

/* CARD */

.dean-card{
background:#fff;
padding:20px;
border-radius:8px;
box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

.dean-card h3{
margin-top:0;
color:#2f5d32 !important;
font-size: 1.75rem;
}

/* TABLE */

.dean-table{
width:100%;
border-collapse:collapse;
margin-top:15px;
}

.dean-table td{
padding:10px;
border-bottom:1px solid #ddd;
}

.dean-table td:first-child{
font-weight:600;
width:220px;
}

/* CONTACT */

.dean-contact{
background:#f4f8ff;
padding:20px;
border-radius:8px;
margin-top:30px;
}

/* FOR PODAR CARD + LIST DESIGN */
.podar-ayu-section{
  font-family:'Poppins', sans-serif;
  background:var(--light);
  padding:30px;
  border-radius:15px;
}

.podar-ayu-title{
  text-align:center;
  font-size:26px;
  color:var(--primary);
  margin-bottom:25px;
  font-weight:600;
}

.podar-ayu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.podar-ayu-card{
  background:#fff;
  border-radius:15px;
  padding:20px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  border-left:5px solid var(--primary);
  transition:0.3s;
}

.podar-ayu-card:hover{
  transform:translateY(-5px);
}

.podar-ayu-card h3{
  color:var(--primary);
  margin-bottom:15px;
font-size: 23px;
}

.podar-ayu-card ul{
  padding-left:0;
  list-style:none;
}

.podar-ayu-card ul li{
  padding:8px 0;
  border-bottom:1px dashed var(--border);
  position:relative;
  padding-left:25px;
}

.podar-ayu-card ul li:before{
  content:"🌿";
  position:absolute;
  left:0;
}

/* PODAR STAFF CARD */

.staff-wrapper{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(500px,1fr));
gap:30px;
margin:40px 0;
font-family:Segoe UI,Arial;
}

.staff-card{
background:#fff;
border-radius:10px;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
overflow:hidden;
}

@media(max-width:768px){

.staff-wrapper{
grid-template-columns:1fr;
}

}

.tt-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tt-list li {
    margin-bottom: 12px;
}

.tt-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 10px;
    background: #f7f9fb;
    text-decoration: none;
    color: #222;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.tt-list a i {
    color: #e63946;
    font-size: 18px;
}

.tt-list a:hover {
    background: var(--gradient);
    color: #fff  !important;
    transform: translateX(5px);
 cursor: pointer;

}

.tt-list a:hover i {
    color: #fff;
}

.new-tag {
    height: 18px;
    margin-left: auto;
}