:root {
    --primary-color: #ff3204;
    --secondary-color: #e4ab00;
    --accent-color: #fbbc05;
    --accent-color-yellow-light: #ffb300;
    --primary-color2: rgb(255, 142, 116)0;
    --hover-color: #00e5ff;
    --accent-light: #e4e9c4;
    --accent-teal: #00cec9;
    --accent: #24d3ff;
    --accent-color-light: #9dccff;
    --accent-blue: #60A5FA;
    --accent-purple: #A78BFA;
    --success-color: #34a853;
    --warning-color: #fbbc05;
    --danger-color: #ea4335;
    --text-color: #bcbcbc;
    --text-secondary: #a4a4a4;
    --background-color: #ffffff;
    --card-bg: linear-gradient(145deg, rgba(10, 15, 35, 0.9), rgba(20, 25, 55, 0.9));
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(0, 4, 23, 0.3);
    --border: #333333;
    --border-color: #dadce0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 191, 255, 0.37);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --brand-text1: #ffc400;
    --brand-text2: #ff885c;
    --highlight-color: #ff885c;
    --text-muted: #ececec;
    --sambalpuri-red: #dc6114;
    --sambalpuri-gold: #ffd700;
    --primary-text-color: #d4af37;
    --light-text-color: #ffffff;
    --dark-bg: #0f0f15;
    --bg-tertiary: #070606;
    --bg-elevated: #000000;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --glow: rgba(179, 136, 255, 0.1);
    --glaze: rgba(255, 255, 255, 0.03);
    --gradient-primary: linear-gradient(135deg, #020350, #0016f1);
    --gradient-primary2: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), #fbbf24);
    --gradient-accent: linear-gradient(135deg, var(--accent), #0891b2);
}

html {
    scroll-behavior: smooth;
}

/* Index Page */
div .highlight {
    color: var(--highlight-color);
}

/* Header Part */
.top-bar {
    background: linear-gradient(135deg, #010102 0%, #0a0f1a 40%, #033348c5 60%, #010f15 100%);
    color: white;
    padding: 4px 0;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: -10px;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-contact-item:hover {
    color: #f8f9fa;
    transform: translateY(-1px);
}

.top-contact-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.top-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.top-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.top-ocial-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.top-social-link i {
    font-size: 10px;
    margin-top: 2px;
    color: white;
}

.top-social-link.linkedin {

    background: #0077b5;
}

.top-social-link.scholar {
    background: #4285f4;
}

.top-social-link.researchgate {
    background: #03d5b2;
}

.top-social-link.orcid {
    background: #99d002;
}



/* LinkedIn specific color */
.top-social-link.linkedin:hover {
    background: #0077b5;
}

/* Google Scholar specific color */
.top-social-link.scholar:hover {
    background: #4285f4;
}

/* ResearchGate specific color */
.top-social-link.researchgate:hover {
    background: #00d0af;
}

/* ORCID specific color */
.top-social-link.orcid:hover {
    background: #a6ce39;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        padding: 10px 0;
    }

    .top-contact-info {
        gap: 15px;
        flex-wrap: wrap;
    }

    .top-contact-item {
        gap: 6px;
    }

    .top-contact-item i {
        font-size: 14px;
    }

    .top-social-links {
        gap: 10px;
        margin-top: 8px;
    }

    .top-social-link {
        width: 27px;
        height: 27px;
    }

    .top-social-link i {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .top-contact-info {
        /* justify-content: center; */
        display: none;
    }

    .top-social-links {
        /* justify-content: center; */
        margin-top: -4px;
    }

    .top-contact-item span {
        display: none;
    }

    .top-contact-item {
        flex-direction: column;
        gap: 2px;
        font-size: 10px;
    }
}

/* Animation for page load */
.top-bar {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hover effect for the entire bar */
.top-bar:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* topbar end  */

/* Sliding text start */
#note {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 18px;
    top: -6px;
    left: 27%;
}

#note small {
    position: absolute;
    display: inline-block;
    animation: mymove 15s infinite linear;
    color: rgb(255, 214, 8);
    text-shadow: 0px 0px 2px yellow;
    font-size: 16px;
    padding-left: 100%;
    white-space: nowrap;
    margin-top: -5px;
}

@keyframes mymove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Sliding text end */

/* top nav bar  */
.brand-text {

    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    background: linear-gradient(to right, var(--brand-text1), var(--brand-text2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-left: 50px
}

.header {
    position: relative;
    left: -2.3%;
}

.brand-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 0.8rem);
    color: var(--text-muted);
    margin-top: -5px;
    font-weight: 700;
    position: relative;
    left: 9%;
}

.center-header {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: auto;
    font-weight: 600;
    /* margin-left:10%; */
}

/* Top nav bar end  */

.admin-functions-section {
    margin-bottom: 32px;
}

.function-category {
    margin-bottom: 32px;
    padding: 0 16px;
    margin-top: 15px;
}
.function-category h4 {
    font-size: 23px;
    margin-bottom: 16px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid #9b9b9b7d;
    
    /* Gradient Text Effect */
    background: linear-gradient(90deg, #ff8a00, #e52e71, #9b51e0, #3a7bd5);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
    /* Animation */
    animation: gradientShift 6s ease infinite;
    
    /* Fallback for older browsers */
    display: inline-block; /* Needed for gradient to work properly */
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Grid Layout */
.function-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    width: 100%;
}

/* Function Card Styling */
.function-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 16px;
    background: var(--card-bg);
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(60, 60, 100, 0.3);
    text-align: center;
    color: #e0e0e0;
    min-height: 130px;
    will-change: transform, box-shadow, border-color;
}

.function-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(0, 4, 23, 0.4);
    border-color: rgba(0, 255, 247, 0.7);
    color: #e0e0e0;
}

/* Icon Styling */
.function-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 22px;
    position: relative;
}

