/* --- Ravtix Global Stylesheet --- */
:root { --primary-blue: #0052cc; --dark-blue: #061d3d; --accent-blue: #4c9aff; --bg-light: #f8f9fa; --bg-white: #ffffff; --text-dark: #172b4d; --text-light: #f0f4f8; --text-muted: #6b778c; --border-color: #dfe1e6; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-white); color: var(--text-dark); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.main-header { position: sticky; top: 0; width: 100%; z-index: 1000; padding: 15px 0; background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: all 0.3s ease; }
.main-header.scrolled { border-bottom: 1px solid var(--border-color); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 800; color: var(--dark-blue); text-decoration: none; }
.main-nav { display: flex; gap: 35px; align-items: center; }
.main-nav a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 1rem; position: relative; padding: 5px 0; transition: color 0.3s ease, transform 0.2s ease; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-blue); transition: width 0.3s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--primary-blue); transform: translateY(-2px); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.cta-button-nav { background: var(--primary-blue); color: white !important; padding: 10px 20px; border-radius: 8px; font-weight: 600; transition: background 0.3s ease, transform 0.2s ease; }
.cta-button-nav:hover { background: var(--dark-blue); transform: translateY(-2px); color: white !important; }
.cta-button-nav::after { display: none; }
.hero { background-image: linear-gradient(rgba(6, 29, 61, 0.7), rgba(6, 29, 61, 0.7)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80'); background-size: cover; background-position: center; color: var(--text-light); padding: 120px 0; min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content h1 { font-size: 3.5rem; font-weight: 800; max-width: 800px; margin: 0 auto; text-shadow: 0 2px 5px rgba(0,0,0,0.3); }
.hero-content h2 { font-size: 1.5rem; font-weight: 400; margin: 20px auto 40px; max-width: 700px; color: rgba(255, 255, 255, 0.85); }
.page-header { background-color: var(--dark-blue); color: var(--text-light); padding: 80px 20px; text-align: center; }
.page-header h1 { font-size: 3rem; font-weight: 800; }
.page-header p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 10px auto 0; }
.section { padding: 100px 0; }
.section.light-bg { background-color: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.8rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 10px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
.cta-button, .hero-cta, .submit-btn { display: inline-block; background: var(--primary-blue); color: var(--bg-white); padding: 18px 40px; text-decoration: none; font-weight: 700; border-radius: 10px; font-size: 1.1rem; border: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 82, 204, 0.4); width: 100%; }
.cta-button:hover, .hero-cta:hover, .submit-btn:hover { background: var(--accent-blue); transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0, 82, 204, 0.5); }
.services-grid, .services-grid-large, .features-grid { display: grid; gap: 30px; }
.services-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.services-grid-large { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.features-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.service-card, .feature-card { background: var(--bg-white); padding: 35px; border-radius: 12px; border: 1px solid var(--border-color); transition: all 0.3s ease; }
.service-card:hover, .feature-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); border-color: var(--primary-blue); }
.service-icon, .feature-icon { margin-bottom: 20px; background-color: #e6f0ff; width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.feature-icon { border-radius: 12px; }
.service-icon svg, .feature-icon svg { width: 32px; height: 32px; stroke: var(--primary-blue); stroke-width: 1.5; }
.service-card h3 { font-size: 1.4rem; }
.feature-card h3 { font-size: 1.3rem; }
.service-card h3, .feature-card h3 { font-weight: 600; margin-bottom: 15px; color: var(--dark-blue); }
.service-card p, .feature-card p { font-size: 1rem; line-height: 1.6; color: var(--text-muted); }
.faq-accordion .faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 25px 0; font-size: 1.2rem; font-weight: 600; color: var(--dark-blue); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s ease; }
.faq-question:hover { color: var(--primary-blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.faq-answer p { padding: 0 0 25px 0; font-size: 1rem; line-height: 1.7; color: var(--text-muted); }
.faq-question .icon { transition: transform 0.3s ease; width: 24px; height: 24px; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.contact-wrapper { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: flex-start; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image img { width: 100%; border-radius: 12px; }
.job-listing { border: 1px solid var(--border-color); border-radius: 12px; margin-bottom: 20px; padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; }
.job-listing:hover { border-color: var(--primary-blue); box-shadow: 0 5px 15px rgba(0,0,0,0.05); transform: scale(1.02); }
.job-details h3 { font-size: 1.4rem; color: var(--dark-blue); margin-bottom: 8px; }
.job-details p { color: var(--text-muted); line-height: 1.6; }
.apply-btn { background: var(--primary-blue); color: white; padding: 12px 25px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.apply-btn:hover { background: var(--dark-blue); transform: translateY(-2px); }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(6, 29, 61, 0.7); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-content { background: white; padding: 40px; border-radius: 12px; width: 90%; max-width: 500px; position: relative; transform: scale(0.95); transition: transform 0.3s ease; }
.modal-overlay.active .modal-content { transform: scale(1); }
.modal-close { position: absolute; top: 15px; right: 15px; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--text-muted); }
.form-group{margin-bottom:20px}.form-group label{display:block;font-weight:600;margin-bottom:8px;font-size:.9rem}.form-group input,.form-group textarea{width:100%;padding:14px;border:1px solid var(--border-color);border-radius:8px;font-size:1rem;font-family:'Inter',sans-serif;transition:border-color .3s,box-shadow .3s}.form-group input:focus,.form-group textarea:focus{outline:0;border-color:var(--primary-blue);box-shadow:0 0 0 3px rgba(0,82,204,.2)}.form-group textarea{resize:vertical;min-height:120px}
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.8rem; color: var(--dark-blue); margin-top: 40px; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--border-color); }
.legal-content p, .legal-content li { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 15px; }
.legal-content ul { list-style-position: inside; padding-left: 10px; }
.legal-content a { color: var(--primary-blue); text-decoration: none; font-weight: 500; }
.legal-content a:hover { text-decoration: underline; }
.main-footer { background-color: var(--dark-blue); color: var(--text-light); padding: 60px 0; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.footer-column h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; color: var(--bg-white); }
.footer-column p, .footer-column a { color: var(--text-muted); text-decoration: none; line-height: 1.8; transition: color 0.3s ease; }
.footer-column a:hover { color: var(--bg-white); }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 10px; }
.footer-bottom { margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; color: var(--text-muted); display: flex; justify-content: center; align-items: center; gap: 20px; }
.social-link { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.social-link:hover { color: var(--bg-white); }
.social-link svg { width: 24px; height: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.mobile-nav-toggle { display: none; background: transparent; border: none; cursor: pointer; z-index: 9999; padding: 10px; }
.hamburger-icon { width: 28px; height: 3px; background-color: var(--dark-blue); border-radius: 5px; position: relative; transition: all 0.3s ease-in-out; }
.hamburger-icon::before, .hamburger-icon::after { content: ''; position: absolute; width: 28px; height: 3px; background-color: var(--dark-blue); border-radius: 5px; transition: all 0.3s ease-in-out; left: 0; }
.hamburger-icon::before { top: -8px; }
.hamburger-icon::after { bottom: -8px; }
.mobile-nav-open .hamburger-icon { background-color: transparent; }
.mobile-nav-open .hamburger-icon::before { transform: rotate(45deg) translate(5px, 6px); }
.mobile-nav-open .hamburger-icon::after { transform: rotate(-45deg) translate(5px, -6px); }
.mobile-nav-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: var(--dark-blue); z-index: 1100; flex-direction: column; align-items: center; justify-content: center; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
.mobile-nav-open .mobile-nav-menu { transform: translateX(0); display: flex; }
.mobile-nav-menu nav { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.mobile-nav-menu nav a { color: var(--bg-white); font-size: 1.8rem; font-weight: 700; text-decoration: none; opacity: 0; transform: translateY(20px); transition: opacity 0.3s ease, transform 0.3s ease; }
.mobile-nav-open .mobile-nav-menu nav a { opacity: 1; transform: translateY(0); }
.mobile-nav-open .mobile-nav-menu nav a:nth-child(1) { transition-delay: 0.2s; }
.mobile-nav-open .mobile-nav-menu nav a:nth-child(2) { transition-delay: 0.25s; }
.mobile-nav-open .mobile-nav-menu nav a:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-open .mobile-nav-menu nav a:nth-child(4) { transition-delay: 0.35s; }
.mobile-nav-open .mobile-nav-menu nav a:nth-child(5) { transition-delay: 0.4s; }
.mobile-nav-open .mobile-nav-menu nav a:nth-child(6) { transition-delay: 0.45s; }
.submission-banner{position:fixed;bottom:20px;left:50%;transform:translate(-50%,150%);padding:15px 40px 15px 20px;border-radius:8px;color:#fff;font-weight:500;box-shadow:0 5px 15px rgba(0,0,0,.2);z-index:3000;transition:transform .5s cubic-bezier(.175,.885,.32,1.275);display:flex;align-items:center;gap:15px;max-width:90%}.submission-banner.show{transform:translate(-50%,0)}.submission-banner.success{background-color:#28a745}.submission-banner.error{background-color:#dc3545}.banner-close{background:0 0;border:none;color:#fff;font-size:1.5rem;font-weight:700;cursor:pointer;position:absolute;top:50%;right:10px;transform:translateY(-50%);opacity:.7;transition:opacity .2s}.banner-close:hover{opacity:1}
@media (max-width: 1024px) { .container { padding: 0 30px; } .hero-content h1 { font-size: 3rem; } .page-header h1 { font-size: 2.5rem; } .section-header h2 { font-size: 2.5rem; } .contact-wrapper, .about-content { grid-template-columns: 1fr; gap: 40px; } .about-image { order: -1; } }
@media (max-width: 768px) { .main-nav { display: none; } .mobile-nav-toggle { display: block; } .section { padding: 60px 0; } .hero { padding: 80px 0; min-height: 60vh; } .hero-content h1 { font-size: 2.2rem; } .hero-content h2 { font-size: 1.2rem; } .page-header { padding: 60px 20px; } .page-header h1 { font-size: 2rem; } .section-header h2 { font-size: 2.2rem; } .services-grid, .services-grid-large, .features-grid { grid-template-columns: 1fr; } .job-listing { flex-direction: column; align-items: flex-start; gap: 15px; } .apply-btn { width: 100%; text-align: center; } .footer-content { text-align: center; } .footer-bottom { flex-direction: column; gap: 15px; } }

/* --- 9. FIXES AND ADDITIONS --- */

/* Fix for large icons on Contact Page */
.contact-info .info-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0; /* Prevents icon from shrinking */
  stroke-width: 1.5; /* Ensures outline icons have correct thickness */
}

/* Fix for spacing between form title and first field */
.contact-form h2 {
  margin-bottom: 30px;
}

/* Fix for Careers Page alignment and spacing */
.careers-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.submit-cv-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: var(--bg-light);
  border-radius: 12px;
}
.submit-cv-section p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* --- FIX: Spacing on Contact Information Section --- */
.contact-info h3 + p {
  margin-bottom: 35px; /* Adds more space after the main paragraph */
}
.contact-info .info-item {
  margin-bottom: 25px; /* Adds space between the email and LinkedIn lines */
}

.contact-info h3 {
  margin-bottom: 12px; /* heading aur paragraph ke beech ka gap */
}

.contact-info p {
  margin-bottom: 20px; /* paragraph ke baad ka gap */
}
.contact-info p {
  margin-bottom: 10px;
  line-height: 1.8;
}
/* --- 8. Legal Page Content Styles (Redesigned) --- */
.legal-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px 35px;
  margin-bottom: 25px;
}

.legal-section h2 {
  font-size: 1.6rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.legal-section p, .legal-section li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.legal-section ul {
  list-style-position: outside;
  padding-left: 20px;
}
.legal-section li::marker {
  color: var(--primary-blue);
}

.legal-section a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.legal-section a:hover {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}
.no-underline {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.no-underline:hover {
  color: #0052cc; /* Ravtix blue */
  text-decoration: none;
}
/* --- FIX: Spacing on Contact & Careers Pages --- */
.contact-info .info-item {
  margin-bottom: 25px; /* Adds space between the email and LinkedIn lines */
}
.submit-cv-section p {
  margin-bottom: 20px; /* Adds space above the Submit CV button */
}

/* --- 7. ACCESSIBILITY & RESPONSIVE DESIGN --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mobile-nav-toggle {
  display: none; /* Hidden on desktop */
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 9999;
  padding: 10px;
}
.hamburger-icon {
  width: 28px;
  height: 3px;
  background-color: var(--dark-blue);
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 3px;
  background-color: var(--dark-blue);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  left: 0;
}
.hamburger-icon::before { top: -8px; }
.hamburger-icon::after { bottom: -8px; }

/* Hamburger animation to 'X' */
.mobile-nav-open .hamburger-icon {
  background-color: transparent;
}
.mobile-nav-open .hamburger-icon::before {
  transform: rotate(45deg) translate(5px, 6px);
}
.mobile-nav-open .hamburger-icon::after {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--dark-blue);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-nav-open .mobile-nav-menu {
  transform: translateX(0);
  display: flex;
}
.mobile-nav-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.mobile-nav-menu nav a {
  color: var(--bg-white);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-nav-open .mobile-nav-menu nav a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-open .mobile-nav-menu nav a:nth-child(1) { transition-delay: 0.2s; }
.mobile-nav-open .mobile-nav-menu nav a:nth-child(2) { transition-delay: 0.25s; }
.mobile-nav-open .mobile-nav-menu nav a:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-open .mobile-nav-menu nav a:nth-child(4) { transition-delay: 0.35s; }
.mobile-nav-open .mobile-nav-menu nav a:nth-child(5) { transition-delay: 0.4s; }
.mobile-nav-open .mobile-nav-menu nav a:nth-child(6) { transition-delay: 0.45s; }


/* --- Tablet Styles (up to 1024px) --- */
@media (max-width: 1024px) {
  .container {
      padding: 0 30px;
  }
  .hero-content h1 { font-size: 3rem; }
  .page-header h1 { font-size: 2.5rem; }
  .section-header h2 { font-size: 2.5rem; }
  
  .contact-wrapper, .about-content, .clients-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .about-image { order: -1; } /* Puts image on top on about page */
}

/* --- Mobile Styles (up to 768px) --- */
@media (max-width: 768px) {
  .main-nav {
      display: none; /* Hide desktop nav */
  }
  .mobile-nav-toggle {
      display: block; /* Show hamburger button */
  }
  .section {
      padding: 60px 0;
  }
  .hero {
      padding: 80px 0;
      min-height: 60vh;
  }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content h2 { font-size: 1.2rem; }
  
  .page-header { padding: 60px 20px; }
  .page-header h1 { font-size: 2rem; }
  .section-header h2 { font-size: 2.2rem; }

  .services-grid, .services-grid-large, .features-grid {
      grid-template-columns: 1fr;
  }

  .job-listing {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }
  .apply-btn {
      width: 100%;
      text-align: center;
  }
  .footer-content {
      text-align: center;
  }
  .footer-bottom {
      flex-direction: column;
      gap: 15px;
  }
  .cta-button, .hero-cta {
      width: auto; /* Allow buttons to size to their content on mobile */
  }
}

/* ===========================================================
   🏠 HOME PAGE STYLES
=========================================================== */
       /* ------------------------- */
        /* --- 1. GLOBAL STYLES --- */
        /* ------------------------- */
        :root {
          --primary-blue: #0052cc;
          --dark-blue: #061d3d;
          --accent-blue: #4c9aff;
          --bg-light: #f8f9fa;
          --bg-white: #ffffff;
          --text-dark: #172b4d;
          --text-light: #f0f4f8;
          --text-muted: #6b778c;
          --border-color: #dfe1e6;
      }

      * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
      }

      html {
          scroll-behavior: smooth;
      }

      body {
          font-family: 'Inter', sans-serif;
          background-color: var(--bg-white);
          color: var(--text-dark);
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
      }

      .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
      }

      /* ------------------------- */
      /* --- 2. HEADER & NAV --- */
      /* ------------------------- */
      .main-header {
          position: sticky;
          top: 0;
          width: 100%;
          z-index: 1000;
          padding: 15px 0;
          background-color: rgba(255, 255, 255, 0.8);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          border-bottom: 1px solid transparent;
          transition: all 0.3s ease;
      }

      .main-header.scrolled {
          border-bottom: 1px solid var(--border-color);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      }

      .header-content {
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .logo {
          font-size: 1.8rem;
          font-weight: 800;
          color: var(--dark-blue);
          text-decoration: none;
      }

      .main-nav {
          display: flex;
          gap: 35px;
          align-items: center;
      }

      .main-nav a {
          text-decoration: none;
          color: var(--text-dark);
          font-weight: 600;
          font-size: 1rem;
          position: relative;
          padding: 5px 0;
          transition: color 0.3s ease;
      }

      .main-nav a::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 0;
          height: 2px;
          background-color: var(--primary-blue);
          transition: width 0.3s ease;
      }

      .main-nav a:hover {
          color: var(--primary-blue);
      }

      .main-nav a:hover::after {
          width: 100%;
      }

      .cta-button-nav {
          background: var(--primary-blue);
          color: white;
          padding: 10px 20px;
          border-radius: 8px;
          text-decoration: none;
          font-weight: 600;
          transition: background 0.3s ease, transform 0.2s ease;
      }
      .cta-button-nav:hover {
          background: var(--dark-blue);
          transform: translateY(-2px);
      }
      .cta-button-nav::after {
          display: none; /* remove underline effect for button */
      }


      /* --------------------- */
      /* --- 3. HERO SECTION --- */
      /* --------------------- */
      .hero {
          background-image: linear-gradient(rgba(6, 29, 61, 0.7), rgba(6, 29, 61, 0.7)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80');
          background-size: cover;
          background-position: center;
          color: var(--text-light);
          padding: 120px 0;
          text-align: center;
          display: flex;
          align-items: center;
          justify-content: center;
          min-height: 80vh;
      }

      .hero-content h1 {
          font-size: 3.5rem;
          font-weight: 800;
          line-height: 1.2;
          max-width: 800px;
          margin: 0 auto;
          text-shadow: 0 2px 5px rgba(0,0,0,0.3);
      }
      
      .hero-content h2 {
          font-size: 1.5rem;
          font-weight: 400;
          margin: 20px auto 40px;
          max-width: 700px;
          color: rgba(255, 255, 255, 0.85);
      }
      
      .hero-cta {
          background: var(--primary-blue);
          color: var(--bg-white);
          padding: 18px 40px;
          text-decoration: none;
          font-weight: 700;
          border-radius: 10px;
          font-size: 1.1rem;
          transition: all 0.3s ease;
          box-shadow: 0 4px 15px rgba(0, 82, 204, 0.4);
          display: inline-block;
      }

      .hero-cta:hover {
          background: var(--accent-blue);
          transform: translateY(-5px);
          box-shadow: 0 6px 20px rgba(0, 82, 204, 0.5);
      }

      /* ------------------------- */
      /* --- 4. RUNNING TEXT TICKER --- */
      /* ------------------------- */
      .ticker-wrap {
          width: 100%;
          overflow: hidden;
          background-color: var(--dark-blue);
          color: var(--text-light);
          padding: 15px 0;
          border-top: 1px solid var(--primary-blue);
          border-bottom: 1px solid var(--primary-blue);
      }
      .ticker {
          display: inline-block;
          white-space: nowrap;
          animation: ticker-scroll 40s linear infinite;
      }
      .ticker span {
          font-size: 1rem;
          font-weight: 600;
          color: rgba(255,255,255,0.8);
          margin: 0 25px;
      }
      @keyframes ticker-scroll {
          0% { transform: translateX(0); }
          100% { transform: translateX(-100%); }
      }

      /* --------------------- */
      /* --- 5. SECTIONS --- */
      /* --------------------- */
      .section {
          padding: 100px 0;
      }
      .section.light-bg {
           background-color: var(--bg-light);
      }

      .section-header {
          text-align: center;
          margin-bottom: 60px;
      }
      .section-header h2 {
          font-size: 2.8rem;
          font-weight: 700;
          color: var(--dark-blue);
          margin-bottom: 10px;
      }
      .section-header p {
          font-size: 1.1rem;
          color: var(--text-muted);
          max-width: 600px;
          margin: 0 auto;
      }

      /* --------------------- */
      /* --- 6. SERVICES GRID --- */
      /* --------------------- */
      .services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
      }

      .service-card {
          background: var(--bg-white);
          padding: 35px;
          border-radius: 12px;
          border: 1px solid var(--border-color);
          text-align: left;
          transition: all 0.3s ease;
      }
      .service-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          border-color: var(--primary-blue);
      }

      .service-icon {
          margin-bottom: 20px;
          background-color: #e6f0ff;
          width: 64px;
          height: 64px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .service-icon svg {
          width: 32px;
          height: 32px;
          stroke: var(--primary-blue);
      }

      .service-card h3 {
          font-size: 1.4rem;
          font-weight: 600;
          margin-bottom: 15px;
          color: var(--dark-blue);
      }
      .service-card p {
          font-size: 1rem;
          line-height: 1.6;
          color: var(--text-muted);
      }
      
      /* --------------------- */
      /* --- 7. CLIENTS/PEOPLE SECTION --- */
      /* --------------------- */
      .clients-content {
          display: grid;
          grid-template-columns: 1fr 1.5fr;
          gap: 60px;
          align-items: center;
      }
      .clients-text h2 {
          font-size: 2.8rem;
          font-weight: 700;
          color: var(--dark-blue);
          margin-bottom: 20px;
          line-height: 1.3;
      }
      .clients-text p {
          font-size: 1.1rem;
          line-height: 1.7;
          color: var(--text-muted);
          margin-bottom: 30px;
      }
      .clients-images {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 20px;
      }
      .clients-images img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 12px;
          box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      }
      .clients-images img:first-child {
          margin-top: -20px;
      }
       .clients-images img:last-child {
          margin-top: 20px;
      }

      /* --- Client Logo Carousel --- */
      .client-carousel {
          margin-top: 80px;
          overflow: hidden;
          position: relative;
          width: 100%;
      }
      .client-carousel::before,
      .client-carousel::after {
          content: '';
          position: absolute;
          top: 0;
          bottom: 0;
          width: 100px;
          z-index: 2;
      }
      .client-carousel::before {
          left: 0;
          background: linear-gradient(to right, var(--bg-light), transparent);
      }
      .client-carousel::after {
          right: 0;
          background: linear-gradient(to left, var(--bg-light), transparent);
      }
      .client-logos {
          display: flex;
          width: calc(200px * 12); /* 6 logos * 2 for seamless loop */
          animation: scroll 30s linear infinite;
      }
      .client-logos:hover {
          animation-play-state: paused;
      }
      
      /* --- UPDATED CSS FOR LOGOS --- */
      .client-logo {
          width: 200px;
          height: 100px;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0 20px;
          transition: all 0.3s ease;
      }
      .client-logo img {
          max-width: 140px;
          height: auto;
          filter: grayscale(100%);
          opacity: 0.6;
          transition: all 0.3s ease;
      }
      .client-logo:hover img {
          filter: grayscale(0%);
          opacity: 1;
          transform: scale(1.1);
      }

      @keyframes scroll {
          0% { transform: translateX(0); }
          100% { transform: translateX(calc(-200px * 6)); }
      }

      /* --------------------- */
      /* --- 8. FOOTER --- */
      /* --------------------- */
      .main-footer {
          background-color: var(--dark-blue);
          color: var(--text-light);
          padding: 60px 0;
      }
      .footer-content {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 40px;
      }
      .footer-column h4 {
          font-size: 1.2rem;
          font-weight: 600;
          margin-bottom: 20px;
          color: var(--bg-white);
      }
      .footer-column p, .footer-column a {
          color: var(--text-muted);
          text-decoration: none;
          line-height: 1.8;
          transition: color 0.3s ease;
      }
      .footer-column a:hover {
          color: var(--bg-white);
      }
      .footer-column ul {
          list-style: none;
      }
      .footer-column li {
          margin-bottom: 10px;
      }
      .footer-bottom {
          margin-top: 60px;
          padding-top: 30px;
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          text-align: center;
          color: var(--text-muted);
      }


      /* ===========================================================
   👥 WHO WE ARE PAGE STYLES (about.css)
=========================================================== */
        /* --- GLOBAL & HEADER STYLES (Same as Services Page) --- */
        :root {
          --primary-blue: #0052cc; --dark-blue: #061d3d; --accent-blue: #4c9aff;
          --bg-light: #f8f9fa; --bg-white: #ffffff; --text-dark: #172b4d;
          --text-light: #f0f4f8; --text-muted: #6b778c; --border-color: #dfe1e6;
      }
      * { margin: 0; padding: 0; box-sizing: border-box; }
      html { scroll-behavior: smooth; }
      body { font-family: 'Inter', sans-serif; background-color: var(--bg-white); color: var(--text-dark); }
      .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
      .main-header { position: sticky; top: 0; width: 100%; z-index: 1000; padding: 15px 0; background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: all 0.3s ease; }
      .main-header.scrolled { border-bottom: 1px solid var(--border-color); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
      .header-content { display: flex; justify-content: space-between; align-items: center; }
      .logo { font-size: 1.8rem; font-weight: 800; color: var(--dark-blue); text-decoration: none; }
      .main-nav { display: flex; gap: 35px; align-items: center; }
      .main-nav a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 1rem; position: relative; padding: 5px 0; transition: color 0.3s ease; }
      .main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-blue); transition: width 0.3s ease; }
      .main-nav a:hover, .main-nav a.active { color: var(--primary-blue); }
      .main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
      .cta-button-nav { background: var(--primary-blue); color: white !important; padding: 10px 20px; border-radius: 8px; font-weight: 600; transition: background 0.3s ease, transform 0.2s ease; }
      .cta-button-nav:hover { background: var(--dark-blue); transform: translateY(-2px); color: white !important; }
      .cta-button-nav::after { display: none; }
      .page-header { background-color: var(--dark-blue); color: var(--text-light); padding: 80px 0; text-align: center; }
      .page-header h1 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }
      .page-header p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
      .section { padding: 100px 0; }
      .section.light-bg { background-color: var(--bg-light); }
      .section-header { text-align: center; margin-bottom: 60px; }
      .section-header h2 { font-size: 2.8rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 10px; }
      .section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
      .cta-section { text-align: center; padding: 80px 0; }
      .cta-button { background: var(--primary-blue); color: var(--bg-white); padding: 18px 40px ; text-decoration: none; font-weight: 700; border-radius: 10px; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 82, 204, 0.4); display: inline-block; }
      .cta-button:hover { background: var(--accent-blue); transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0, 82, 204, 0.5); }
      .main-footer { background-color: var(--dark-blue); color: var(--text-light); padding: 60px 0; }
      .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
      .footer-column h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; color: var(--bg-white); }
      .footer-column p, .footer-column a { color: var(--text-muted); text-decoration: none; line-height: 1.8; transition: color 0.3s ease; }
      .footer-column a:hover { color: var(--bg-white); }
      .footer-column ul { list-style: none; }
      .footer-column li { margin-bottom: 10px; }
      .footer-bottom { margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; color: var(--text-muted); }

      /* --- ABOUT PAGE SPECIFIC STYLES --- */
      .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
      .about-text h2 { font-size: 2.5rem; color: var(--dark-blue); font-weight: 700; line-height: 1.3; margin-bottom: 20px; }
      .about-text p { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); }
      .about-image img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

      .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
      .feature-card { background: var(--bg-white); padding: 30px; border-radius: 12px; border: 1px solid var(--border-color); }
      .feature-icon { margin-bottom: 20px; background-color: #e6f0ff; width: 56px; height: 56px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
      .feature-icon svg { width: 28px; height: 28px; stroke: var(--primary-blue); }
      .feature-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--dark-blue); }
      .feature-card p { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); }


