* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html,
body {
  overflow-x: hidden;
  /* Prevent horizontal scroll */
  scroll-behavior: smooth;
}

body {
  background: #f6f7fb;
  color: #222;
  padding-bottom: 120px;
  /* Initial padding for bottom bars */
}

/* App Header */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(135deg, #4b6cb7, #182848);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 1000;
}

.header-left,
.header-right {
  flex: 1;
}

.header-center {
  flex: 2;
  text-align: center;
}

.header-right {
  display: flex;
  justify-content: flex-end;
}

.header-left i {
  font-size: 20px;
  cursor: pointer;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.login-btn {
  background: #28a745;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-btn:hover {
  background: #218838;
}

/* Page Content */
.app-content {
  padding: 0;
  padding-top: 60px;
  /* To offset the fixed header */
}

/* Scroll Margin for Fixed Header */
section {
  scroll-margin-top: 70px;
}

/* Hero Section */
.hero-image-section {
  width: 100%;
  height: 400px;
  background: url('assets/herobanner.png') no-repeat center center/cover;
  background-color: #f0f2f5;
  position: relative;
}

.hero-image-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 150' preserveAspectRatio='none'%3e%3cpath d='M0,100 C150,150 350,50 500,100 L500,150 L0,150 Z' style='stroke: none; fill: %23fff;'%3e%3c/path%3e%3c/svg%3e");
  background-size: 100% 100%;
}

.hero-content-wrapper {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  margin: -130px 20px 0;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  /* Changed color */
}

.hero-content p {
  font-size: 15px;
  max-width: 400px;
  margin: 0 auto 25px;
  line-height: 1.6;
  color: #666;
  /* Changed color */
}

.primary-btn {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  text-transform: uppercase;
}

.primary-btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

.primary-btn i {
  margin-left: 10px;
}

.login-link {
  display: block;
  margin-top: 20px;
  color: #666;
  /* Changed color */
  text-decoration: none;
  font-size: 14px;
}

.login-link strong {
  font-weight: 700;
  color: #182848;
  /* Changed color */
}

/* Exam Card Section */
.exam-card-section {
  padding: 20px;
  background: #f0f2f5;
}

.exam-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.exam-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.exam-card-content {
  padding: 20px;
}

.exam-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.exam-card-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.exam-card-info,
.exam-card-details {
  font-size: 13px;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.exam-card-info i,
.exam-card-details i {
  margin-right: 8px;
  color: #4b6cb7;
}

.exam-card-divider {
  border: 0;
  height: 1px;
  background: #e0e0e0;
  margin: 15px 0;
}

.exam-card-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.exam-card-actions button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.exam-card-actions .btn-primary {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
}

.exam-card-actions .btn-primary:hover {
  background: #218838;
}

.exam-card-actions .btn-secondary {
  background: #fff;
  color: #4b6cb7;
  border-color: #4b6cb7;
}

.exam-card-actions .btn-secondary:hover {
  background: #f8f9fa;
}

/* Trust Section */
.trust-section {
  padding: 40px 20px;
  text-align: center;
}

.section-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.trust-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.trust-card i {
  font-size: 28px;
  color: #182848;
  margin-bottom: 10px;
}

.trust-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.trust-card p {
  font-size: 13px;
  color: #666;
}

/* Why This Exam Section */
.why-exam-section {
  background: #f0f8ff;
  padding: 80px 20px;
  text-align: center;
  margin: 20px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  max-width: 700px;
}

.why-exam-section h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #182848;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.why-exam-section .btn-secondary {
  margin-top: 30px;
  background: transparent;
  color: #182848;
  border: 2px solid #182848;
  padding: 12px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.why-exam-section .btn-secondary:hover i {
  transform: translateX(5px);
  transition: transform 0.3s;
}

.why-exam-section .btn-secondary i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.why-exam-section .btn-secondary:hover {
  background: #182848;
  color: #fff;
  transform: scale(1.05);
}

.why-exam-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/* Winners Section */
.winners-section {
  padding: 100px 20px;
  background: url('assets/purple-blue-gradient_78370-295.avif') no-repeat center center/cover;
  background-attachment: fixed;
  /* Parallax effect */
  position: relative;
  color: #fff;
}

.winners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(24, 40, 72, 0.8);
  /* Dark blue overlay */
}

.winners-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.winners-section .section-heading {
  color: #fff;
  margin-bottom: 40px;
}

.winners-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.winner-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  opacity: 0;
  /* Initially hidden for animation */
  animation: fadeInSlideUp 1s ease-out forwards;
  transition: transform 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



/* Staggered animation */
.winner-card:nth-child(1) {
  animation-delay: 0.4s;
}

.winner-card:nth-child(2) {
  animation-delay: 0.8s;
}

