/* ==========================================================================
   --- MODULE: index.css ---
   ========================================================================== */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo i {
            font-size: 2rem;
            color: #27ae60;
        }

        .logo h1, .logo .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .logo span {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .nav-link:hover,
        .nav-link.active {
            background: rgba(255,255,255,0.2);
            color: #27ae60;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            padding: 0.5rem;
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
            z-index: 1001;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-sidebar.open {
            left: 0;
        }

        .mobile-sidebar-header {
            padding: 2rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-sidebar-close {
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-sidebar-nav {
            padding: 1rem 0;
        }

        .mobile-sidebar-nav ul {
            list-style: none;
        }

        .mobile-sidebar-nav li {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-sidebar-nav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1rem 1.5rem;
            transition: background 0.3s ease;
        }

        .mobile-sidebar-nav a:hover {
            background: rgba(255,255,255,0.1);
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.493);
            z-index: 1000;
            display: none;
        }

        .sidebar-overlay.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            position: relative;
            height: 70vh;
            overflow: hidden;
        }

        .slideshow-container {
            
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            background: rgba(0, 0, 0, 0.185);
            padding: 3rem;
            border-radius: 15px;
            max-width: 600px;
        }

        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #27ae60;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            margin: 0.5rem;
            background: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: #219a52;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #27ae60;
        }

        .btn-secondary:hover {
            background: #219a52;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #27ae60;
        }

        .btn-outline:hover {
            background: #27ae60;
        }

        /* Slide Controls */
        .slide-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
        }

        .slide-controls button {
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .slide-controls button:hover {
            background: rgba(0,0,0,0.8);
        }

        .slide-indicators {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
        }

        .dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: #27ae60;
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        .about h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .about-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-10px);
        }

        .about-card i {
            font-size: 3rem;
            color: #27ae60;
            margin-bottom: 1.5rem;
        }

        .about-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        /* Featured Research */
        .featured-research {
            padding: 5rem 0;
        }

        .featured-research h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
        }

        .research-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .research-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .research-card:hover {
            transform: translateY(-5px);
        }

        .research-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .research-card-content {
            padding: 1.5rem;
        }

        .research-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .research-card p {
            color: #7f8c8d;
            margin-bottom: 1rem;
        }

        .research-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #95a5a6;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #27ae60;
        }

        .footer-section p,
        .footer-section li {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #27ae60;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 5px;
        }

        .newsletter-form button {
            padding: 0.75rem 1.5rem;
            background: #27ae60;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #34495e;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .social-links a:hover {
            background: #27ae60;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            opacity: 0.7;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 900;
            scrollbar-width: 2px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .modal-content {
            background-color: rgba(255, 255, 255, 0.781);
            margin: 5% auto;
            padding: 2rem;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            position: relative;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            right: 1rem;
            top: 1rem;
        }

        .close:hover {
            color: black;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #2c3e50;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            font-family: 'Times New Roman', Times, serif;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        /* Mobile Styles */
        
        h9{
            font-size: smaller;
}

/* ==========================================================================
   --- MODULE: about.css ---
   ========================================================================== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo i {
            font-size: 2rem;
            color: #27ae60;
        }

        .logo h1, .logo .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .logo span {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .nav-link:hover,
        .nav-link.active {
            background: rgba(255,255,255,0.2);
            color: #27ae60;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            padding: 0.5rem;
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
            z-index: 1001;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-sidebar.open {
            left: 0;
        }

        .mobile-sidebar-header {
            padding: 2rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-sidebar-close {
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-sidebar-nav {
            padding: 1rem 0;
        }

        .mobile-sidebar-nav ul {
            list-style: none;
        }

        .mobile-sidebar-nav li {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-sidebar-nav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1rem 1.5rem;
            transition: background 0.3s ease;
        }

        .mobile-sidebar-nav a:hover {
            background: rgba(255,255,255,0.1);
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.493);
            z-index: 1000;
            display: none;
        }

        .sidebar-overlay.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            position: relative;
            height: 70vh;
            overflow: hidden;
        }

        .slideshow-container {
            
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            background: rgba(0, 0, 0, 0.185);
            padding: 3rem;
            border-radius: 15px;
            max-width: 600px;
        }

        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #27ae60;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            margin: 0.5rem;
            background: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: #219a52;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #27ae60;
        }

        .btn-secondary:hover {
            background: #219a52;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #27ae60;
        }

        .btn-outline:hover {
            background: #27ae60;
        }

        /* Slide Controls */
        .slide-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
        }

        .slide-controls button {
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .slide-controls button:hover {
            background: rgba(0,0,0,0.8);
        }

        .slide-indicators {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
        }

        .dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: #27ae60;
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        .about h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
        }

        .about-grid {
            
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .about-card {
            position: grid;
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-10px);
        }

        .about-card i {
            font-size: 3rem;
            color: #27ae60;
            margin-bottom: 1.5rem;
        }

        .about-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #27ae60;
        }

        .footer-section p,
        .footer-section li {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #27ae60;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 5px;
        }

        .newsletter-form button {
            padding: 0.75rem 1.5rem;
            background: #27ae60;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #34495e;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .social-links a:hover {
            background: #27ae60;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            opacity: 0.7;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 900;
            scrollbar-width: 2px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .modal-content {
            background-color: rgba(255, 255, 255, 0.781);
            margin: 5% auto;
            padding: 2rem;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            position: relative;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            right: 1rem;
            top: 1rem;
        }

        .close:hover {
            color: black;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #2c3e50;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            font-family: 'Times New Roman', Times, serif;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        /* Mobile Styles */
        
        h9{
            font-size: smaller;
}




/* about grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.about-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 15px;
}

.read-more {
    margin-top: 10px;
    padding: 8px 15px;
    background: #007bff;
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.read-more:hover {
    background: #0056b3;
}

/* MODAL STYLING */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    background: #fff;
    margin: auto;
    padding: 25px;
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    animation: fadeIn 0.4s;
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
}

@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
}