/* ===== FAQ Section Styles ===== */

        /* --- GLOBAL & HEADER STYLES (Same as before) --- */
        :root {
          --primary-blue: #0052cc; --dark-blue: #061d3d; --accent-blue: #4c9aff;
          --bg-light: #f8f9fa; --bg-white: #ffffff; --text-dark: #172b4d;
          --text-light: #f0f4f8; --text-muted: #6b778c; --border-color: #dfe1e6;
      }
      * { margin: 0; padding: 0; box-sizing: border-box; }
      html { scroll-behavior: smooth; }
      body { font-family: 'Inter', sans-serif; background-color: var(--bg-white); color: var(--text-dark); }
      .container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
      .main-header { position: sticky; top: 0; width: 100%; z-index: 1000; padding: 15px 0; background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: all 0.3s ease; }
      .main-header.scrolled { border-bottom: 1px solid var(--border-color); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
      .header-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
      .logo { font-size: 1.8rem; font-weight: 800; color: var(--dark-blue); text-decoration: none; }
      .main-nav { display: flex; gap: 35px; align-items: center; }
      .main-nav a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 1rem; position: relative; padding: 5px 0; transition: color 0.3s ease; }
      .main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-blue); transition: width 0.3s ease; }
      .main-nav a:hover, .main-nav a.active { color: var(--primary-blue); }
      .main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
      .cta-button-nav { background: var(--primary-blue); color: white !important; padding: 10px 20px; border-radius: 8px; font-weight: 600; transition: background 0.3s ease, transform 0.2s ease; }
      .cta-button-nav:hover { background: var(--dark-blue); transform: translateY(-2px); color: white !important; }
      .cta-button-nav::after { display: none; }
      .page-header { background-color: var(--dark-blue); color: var(--text-light); padding: 80px 0; text-align: center; }
      .page-header h1 { font-size: 3rem; font-weight: 800; }
      .section { padding: 100px 0; }
      .cta-section { text-align: center; padding: 80px 0; background-color: var(--bg-light); }
      .cta-section h2 { font-size: 2.5rem; color: var(--dark-blue); margin-bottom: 30px; }
      .cta-button { background: var(--primary-blue); color: var(--bg-white); padding: 18px 40px; text-decoration: none; font-weight: 700; border-radius: 10px; font-size: 1.1rem; transition: all 0.3s ease; display: inline-block; }
      .cta-button:hover { background: var(--accent-blue); transform: translateY(-5px); }
      .main-footer { background-color: var(--dark-blue); color: var(--text-light); padding: 60px 0; }
      .footer-content { max-width:1200px; margin:0 auto; padding:0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
      .footer-column h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; color: var(--bg-white); }
      .footer-column p, .footer-column a { color: var(--text-muted); text-decoration: none; line-height: 1.8; transition: color 0.3s ease; }
      .footer-column a:hover { color: var(--bg-white); }
      .footer-column ul { list-style: none; }
      .footer-column li { margin-bottom: 10px; }
      .footer-bottom { max-width:1200px; margin: 60px auto 0; padding: 30px 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; color: var(--text-muted); }

      /* --- FAQ ACCORDION STYLES --- */
      .faq-accordion .faq-item {
          border-bottom: 1px solid var(--border-color);
      }
      .faq-question {
          width: 100%;
          background: none;
          border: none;
          text-align: left;
          padding: 25px 0;
          font-size: 1.2rem;
          font-weight: 600;
          color: var(--dark-blue);
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: center;
          transition: color 0.3s ease;
      }
      .faq-question:hover { color: var(--primary-blue); }
      .faq-answer {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.5s ease-out, padding 0.5s ease-out;
      }
      .faq-answer p {
          padding: 0 0 25px 0;
          font-size: 1rem;
          line-height: 1.7;
          color: var(--text-muted);
      }
      .faq-question .icon {
          transition: transform 0.3s ease;
          width: 24px;
          height: 24px;
      }
      .faq-item.active .faq-question .icon {
          transform: rotate(45deg);
      }


      /* ============================
   Services Section Styles
   ============================ */
        /* --- GLOBAL STYLES (Same as Homepage) --- */
        :root {
          --primary-blue: #0052cc; --dark-blue: #061d3d; --accent-blue: #4c9aff;
          --bg-light: #f8f9fa; --bg-white: #ffffff; --text-dark: #172b4d;
          --text-light: #f0f4f8; --text-muted: #6b778c; --border-color: #dfe1e6;
      }
      * { margin: 0; padding: 0; box-sizing: border-box; }
      html { scroll-behavior: smooth; }
      body { font-family: 'Inter', sans-serif; background-color: var(--bg-white); color: var(--text-dark); }
      .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

      /* --- HEADER & NAV (Same as Homepage) --- */
      .main-header { position: sticky; top: 0; width: 100%; z-index: 1000; padding: 15px 0; background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: all 0.3s ease; }
      .main-header.scrolled { border-bottom: 1px solid var(--border-color); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
      .header-content { display: flex; justify-content: space-between; align-items: center; }
      .logo { font-size: 1.8rem; font-weight: 800; color: var(--dark-blue); text-decoration: none; }
      .main-nav { display: flex; gap: 35px; align-items: center; }
      .main-nav a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 1rem; position: relative; padding: 5px 0; transition: color 0.3s ease; }
      .main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-blue); transition: width 0.3s ease; }
      .main-nav a:hover, .main-nav a.active { color: var(--primary-blue); }
      .main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
      .cta-button-nav { background: var(--primary-blue); color: white !important; padding: 10px 20px; border-radius: 8px; font-weight: 600; transition: background 0.3s ease, transform 0.2s ease; }
      .cta-button-nav:hover { background: var(--dark-blue); transform: translateY(-2px); color: white !important; }
      .cta-button-nav::after { display: none; }

      /* --- INTERNAL PAGE HEADER --- */
      .page-header { background-color: var(--dark-blue); color: var(--text-light); padding: 80px 0; text-align: center; }
      .page-header h1 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }
      .page-header p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

      /* --- SECTIONS --- */
      .section { padding: 100px 0; }
      .section.light-bg { background-color: var(--bg-light); }
      .section-header { text-align: center; margin-bottom: 60px; }
      .section-header h2 { font-size: 2.8rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 10px; }
      .section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
      
      /* --- SERVICES GRID (Expanded) --- */
      .services-grid-large { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
      .service-card { background: var(--bg-white); padding: 40px; border-radius: 12px; border: 1px solid var(--border-color); text-align: left; transition: all 0.3s ease; }
      .service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); border-color: var(--primary-blue); }
      .service-icon { margin-bottom: 20px; background-color: #e6f0ff; width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
      .service-icon svg { width: 32px; height: 32px; stroke: var(--primary-blue); }
      .service-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; color: var(--dark-blue); }
      .service-card p { font-size: 1rem; line-height: 1.6; color: var(--text-muted); }

      /* --- CTA SECTION --- */
      .cta-section { text-align: center; padding: 80px 0; background-color: var(--bg-light); }
      .cta-section h2 { font-size: 2.5rem; color: var(--dark-blue); margin-bottom: 30px; }
      .cta-button { background: var(--primary-blue); color: var(--bg-white); padding: 18px 40px; text-decoration: none; font-weight: 700; border-radius: 10px; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 82, 204, 0.4); display: inline-block; }
      .cta-button:hover { background: var(--accent-blue); transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0, 82, 204, 0.5); }

      /* --- FOOTER (Same as Homepage) --- */
      .main-footer { background-color: var(--dark-blue); color: var(--text-light); padding: 60px 0; }
      .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
      .footer-column h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; color: var(--bg-white); }
      .footer-column p, .footer-column a { color: var(--text-muted); text-decoration: none; line-height: 1.8; transition: color 0.3s ease; }
      .footer-column a:hover { color: var(--bg-white); }
      .footer-column ul { list-style: none; }
      .footer-column li { margin-bottom: 10px; }
      .footer-bottom { margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; color: var(--text-muted); }


      /* --- Submission Banner Styles --- */
.submission-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 150%); /* Start hidden below the screen */
  padding: 15px 40px 15px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 3000;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 90%;
}
.submission-banner.show {
  transform: translate(-50%, 0); /* Slide into view */
}
.submission-banner.success {
  background-color: #28a745; /* Green for success */
}
.submission-banner.error {
  background-color: #dc3545; /* Red for error */
}
.banner-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.banner-close:hover {
  opacity: 1;
}