.winner-card:nth-child(3) {
  animation-delay: 1.2s;
}

.winner-card:nth-child(4) {
  animation-delay: 1.6s;
}

@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.winner-card .profile-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
  object-fit: cover;
  transition: transform 0.3s;
}



.winner-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.winner-card .exam-name {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
}

.winner-card .city {
  font-size: 10px;
  font-weight: 400;
  color: #ccc;
}

/* Button for Winners Section */
.btn-white {
  background: #fff;
  color: #182848;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Floating Bottom Bar */
.floating-bottom-bar {
  position: fixed;
  bottom: 60px;
  left: 0;
  right: 0;
  background: rgba(24, 40, 72, 0.9);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  z-index: 998;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(150%);
  transition: transform 0.4s ease-in-out;
}

.floating-bottom-bar.visible {
  transform: translateY(0);
}

.floating-bottom-bar p {
  margin-right: 10px;
  text-align: left;
}

.btn-signup-sm {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}

.btn-signup-sm:hover {
  background: #218838;
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.bottom-nav a {
  flex: 1;
  color: #999;
  text-decoration: none;
  text-align: center;
  font-size: 11px;
  transition: color 0.3s;
  padding: 5px 0;
}

.bottom-nav a.active {
  color: #182848;
  font-weight: 600;
}

.bottom-nav a:hover {
  color: #182848;
}

.bottom-nav i {
  font-size: 18px;
  margin-bottom: 5px;
  display: block;
}

/* How It Works Section (Timeline) */
.how-it-works-section {
  padding: 60px 20px;
  background: #fff;
  position: relative;
}

.how-it-works-section .section-heading {
  text-align: center;
  color: #182848;
  margin-bottom: 40px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Vertical Line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: #e0e0e0;
}

/* Filling Line (Animated) */
.timeline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  background: #4b6cb7;
  height: var(--line-height, 0px);
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
  padding-left: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Timeline Dot */
.timeline-dot {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #4b6cb7;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  background: #4b6cb7;
  transform: scale(1.2) translateY(-40%);
  box-shadow: 0 0 10px rgba(75, 108, 183, 0.5);
}

/* Content Box */
.timeline-content {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-3px);
  border-color: #4b6cb7;
}

.timeline-icon {
  font-size: 24px;
  color: #4b6cb7;
  flex-shrink: 0;
}

.timeline-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #182848;
  margin-bottom: 5px;
}

.timeline-text p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* Testimonial Section */
.testimonial-section {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
  overflow: hidden;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-card {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #4b6cb7;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card .quote {
  font-size: 18px;
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  max-width: 600px;
  line-height: 1.6;
}

.testimonial-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #182848;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Help & Updates Section */
.help-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.help-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #4b6cb7;
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.whatsapp-chat {
  background: #e6fffa;
  color: #25d366;
}

.whatsapp-group {
  background: #eef2ff;
  color: #4b6cb7;
}

.faq-icon {
  background: #fff8e1;
  color: #ffc107;
}

.help-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #182848;
  font-weight: 700;
}

.help-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.btn-outline {
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  background: transparent;
  border-radius: 25px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s;
}

.help-card:hover .btn-outline {
  border-color: #182848;
  background: #182848;
  color: #fff;
}

/* Follow Us Section */
.follow-us-section {
  padding: 40px 20px 60px;
  background: #f6f7fb;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #555;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
  color: #fff;
}

.social-icon.facebook:hover {
  background: #3b5998;
}

.social-icon.instagram:hover {
  background: #e1306c;
}

.social-icon.youtube:hover {
  background: #ff0000;
}

.social-icon.twitter:hover {
  background: #1da1f2;
}

/* Footer */
.app-footer {
  background: #182848;
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
}

.app-footer p {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

/* Sidebar Menu */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.app-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: linear-gradient(135deg, #4b6cb7, #182848);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.app-sidebar.active {
  transform: translateX(0);
}

.sidebar-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sidebar-header .logo {
  font-size: 22px;
  font-weight: 700;
}

.sidebar-menu {
  padding: 20px 0;
}

.sidebar-link {
  padding: 15px 25px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding-left: 30px;
}

.sidebar-link i {
  width: 35px;
  font-size: 18px;
}

/* Media Queries for Responsiveness */

@media (max-width: 480px) {
  .logo {
    font-size: 16px;
    /* Smaller logo text on small screens */
  }

  .login-btn {
    padding: 5px 10px;
    font-size: 12px;
  }
}

/* For smaller devices */
@media (max-width: 360px) {
  .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .primary-btn {
    padding: 12px 25px;
    font-size: 15px;
  }

  .floating-bottom-bar {
    font-size: 11px;
  }

  .bottom-nav a {
    font-size: 10px;
  }

  .bottom-nav i {
    font-size: 16px;
  }


}

/* For landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .hero h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .hero p {
    margin-bottom: 15px;
    font-size: 13px;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .login-link {
    margin-top: 10px;
  }
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #182848;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #182848;
  color: #fff;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* Testimonial Dots Styling */
.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  background-color: #e0e0e0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot:hover {
  background-color: #b0b0b0;
  transform: scale(1.1);
}

