/* General Styles */
:root {
  --primary-color:#f28c28;
  --secondary-color: #002b5c ;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-light: #7f8c8d;
  /*--font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Georgia', serif;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  
  font-weight: 500;
  color: var(--primary-color);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

  /* Animation and styling */
  @import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
  
  .header {
    padding: 2rem 0;
    background: linear-gradient(135deg, #002b5c 0%, #002b5c 50%, #f28c28 100%);
    color: white;
    margin-bottom:20px;
    border-bottom: 4px solid #f28c28;
  }
  
  .logo-img {
    max-height: 180px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    border-radius: 4px;
  }
  
  .logo-img:hover {
    transform: scale(1.05);
  }
  
  .journal-title {
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  }
  
  .journal-subtitle {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.4;
    opacity: 0.95;
    display: inline-block;
    position: relative;
  }
  
  .journal-subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: #f28c28;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .journal-subtitle {
      font-size: 1.15rem;
    }
  }
  
  @media (max-width: 992px) {
    .header {
      padding: 1.75rem 0;
    }
    
    .journal-title {
      font-size: 2.5rem;
    }
    
    .journal-subtitle {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 768px) {
    .header {
      text-align: center;
      background: linear-gradient(135deg, #002b5c 0%, #f28c28 100%);
    }
    
    .logo-img {
      max-height: 130px;
      margin-bottom: 1rem;
       margin-left: 140px;
    }
    
    .journal-title {
      font-size: 2.2rem;
    }
    
    .journal-subtitle {
      font-size: 1rem;
      display: block;
      text-align: center;
    }
    
    .journal-subtitle:before {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  @media (max-width: 576px) {
    .header {
      padding: 1.5rem 0;
    }
    
    .journal-title {
      font-size: 1.8rem;
    }
    
    .journal-subtitle {
      font-size: 0.9rem;
    }
  } 




.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* For screen width ≥ 1000px */
@media (min-width: 1000px) {
  .container {
    max-width: 1000px;
  }
}

/* For screen width ≥ 1100px */
@media (min-width: 1100px) {
  .container {
    max-width: 1100px;
  }
}

/* For screen width ≥ 1200px */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* For screen width ≥ 1300px */
@media (min-width: 1300px) {
  .container {
    max-width: 1300px;
  }
}

/* For screen width ≥ 1400px */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}





.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* Menu Styles */
.menu {
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  position: sticky;
  top: 20px;
  height: fit-content;
}

.menu h2 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  border-bottom: 2px solid var(--light-color);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.nav {
  display: flex;
  flex-direction: column;
}

.nav-item {
  margin-bottom: 0.5rem;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  color: var(--text-color);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: white;
  border-left: 3px solid var(--secondary-color);
  text-decoration: none;
  padding-left: 0.9rem;
  background-color:#f28c28;
  border-radius:5px;
}

/* Main Content Styles */
.main-content {
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}

section {
  margin-bottom: 3rem;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

section h2 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--light-color);
}

.lead {
  font-size: 17px;
  margin-bottom: 1.5rem;
  text-align:justify;
  
}

mark {
  background-color: rgba(52, 152, 219, 0.2);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.9rem;
}

/* Button Styles */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #2980b9;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Footer Styles */
.footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer p {
  margin: 0;
}

address {
  font-style: normal;
  margin-top: 1.5rem;
}

address p {
  margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .menu {
    position: static;
    margin-bottom: 2rem;
  }
  
  .col-lg-3, .col-lg-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .main-content {
    padding: 0;
  }
  
  .header h1 {
    font-size: 2rem;
  }
  
  .header h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .header {
    padding: 1.5rem 0;
  }
  
  .header h1 {
    font-size: 1.8rem;
  }
  
  
  
  section {
    padding: 1.5rem;
  }
  
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .header h1 {
    font-size: 1.5rem;
  }
  
  .header h3 {
    font-size: 1rem;
  }
  
  .menu h2 {
    font-size: 1.3rem;
  }
  
  section h2 {
    font-size: 1.4rem;
  }
  
  .lead {
    font-size: 1rem;
  }
}

/* Animation Effects */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

section {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Delay animations for sequential loading */
section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }
section:nth-child(6) { animation-delay: 0.6s; }
section:nth-child(7) { animation-delay: 0.7s; }
section:nth-child(8) { animation-delay: 0.8s; }
section:nth-child(9) { animation-delay: 0.9s; }























