/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 100%;
    margin: 5px 20px 5px 20px;
    padding: 0 20px;
}

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */


/* Indian Government Color Scheme */
:root {
    --primary-color: #FF9933; /* Saffron */
    --secondary-color: #138808; /* Green */
    --accent-color: #000080; /* Navy Blue */
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header Banner Styles */
.header-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 20px 0;
    text-align: center;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-text{
    text-align: center;
}

.banner-text h1 {
    color: var(--green);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-text p {
    color: var(--green);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.maintenance-banner {
    background: linear-gradient(90deg, #b71c1c, #e53935);
    color: var(--white);
    padding: 10px 0;
}

.maintenance-content {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.maintenance-content i {
    font-size: 18px;
}

.maintenance-text {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.maintenance-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.maintenance-link:hover {
    opacity: 0.9;
}

.header-top {
    background: var(--white);
    padding: 15px 80px;
    color: #11691d;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
}

.logo-text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.logo-text p {
    font-size: 14px;
    color: var(--dark-gray);
    opacity: 0.9;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border-radius: 25px;
    padding: 5px;
    border: 1px solid var(--border-color);
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--dark-gray);
    padding: 8px 15px;
    outline: none;
    width: 200px;
}

.search-box input::placeholder {
    color: var(--medium-gray);
}

.search-box button {
    background: var(--white);
    border: none;
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Navigation */
.main-nav {
    background: var(--secondary-color);
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 20px 25px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Director's Message */
.director-message {
    background: var(--white);
    padding: 80px 0;
    margin-bottom: 60px;
}

.director-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
}

.director-image {
    text-align: center;
}

.director-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    margin-bottom: 20px;
}

.director-image h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.director-image p {
    color: var(--primary-color);
    font-weight: 600;
}

.director-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

/* Vision Mission Mandate */
.vmm-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.vmm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.vmm-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

.vmm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
}

.vmm-card h3 {
    color: var(--accent-color);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.vmm-card p,
.vmm-card ul {
    color: var(--dark-gray);
    line-height: 1.7;
}

.vmm-card ul {
    text-align: left;
    list-style: none;
}

.vmm-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.vmm-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

/* Organogram Section */
.organogram-section {
    padding: 80px 0;
    background: var(--white);
}

.organogram-content {
    text-align: center;
}

.organogram-image {
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

/* Quick Links */
.quick-links {
    padding: 80px 0;
    background: var(--light-gray);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-link-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    border-top: 5px solid var(--secondary-color);
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.quick-link-card i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.quick-link-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.quick-link-card p {
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--accent-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section .social-icons {
    gap: 15px;
}

.footer-section .social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-section .social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3379ff, var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

.about-content .about-text:first-child {
    grid-column: 1;
}

.about-content .about-image {
    grid-column: 2;
    grid-row: 1 / 3;
}

.about-content .about-text:last-child {
    grid-column: 1;
    grid-row: 2;
    margin-top: 20px;
}

.about-text h2 {
    color: var(--accent-color);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-text:last-child p {
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
    padding-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
    padding-left: 30px;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facility-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--secondary-color);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.facility-card i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.facility-card h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.facility-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-item {
    text-align: center;
    background: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.achievement-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.achievement-text {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
}

/* Staff Page Styles */
.staff-overview {
    padding: 80px 0;
    background: var(--white);
}

.staff-download {
    margin-top: 50px;
}

.download-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.download-card i {
    font-size: 64px;
    margin-bottom: 25px;
}

.download-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.download-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.leader-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.leader-image {
    height: 250px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    padding: 30px;
}

.leader-info h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.leader-info .designation {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.leader-info .qualification,
.leader-info .specialization {
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

/* Staff Categories */
.staff-categories {
    margin-top: 50px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.category-panel {
    display: none;
}

.category-panel.active {
    display: block;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.staff-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.staff-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.staff-card h3 {
    color: var(--accent-color);
    font-size: 20px;
    margin: 20px 20px 10px;
    font-weight: 700;
}

.staff-card .designation {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 20px 10px;
}

.staff-card .research-area {
    color: var(--secondary-color);
    margin: 0 20px 10px;
    font-weight: 500;
}

.staff-card .email {
    color: var(--dark-gray);
    margin: 0 20px 20px;
    font-size: 14px;
}

/* Support Staff Grid */
.support-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.support-card {
    background: var(--white);
    padding: 40px 30px;
}

/* Professional Table Styles */
.staff-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 40px 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.staff-table thead {
    background: linear-gradient(135deg, var(--secondary-color), #0d6e0a);
}

.staff-table th {
    color: var(--white);
    font-weight: 600;
    text-align: left;
    padding: 18px 20px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
}

.staff-table th:first-child {
    width: 80px;
    text-align: center;
}

.staff-table th:nth-child(2) {
    width: 45%;
}

.staff-table th:last-child {
    width: auto;
}

.staff-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.staff-table tbody tr:hover {
    background: linear-gradient(90deg, #f8fff8, #f0f8f0);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.staff-table tbody tr:last-child {
    border-bottom: none;
}

.staff-table td {
    padding: 16px 20px;
    vertical-align: middle;
    color: var(--dark-gray);
    border: none;
}

.staff-table td:first-child {
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    background: rgba(19, 136, 8, 0.05);
    font-size: 15px;
}

.staff-table td:nth-child(2) {
    font-weight: 500;
    color: #2c3e50;
}

.staff-table td:last-child {
    color: #555;
    font-style: italic;
}

/* Table Header with Icon */
.staff-table th::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color), #0d6e0a);
    z-index: -1;
}

/* Responsive Table */
@media (max-width: 768px) {
    .staff-table {
        font-size: 13px;
        margin: 15px 0 30px 0;
    }
    
    .staff-table th,
    .staff-table td {
        padding: 12px 15px;
    }
    
    .staff-table th {
        font-size: 13px;
    }
    
    .staff-table td:first-child {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .staff-table {
        font-size: 12px;
    }
    
    .staff-table th,
    .staff-table td {
        padding: 10px 12px;
    }
    
    .staff-table th {
        font-size: 12px;
    }
    
    .staff-table td:first-child {
        font-size: 12px;
    }
}

.support-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--secondary-color);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.support-card i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.support-card h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.support-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Research Page Styles */
.research-overview {
    padding: 80px 0;
    background: var(--white);
}

.research-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.research-area-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

.research-area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
}

.research-area-card h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.research-area-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.research-area-card ul {
    list-style: none;
    text-align: left;
}

.research-area-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.research-area-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Research Bank */
.research-bank-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.bank-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bank-category {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--secondary-color);
}

.bank-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.bank-category h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.bank-category h3 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.bank-category p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-header h3 {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
}

.project-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.project-status.ongoing {
    background: var(--secondary-color);
    color: var(--white);
}

.project-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-details p {
    margin-bottom: 8px;
    font-size: 14px;
}

.project-details strong {
    color: var(--accent-color);
}

/* News Page Styles */
.featured-news-section {
    padding: 80px 0;
    background: var(--white);
}

.featured-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.featured-news-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.news-date {
    color: var(--dark-gray);
}

.news-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.news-content h3 {
    color: var(--accent-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.news-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* News Categories */
.news-categories-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.news-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.news-category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--secondary-color);
}

.news-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-category-card i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.news-category-card h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-category-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* News List */
.latest-news-section {
    padding: 80px 0;
    background: var(--white);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-item-image {
    height: 250px;
    overflow: hidden;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-content {
    padding: 30px;
}

.news-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* News Archive */
.news-archive-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.archive-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.year-filter,
.category-filter {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    background: var(--white);
    color: var(--dark-gray);
    font-weight: 500;
    cursor: pointer;
}

.archive-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.archive-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.archive-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.archive-date {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 120px;
}

.archive-title {
    color: var(--dark-gray);
    font-weight: 500;
    flex: 1;
    margin: 0 20px;
}

.archive-download {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.archive-download:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Student Page Styles */
.student-overview,
.academic-programs-section,
.research-opportunities-section,
.student-resources-section,
.application-process-section,
.student-life-section,
.student-contact-section {
    padding: 60px 0;
}

/* FAQ Styles */
.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    background: linear-gradient(135deg, var(--secondary-color), #0d6e0a);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #0d6e0a, var(--secondary-color));
}

.faq-question i {
    font-size: 20px;
    min-width: 24px;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.faq-answer {
    padding: 24px;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Important Notes */
.important-note {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.important-note i {
    color: #856404;
    font-size: 18px;
    margin-top: 2px;
}

.important-note strong {
    color: #856404;
}

/* Fee Structure */
.fee-structure {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

.fee-structure h4 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-size: 16px;
}

.fee-structure ul {
    margin-bottom: 20px;
}

.fee-structure li {
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.payment-options {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.payment-options h5 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 14px;
}

.payment-options p {
    margin-bottom: 8px;
    color: var(--dark-gray);
}

/* Application Details */
.application-details {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

.application-details h4 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-size: 16px;
}

.application-details ul {
    margin-bottom: 20px;
}

.application-details li {
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.download-section {
    text-align: center;
    margin-top: 20px;
}

.download-section .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
}

/* IPR Notice */
.ipr-notice {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 1px solid #dc3545;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

.ipr-notice p {
    color: #721c24;
    margin-bottom: 16px;
}

/* Accommodation Notice */
.accommodation-notice {
    background: linear-gradient(135deg, #e2e3e5, #d6d8db);
    border: 1px solid #6c757d;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

.accommodation-notice p {
    color: #495057;
    margin: 0;
}

/* Contact Section */
.contact-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.contact-card.primary {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--white), #f0f8f0);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #0d6e0a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    color: var(--white);
    font-size: 24px;
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.contact-card p {
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.contact-card p:last-of-type {
    margin-bottom: 20px;
}

.contact-card .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Final Note */
.final-note {
    margin-top: 40px;
    text-align: center;
}

.note-content {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    border: 1px solid #17a2b8;
    border-radius: 8px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 600px;
}

.note-content i {
    color: #0c5460;
    font-size: 20px;
}

.note-content p {
    color: #0c5460;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .note-content {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 14px 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .faq-answer {
        padding: 16px;
    }
    
    .important-note,
    .fee-structure,
    .application-details,
    .ipr-notice,
    .accommodation-notice {
        padding: 16px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
}