.testimonial-dot.active {
  background-color: #182848;
  /* Primary theme color */
  transform: scale(1.2);
  width: 14px;
  height: 14px;
  box-shadow: 0 0 5px rgba(24, 40, 72, 0.3);
}

/* Updated Help Card Styling - Compact */
.help-card {
  padding: 15px 10px;
  /* Further Reduced padding */
}

.icon-box {
  width: 40px;
  /* Even smaller icon box */
  height: 40px;
  font-size: 20px;
  margin-bottom: 10px;
}

.help-card h3 {
  font-size: 16px;
  /* Further Reduced font */
  margin-bottom: 5px;
}

.help-card p {
  font-size: 12px;
  margin-bottom: 10px;
}

.help-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Reduced gap */
  width: 100%;
}

.btn-outline {
  padding: 6px 12px;
  /* Smoaller padding */
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  text-decoration: none;
  /* For the anchor tags */
  box-sizing: border-box;
}

/* Footer Extra Links */
.footer-extra-links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-extra-links a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-extra-links a:hover {
  color: #182848;
  font-weight: 600;
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 140px;
  /* Above the floating bottom bar */
  right: 20px;
  width: 45px;
  height: 45px;
  background: #182848;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #4b6cb7;
  transform: translateY(-5px);
}

/* Sidebar Restructuring */
.sidebar-content {
  padding: 10px 0;
  overflow-y: auto;
  height: calc(100% - 70px);
  /* Subtract header height */
}

.menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-header {
  padding: 15px 25px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.menu-header:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.menu-header span i {
  width: 30px;
  text-align: center;
  margin-right: 10px;
}

.menu-header .arrow {
  font-size: 12px;
  transition: transform 0.3s;
}

.menu-item.active .arrow {
  transform: rotate(180deg);
}

.menu-content {
  background: rgba(0, 0, 0, 0.2);
  display: none;
  padding: 5px 0;
}

.menu-item.active .menu-content {
  display: block;
}

.menu-content a {
  display: block;
  padding: 12px 25px 12px 65px;
  /* Indent sub-items */
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.menu-content a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.menu-content a i {
  width: 25px;
  margin-right: 5px;
  font-size: 12px;
}

/* Sidebar Restructuring */
.sidebar-content {
  padding: 10px 0;
  overflow-y: auto;
  height: calc(100% - 70px);
  /* Subtract header height */
}

.menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-header {
  padding: 15px 25px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.menu-header:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.menu-header span i {
  width: 30px;
  text-align: center;
  margin-right: 10px;
}

.menu-header .arrow {
  font-size: 12px;
  transition: transform 0.3s;
}

.menu-item.active .arrow {
  transform: rotate(180deg);
}

.menu-content {
  background: rgba(0, 0, 0, 0.2);
  display: none;
  padding: 5px 0;
}

.menu-item.active .menu-content {
  display: block;
}

.menu-content a {
  display: block;
  padding: 12px 25px 12px 65px;
  /* Indent sub-items */
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.menu-content a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.menu-content a i {
  width: 25px;
  margin-right: 5px;
  font-size: 12px;
}

/* Help Page Overlay */
.page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f6f7fb;
  z-index: 3000;
  /* Higher than sidebar */
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.page-overlay.active {
  transform: translateX(0);
}

.overlay-header {
  padding: 15px 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.overlay-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #182848;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #182848;
  cursor: pointer;
  padding: 5px;
}

.overlay-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  padding-bottom: 80px;
  /* Space for bottom nav or scrolling */
}

.overlay-heading {
  font-size: 18px;
  font-weight: 700;
  color: #182848;
  margin-bottom: 15px;
}

.help-grid-overlay {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.help-card.compact {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.help-card.compact .icon-box {
  width: 50px;
  height: 50px;
  font-size: 24px;
  margin-bottom: 10px;
}

.help-card.compact h3 {
  font-size: 14px;
}

.help-card.compact p {
  font-size: 11px;
  margin-bottom: 15px;
}

.btn-outline.sm {
  padding: 6px 12px;
  font-size: 11px;
  width: auto;
  min-width: 80px;
}

/* Inquiry Form */
.inquiry-form-section {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  margin-top: -10px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background: #f9f9f9;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4b6cb7;
  background: #fff;
}

.full-width {
  width: 100%;
  margin-top: 10px;
}