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

  body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: #073B4C;
      overflow-x: hidden;
  }

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

  /* Header */
  .header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      border-bottom: 2px solid rgba(7, 59, 76, 0.5);
      transition: all 0.3s ease;
  }

  .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 0;
  }

.logo {
  display: flex;
  margin-left: 1rem;
  margin-right: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.logo a {
  display: inline-block; 
}

.logo-icon {
  display: block;        
  max-height: 40px;     
  width: auto;          
  max-width: 100%;       
  object-fit: contain;
}

@media (max-width: 600px) {
  .logo-icon {
    max-height: 32px;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin: 0 1rem;
  }
  .nav-links {
    display: none;           
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%; left: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .nav-links.show {
    display: flex;           
  }
}

  .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
  }

  .nav-links a {
      text-decoration: none;
      color: #073B4C;
      font-weight: 500;
      transition: color 0.3s ease;
      margin: 0 1rem;
  }

  .nav-links a:hover {
      color: #FF9B53;
  }

  .cta-button {
      background: linear-gradient(135deg, #FF9B53, #FF9B53);
      color: white;
      padding: 12px 24px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 120, 73, 0.3);
  }

  .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 120, 73, 0.4);
  }

  /* Hero Section */
  .hero {
      background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%);
      padding: 15vh 0 10vh;
      position: relative;
      overflow: hidden;
      height: 100vh;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23FF9B53" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23FF9B53" opacity="0.3"/><circle cx="50" cy="10" r="1" fill="%23073B4C" opacity="0.3"/><circle cx="10" cy="60" r="1" fill="%23073B4C" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
      background-size: 200px 200px;
      animation: float 20s ease-in-out infinite;
  }

  @keyframes float {

      0%,
      100% {
          transform: translate(0, 0);
      }

      50% {
          transform: translate(-10px, -10px);
      }
  }

  .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
  }

  .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #073B4C, #666);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.2;
  }

  .hero p {
      font-size: 1.3rem;
      color: #666;
      margin-bottom: 2.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
  }

  .btn-primary {
      background: linear-gradient(135deg, #FF9B53, #FF9B53);
      color: white;
      padding: 16px 32px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(255, 120, 73, 0.3);
      border: none;
      cursor: pointer;
  }

  .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(255, 120, 73, 0.4);
  }

  .btn-secondary {
      background: transparent;
      color: #FF9B53;
      padding: 16px 32px;
      border: 2px solid #FF9B53;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
  }

  .btn-secondary:hover {
      background: #FF9B53;
      color: white;
      transform: translateY(-2px);
  }

  /* Agents Grid */
  .agents-section {
      padding: 80px 0;
      background: #fff;
  }

  .section-header {
      text-align: center;
      margin-bottom: 60px;
  }

  .section-header h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #073B4C;
      margin-bottom: 1rem;
  }

  .section-header p {
      font-size: 1.2rem;
      color: #666;
      max-width: 600px;
      margin: 0 auto;
  }

  .agents-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-bottom: 60px;
  }

  .agent-card {
      background: linear-gradient(135deg, #FF9B53, #FF9B53);
      color: white;
      padding: 2rem;
      border-radius: 20px;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
  }

  .agent-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .agent-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(255, 120, 73, 0.3);
  }

  .agent-card:hover::before {
      opacity: 1;
  }

  .agent-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      z-index: 2;
  }

  .agent-card p {
      font-size: 1rem;
      line-height: 1.6;
      opacity: 0.9;
      position: relative;
      z-index: 2;
  }

  /* Stats Section */
  .stats-section {
      background: linear-gradient(135deg, #f8f4f0, #fff);
      padding: 80px 0;
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      text-align: center;
  }

  .stat-item {
      background: white;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
  }

  .stat-item:hover {
      transform: translateY(-5px);
  }

  .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: #FF9B53;
      margin-bottom: 0.5rem;
  }

  .stat-label {
      font-size: 1.1rem;
      color: #666;
      font-weight: 600;
  }

  /* CTA Section */
  .cta-section {
      background: linear-gradient(135deg, #FF9B53, #FF9B53);
      color: white;
      padding: 80px 0;
      text-align: center;
  }

  .cta-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
  }

  .cta-section p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
  }

  .btn-white {
      background: white;
      color: #FF9B53;
      padding: 16px 32px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .btn-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  /* Footer */
  .footer {
      background: #073B4C;
      color: #ccc;
      padding: 40px 0;
      text-align: center;
  }

  .footer p {
      margin-bottom: 1rem;
  }

  .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
  }

  .footer-links a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .footer-links a:hover {
      color: #FF9B53;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .hero h1 {
          font-size: 2.5rem;
      }

      .hero p {
          font-size: 1.1rem;
      }

      .nav-links {
          display: none;
      }

      .agents-grid {
          grid-template-columns: 1fr;
      }

      .hero-buttons {
          flex-direction: column;
          align-items: center;
      }
  }

  /* Scroll animations */
  .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
  }

  .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
  }

  /* Particle animation */
  .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      pointer-events: none;
  }

  .particle {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      animation: particle-float 18s infinite linear;
  }

  @keyframes particle-float {
      0% {
          transform: translateY(100vh) rotate(0deg);
          opacity: 1;
      }

      100% {
          transform: translateY(-100px) rotate(360deg);
          opacity: 0;
      }
  }

  /* Modal Pages */
  .page-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
      z-index: 2000;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }

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

  .page-content {
      background: white;
      border-radius: 20px;
      max-width: 600px;
      width: 90%;
      max-height: 80%;
      overflow-y: auto;
      position: relative;
      transform: translateY(50px);
      transition: transform 0.3s ease;
  }

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

  .page-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem 2rem 1rem;
      border-bottom: 1px solid #eee;
  }

  .page-header h2 {
      color: #073B4C;
      margin: 0;
  }

  .close-btn {
      background: none;
      border: none;
      font-size: 2rem;
      color: #999;
      cursor: pointer;
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
  }

  .close-btn:hover {
      background: #f5f5f5;
      color: #FF9B53;
  }

  .coming-soon {
      text-align: center;
      padding: 3rem 2rem;
  }

  .coming-soon-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
  }

  .coming-soon h3 {
      color: #073B4C;
      margin-bottom: 1rem;
      font-size: 1.5rem;
  }

  .coming-soon p {
      color: #666;
      margin-bottom: 2rem;
      font-size: 1.1rem;
  }

  .notify-form {
      display: flex;
      gap: 0.5rem;
      max-width: 400px;
      margin: 0 auto;
  }

  .email-input {
      flex: 1;
      padding: 12px 16px;
      border: 2px solid #eee;
      border-radius: 25px;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.3s ease;
  }

  .email-input:focus {
      border-color: #FF9B53;
  }

  .notify-btn {
      background: linear-gradient(135deg, #FF9B53, #FF9B53);
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 25px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .notify-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 120, 73, 0.3);
  }

  /* Contact Page Specific */
  .contact-content {
      padding: 2rem;
  }

  .contact-info h3 {
      color: #073B4C;
      margin-bottom: 1rem;
  }

  .contact-info p {
      color: #666;
      margin-bottom: 2rem;
  }

  .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
  }

  .form-input,
  .form-textarea {
      padding: 12px 16px;
      border: 2px solid #eee;
      border-radius: 10px;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.3s ease;
  }

  .form-input:focus,
  .form-textarea:focus {
      border-color: #FF9B53;
  }

  .form-textarea {
      resize: vertical;
      min-height: 100px;
  }

  .submit-btn {
      background: linear-gradient(135deg, #FF9B53, #FF9B53);
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 120, 73, 0.3);
  }

  .contact-details {
      background: #f8f4f0;
      padding: 1.5rem;
      border-radius: 15px;
      margin-top: 2rem;
  }

  .contact-details h4 {
      color: #073B4C;
      margin-bottom: 0.5rem;
  }

  .contact-details p {
      color: #666;
      margin-bottom: 1rem;
  }

  .social-placeholder p {
      margin-bottom: 0.5rem;
      font-weight: 600;
  }

  .social-links {
      color: #FF9B53;
      font-weight: 500;
  }

  /* Agent Detail Modal */
  .agent-detail-content {
      max-width: 800px;
      width: 95%;
      max-height: 90%;
  }

  .agent-detail-header {
      background: linear-gradient(135deg, #FF9B53, #FF9B53);
      color: white;
      padding: 2rem;
      border-radius: 20px 20px 0 0;
      text-align: center;
  }

  .agent-detail-header h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
  }

  .agent-detail-header p {
      font-size: 1.1rem;
      opacity: 0.9;
  }

  .agent-detail-body {
      padding: 2rem;
  }

  .workflow-section {
      margin-bottom: 2rem;
  }

  .workflow-section h3 {
      color: #073B4C;
      margin-bottom: 1rem;
      font-size: 1.3rem;
  }

  .workflow-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
  }

  .workflow-step {
      background: #f8f4f0;
      padding: 1.5rem;
      border-radius: 15px;
      text-align: center;
      position: relative;
      transition: transform 0.3s ease;
  }

  .workflow-step:hover {
      transform: translateY(-3px);
  }

  .step-number {
      background: linear-gradient(135deg, #FF9B53, #FF9B53);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin: 0 auto 1rem;
  }

  .step-title {
      font-weight: 600;
      color: #073B4C;
      margin-bottom: 0.5rem;
  }

  .step-description {
      color: #666;
      font-size: 0.9rem;
  }

  .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
  }

  .benefit-item {
      background: linear-gradient(135deg, rgba(255, 120, 73, 0.1), rgba(255, 153, 102, 0.1));
      padding: 1.5rem;
      border-radius: 15px;
      border-left: 4px solid #FF9B53;
  }

  .benefit-title {
      font-weight: 600;
      color: #073B4C;
      margin-bottom: 0.5rem;
  }

  .benefit-description {
      color: #666;
  }

  .stats-highlight {
      background: linear-gradient(135deg, #FF9B53, #FF9B53);
      color: white;
      padding: 1.5rem;
      border-radius: 15px;
      text-align: center;
      margin: 2rem 0;
  }

  .stats-highlight h4 {
      margin-bottom: 1rem;
      font-size: 1.2rem;
  }

  .mini-stats {
      display: flex;
      justify-content: space-around;
      gap: 1rem;
  }

  .mini-stat {
      text-align: center;
  }

  .mini-stat-number {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 0.2rem;
  }

  .mini-stat-label {
      font-size: 0.9rem;
      opacity: 0.9;
  }

  .integrations-showcase {
      background: #f8f4f0;
      padding: 1.5rem;
      border-radius: 15px;
      margin: 1rem 0;
  }

  .integrations-title {
      font-weight: 600;
      color: #073B4C;
      margin-bottom: 1rem;
      text-align: center;
  }

  .integration-logos {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
  }

  .integration-logo {
      background: white;
      padding: 0.8rem 1.2rem;
      border-radius: 10px;
      font-weight: 600;
      color: #666;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* Contact Page Specific */
  .contact-content {
      padding: 2rem;
  }

  .contact-info h3 {
      color: #073B4C;
      margin-bottom: 1rem;
  }

  .contact-info p {
      color: #666;
      margin-bottom: 2rem;
  }

  .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
  }

  .form-input,
  .form-textarea {
      padding: 12px 16px;
      border: 2px solid #eee;
      border-radius: 10px;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.3s ease;
  }

  .form-input:focus,
  .form-textarea:focus {
      border-color: #FF9B53;
  }

  .form-textarea {
      resize: vertical;
      min-height: 100px;
  }

  .submit-btn {
      background: linear-gradient(135deg, #FF9B53, #FF9B53);
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 120, 73, 0.3);
  }

  .contact-details {
      background: #f8f4f0;
      padding: 1.5rem;
      border-radius: 15px;
      margin-top: 2rem;
  }

  .contact-details h4 {
      color: #073B4C;
      margin-bottom: 0.5rem;
  }

  .contact-details p {
      color: #666;
      margin-bottom: 1rem;
  }

  .social-placeholder p {
      margin-bottom: 0.5rem;
      font-weight: 600;
  }

  .social-links {
      color: #FF9B53;
      font-weight: 500;
  }

  .page-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.agent-detail-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-width: 800px;
  width: 90%;
  padding: 24px;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
}