.function-icon i {
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Text Inside Card */
.function-card span {
    font-size: 14px;
    font-weight: 500;
    word-wrap: break-word;
    text-align: center;
    line-height: 1.3;
}

/* Category Row Layout */
.function-category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.function-category {
    flex: 1;
    min-width: calc(50% - 20px);
}

/* Personal & Extracurricular Special Layout */
.personal-extracurricular-container {
    max-width: 400px;
    margin: 0 auto;
}

.personal-extracurricular-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.personal-extracurricular-grid .function-card {
    min-width: 160px;
}

@media (max-width: 768px) {
    .function-category {
        min-width: 100%;
    }
    
    .function-category-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: -10px;
    }
}

@media (max-width: 480px) {
    .topbar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .topbar-left,
    .topbar-right {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .topbar-left a,
    .topbar-right a {
        margin-right: 12px;
        font-size: 13px;
    }

    .function-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .function-card {
        padding: 10px;
        min-height: 100px;
    }

    .function-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .function-card span {
        font-size: 12px;
    }

    .personal-extracurricular-container {
        max-width: 100%;
    }
}

/* Hero Section */
.hero-section {
    position: relative;

    overflow: hidden;
    margin-top: 0%;
    padding: 2rem 0;
}

/* .hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, var(--primary-color) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--sambalpuri-red) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  animation: patternMove 20s linear infinite;
} */

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--sambalpuri-red), var(--sambalpuri-gold));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.t-hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color2), var(--brand-text1));
    /* background: linear-gradient(45deg, var(--light-text-color), var(--primary-text-color)); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.hero-description {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    margin-bottom: 2rem;
    line-height: 1.8;
        background: linear-gradient(90deg, #ffffff, #ffe993);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
        animation: gradientShift 4s ease infinite;

    display: inline-block; /
}


@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-stats {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--sambalpuri-gold));
    border: none;
    /* padding: 0.75rem 2rem; */
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    margin-bottom: -40px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.btn-outline-light:hover {
    background: var(--text-muted);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
}

.image-frame img {
    border-radius: 17px;
    width: 100%;
    height: auto;
    display: block;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: clamp(40px, 8vw, 60px);
    height: clamp(40px, 8vw, 60px);
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}


/* Personal Details Page Start  */


.personal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4.5rem;
}
.personal-container-section{
    margin-top: -2%;
}

h2.personal-container-h2 {
    color: var(--accent);
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

h3.personal-container-h3 {
    color: var(--sambalpuri-gold);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-top: 0;
    margin-bottom: 1rem;
}

.personal-container-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--accent);
}

.personal-container-card p {
    color: var(--text-color);
}

