/* =============== GLOBAL STYLES =============== */
:root {
    --primary-color: #1a5276;
    --secondary-color: #2e86c1;
    --accent-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f8fa;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
  }
  
  .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
  }
  
  .btn-accent {
    background: var(--accent-color);
  }
  
  .btn-accent:hover {
    background: #e67e22;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
  }
  
  /* =============== HEADER & NAVIGATION =============== */
  header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .nav-links {
    display: flex;
    align-items: center;
  }
  
  .nav-links li {
    position: relative;
    margin-left: 30px;
  }
  
  .nav-links li a {
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
  }
  
  .nav-links li a:hover {
    color: var(--secondary-color);
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 250px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border-radius: 5px;
    padding: 10px 0;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-menu li {
    margin: 0;
    padding: 8px 15px;
    transition: var(--transition);
  }
  
  .dropdown-menu li:hover {
    background: #f1f1f1;
  }
  
  .dropdown-menu li a {
    display: block;
    color: var(--dark-color);
    font-weight: 500;
  }
  
  .mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
  }
  
  /* =============== HERO SECTION =============== */
  .hero {
    background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(26, 82, 118, 0.9)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  /* =============== SERVICES SECTION =============== */
  .services {
    background-color: white;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .service-content p {
    margin-bottom: 15px;
    color: #666;
  }
  
  /* =============== ABOUT SECTION =============== */
  .about {
    background-color: #f8f9fa;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
  }
  
  .about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
  }
  
  .about-text p {
    margin-bottom: 15px;
    color: #666;
  }
  
  .about-features {
    margin-top: 20px;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .feature-icon {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
  }
  
  /* =============== TESTIMONIALS SECTION =============== */
  .testimonials {
    background-color: #edf2f7;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
  }
  
  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    opacity: 0.1;
    color: var(--primary-color);
  }
  
  .testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .author-info p {
    color: #666;
    font-size: 0.9rem;
  }
  
  /* =============== CALL TO ACTION =============== */
  .cta {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 80px 0;
  }
  
  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  /* =============== FOOTER =============== */
  footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #bbb;
    transition: var(--transition);
  }
  
  .footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #bbb;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
  }
  
  /* =============== RESPONSIVE DESIGN =============== */
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .section-title h2 {
      font-size: 2rem;
    }
    
    .about-content {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 400px;
      height: 100vh;
      background: white;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 80px 30px;
      transition: right 0.3s ease;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      z-index: 999;
    }
    
    .nav-links.active {
      right: 0;
    }
    
    .nav-links li {
      margin: 15px 0;
      width: 100%;
    }
    
    .dropdown-menu {
      position: static;
      width: 100%;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      background: #f5f5f5;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
      max-height: 500px;
      padding: 10px 0;
    }
    
    .mobile-menu-toggle {
      display: block;
      z-index: 1000;
    }
    
    .hero {
      padding: 120px 0 80px;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      gap: 10px;
    }
    
    .service-card {
      max-width: 400px;
      margin: 0 auto;
    }
    
    .section {
      padding: 40px 0;
    }
  }
  
  @media (max-width: 576px) {
    .logo h1 {
      font-size: 1.2rem;
    }
    
    .hero h1 {
      font-size: 1.8rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .section-title h2 {
      font-size: 1.8rem;
    }
    
    .testimonial-card {
      padding: 20px;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }

  /*=====Marquee========*/

  /* ====================== MARQUEE STYLES ====================== */
.marquee-container {
  width: 100%;
  background-color: #f5f8fa;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.marquee-title {
  text-align: center;
  margin-bottom: 30px;
}

.marquee-title h3 {
  font-size: 1.8rem;
  color: #1a5276;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.marquee-title h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f39c12;
}

.journal-logos-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.journal-logos-marquee::before,
.journal-logos-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.journal-logos-marquee::before {
  left: 0;
  background: linear-gradient(to right, #f5f8fa, transparent);
}

.journal-logos-marquee::after {
  right: 0;
  background: linear-gradient(to left, #f5f8fa, transparent);
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee-item {
  flex: 0 0 auto;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-item img {
  max-width: 150px;
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.journal-logos-marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .marquee-title h3 {
      font-size: 1.5rem;
  }
  
  .marquee-item img {
      max-width: 120px;
      max-height: 50px;
  }
}

@media (max-width: 768px) {
  .marquee-container {
      padding: 30px 0;
  }
  
  .marquee-title h3 {
      font-size: 1.3rem;
  }
  
  .marquee-item {
      margin: 0 15px;
  }
  
  .marquee-item img {
      max-width: 100px;
      max-height: 40px;
  }
  
  @keyframes marquee {
      0% {
          transform: translateX(0);
      }
      100% {
          transform: translateX(-100%);
      }
  }
}

@media (max-width: 576px) {
  .marquee-title h3 {
      font-size: 1.1rem;
  }
  
  .marquee-item {
      margin: 0 10px;
  }
  
  .marquee-item img {
      max-width: 80px;
      max-height: 35px;
  }
}