/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

/* Footer Logo */
.footer-logo {
  flex-basis: 100%;
  text-align: center;
  margin-bottom: 1rem;
}
.footer-site-logo {
  height: 50px;
  width: 50px;
  object-fit: contain;
  filter: invert(1); /* make it white on black background */
}

body {
  font-family: 'Arial', sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 17px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
ul {
  list-style: none;
}

/* Header */
header.header {
  background: #000;
  color: #fff;
  padding: 0.3rem 1rem; /* reduce padding */
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header h1 {
  margin: 0;
  font-size: 1.4rem;
}

/* Navigation */
nav {
  margin-top: 0.3rem;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  background: #000;
  padding: 0.6rem 0;
  font-weight: 500;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  padding: 0.5rem 0.8rem;
  display: block;
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
}
.nav-links > li > a:hover {
  background: #fff;
  color: #000;
}
.submenu {
  display: none;
  position: absolute;
  background: #111;
  padding: 0.5rem;
  top: 100%;
  left: 0;
  z-index: 10;
  min-width: 180px;
  border-radius: 5px;
}
.submenu li {
  position: relative;
}
.submenu li .submenu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
.submenu li:hover > .submenu {
  display: block;
}
.submenu li a, .submenu li span {
  display: block;
  padding: 0.4rem 0.6rem;
  color: #fff;
  white-space: nowrap;
  font-size: 13px;
  border-radius: 4px;
}
.submenu li a:hover {
  background: #222;
}
.nav-links > li:hover > .submenu {
  display: block;
}

/* Hero Section */
.hero-content {
  position: relative;
  width: 100%;
  height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: grayscale(100%) brightness(0.5);
}
.hero-overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  height: 100%;
}
.hero-text {
  width: 50%;
  padding-right: 2rem;
}
.hero-text .animated-text span {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  animation: fadeIn 3s ease-in-out infinite alternate;
}
.hero-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  width: 40%;
  max-width: 420px;
  backdrop-filter: blur(4px);
}
.hero-form h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
.form-group {
  margin-bottom: 1rem;
  position: relative;
}
.form-group label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  color: #fff;
}
.form-group input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 1px solid #fff;
  border-radius: 5px;
  background: transparent;
  color: #fff;
}
.form-group input::placeholder {
  color: #fff;
}
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.upload-btn {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}
.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
button[type=submit] {
  background: #fff;
  color: #000;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  transition: background 0.3s ease;
}
button[type=submit]:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}
label input[type=checkbox] {
  margin-right: 0.5rem;
}

/* Section Layouts */
section {
  padding: 3rem 1rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.why-us-grid, .steps, .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.reason-card, .step, .service-box {
  border: 1px solid #000;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
  color: #000;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reason-card:hover, .step:hover, .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Support Section */
.support-services-section {
  background: #fff;
  text-align: center;
  padding: 3rem 1rem;
  border-bottom: 3px solid #000;
}
.support-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.6rem 1.4rem;
  margin: 0.5rem;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.support-btn:hover {
  background: #444;
}
.support-contact {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* Footer */
.footer-wrapper-bg {
  background: #000;
  color: #fff;
  padding: 2rem 1rem;
  font-size: 14px;
  font-weight: 400;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}
.footer-column {
  flex: 1;
  min-width: 220px;
  line-height: 1.8;
}
.footer-column h3, .footer-column a {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.footer-column ul {
  padding-left: 0;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #444;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
}
.footer-top-btn {
  background: #fff;
  color: #000;
  padding: 0.4rem 0.9rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.3s ease;
}
.footer-top-btn:hover {
  background: #444;
  color: #fff;
}
iframe {
  border: none;
  width: 100%;
  height: 200px;
  margin-top: 1rem;
  border-radius: 8px;
}

/* Media Queries */
@media(max-width: 992px) {
  .hero-overlay {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    text-align: center;
  }
  .hero-content {
    flex-direction: column;
    height: auto;
    padding: 2rem 1rem;
  }
  .hero-text, .hero-form {
    width: 100%;
    max-width: 100%;
    padding: 1rem 0;
    text-align: center;
  }
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  .submenu, .submenu .submenu {
    position: static;
    margin-left: 0;
    background: #222;
  }
}
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-left: 1rem;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    width: 100%;
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }
}

/* Section 1 - Journal Submission Report */
.journal-report {
  padding: 60px 20px;
  background-color: #fff;
  color: #000;
  text-align: center;
}

.report-container {
  max-width: 800px;
  margin: 0 auto;
}

.journal-report h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.journal-report .price {
  font-size: 1.5rem;
  color: #111;
  background-color: #f2f2f2;
  padding: 5px 12px;
  border-radius: 6px;
}

.report-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.report-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
}

.report-button:hover {
  background-color: #333;
}

/* What's Included Section */
.included-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #000;
}

.included-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.table-container {
  overflow-x: auto;
}

.included-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background-color: #fff;
}

.included-table th,
.included-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
  vertical-align: top;
}

.included-table th {
  background-color: #000;
  color: #fff;
  font-weight: bold;
}

.included-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.download-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  position: center;
}

.download-btn:hover {
  background-color: #000;
  color: #fff;
}

/* Journal Benefits Cards Section */
.service-cards {
  padding: 60px 20px;
  background-color: #fff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background-color: #f2f2f2;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #000;
}

.card ul {
  list-style-type: disc;
  padding-left: 20px;
}

.card ul li {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.5;
}
.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.inline-footer-logo {
  height: 20px;
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
  filter: invert(1); /* makes black logo white on dark footer */
}
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.upload-btn {
  border: 1px solid #333;
  color: white;
  background-color: grey;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}