.side-by-side {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.basic-info,
.academic-journey {
    flex: 1;
    min-width: 0;
}

.pr-timeline-item {
    display: flex;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    color: white;
}

.pr-year {
    flex: 0 0 90px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.95rem;
}

.pr-event {
    flex: 1;
    min-width: 0;
    font-size: 0.95rem;
}

.quote {
    font-style: italic;
    color: var(--secondary-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1.25rem 0;
    font-size: 0.95rem;
}

/* .basic-info p,
.basic-info-li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
} */

.basic-info p strong {
    color: white;
}

/* ul {
    padding-left: 1.25rem;
    margin: 0.8rem 0;
}

li {
    margin-bottom: 0.5rem;
} */

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .side-by-side {
        flex-direction: column;
        gap: 1rem;
    }

    .year {
        flex: 0 0 80px;
        margin-bottom: 0.25rem;
    }

    .card {
        padding: 1rem;
    }

    .quote {
        padding-left: 0.8rem;
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.8rem;
    }

    h2.personal-container-h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    h3.personal-container-h3 {
        font-size: 1.2rem;
    }

    .timeline-item {
        flex-direction: column;
    }

    .year {
        margin-bottom: 0.2rem;
    }

    .basic-info p,
    li,
    .event {
        font-size: 0.9rem;
    }
}


/* Personal Details Page End */


/* Academic career page start  */

/* .body-style {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
} */

.container-style {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.main-heading {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-heading {
    color: var(--accent);
    font-size: 1.55rem;
    margin-top: var(--section-gap);
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.card-heading {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: white;
}

.years-badge {
    display: block;
    background-color: var(--accent-color);
    color: var(--darker-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin: 1rem auto;
    width: fit-content;
}

.experience-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.experience-card {
    background: var(--card-bg);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.date-range {
    color: var(--accent-teal);
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.institution {
    color: var(--accent-color-light);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.philosophy-section {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    /* margin:2.5rem 0; */
    border-left: 4px solid var(--accent);
}

.philosophy-section p {
    color: white;
    text-align: justify;
}

.contributions-section {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid var(--accent);
}

.contributions-section p {
    color: white;
}

@media (max-width: 768px) {
    .container-style {
        padding: 1rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .experience-section {
        grid-template-columns: 1fr;
    }
}

/* Academic career page end   */

/* Research projects page start */
        .res-container {
            max-width: 1400px;
        }
        
        .res-project-card {
            background: var(--card-bg);
            border: 1px solid rgba(56, 70, 107, 0.4);
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            height: 165px;
            overflow: hidden;
            padding: 15px;
            color: var(--text-color);
        }

        .res-project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border-color: rgba(94, 114, 228, 0.6);
        }

        .card-body {
            padding: 1.5rem;
        }
        
        .badge-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .agency-badge {
            background: rgba(94, 114, 228, 0.15);
            color: var(--primary);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(94, 114, 228, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .period-badge {
            background: rgba(16, 185, 129, 0.15);
            color:greenyellow;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(16, 185, 129, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .international-badge {
            background: rgba(236, 201, 75, 0.15);
            color: #ecc94b;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(236, 201, 75, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        h1 {
            color: var(--lighter);
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 700;
            letter-spacing: -0.025em;
            font-size: 2.5rem;
        }
        
        .search-container {
            margin-bottom: 2.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .filter-btn {
            background: rgba(30, 41, 59, 0.8);
            color: var(--light);
            border: 1px solid rgba(56, 70, 107, 0.4);
            border-radius: 20px;
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-1px);
        }
        
        .no-results {
            text-align: center;
            padding: 3rem;
            color: var(--muted);
            font-size: 1.1rem;
        }
        
        .res-project-title {
            color: var(--lighter);
            font-weight: 600;
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
            line-height: 1.4;
        }
        
        .search-input {
            background: rgba(30, 41, 59, 0.9);
            border: 1px solid rgba(56, 70, 107, 0.4);
            color: var(--light);
            padding: 0.75rem 1.25rem;
            border-radius: 30px;
            font-size: 0.95rem;
        }
        
        .search-input:focus {
            background: rgba(30, 41, 59, 0.95);
            border-color: var(--primary);
            color: var(--lighter);
            box-shadow: 0 0 0 0.25rem rgba(94, 114, 228, 0.25);
        }
        
        .search-btn {
            border-radius: 0 30px 30px 0 !important;
            background: var(--primary) !important;
            border-color: var(--primary) !important;
        }
        
        /* .glow-text {
            animation: glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
            }
            to {
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.2);
            }
        } */
        
        .badge-icon {
            font-size: 0.7rem;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .card-header {
                padding: 1rem;
            }
            
            .card-body {
                padding: 1.25rem;
            }
            
            .res-project-title {
                font-size: 1rem;
            }
        }
/* Research projects page end */
/* Research Contribution Page start  */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.re-card-title {
    color: var(--accent-color);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-top: 0;
    margin-bottom: 1rem;
}

.content-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: justify;
}

.research-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.research-item {
    margin-bottom: 1rem;
}

.project-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.table-header {
    text-align: left;
    padding: 0.5rem;
    background-color: rgba(15, 163, 177, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
}

.table-data {
    padding: 0.5rem;
    border-bottom: 1px solid #333;
    font-size: 0.9rem;
    vertical-align: top;
    color: var(--text-color);
}

.table-row:last-child .table-data {
    border-bottom: none;
}

.highlight-quote {
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1.25rem 0;
    font-size: 0.95rem;
}

.paragraph-text,
.list-item {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.emphasized-text {
    color: var(--secondary-color);
}

.unordered-list {
    padding-left: 1.25rem;
    margin: 0.8rem 0;
}

.list-item {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .page-container {
        padding: 1rem;
    }

    .research-grid-layout {
        grid-template-columns: 1fr;
    }

    .project-table {
        display: block;
        overflow-x: auto;
        text-align: left;
    }

    .content-card {
        padding: 1rem;
    }

    .highlight-quote {
        padding-left: 0.8rem;
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 0.8rem;
    }


    .card-title {
        font-size: 1.1rem;
    }

    .paragraph-text,
    .list-item {
        font-size: 0.9rem;
    }
}

/* Research Contribution Page end */

/* Awards and Honors Page Start */
.award-honor-container {
    line-height: 1.6;
    /* max-width: 1100px; */
    margin: 0 auto;
    padding: 25px 10px;
    background-image:
        radial-gradient(circle at 25% 25%, var(--glaze) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, var(--glaze) 0%, transparent 50%);
}

.award-honor-container h1 {
    color: white;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 2.4rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.award-honor-container h1:after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(247, 255, 3, 0.3);
}

.awards-container {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;

}

.award-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 28px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.award-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.02) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.award-card:hover::before {
    opacity: 1;
    top: -20%;
    left: -20%;
}

.award-year {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.award-year svg {
    margin-right: 10px;
    filter: drop-shadow(0 2px 2px rgba(242, 255, 3, 0.3));
}

.award-title {
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    font-size: 1.15rem;
    position: relative;
    display: inline-block;
}

.award-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.award-card:hover .award-title::after {
    width: 100%;
}

.award-description {
    font-size: 0.96rem;
    color: var(--accent-light);
    line-height: 1.7;
}

.special-mention {
    /* background: linear-gradient(135deg, var(--highlight), rgba(39, 39, 61, 0.7)); */
    padding: 30px;
    border-radius: 8px;
    /* margin-bottom: 40px; */
    /* border-left: 4px solid var(--accent); */
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); */
}

.special-mention::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, var(--accent), #7c3aed); */
}

.special-mention .award-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.special-mention .award-description {
    font-size: 1rem;
}

@media (max-width: 768px) {
    /* body {
        padding: 40px 20px;
    } */

    /* h1 {
        font-size: 2rem;
        margin-bottom: 50px;
    } */

    .awards-container {
        grid-template-columns: 1fr;
    }

    .special-mention {
        padding: 25px 20px;
    }
}

/* Awards and Honors Page End */


/* Mentorship and Teaching page start  */

.mn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
        color: var(--text-color);
}
.mn-section h2{
    color: var(--accent);
    font-size: clamp(1.5rem, 4vw, 1.5rem);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    /* border-left: 4px solid var(--accent-color-light); */
    /* padding-left: 1rem; */

}
.mn-section p{
    color: var(--text-color);

}

.subject-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.subject-item {
    background-color: rgba(42, 157, 143, 0.1);
    padding: 0.8rem;
    border-radius: 4px;
    border-left: 3px solid var(--primary);
}

.mn-timeline {
    position: relative;
    padding-left: 1.5rem;
}
.mn-timeline h3{
    color: var(--accent-color-yellow-light);
    font-size: clamp(1.3rem, 4vw, 1rem);
    margin-top: 2rem;

}

/* .mn-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
} */

.mn-timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.mn-timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color-yellow-light);
}
.table-container{
        height: 26rem;
    overflow-y: scroll;
}
.m-table-container{
       height: 100%;
    overflow-y: hidden;
    margin-bottom: 65px;
}
.student-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.student-table th,
.student-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(233, 196, 106, 0.2);
}

.student-table th {
    background-color: rgba(42, 157, 143, 0.2);
    color: var(--accent);
}

.student-table tr:hover {
    background-color: rgba(42, 157, 143, 0.1);
}

.mn-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 2rem 10rem;
}

.mn-stat-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    min-width: 200px;
    margin: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary);
}

.mn-stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0.5rem 0;
}

.mn-stat-label {
    font-size: 1rem;
    color: var(--text-color);
}

.note {
    font-style: italic;
    color: var(--accent);
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
}

/* Testimonial Styles */
.testimonial {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 500;
    color: var(--accent);
}

.mn-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mn-social-link {
    color: var(--accent-color-yellow-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(233, 196, 106, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mn-social-link:hover {
    background-color: rgba(233, 196, 106, 0.1);
    border-color: var(--accent);
}

.alumni-section {
    text-align: center;
}

.alumni-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.alumni-link:hover {
    background-color: #238f82;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .subject-list {
        grid-template-columns: 1fr;
    }

    .mn-stats {
                margin: 2rem 2rem;
        flex-direction: column;
    }

    .student-table {
        display: block;
        overflow-x: auto;
    }

    .mn-container {
        padding: 1rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Mentorship and Teaching page end */


/* Membership and Editorial Page Start  */
.membership-editorial-container {

    color: var(--text);
    line-height: 1.6;

    margin: 0 auto;
    padding: 40px;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.membership-category {
    position: relative;
    z-index: 1;
}

.category-title {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--highlight-color);
    position: relative;
    display: inline-block;
}

.category-title:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--accent-color);
}

.membership-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.membership-item {
    background: var(--card-bg);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--text-secondary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.membership-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.membership-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary2);
}

.membership-name {
    font-weight: 500;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.membership-name:before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.membership-abbr {
    display: inline-block;
    background: var(--highlight);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-left: 5px;
}

.membership-description {
    font-size: 0.9rem;
    color: #b0b0d0;
    margin-top: 8px;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .membership-editorial-container {
        padding: 30px 20px;
    }

    .membership-editorial-container h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .membership-grid {
        grid-template-columns: 1fr;
    }
}

/* Membership and Editorial Page End */

/* Collaborations Page Start  */
.collaboration-container {
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

.header-container {
    text-align: center;

}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    text-align: center;
}
.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    margin: 13px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(247, 255, 3, 0.3);
}
.collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.collab-card {
    background: var(--card-bg);
    border-radius: 12px;
    /* padding: 2rem; */
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.collab-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.collab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;

    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.card-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
    color: var(--accent-light);
}

.card-content {
    padding-left: 0.5rem;
}

.mou-details {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .collaboration-container {
        padding: 2.5rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .collab-grid {
        grid-template-columns: 1fr;
    }

    .collab-card {
        padding: 1.5rem;
    }
}

/* Collaborations Page End */

/* Leadership and rols page start */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}



.stat-box {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
}

.stat-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 0%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 20%;
    right: 30%;
    animation-delay: 4s;
}

.floating-card i {
    color: var(--primary-light);
    font-size: 20px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Titles */

.positions-grid {
    padding: 30px 0;
}

.positions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.position-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    color: var(--text-color);
}

.position-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.position-card:hover::before {
    opacity: 1;
}

.position-card.featured::before {
    opacity: 1;
    background: var(--gradient-secondary);
}

.position-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.position-content-wrapper {
    display: flex;
    gap: 20px;
}

.position-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.position-card.featured .position-icon {
    background: var(--gradient-secondary);
}

.position-icon i {
    font-size: 24px;
    color: white;
}

.position-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.institution {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.duration {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.position-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

/* .institution {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 8px;
} */

.duration {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 217, 255, 0.2);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.position-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Timeline Section */
.timeline-section {
    padding: 10px 0;
    /* background: var(--bg-primary); */
    margin-top: -65px;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    align-items: center;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-card {
    width: 45%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.timeline-card::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-card::before {
    right: -24px;
    border-left-color: var(--bg-card);
}

.timeline-item:nth-child(even) .timeline-card::before {
    left: -24px;
    border-right-color: var(--bg-card);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.timeline-position {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.timeline-institute {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

/* Governance Section */
.governance-section {
    padding: 40px 0;
    /* background: var(--bg-secondary); */
}

.governance-card,
.impact-card {
    background: var(--bg-card);
    border: 1px solid rgba(82, 82, 82, 0.449);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

/* .card-title {
    font-size: 1.5rem;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 12px;
} */

.card-title i {
    color: var(--primary-light);
    font-size: 20px;
}

/* .governance-list {
    space-y: 20px;
} */

.gov-item {
    padding: 20px;
    background: var(--card-bg);

    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.gov-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary);
    transform: translateX(5px);
}

.gov-role {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.gov-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-inst {
    color: var(--accent);
    font-size: 14px;
}

.gov-period {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.impact-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.impact-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
}

.impact-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.achievements {
    space-y: 15px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 10px;
}

.achievement-item i {
    color: var(--success);
    font-size: 16px;
}

.achievement-item span {
    color: var(--text-color);
    font-size: 14px;
}

/* Department Section */
.department-section {
    padding: 30px 0;
    background: var(--bg-primary);
}

.department-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dept-item {
    display: flex;
    gap: 40px;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 0px;
    transition: all 0.3s ease;
    position: relative;
}

.dept-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.dept-item.featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, var(--bg-card), rgba(245, 158, 11, 0.05));
}

.dept-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-light);
    min-width: 120px;
    flex-shrink: 0;
}

.dept-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.dept-info p {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 8px;
}

.dept-periods {
    font-size: 12px;
    color: var(--text-muted);
}

.founder-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}




/* Responsive Design */
@media (max-width: 1200px) {
    .positions-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .hero-stats {
        gap: 20px;
    }

    .stat-box {
        padding: 15px;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-card {
        width: calc(100% - 80px);
        margin-left: 80px;
    }

    .timeline-card::before {
        left: -24px !important;
        right: auto !important;
        border-right-color: var(--bg-card) !important;
        border-left-color: transparent !important;
    }

    .timeline-dot {
        left: 30px;
    }

    .dept-item {
        flex-direction: column;
        gap: 15px;
    }

    .dept-year {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        /* flex-direction: column; */
        gap: 15px;
    }

    .stat-box {
        width: 100%;
    }

    .positions-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .position-card {
        padding: 25px;
    }

    .section-title {
        font-size: 2rem;
    }

    .governance-card,
    .impact-card {
        padding: 30px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .floating-card {
        position: relative !important;
        margin-bottom: 15px;
    }

    .hero-visual {
        height: auto;
        flex-direction: column;
        margin-top: 40px;
    }

    .department-timeline {
        grid-template-columns: 1fr;
        /* Single column on small screens */
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .position-card {
        padding: 20px;
    }

    .timeline-card {
        padding: 20px;
    }

    .dept-item {
        padding: 20px;
    }

    .governance-card,
    .impact-card {
        padding: 25px;
        margin-top: -14%;
    }
    .department-section{
        margin-top: -10%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Smooth Scrolling */


/* Focus States */
.position-card:focus,
.timeline-card:focus,
.dept-item:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Leadership and rols page end */


/* Key notes and Invited Talk Page Start */
.K_IT-container {
    padding: 30px 30px;
    margin: 0 auto;
}

.subsection {
    margin-bottom: 3rem;
}

.subsection-title {
    color: var(--accent-light);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.subsection-title:before {
    content: '▹';
    color: var(--accent);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.institution-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.institution-card {
    background: var(--card-bg);
    padding: 1.2rem 1.5rem;
    border-radius: 6px;
    border-left: 3px solid var(--accent);
    transition: transform 0.3s ease;
    color: var(--text-color);
}

.institution-card:hover {
    transform: translateY(-3px);
}

.institution-name {
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.video-card {
    background-color: var(--darker-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(108, 99, 255, 0.2);
    color: var(--text-color);
}

.video-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.1);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background-color: #000;
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1rem;
}

.video-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.video-link:hover {
    color: var(--accent-light);
}

.video-link:after {
    content: '↗';
    margin-left: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent);
}

.na-item {
    color: var(--text-secondary);
    font-style: italic;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Roboto Mono', monospace;
}

.na-item:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent);
}

@media (max-width: 768px) {
    .K_IT-container {

        padding: 30px 0px;
    }

    .institution-list {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Key notes and Invited Talk Page end */

/* Conference Engagement Page Start */
.engagement-container {
    max-width: 950px;
    margin: 0 auto;
}



.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.engagement-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 650px;
    margin: 0 auto;
}

.engagement-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    border-top: 3px solid var(--accent-teal);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    text-align: center;
}

.engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.engagement-icon {
    font-size: 1.75rem;
    color: var(--accent-teal);
    margin-bottom: 1.25rem;
}

.engagement-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .engagement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .engagement-grid-bottom {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .engagement-grid,
    .engagement-grid-bottom {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .engagement-card {
        padding: 1.5rem 1.25rem;
    }
}

/* Conference Engagement Page End */

/* Innovation and IP Page Start */
.inno-ip-container {
    padding: 30px 4rem;
    margin: 0 auto;
}

.subsection {
    margin-bottom: 2.5rem;
}

.subsection-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.subsection-title:before {
    content: '◈';
    color: var(--accent-color);
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

.patent-card {
    background: var(--card-bg);
    border-left: 4px solid var(--gradient-primary);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease;
    box-shadow: var(--card-shadow);
}

.patent-card:hover {
    transform: translateX(5px);
}

.patent-type {
    color: var(--accent-purple);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 0.5rem;
    display: inline-block;
    background: rgba(96, 165, 250, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.patent-details {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.patent-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.patent-link:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

.patent-link:after {
    content: '↗';
    margin-left: 0.3rem;
    font-size: 0.9rem;
}

.na-item {
    color: var(--text-secondary);
    font-style: italic;
    padding-left: 1.5rem;
    position: relative;
}

.na-item:before {
    content: '—';
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    /* body {
        padding: 1.5rem;
    } */
.inno-ip-container {
    padding: 30px 20px;
    margin: 0 auto;
}

    .section-title {
        font-size: 1.8rem;
    }

    .patent-card {
        padding: 1.2rem;
    }
}

/* Innovation and IP Page End */

/* Professional Services Page Start */
     .prof-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        
        .prof-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .prof-service-card {
            background: var(--card-bg);
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid var(--primary-dark);
        }
        
        .prof-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .prof-service-card h3 {
            color: var(--accent);
            margin-top: 0;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .prof-service-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .prof-service-card ul {
            padding-left: 1.2rem;
            margin: 0;
        }
        
        .prof-service-card li {
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
            position: relative;
        }
        
        .prof-service-card li::before {
            content: '•';
            color: var(--accent-blue);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        @media (max-width: 768px) {

            
            .prof-services-grid {
                grid-template-columns: 1fr;
            }
        }
/* Professional Services Page End */

/* Training & Capacity Building Start */
.training-container {
    padding: 30px;
}

.training-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two equal columns */
    gap: 1rem;
    /* Space between items */
}

.training-item {
    background: var(--card-bg);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    position: relative;
    padding-left: 2.5rem;
    transition: transform 0.2s ease;
    border-left: 2px solid var(--accent);
    color: var(--text-color);
    margin-bottom: 0;
    /* Remove margin-bottom since gap handles spacing */
}

.training-item:hover {
    transform: translateX(5px);
}

.training-item:before {
    content: '→';
    position: absolute;
    left: 1rem;
    color: var(--accent);
    font-weight: bold;
}

.training-text {
    margin: 0;
    color: var(--text-primary);
    font-weight: 500;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .training-list {
        grid-template-columns: 1fr;
        /* Single column on small screens */
    }

    .training-item {
        padding: 1rem 1.25rem 1rem 2.25rem;
    }

    .training-item:before {
        left: 0.75rem;
    }
}

/* Training & Capacity Building End */

/* Media and Press Page Start */
.media-press-container {
    padding: 30px 130px;
}

.media-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}

.media-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.media-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateX(5px);
}

.media-text {
    margin: 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.8rem;
    color: var(--text-color);
}

.media-text:before {
    content: "•";
    color: var(--accent);
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -0.4rem;
}

.video-container {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 768px) {
    .media-press-container {
        padding: 10px;
    }

    .media-items-grid {
        grid-template-columns: 1fr;
    }

    .video-container iframe {
        height: 250px;
    }

    .media-text {
        font-size: 1rem;
    }
}

/* Media and Press Page End */

/* Policy page start */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 50px;
}

.policy-item {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 80px;
    margin-bottom: 1.5rem;
    background: var(--card-bg);
    border-radius: 8px;
    border-left: 3px solid var(--hover-color);
    transition: all 0.4s ease;

}

.policy-item:hover {
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.policy-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 40px;
    background: var(--hover-color);
    border-radius: 50%;
    top: 24px;
    box-shadow: 0 0 0 4px rgba(0, 242, 255, 0.2);
}

.policy-item p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .policy-item {
        padding-left: 60px;
    }

    .policy-item::before {
        left: 20px;
    }
}

/* Policy page end */



/* publication-page */


.publication-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}



.publication-profile-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.publication-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.publication-profile-card {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.publication-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.publication-profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1a73e8;
    margin-bottom: 15px;
}

.publication-profile-info h1 {
    font-size: 23px;
    margin-bottom: 8px;
    color: #e0e0e0;
    text-align: center;
}

.publication-profile-info p {
    color: #b0b0b0;
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

.metric-card {
    background: #0d0d0d;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.2s;
}

.metric-card:hover {
    transform: translateY(-3px);
    background: #2a2a2a;
}

.metric-value {
    font-size: 20px;
    font-weight: bold;
    color: #1a73e8;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 11px;
    color: #b0b0b0;
    text-transform: uppercase;
}

.publication-research-focus {
    margin-top: 20px;
    padding: 15px;
    background: #0d0d0d;
    border-radius: 8px;
}

.publication-research-focus h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4285f4;
}

.publication-research-focus p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.5;
}

.publication-main-content {
    flex-grow: 1;
}

.publication-section-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a73e8;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
}

.publications-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.publication-card {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.publication-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background: #2a2a2a;
}

.pub-title {
    font-size: 17px;
    margin-bottom: 8px;
    color: #4285f4;
    text-align: justify;
}

.pub-authors,
.pub-journal {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 5px;
    text-align: justify;
}

.pub-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 13px;
}

.pub-year {
    color: #b0b0b0;
}

.pub-citations {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fbbc05;
}

.view-more-container {
    text-align: center;
    margin-top: 25px;
}

.view-more {
    display: inline-block;
    padding: 8px 16px;
    background: #1a73e8;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s;
}

.view-more:hover {
    background: #4285f4;
}

/* Responsive styles */
@media (max-width: 992px) {
    .publication-profile-container {
        flex-direction: column;
    }

    .publication-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .publication-profile-pic {
        width: 100px;
        height: 100px;
    }

    .publication-profile-info h1 {
        font-size: 20px;
    }

    .publication-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .pub-footer {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .view-more {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* publication-page end */


/* footer start */

.main-content {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

/* Footer Styles - Much Darker */
.professional-footer {
    background: linear-gradient(135deg, #0a0a0f 0%, #0f0f1a 50%, #1a1a2e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.professional-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a4a7a, transparent);
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: radial-gradient(circle at 25% 25%, #ffffff 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, #ffffff 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 2rem;
}

.footer-brand {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #cbd53a, #ffab03, #ff6200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.footer-brand .subtitle {
    font-size: 1rem;
    color: #9ca3af;
    font-weight: 400;
    letter-spacing: 0.5px;

}

.footer-section h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3a7bd5, #6a5acd);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.research-links a {
    cursor: auto;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: #d0d53a;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3a7bd5;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.contact-info {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.contact-info a {
    color: #9ca3af;

}

.contact-info i {
    color: #3a7bd5;
    width: 20px;
    margin-left: -10px;
    text-align: center;
    flex-shrink: 0;
}

/* Fix for contact info layout */
.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    word-break: break-word;
    line-height: 1.4;
}

.contact-info .contact-text {
    min-width: 0;
    margin-top: -5px;
    margin-left: 2px;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: -30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a i {
    font-size: 16px;
}

.social-links .linkedIn {
    background: #1469C7;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(58, 123, 213, 0.3);
}

.social-links .GoogleScholar {
    background: #1469C7;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(58, 213, 208, 0.3);
}

.social-links .ORCID {
    background: #81ad0a;
    ;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(58, 213, 110, 0.3);
}

.social-links .Email {
    background: #a60101;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(213, 58, 58, 0.3);
}

/* .social-links a:hover {
    background: #3a7bd5;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(58, 123, 213, 0.3);
} */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom .highlight {
    color: #ffd500;
    font-weight: 500;
}

/* Desktop/Laptop Layout */
@media (min-width: 769px) {

    /* Desktop: Move footer brand to left side and adjust layout */
    .footer-brand {
        text-align: left;
        margin-bottom: 0;
    }

    .desktop-brand-section {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-right: 2rem;
    }

    .footer-section h5 {
        text-align: left;
    }

    .footer-section h5::after {
        left: 0;
    }

    .contact-section h5 {
        text-align: left;
    }

    .contact-section h5::after {
        left: 0;
    }
}

/* Mobile Layout - Custom Structure */
@media (max-width: 768px) {
    .footer-brand h2 {
        font-size: 2rem;
    }

    .footer-content {
        padding: 3rem 0 1.5rem;
    }

    /* Mobile: Keep footer brand centered and separate */
    .footer-brand {
        text-align: center;
        margin-bottom: 3rem;
    }

    /* Mobile: Center all section titles */
    .footer-section h5 {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Mobile: Contact section centered */
    .contact-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-section h5 {
        text-align: center;
    }

    .contact-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info {
        text-align: left;
        display: inline-block;
    }

    /* Mobile: Social links section */
    .mobile-social-section {
        text-align: center;
        margin-top: -30px;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .footer-section {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 576px) {
    .footer-brand h2 {
        font-size: 1.8rem;
    }

    .footer-brand .subtitle {
        font-size: 1rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }

    .footer-section {
        margin-bottom: 2rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.3s;
}

/* footer end */

/* footer end */


/* Gallery Section Start  */
.gallery-section {
    padding: 30px 0;
}

.gallery-section .headings {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.gallery-section .headings::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #f1c40f, rgb(255, 118, 5));
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 0 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 152, 219, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.view-all-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid blue;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 25px auto;
}

.view-all-btn:hover {
    background: linear-gradient(90deg, #2980b9, #1f5f8b);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Responsive Design */


@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.3rem;
    }

    .gallery-section {
        padding: 40px 0;
    }

    .gallery-section .headings {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 15px;
    }

    .view-all-btn {
        display: block;
        text-align: center;
        margin: 15px auto 0;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    /* .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    } */

    .gallery-section .headings {
        font-size: 1.2rem;
    }
}

/* Gallery Section End */

/* Coming Soon CSS Start */
.cmg-container {
    text-align: center;
    padding: 2rem;
}

.cmg-h {
    font-size: 2rem;
    margin-bottom: -1rem;
    color: #4fc3f7;
}

.cmg-p {
    font-size: 1.2rem;
    opacity: 0.8;
    color: white;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #4a6fa5, transparent);
    width: 200px;
    margin: 1.5rem auto;
}

/* Coming Soon CSS End */

/* Gallery Page Start */
  .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .gallery-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .gallery-title {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: yellow;
        }
        
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            padding: 0;
        }
        
        .photo-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 4/3;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .photo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .photo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .photo-card:hover .photo-img {
            transform: scale(1.05);
            cursor: pointer;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .photo-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .gallery-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .photo-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
        }
/* Gallery Page End */