

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: #000;
    background-color: #f5f5f5;
}

/* Header */
.header {
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* EEC Logo */
.eec-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 80px;
    height: 60px;
    background: #2c5aa0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-squares {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    width: 30px;
    height: 30px;
}

.square {
    background: white;
    border-radius: 2px;
}

.logo-text {
    color: #2c5aa0;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Title Section */
.title-section {
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.main-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 24px;
    font-weight: normal;
    color: #555;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

/* College Logo */
.college-logo {
    width: 120px;
}

.college-container {
    background: #2c5aa0;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.college-text {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.college-subtitle {
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.year {
    margin-top: 3px;
    font-size: 8px;
}

/* Navigation */
.navigation {
    background: #666;
    border-bottom: 1px solid #555;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    border-right: 1px solid #555;
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #555;
}

/* Announcements Banner */
.announcements-banner {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    padding: 8px 0;
}

.announcements-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcements-icon {
    font-size: 14px;
}

.announcements-text {
    font-size: 11px;
    font-weight: bold;
    color: #d32f2f;
}

/* Main Content */
.main-content {
    background: white;
    min-height: 600px;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 20px;
}

/* Sidebar */
.sidebar {
    width: 200px;
    flex-shrink: 0;
}

.journal-cover {
    margin-bottom: 20px;
}

.cover-image {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.cover-header {
    text-align: left;
    margin-bottom: 15px;
}

.issn {
    font-size: 10px;
    font-weight: bold;
}

.cover-content {
    text-align: center;
}

.eec-text {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.journal-text,
.applied-text,
.engineering-text,
.research-text {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: normal;
}

.cover-details {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.volume {
    font-size: 11px;
    margin-bottom: 15px;
}

.university-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.uni-circle {
    width: 20px;
    height: 20px;
    background: white;
    color: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.uni-text {
    font-size: 9px;
    font-weight: bold;
}

.open-access {
    margin-bottom: 20px;
}

.open-access-logo {
    background: #ff9800;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: bold;
}

.oa-icon {
    font-size: 12px;
}

.editors-section {
    font-size: 11px;
    line-height: 1.4;
}

.editors-section h3 {
    font-size: 12px;
    font-weight: bold;
    margin: 15px 0 8px 0;
    color: #333;
}

.editors-section p {
    margin-bottom: 5px;
    color: #666;
}

/* Main Area */
.main-area {
    flex: 1;
    padding-left: 20px;
}

.about-journal h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 8px;
}

.journal-info h3 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 20px 0 10px 0;
}

.journal-info ul {
    list-style: none;
    margin-bottom: 15px;
}

.journal-info li {
    margin-bottom: 5px;
}

.journal-info a {
    color: gray;
    text-decoration: underline;
    font-size: 12px;
}

.journal-info a:hover {
    color: white;
}

/* Content Card */
.content-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    padding: 30px;
    margin: 20px 0;
}

/* Board Cards */
.board-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #222;
}

.card p {
    margin: 6px 0;
    font-size: 14px;
    color: #555;
}

.card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
    border: 2px solid #ddd;
}

.btn-link {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background: #2c5aa0;
    color: blue;
    font-size: 12px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-link:hover {
    background: #1a4480;
}

/* Papers Section */
.papers-section h3 {
    color: #2c5aa0;
    font-size: 16px;
    margin: 25px 0 15px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.paper-item {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #2c5aa0;
    border-radius: 4px;
}

.paper-item p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.scholar-btn {
    color: #4285F4;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
}

.scholar-btn:hover {
    text-decoration: underline;
}

/* Logo container for college logo */
.logo-container {
    text-align: center;
    margin-bottom: 0px;
}

.logo {
    max-width: 120px;
    height: auto;
}

/* Typography for content */
.content-text {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.content-text h2 {
    font-size: 16px;
    font-weight: bold;
    color: #2c5aa0;
    margin: 20px 0 12px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 4px;
}

.content-text h3 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 15px 0 8px 0;
}

.content-text p {
    margin-bottom: 12px;
}

.content-text ul,
.content-text ol {
    margin-left: 20px;
    margin-bottom: 12px;
}

.content-text li {
    margin-bottom: 6px;
}

/* Table styles */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 11px;
}

table th {
    background-color: #f8f9fa;
    font-weight: bold;
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

table td {
    padding: 8px;
    border: 1px solid #ddd;
    vertical-align: top;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f0f0f0;
}

/* Profile specific styles */
.profile-card {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
}

.profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2c5aa0;
    margin: 0 auto 16px;
    transition: transform 0.25s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    display: block;
}

.profile-pic:hover {
    transform: scale(1.05);
}

.profile-meta {
    color: #666;
    font-size: 13px;
    margin-bottom: 16px;
}

.profile-section {
    margin-top: 25px;
    text-align: left;
}

.profile-section h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c5aa0;
    border-bottom: 2px solid #2c5aa0;
    display: inline-block;
    padding-bottom: 4px;
}

.profile-section ul {
    list-style: disc;
    padding-left: 20px;
}

.profile-section li {
    margin: 6px 0;
    font-size: 12px;
}

/* Footer */
footer {
    background: #2c5aa0;
    color: white;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 11px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .title-section {
        padding: 0;
    }
    
    .main-title {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu li {
        border-right: none;
        border-bottom: 1px solid #555;
    }
    
    .content-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .main-area {
        padding-left: 0;
    }

    .board-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .content-container {
        padding: 10px;
    }
    
    .main-title {
        font-size: 20px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 10px;
    }
    
    .card {
        padding: 15px;
    }
    
    .profile-pic {
        width: 150px;
        height: 150px;
    }
    
    table {
        font-size: 10px;
    }
    
    table th,
    table td {
        padding: 4px 6px;
    }
}

/* Print Styles */
@media print {
    .navigation,
    .announcements-banner {
        display: none;
    }
    
    .header {
        background: white;
        border-bottom: 2px solid #000;
    }
    
    .main-title,
    .subtitle {
        color: #000;
        text-shadow: none;
    }
    
    .cover-image {
        background: #f0f0f0;
        color: #000;
        border: 1px solid #000;
    }
}      
 .profile-container {
      max-width: 800px;
      margin: 40px auto;
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .profile-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    .profile-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: #007BFF;
      color: #fff;
      font-size: 28px;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
    }
    .profile-details p {
      margin: 8px 0;
    }
    .btn-back {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 15px;
      background: #007BFF;
      color: white;
      text-decoration: none;
      border-radius: 6px;
      transition: 0.2s;
    }
    .btn-back:hover {
      background: #0056b3;
    }