.agent-detail-card .close-btn {
  position: absolute;
  top: 12px; right: 12px;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.mini-card {
  background: #fafafa;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 12px;
  text-align: center;
}

.mini-card .step-number {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.stat-card .stat-number {
  font-size: 1.5rem;
  font-weight: bold;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: #555;
}


.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.agent-card-modern {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.agent-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.agent-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.agent-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #073B4C;
}

.agent-excerpt {
  flex-grow: 1;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.agent-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  list-style: none;
  padding: 0;
}

.agent-stats .stat-number {
  font-weight: 700;
  font-size: 1.2rem;
  color: #FF9B53;
}

.agent-stats .stat-label {
  display: block;
  font-size: 0.75rem;
  color: #777;
}

.learn-btn {
  background: linear-gradient(135deg, #FF9B53, #FF9B53);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  align-self: flex-start;
  transition: transform 0.2s ease;
}

.learn-btn:hover {
  transform: translateY(-2px);
}

#langSelect {
  appearance: none;           /* remove native arrow */
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #fff url('img/arrow-down.svg') no-repeat right 0.75rem center;
  /* replace arrow-down.svg with your own small caret icon */
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.2;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  color: #333;
  cursor: pointer;
}

/* fix for IE */
#langSelect::-ms-expand {
  display: none;
}

/* on focus, highlight */
#langSelect:focus {
  outline: none;
  border-color: #ff7849; 
  box-shadow: 0 0 0 2px rgba(255,120,73,0.3);
}

/* optional container if you need a background pill behind it */
.lang-wrapper {
  display: inline-block;
  position: relative;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

/* Hero icon sizing & centering */
.hero-content .agent-icon {
  display: block;             /* center via margin */
  margin: 0 auto 1.5rem;      /* space below */
  width: 220px;               /* or whatever size you want */
  height: auto;               /* maintain aspect ratio */
}

/* Responsive tweak */
@media (max-width: 600px) {
  .hero-content .agent-icon {
    width: 100px;
  }
}