/* ==========================================================================
   --- MODULE: contact.css ---
   ========================================================================== */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo i {
            font-size: 2rem;
            color: #27ae60;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .back-btn {
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .back-btn:hover {
            background: rgba(255,255,255,0.3);
        }

        /* Main Content */
        .main-content {
            padding: 3rem 0;
        }

        .page-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .page-header h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .contact-info {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .contact-info h2 {
            color: #2c3e50;
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 10px;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: #27ae60;
            margin-top: 0.25rem;
        }

        .contact-details h3 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: #7f8c8d;
            line-height: 1.6;
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .contact-form h2 {
            color: #2c3e50;
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #2c3e50;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #27ae60;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .btn {
            background: #27ae60;
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: #219a52;
            transform: translateY(-2px);
        }

        /* Map Section */
        .map-section {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }

        .map-section h2 {
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
        }

        .map-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #27ae60, #27ae60);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        /* Office Hours */
        .office-hours {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }

        .office-hours h2 {
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .hours-card {
            text-align: center;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 10px;
        }

        .hours-card i {
            font-size: 2rem;
            color: #27ae60;
            margin-bottom: 1rem;
        }

        .hours-card h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .hours-card p {
            color: #7f8c8d;
        }

        /* FAQ Section */
        .faq-section {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .faq-section h2 {
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            background: #f8f9fa;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #e9ecef;
        }

        .faq-question h3 {
            color: #2c3e50;
            font-size: 1.1rem;
        }

        .faq-question i {
            color: #27ae60;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 200px;
        }

        .faq-answer p {
            color: #7f8c8d;
            line-height: 1.6;
        }

        /* Mobile Styles */
        

/* ==========================================================================
   --- MODULE: research.css ---
   ========================================================================== */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo i {
            font-size: 2rem;
            color: #27ae60;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .back-btn {
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .back-btn:hover {
            background: rgba(255,255,255,0.3);
        }

        /* Main Content */
        .main-content {
            padding: 3rem 0;
        }

        .page-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .page-header h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Search and Filters */
        .search-filters {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }

        .search-bar {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .search-bar input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }

        .search-btn {
            padding: 0.75rem 1.5rem;
            background: #27ae60;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
        }

        .search-btn:hover {
            background: #219a52;
        }

        .filters {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .filter-group select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }

        /* Research Categories */
        .categories-section {
            margin-bottom: 3rem;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .category-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-5px);
        }

        .category-card i {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .category-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .category-card p {
            color: #7f8c8d;
            margin-bottom: 1rem;
        }

        .category-card .count {
            background: #27ae60;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Research Papers */
        .research-papers {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .research-paper {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .research-paper:hover {
            transform: translateY(-5px);
        }

        .paper-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #27ae60, #27ae60);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .paper-content {
            padding: 1.5rem;
        }

        .paper-category {
            background: #e8f5e8;
            color: #27ae60;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .paper-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .paper-abstract {
            color: #7f8c8d;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .paper-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: #95a5a6;
        }

        .paper-stats {
            display: flex;
            gap: 1rem;
            font-size: 0.9rem;
            color: #95a5a6;
            margin-bottom: 1rem;
        }

        .paper-actions {
            display: flex;
            gap: 0.5rem;
        }

        .btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: #27ae60;
            color: white;
        }

        .btn-primary:hover {
            background: #219a52;
        }

        .btn-outline {
            background: transparent;
            color: #27ae60;
            border: 1px solid #27ae60;
        }

        .btn-outline:hover {
            background: #27ae60;
            color: white;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }

        .pagination button {
            padding: 0.5rem 1rem;
            border: 1px solid #ddd;
            background: white;
            cursor: pointer;
            border-radius: 5px;
        }

        .pagination button.active {
            background: #27ae60;
            color: white;
            border-color: #27ae60;
        }

        .pagination button:hover:not(.active) {
            background: #f8f9fa;
        }

        /* Mobile Styles */
        

/* ==========================================================================
   --- MODULE: member.css ---
   ========================================================================== */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo i {
            font-size: 2rem;
            color: #27ae60;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .logo span {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .nav-link:hover,
        .nav-link.active {
            background: rgba(255,255,255,0.2);
            color: #ffffff;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            padding: 0.5rem;
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
            z-index: 1001;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-sidebar.open {
            left: 0;
        }

        .mobile-sidebar-header {
            padding: 2rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-sidebar-close {
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-sidebar-nav {
            padding: 1rem 0;
        }

        .mobile-sidebar-nav ul {
            list-style: none;
        }

        .mobile-sidebar-nav li {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-sidebar-nav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1rem 1.5rem;
            transition: background 0.3s ease;
        }

        .mobile-sidebar-nav a:hover {
            background: rgba(255,255,255,0.1);
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.493);
            z-index: 1000;
            display: none;
        }

        .sidebar-overlay.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            position: relative;
            height: 70vh;
            overflow: hidden;
        }

        .slideshow-container {
            width: 100%;
            height: 100%;
            
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            background: rgba(0, 0, 0, 0.185);
            padding: 3rem;
            border-radius: 15px;
            max-width: 600px;
        }

        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #27ae60;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            margin: 0.5rem;
            background: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: #219a52;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #27ae60;
        }

        .btn-secondary:hover {
            background: #219a52;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #27ae60;
        }

        .btn-outline:hover {
            background: #27ae60;
        }
        .btn a{
            color:white;
        }

        /* Slide Controls */
        .slide-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
        }

        .slide-controls button {
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .slide-controls button:hover {
            background: rgba(0,0,0,0.8);
        }

        .slide-indicators {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
        }

        .dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: #27ae60;
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        .about h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
        }

        .about-grid {
            display:grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .about-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-10px);
        }

        .about-card i {
            font-size: 3rem;
            color: #27ae60;
            margin-bottom: 1.5rem;
        }

        .about-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #27ae60;
        }

        .footer-section p,
        .footer-section li {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #27ae60;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 5px;
        }

        .newsletter-form button {
            padding: 0.75rem 1.5rem;
            background: #27ae60;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #34495e;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .social-links a:hover {
            background: #27ae60;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            opacity: 0.7;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 900;
            scrollbar-width: 2px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .modal-content {
            background-color: rgba(255, 255, 255, 0.781);
            margin: 5% auto;
            padding: 2rem;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            position: relative;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            right: 1rem;
            top: 1rem;
        }

        .close:hover {
            color: black;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #2c3e50;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            font-family: 'Times New Roman', Times, serif;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        /* Mobile Styles */
        
        h9{
            font-size: smaller;
}

/* ==========================================================================
   --- MODULE: dashboard.css ---
   ========================================================================== */

.dashboard-container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background: linear-gradient(180deg, #2c3e50 0%, #27ae60 100%);
  color: white;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
}

.sidebar-header {
  padding: 2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-header .logo i {
  font-size: 2rem;
  color: white;
}

.sidebar-nav ul {
  list-style: none;
  padding: 1rem 0;
}

.sidebar-nav .nav-item {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
  border-left: 4px solid transparent;
}

.sidebar-nav .nav-item:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav .nav-item.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-left: 4px solid #ffffff;
  font-weight: 600;
}

.sidebar-nav .nav-item i {
  margin-right: 10px;
  width: 20px;
}

.main-content {
  flex: 1;
  margin-top: 80px;
  padding: 2rem;
  background: #f8f9fa;
}

.dashboard-container .main-content {
  margin-left: 250px;
  margin-top: 0;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dashboard-header h1 {
  color: #2c3e50;
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 1rem;
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-card i {
  font-size: 2.5rem;
  color: #27ae60;
}

.stat-card h3 {
  font-size: 2rem;
  margin: 0;
  color: #2c3e50;
}

.stat-card p {
  margin: 0;
  color: #666;
}

.recent-activity {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recent-activity h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.activity-item {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 5px;
  border-left: 4px solid #27ae60;
}

.activity-item .activity-time {
  color: #666;
  font-size: 0.9rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-header h2 {
  color: #2c3e50;
  margin: 0;
}

.search-filters {
  display: flex;
  gap: 1rem;
}

.search-filters input,
.search-filters select {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.profile-form,
.settings-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
}

.research-card {
  position: relative;
}

.bookmark-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s;
}

.bookmark-btn:hover {
  background: #27ae60;
  color: white;
}

.bookmark-btn.bookmarked {
  background: #27ae60;
  color: white;
}

.download-btn {
  background: #2c3e50;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s;
}

.download-btn:hover {
  background: #1e3a21;
}




/* ==========================================================================
   --- MODULE: admin.css ---
   ========================================================================== */

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.overview-section {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.overview-section h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.pending-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pending-item {
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 5px;
  border-left: 4px solid #ff9800;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-table th,
.admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.admin-table th {
  background: #2c3e50;
  color: white;
  font-weight: bold;
}

.admin-table tr:hover {
  background: #f8f9fa;
}

.status-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.status-active {
  background: #27ae60;
  color: white;
}

.status-pending {
  background: #ff9800;
  color: white;
}

.status-inactive {
  background: #f44336;
  color: white;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  padding: 0.3rem 0.6rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.action-btn.edit {
  background: #2196f3;
  color: white;
}

.action-btn.delete {
  background: #f44336;
  color: white;
}

.action-btn.approve {
  background: #27ae60;
  color: white;
}

.action-btn:hover {
  opacity: 0.8;
}

.content-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #eee;
}

.tab-btn {
  padding: 1rem 2rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1rem;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.tab-btn.active {
  color: #2c3e50;
  border-bottom-color: #27ae60;
}

.content-tab {
  display: none;
}

.content-tab.active {
  display: block;
}

.content-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.slideshow-manager {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slideshow-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.slide-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.slide-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.slide-item-content {
  padding: 1rem;
}

.slide-item h4 {
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.slide-item p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.analytics-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.analytics-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.categories-chart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-name {
  min-width: 120px;
  font-size: 0.9rem;
}

.category-progress {
  flex: 1;
  height: 20px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.category-fill {
  height: 100%;
  background: #27ae60;
  transition: width 0.3s;
}

.category-count {
  font-weight: bold;
  color: #2c3e50;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.settings-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.settings-card h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.modal-content.large {
  max-width: 800px;
}

.user-filters {
  display: flex;
  gap: 1rem;
}

.user-filters select {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}


/* ==========================================================================
   --- MODULE: News & Events Layout (Restored & Modernized) ---
   ========================================================================== */

.news-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.news-events-layout {
    display: grid;
    grid-template-columns: 6fr 4fr; /* 60% Left for News, 40% Right for Events */
    gap: 3rem;
    align-items: flex-start;
}

.section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 3px solid #27ae60;
    padding-bottom: 0.5rem;
    display: inline-flex;
}

.section-title i {
    color: #27ae60;
}

/* News Grid (Left Pane) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.news-content p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Events Carousel (Right Pane - Thumbnail Form) */
.events-carousel-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.events-slideshow {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.event-slide {
    display: none;
    position: relative;
}

.event-slide.active {
    display: block;
}

.event-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.event-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    color: white;
    padding: 1rem;
    font-weight: bold;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.event-dots {
    text-align: center;
    margin-top: 1rem;
}

.event-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.event-dot.active {
    background-color: #27ae60;
}



/* ==========================================================================
   --- MODULE: Publications Layout (Premium) ---
   ========================================================================== */

.stats-section { margin-bottom: 4rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.stat-item {
    background: white; padding: 2rem; border-radius: 15px; text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: transform 0.3s;
}
.stat-item:hover { transform: translateY(-5px); }
.stat-item i { font-size: 2.5rem; margin-bottom: 1rem; }
.stat-item h3 { font-size: 2rem; color: #2c3e50; margin-bottom: 0.5rem; }
.stat-item p { color: #64748b; font-weight: 500; }

.publication-types { margin-bottom: 4rem; }
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.type-card {
    background: white; padding: 2rem; border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-left: 4px solid #27ae60;
}
.type-card h3 { color: #2c3e50; margin-bottom: 1rem; font-size: 1.3rem; }
.type-card p { color: #64748b; margin-bottom: 1.5rem; line-height: 1.6; }
.type-card .count { background: #f1f5f9; color: #27ae60; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem; font-weight: 600; }

.recent-publications { margin-bottom: 4rem; }
.publications-list { display: grid; gap: 1.5rem; }
.publication-item {
    background: white; padding: 2rem; border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.3s;
}
.publication-item:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.publication-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.publication-title { font-size: 1.4rem; color: #2c3e50; margin-bottom: 0.5rem; line-height: 1.4; }
.publication-journal { color: #27ae60; font-weight: 500; }
.publication-authors { color: #64748b; margin-bottom: 1rem; font-style: italic; }
.publication-metrics { display: flex; gap: 1.5rem; border-top: 1px solid #f1f5f9; padding-top: 1rem; }
.metric { color: #64748b; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.metric i { color: #94a3b8; }


/* ==========================================================================
   --- MODULE: Unified News & Events Grid (index.html) ---
   ========================================================================== */

.unified-news-events {
    padding: 5rem 0;
    background: #f8f9fa;
}

.unified-news-events h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.unified-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.unified-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.unified-card:hover {
    transform: translateY(-10px);
}

.unified-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.unified-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.unified-slide-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.unified-slide-indicator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.unified-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.unified-tag {
    align-self: flex-start;
    background: #e2e8f0;
    color: #27ae60;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.unified-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.unified-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.unified-gallery {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.unified-gallery img {
    width: calc((100% - 1.5rem) / 3);
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}


/* ==========================================================================
   --- RESPONSIVE MOBILE QUERIES (Moved to bottom for strict precedence) ---
   ========================================================================== */

@media (max-width: 768px) {
            .nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .logo span {
                display: none;
            }

            .slide-content {
                padding: 2rem;
                max-width: 90%;
            }

            .slide-content h2 {
                font-size: 2rem;
            }

            .slide-content p {
                font-size: 1rem;
            }

            .about-grid,
            .research-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .modal-content {
                margin: 10% auto;
                padding: 1.5rem;
            }
        }

@media (max-width: 768px) {
            .nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .logo span {
                display: none;
            }

            .slide-content {
                padding: 2rem;
                max-width: 90%;
            }

            .slide-content h2 {
                font-size: 2rem;
            }

            .slide-content p {
                font-size: 1rem;
            }

            .about-grid,
            .research-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .modal-content {
                margin: 10% auto;
                padding: 1.5rem;
            }
        }

@media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .hours-grid {
                grid-template-columns: 1fr;
            }

            .contact-info,
            .contact-form,
            .map-section,
            .office-hours,
            .faq-section {
                padding: 1.5rem;
            }
        }

@media (max-width: 768px) {
            .search-bar {
                flex-direction: column;
            }

            .filters {
                grid-template-columns: 1fr;
            }

            .categories-grid,
            .research-papers {
                grid-template-columns: 1fr;
            }

            .paper-actions {
                flex-direction: column;
            }

            .pagination {
                flex-wrap: wrap;
            }
        }

@media (max-width: 768px) {
            .nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .logo span {
                display: none;
            }

            .slide-content {
                padding: 2rem;
                max-width: 90%;
            }

            .slide-content h2 {
                font-size: 2rem;
            }

            .slide-content p {
                font-size: 1rem;
            }

            .about-grid,
            .research-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .modal-content {
                margin: 10% auto;
                padding: 1.5rem;
            }
        }

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    padding: 1rem;
  }

  .dashboard-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    gap: 1rem;
  }

  .search-filters {
    flex-direction: column;
    width: 100%;
  }

  .search-filters input,
  .search-filters select {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .admin-overview {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .settings-grid {
    grid-template-columns: 1fr;
  }

  .content-tabs {
    flex-direction: column;
  }

  .admin-table {
    font-size: 0.8rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.5rem;
  }
}


        .news-events-layout {
            grid-template-columns: 1fr;
        }

        /* ==========================================================================
           --- MODULE: Featured Authors Layout (Premium) ---
           ========================================================================== */
        .featured-authors {
            margin-top: 5rem;
            margin-bottom: 4rem;
        }

        .featured-authors h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0f172a;
            position: relative;
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .featured-authors h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #27ae60 0%, #2c3e50 100%);
            margin: 0.75rem auto 0 auto;
            border-radius: 2px;
        }

        .authors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            justify-content: center;
        }

        .author-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 2.5rem 2rem 2rem 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            border: 1px solid #f1f5f9;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .author-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(39, 174, 96, 0.08);
            border-color: rgba(39, 174, 96, 0.2);
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #27ae60 0%, #2c3e50 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 20px rgba(39, 174, 96, 0.15);
            text-transform: uppercase;
        }

        .author-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.5rem;
        }

        .author-title {
            font-size: 0.95rem;
            color: #64748b;
            font-weight: 500;
            margin-bottom: 2rem;
            min-height: 2.4rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .author-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            width: 100%;
            border-top: 1px solid #f1f5f9;
            padding-top: 1.5rem;
            margin-top: auto;
        }

        .author-stat {
            text-align: center;
        }

        .author-stat .number {
            font-size: 1.25rem;
            font-weight: 700;
            color: #27ae60;
            margin-bottom: 0.25rem;
        }

        .author-stat .label {
            font-size: 0.75rem;
            color: #94a3b8;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        @media (max-width: 640px) {
            .authors-grid {
                grid-template-columns: 1fr;
                max-width: 360px;
                margin: 0 auto;
            }
        }

        /* plan-features (Premium Membership Page check lists) */
        .plan-features {
            text-align: left;
            margin: 1.5rem 0 2rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            width: 100%;
        }

        .plan-features p {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: #475569;
            font-weight: 600;
            margin: 0;
        }

        .plan-features i {
            color: #27ae60;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

/* ==========================================================================
   --- GLOBAL RESPONSIVE OVERRIDES (ADDED BY FIX) ---
   ========================================================================== */
@media (max-width: 768px) {
    /* Auto-collapse inline grid elements */
    [style*="display: grid"],
    [style*="display:grid"] {
        grid-template-columns: 1fr !important;
    }

    /* Auto-collapse inline flex elements */
    [style*="display: flex"],
    [style*="display:flex"] {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    /* Exceptions for flex */
    .logo, .logo[style] { flex-direction: row !important; }
    .header .container { flex-direction: row !important; }
    .header-meta { flex-direction: row !important; }
    
    /* Standard Layout Grids */
    .contact-grid,
    .about-grid,
    .research-grid,
    .stats-grid,
    .impact-grid,
    .footer-content {
        grid-template-columns: 1fr !important;
    }
    
    /* Typography Scaling */
    .slide-content h2, h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.25rem !important; }
    
    /* Modal / Popup Scaling */
    .modal-content {
        width: 95% !important;
        margin: 5% auto !important;
        padding: 1.5rem !important;
    }
    
    /* Fix dashboard specific elements */
    .dashboard-header { flex-direction: column !important; align-items: flex-start !important; gap: 1rem !important; }
    .dashboard-header .header-meta { width: 100% !important; justify-content: space-between !important; }
}

@media (max-width: 480px) {
    .btn { width: 100% !important; margin-bottom: 0.5rem !important; text-align: center !important; }
    .header-meta .btn { width: auto !important; } /* Don't expand header buttons fully */
    .container { padding: 0 15px !important; }
}