/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f8f9fc;
  color: #333;
  line-height: 1.6;
}

/* NAVBAR */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px 60px;
  background-color: white;
  border-bottom: 1px solid #ddd;
}

.nav img {
  height: 90px;
  width: 130px;
  object-fit: cover;
  border-radius: 8px;
}

.nav h1 {
  margin-left: 25px;
  font-size: 28px;
  color: #5a2ea6;
  font-weight: 600;
}
.nav-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tagline {
  font-size: 13px;
  color: #777;
  margin-top: 6px;
  font-style: italic;
  letter-spacing: 0.6px;
  margin-left: 28px;
}

/* JOURNAL INFO BOX */

.journal-meta{
    float: left;
    text-align:left;
    padding-left:20px;
}

.journal-meta p{
    margin:4px 0;
    
}

.journal-meta strong{
    color:#5a2ea6;
}



/* NAV LINKS */
.nav-links {
  background-color: #5a2ea6;
}

/* MENU */
.nav-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* NAV ITEM */
.nav-links ul li {
  position: relative;
  transition: 0.3s;
}

/* FULL CLICKABLE AREA */
.nav-links ul li a {
  display: block;
  padding: 18px 25px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.nav-links ul li:hover {
  background-color: #452080;
}

/* ACTIVE PAGE */
.nav-links ul li.active {
  background-color: #452080;
}
/* DROPDOWN BASE */
.nav-links ul li {
  position: relative;
}

/* HIDE DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #5a2ea6;
  width: 200px;
  display: none;
  flex-direction: column;
  padding: 0;
  border-radius: 0 0 5px 5px;
  z-index: 1000;
}

/* DROPDOWN ITEMS */
.dropdown-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu li a {
  color: white;
  font-size: 14px;
}

/* HOVER EFFECT */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* HOVER ITEM */
.dropdown-menu li:hover {
  background-color: #452080;
}
.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* HEADING */
.headign {
  text-align: center;
  padding: 40px 20px 20px;
}

.headign h1 {
  font-size: 32px;
  color: #5a2ea6;
  letter-spacing: 1px;
}

/* GUIDELINE CONTENT */
.guideline-text {
  max-width: 1080px;
  margin: 30px auto;
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* TEXT STYLING */
.guideline-text h1 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #222;
}
.guideline-text ul{
    margin: 15px 0 20px 25px;
}

.guideline-text ul li{
    margin-bottom: 8px;
    color: #444;
    line-height: 1.7;
}

.guideline-text h2{
    border-left: 4px solid #5a2ea6;
    padding-left: 10px;
}


.guideline-text h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #5a2ea6;
  font-size: 20px;
}

.guideline-text p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
}

/* STRONG TEXT */
.guideline-text strong {
  color: #000;
}

/* LIST STYLE (for your dashed items) */
.guideline-text p br {
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    text-align: center;
  }

  .nav h1 {
    margin: 15px 0;
    font-size: 22px;
  }

  .nav-links ul {
    flex-wrap: wrap;
  }

  .nav-links ul li {
    padding: 10px;
  }

  .guideline-text {
    margin: 20px;
    padding: 20px;
  }
}

/* FOOTER */
.footer {
  background-color: #2e1a47;
  color: #fff;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 60px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  margin: 15px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  padding: 15px;
  background-color: #241237;
  font-size: 13px;
  color: #bbb;
}
/* EDITORIAL BOARD */
.editorial-board {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.board-title {
  font-size: 26px;
  color: #5a2ea6;
  margin: 25px 0px;
  border-left: 5px solid #5a2ea6;
  padding-left: 12px;
}

/* EDITOR LIST */
.editor-list {
  display: grid;

  /* TWO CARDS PER ROW ON DESKTOP */
  grid-template-columns: repeat(2, 1fr);

  gap: 25px;

  margin-top: 20px;
}

/* EDITOR BOX */
.editor-box {
  display: flex;
  align-items: center;
  gap: 18px;

  width: 100%;

  background: white;
  padding: 18px;

  border-radius: 8px;
  border: 1px solid #eee;

  transition: 0.3s;
}

/* HOVER */
.editor-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .editor-list {
    grid-template-columns: 1fr;
  }

  .editor-box {
    flex-direction: row;
  }

}

/* IMAGE */
.editor-box img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #5a2ea6;
}

/* TEXT */
.editor-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.editor-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* BUTTON */
.view-btn {
  display: inline-block;
  text-decoration: none;
  background: #5a2ea6;
  color: white;
  padding: 7px 14px;
  font-size: 13px;
  border-radius: 4px;
  transition: 0.3s;
}

.view-btn:hover {
  background: #452080;
}
/* CONTACT SECTION */
.modern-contact {
  max-width: 1300px;
  margin: 50px auto;
  display: flex;
  gap: 50px;
  padding: 20px;
  flex-wrap: wrap;
}

/* LEFT */
.contact-left {
  flex: 1;
  min-width: 350px;
}

