
body{
  margin:0;
  font-family:'Poppins', sans-serif;
  background:linear-gradient(135deg, #3c5112, #40530a);;
  color:ivory;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}

/* RESPONSIVE */
@media(max-width:768px){

  .top-bar {
    flex-direction: column;
    text-align: center;
  }

  .top-links {
    margin-top: 8px;
  }
  
  .menu{
    position:absolute;
    top:60px;
    left:0;
    width:100%;
    background:linear-gradient(135deg, #eaebe7, #dbdfd2);;
    flex-direction:column;
    display:none;
    padding:15px 0;
  }

  .menu a{
    padding:10px 20px;
  }

  .dropdown-content{
    position:static;
    background:linear-gradient(135deg, #314508, #313d0d);;
    box-shadow:none;
  }

  .dropdown-content a{
    color:ivory;
  }

  .menu-toggle{
    display:block;
  }

  .menu.active{
    display:flex;
  }
}

/* MENU */
.menu{
  display:flex;
  align-items:center;
}

.menu a{
  color:ivory;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  transition:0.3s;
  position:relative;
}

/* HOVER EFFECT */
.menu a::after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  left:0;
  bottom:-5px;
  background:linear-gradient(135deg, #f0f1ec, #dfe2d7);;
  transition:0.3s;
}

.menu a:hover{
  color:ivory;
}

/* DROPDOWN LINKS */
.dropdown-content a{
  display:block;
  padding:10px 15px;
  color:ivory;
  font-size:14px;
  transition:0.3s;
}

.dropdown-content a:hover{
  background:linear-gradient(135deg, #314508, #313d0d);;
  color:ivory;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-content{
  display:block;
}


/* ISSN */
.issn{
  margin-left:auto;
  font-weight:600;
  color:ivory;
}


/* HERO SECTION */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:80px 10%;
  background:linear-gradient(135deg, #e9ebe5, #e7e9e3);;
  flex-wrap:wrap;
}

/* LEFT TEXT */
.hero-text{
  max-width:550px;
}

.hero-text h1{
  font-size:48px;
  font-weight:500;
  line-height:1.2;
}

.hero-text h1 span{
  font-style:italic;
}

.hero-text p{
  margin-top:20px;
  font-size:18px;
  color:rgb(35, 35, 6);
}

.top-bar{
  background:linear-gradient(135deg, #858f64, #8c996b);;
  color:ivory;
  padding:12px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  justify-content: space-between;
}
.top-links a{
  color:ivory;
}
.search-box input{
  background:white;
}

.navbar{
  background:linear-gradient(135deg, #eaece6, #e5e7df);;
  display:flex;
  align-items:center;
  padding:12px 20px;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}
.menu a{
  color:ivory;
}
.menu a:hover{
  color:ivory;
}


/* HERO */
.hero{
  background:linear-gradient(135deg, #e9ebe5, #e7e9e3);;
  color:ivory;
}

.hero h1{
  margin:0;
  font-size:32px;
}

.hero p{
  margin-top:10px;
}

/* SECTION */
.section{
  padding:50px 20px;
  text-align:center;
}

.section h2{
  margin-bottom:10px;
}

/* FOOTER */
.footer{
  background:linear-gradient(135deg, #314508, #313d0d);;
  color:ivory;
  text-align:center;
  padding:25px;
  margin-top:20px;
}

/* MOBILE MENU */
.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}


/* BUTTONS */
.buttons{
  margin-top:30px;
}

.btn{
  display:inline-block;
  padding:12px 25px;
  border-radius:25px;
  text-decoration:none;
  margin-right:15px;
  font-size:14px;
}

.btn-primary{
  background:linear-gradient(135deg, #314508, #313d0d);;
  color:ivory;
}

.btn-link{
  color:ivory;
}

/* RIGHT IMAGE STACK */
.hero-images{
  position:relative;
  width:320px;
  height:400px;
}

.hero-images img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* STACK EFFECT */
.img1{ left:0; z-index:5; }
.img2{ left:20px; top:10px; z-index:4; }
.img3{ left:40px; top:20px; z-index:3; }
.img4{ left:60px; top:30px; z-index:2; }

/* HEADER */
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
  background:linear-gradient(135deg, #314508, #313d0d);;
  color:ivory;
}

/* LOGO */
.logo{
  font-size:20px;
  font-weight:bold;
}

/* NAVBAR */
.navbar{
  background: linear-gradient(135deg, #314508, #313d0d);;
  padding: 12px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

/* LINKS */
.navbar a{
  color:ivory;
  text-decoration:none;
  padding:8px;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown-btn{
  cursor:pointer;
}

/* DROPDOWN MENU */
.dropdown-content{
  display:none;
  position:absolute;
  background:linear-gradient(135deg, #314508, #313d0d);;
  color:ivory;
  top:100%;
  left:0;
  min-width:180px;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
  border-radius:5px;
}

.dropdown-content a{
  color:ivory;
  padding:10px;
  display:block;
}

/* GRID LAYOUT */
.fee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* BOX DESIGN */
.fee-box {
  background: linear-gradient(135deg, #ebe5e3, #dbd3d0);;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.fee-box:hover {
  transform: translateY(-5px);
}

/* HEADINGS */
.fee-box h2 {
  font-size: 14px;
  margin-bottom: 15px;
  color:#1b0202;
  border-left: 4px solid #4CAF50;
  padding-left: 10px;
}

/* ITEMS */
.fee-item {
  background: linear-gradient(135deg, #330f02, #3a1103);;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.fee-item h3 {
  font-size: 21px;
  margin: 0 0 5px 0;
}

.fee-item p {
  margin: 0;
  font-size: 19px;
  color: rgb(245, 245, 202);
}

/* RULES SECTION */
.section {
  margin-top: 30px;
  background: linear-gradient(135deg, #314508, #313d0d);;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.rule {
  padding: 10px;
  border-bottom: 1px solid #612a2a;
  font-size: 14px;
}

.rule:last-child {
  border-bottom: none;
}

/* HEADER SLIDER */
.header-slider{
  position:relative;
  width:100%;
  height:220px;
  overflow:hidden;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1s ease-in-out;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1);
  transition:transform 6s ease-in-out;
}

.slide.active{
  opacity:1;
}

.slide.active img{
  transform:scale(1.2);
}

/* NAV */
nav{
  background:linear-gradient(135deg, #2b3c07, #2c3905);;
  padding:12px;
  text-align:center;
}

nav a{
  color:black;
  margin:0 15px;
  text-decoration:none;
  font-size:16px;
}

.journal-title{
  font-size: 25px;
  font-weight: 700;
  font-family: "Georgia", serif;
  text-align: center;
  color:ivory;
  letter-spacing: 1px;
  margin: 20px 0;
}

@media(max-width:768px){

  .hero{
    flex-direction:column;
    padding:40px 20px;
    text-align:center;
  }

  .hero-text h1{
    font-size:28px;
  }

  .hero-text p{
    font-size:15px;
  }

  .hero-images{
    width:100%;
    height:250px;
    margin-top:20px;
  }

}


/* CONTACT SECTION */
.contact-section {
  padding: 60px 20px;
  background: #2d0b0b;
  font-family: 'Poppins', sans-serif;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
}

.contact-info p {
  color: #555;
  margin-bottom: 15px;
}

.info-box p {
  margin: 8px 0;
  font-size: 15px;
}

/* RIGHT SIDE FORM */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fcefef;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
}

/* BUTTON */
.contact-form button {
  padding: 12px;
  background: #007bff;
  color: #350808;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
}

/* HERO CARDS SECTION */
.hero-cards {
  padding: 60px 20px;
  background: linear-gradient(135deg, #314508, #313d0d);;
}

.hero-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD DESIGN */
.hero-card {
  background: #4e7d30;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.hero-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* TOP BORDER ANIMATION */
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(135deg, #314508, #313d0d);;
}

/* TEXT */
.hero-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.hero-card p {
  font-size: 14px;
  color: #183e18;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-cards {
    padding: 40px 15px;
  }
}

/* MAIN LAYOUT */
.wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

/* LEFT INFO */
.left {
    flex: 1;
    color: #fdf3f3;
    padding: 50px;
}

.left h1 {
    font-size: 40px;
}

.left p {
    margin-top: 10px;
}

/* RIGHT FORM */
.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box {
    background: #2a2203;
    padding: 30px;
    width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgb(233, 220, 220);
}

.form-box h2 {
    text-align: center;
}

/* INPUT */
.form-box input,
.form-box textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* BUTTON */
.form-box button {
    width: 100%;
    padding: 12px;
    background: #e8e2d8;
    border: none;
    color: #210404;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.form-box button:hover {
    background: #5a67d8;
}

/* SUCCESS MESSAGE */
.success {
    background: #28a745;
    color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
}

/* TABLE */
.table-box {
    width: 100%;
    padding: 30px;
    background: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
}

th {
    background: #333;
    color: #fff;
}

td {
    background: #e6dddd;
    color: #0e0101;
}

/* CARD STYLE */
.card {
  background:#2a2203;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* HIGHLIGHT CARD */
.highlight {
  background: linear-gradient(135deg, #df920e, #db900f);
  color: #fff;
  text-align: center;
}


/* HERO SECTION */
.hero-text {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #007BFF, #00c6ff);
  color: #fff;
}

/* TITLE */
.hero-text h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* DESCRIPTION */
.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 750px;
  margin: 10px auto;
  opacity: 0.95;
}

/* BUTTON CONTAINER */
.hero-buttons {
  margin-top: 25px;
}

/* BUTTON BASE */
.btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

/* PRIMARY BUTTON */
.btn.primary {
  background: #fff;
  color: #007BFF;
}

.btn.primary:hover {
  background: #e6f0ff;
}

/* SECONDARY BUTTON */
.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.2);
}