/* RIGHT */
.contact-right {
  flex: 1;
  min-width: 350px;
}

.contact-right h2 {
  font-size: 36px;
  color: #5a2ea6;
  margin-bottom: 25px;
}

/* ROW */
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* ICON */
.icon-circle {
  width: 55px;
  height: 55px;
  border: 3px solid #5a2ea6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a2ea6;
  font-size: 22px;
  flex-shrink: 0;
}

.icon-circle.small {
  width: 45px;
  height: 45px;
  font-size: 18px;
}

/* TEXT */
.contact-row h3,
.small-box h3 {
  color: #222;
  margin-bottom: 5px;
}

.contact-row p,
.small-box span {
  color: #555;
  line-height: 1.6;
}

/* BOXES */
.contact-boxes {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.small-box {
  background: #fff;
  padding: 25px;
  flex: 1;
  min-width: 250px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.orange-text {
  margin: 15px 0;
  font-weight: 600;
}

.phone-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* FORM */
.contact-right form {
  display: flex;
  flex-direction: column;
}

.contact-right input,
.contact-right textarea {
  padding: 16px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 15px;
  border-radius: 4px;
  resize: none;
}

.contact-right input:focus,
.contact-right textarea:focus {
  border-color: #5a2ea6;
}

/* DOUBLE INPUT */
.double-input {
  display: flex;
  gap: 15px;
}

.double-input input {
  width: 100%;
}

/* BUTTON */
.contact-right button {
  width: fit-content;
  padding: 14px 28px;
  background: #5a2ea6;
  color: white;
  border: none;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-right button:hover {
  background: #452080;
}

/* MOBILE */
@media (max-width: 768px) {

  .modern-contact {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .double-input {
    flex-direction: column;
  }

  .contact-boxes {
    flex-direction: column;
  }

}
/* PROFILE PAGE */
.profile-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
}

/* CARD */
.profile-card {
  background: white;
  display: flex;
  gap: 40px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

/* IMAGE */
.profile-image img {
  width: 280px;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

/* CONTENT */
.profile-content {
  flex: 1;
}

.profile-content h2 {
  color: #5a2ea6;
  font-size: 32px;
  margin-bottom: 10px;
}

.profile-content h4 {
  color: #444;
  margin-bottom: 8px;
  font-size: 20px;
}

.university {
  color: #666;
  margin-bottom: 25px;
  font-size: 16px;
}

/* DETAILS */
.profile-details p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
  text-align: justify;
}

/* BUTTON */
.back-btn {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  background: #5a2ea6;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  transition: 0.3s;
}

.back-btn:hover {
  background: #452080;
}

/* MOBILE */
@media (max-width: 768px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }

  .profile-image img {
    height: auto;
  }
}

/* SUBMISSION PAGE */

.checklist{
    margin-top:20px;
}

.check-item{
    background:#f4f0fb;
    border-left:4px solid #5a2ea6;
    padding:15px;
    margin-bottom:12px;
    font-weight:500;
    border-radius:5px;
}

.email-box{
    margin:35px 0;
    padding:25px;
    background:#f8f9fc;
    border-radius:8px;
    text-align:center;
    border:1px solid #e5e5e5;
}

.email-box h3{
    color:#5a2ea6;
    font-size:24px;
    margin-top:10px;
}

.guideline-text hr{
    margin:40px 0;
    border:none;
    height:1px;
    background:#ddd;
}

.dates-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:25px 0;
}

.date-card{
    background:white;
    padding:25px;
    border-radius:8px;
    border-top:4px solid #5a2ea6;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
    text-align:center;
}

.date-card h3{
    color:#5a2ea6;
    margin-bottom:10px;
}

.fee-box{
    background:#f4f0fb;
    border-left:5px solid #5a2ea6;
    padding:25px;
    border-radius:6px;
    margin-top:20px;
}

.fee-box h3{
    color:#5a2ea6;
    margin-bottom:10px;
}

@media(max-width:768px){

    .dates-grid{
        grid-template-columns:1fr;
    }

}


/* ARCHIVE PAGE */

.archive-list{
    margin-top:30px;
}

.volume-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(2,2,2,0.3);
    margin-bottom:30px;
}

.volume-header{
    background:#5a2ea6;
    color:#fff;
    padding:18px 25px;
}

.volume-header h2{
    color:#fff !important;
    margin:0;
}

.issue-card{
    padding:25px;
    border-bottom:1px solid #eee;
}

.issue-card:last-child{
    border-bottom:none;
}

.issue-card h3{
    color:#5a2ea6;
    margin-bottom:10px;
}

.issue-card p{
    margin-bottom:15px;
    color:#555;
}

.issue-links{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.issue-links a{
    text-decoration:none;
    background:#5a2ea6;
    color:#fff;
    padding:10px 18px;
    border-radius:5px;
    transition:0.3s;
}

.issue-links a:hover{
    background:#452080;
}
