/* --- Variables --- */
:root {
    --primary: #4361EE;
    --primary-dark: #3A56D4;
    --primary-light: #4F78FF;
    --secondary: #9C27B0;
    --secondary-light: #BB6BD9;
    --gradient: linear-gradient(135deg, #4361EE, #9C27B0);
    --purple-gradient: linear-gradient(135deg, #7209B7, #560BAD);
    --blue-gradient: linear-gradient(135deg, #4361EE, #3A0CA3);
    --text-light: #28285B;
    --text-light: #565695;
    --background: #F8F9FF;
    --success: #38b000;
    --highlight: #ffbe0b;
    --gray-light: #f7f7f9;
    --whatsapp: #25D366;
  }


  /* --- Reset & Base --- */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
  overflow-x: hidden;
 } 
  body, p, div, span, a, input, button {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Heebo', sans-serif;
  }
      
  body {
    background-color: var(--background);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    direction: rtl;
    min-height: 100vh;
    margin: 0;
    padding: 0;
  }
  
  /* Ensure all containers are full width with no extra padding */
  .content-container {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  
  /* Prevent body scroll when mobile menu is open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  /* Ensure proper RTL alignment */
  html[dir="rtl"] nav {
    text-align: right;
  }

  /* --- Background Textures & Grid --- */
  .background-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(to right, rgba(79, 120, 255, 0.08) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(79, 120, 255, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -1;
  }
  
  .background-texture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%234361EE' fill-opacity='0.2'%3E%3Cpath d='M0 0h40v40H0V0zm20 20c-5.523 0-10-4.477-10-10S14.477 0 20 0s10 4.477 10 10-4.477 10-10 10zm0 0c5.523 0 10 4.477 10 10s-4.477 10-10 10-10-4.477-10-10 4.477-10 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -2;
  }
  
  /* --- Background Dots --- */
  .background-dots::before,
  .background-dots::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(100px);
    z-index: -1;
  }
  
  .background-dots::before {
    background-color: var(--primary);
    top: 5%;
    right: 10%;
  }
  
  .background-dots::after {
    background-color: var(--secondary);
    bottom: 15%;
    left: 5%;
  }
  
  /* --- Header --- */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    margin-top: 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    height: 80px
  }
  
  .hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 9999;
  }
  
  .hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
  }


  
  
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 20; /* Ensure this is below nav but above other content */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
      
  .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
    text-decoration: none;
    order: 1; /* In RTL, this will appear on right */
  }
      
  .logo-icon {
    width: 240px;
    height: 150px;
    margin-left: 10px;
  }
      
  nav {
    display: flex;
    gap: 20px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 25px;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.08);
    border: 1px solid rgba(67, 97, 238, 0.1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
      
  .nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Heebo', sans-serif;
    transition: all 0.2s ease;
    padding: 6px 12px;
    border-radius: 8px;
    position: relative;
  }
  
  .nav-link:hover {
    color: var(--primary);
    background-color: rgba(67, 97, 238, 0.05);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-link:hover {
    color: var(--primary);
    background-color: rgba(67, 97, 238, 0.05);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-link.active {
    color: var(--primary);
    background-color: rgba(67, 97, 238, 0.15);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.1);
  }
  
  .nav-link.active::after {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
  }
      
  .sign-in {
    padding: 8px 18px;
    border-radius: 10px;
    border: 1px solid rgba(67, 97, 238, 0.3);
    background-color: white;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Heebo', sans-serif;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.1);
    margin-right: 0;
  }
  
  .sign-in:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: white;
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.2);
    transform: translateY(-2px);
  }

  .try-free-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    background: var(--blue-gradient);
    color: white;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(67, 97, 238, 0.2);
    margin-top: 15px;
    font-family: 'Heebo', sans-serif;
    text-align: center;
  }
  
  .try-free-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(67, 97, 238, 0.3);
  }
  
  /* Alternative placement options (choose one if needed) */
  .header-try-free {
    margin-right: 5px;
  }



  
  
  /* --- Hero Section --- */
  .hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 40px;
    text-align: center;
    position: relative;
    overflow: visible;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 30px;
    padding: 6px 14px;
    margin-bottom: 20px;
    margin-top: 25px;
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.1);
    border: 1px solid rgba(67, 97, 238, 0.2);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
  }
  
  .badge-icon {
    margin-left: 6px;
  }
  
  .hero-title {
    font-size: 54px;
    font-weight: 800;
    font-family: 'Heebo', sans-serif !important;
    line-height: 1.2;
    margin-bottom: 28px;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    white-space: normal;
  }
  
  .hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .hero-subtitle strong {
    font-weight: 700;
    color: var(--primary);
    position: relative;
  }
  
  .hero-subtitle strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 5px;
    background-color: rgba(67, 97, 238, 0.2);
    border-radius: 3px;
    z-index: -1;
  }
  
  /* --- Hero Metrics --- */
  .hero-metrics {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  .metric-item {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(67, 97, 238, 0.08);
  }
  
  .metric-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.15);
  }
  
  .metric-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .metric-symbol {
    font-size: 24px;
    margin-right: 2px;
  }
  
  .metric-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
  }
  
  /* --- Action Button --- */
  .action-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  
  .action-button {
    padding: 18px 36px;
    border-radius: 12px;
    border: none;
    background: var(--blue-gradient);
    color: white;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.25);
    position: relative;
    overflow: hidden;
  }
  
  .action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
  }
  
  .action-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(67, 97, 238, 0.4);
  }
  
  .action-button:hover::before {
    left: 100%;
  }
  
  .action-note {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 14px;
  }
  
  /* --- Testimonials --- */
  .user-testimonial {
    margin-top: 30px;
    text-align: center;
  }
  
  .testimonials-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 10px 25px;
    display: inline-flex;
  }
  
  .avatar-group {
    display: flex;
  }
  
  .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    overflow: hidden;
    margin-right: -10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .heart-icon {
    color: #FF5C85;
    margin-left: 5px;
  }
  
  .testimonials-text {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
  }
  
  /* --- Video Section --- */
  .video-section {
    max-width: 900px;
    margin: 60px auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(67, 97, 238, 0.1);
    box-shadow: 0 30px 60px rgba(67, 97, 238, 0.15);
    position: relative;
  }
  
  .video-section::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient);
    border-radius: 25px;
    opacity: 0.1;
    z-index: -1;
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
  }
  
  .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1f1fc;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .play-button {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .play-button:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
  }
  
  .play-button svg {
    width: 30px;
    height: 30px;
    fill: white;
    margin-left: 5px; /* Adjust for the play icon */
  }
  
  .screenshots-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .screenshot {
    flex: 1;
    max-width: 490;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
    transition: all 0.5s ease;
    position: relative;
    border: 1px solid rgba(67, 97, 238, 0.1);
  }
  
  .screenshot:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(67, 97, 238, 0.25);
  }
  
  .screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
  }
  
  /* Create hotspot areas for hover */
  .hotspot {
    position: absolute;
    background-color: rgba(67, 97, 238, 0.1);
    border: 2px dashed rgba(67, 97, 238, 0.3);
    border-radius: 8px;
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .hotspot:hover {
    background-color: rgba(67, 97, 238, 0.2);
    border-color: rgba(67, 97, 238, 0.5);
  }
  
  /* Tooltip on hover */
  .hotspot::after {
    content: attr(data-feature);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(67, 97, 238, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .hotspot:hover::after {
    opacity: 1;
  }
  
  /* Scale the image on hotspot hover */
  .hotspot:hover ~ .screenshot-img {
    transform: scale(1.2);
    transform-origin: var(--x) var(--y);
    transition: transform 0.5s ease;
  }
  
  /* --- Trusted By Section --- */
  .trusted-by {
    padding: 60px 0;
    text-align: center;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.03), 0 5px 20px rgba(0, 0, 0, 0.03);
  }
  
  .section-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 500;
    font-family: 'Heebo', sans-serif !important;
  }
  
  .trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .trusted-logo {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s;
  }
  
  .trusted-logo:hover {
    opacity: 1;
  }
  
  /* --- Features Section --- */
  .features-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header.smaller {
    margin-bottom: 40px;
  }
  
  .section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-family: 'Heebo', sans-serif !important;
  }
  
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(67, 97, 238, 0.08);
    border-radius: 20px;
    padding: 6px 16px;
    margin-left: 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
  }
  
  .section-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--primary);
  }
  
  .features-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light);
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    font-family: 'Heebo', sans-serif !important;
  }
  
  .features-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
  }
  
  .section-subtitle {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: inline-block;
    font-family: 'Heebo', sans-serif !important;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 30px;
  }
  
  /* Keep the original underline effect exactly as it was */
  .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-light);
    border-radius: 2px;
  }
  
  /* --- Process Section --- */
  .process-section {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
  }
  
  .process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 62px;
    position: relative;
  }
  
  .process-flow {
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg, 
      rgba(67, 97, 238, 0.2), 
      rgba(67, 97, 238, 0.5), 
      rgba(156, 39, 176, 0.5),
      rgba(156, 39, 176, 0.2)
    );
    border-radius: 3px;
  }
  
  .process-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    top: -2.5px;
  }
  
  .process-dot:nth-child(1) {
    left: 20%;
    animation: pulse 3s infinite;
  }
  
  .process-dot:nth-child(2) {
    left: 40%;
    animation: pulse 3s infinite .8s;
  }
  
  .process-dot:nth-child(3) {
    left: 60%;
    animation: pulse 3s infinite 1.6s;
  }
  
  .process-dot:nth-child(4) {
    left: 80%;
    animation: pulse 3s infinite 2.4s;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  .process-step {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    min-width: 220px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    border: 1px solid rgba(67, 97, 238, 0.05);
  }
  
  .process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
  }
  
  .step-connector {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .connector-arrow {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    stroke-width: 2;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    margin-left: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.5);
  }
  
  .step-content {
    text-align: right;
  }
  
  .step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-light);
    font-family: 'Heebo', sans-serif !important;
  }
  
  .step-description {
    font-size: 14px;
    color: var(--text-light);
  }
  
  /* --- Capabilities Section --- */
  .capabilities-section {
    text-align: center;
  }
  
  .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .feature-card {
    background-color: white;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(67, 97, 238, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(67, 97, 238, 0.1);
  }
  
  .feature-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    backdrop-filter: blur(8px);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .tag-advanced {
    background-color: rgba(67, 97, 238, 0.15);
    color: #2D46CE;
    border: 1px solid rgba(67, 97, 238, 0.1);
  }
  
  .tag-popular {
    background-color: rgba(156, 39, 176, 0.15);
    color: #7B1FA2;
    border: 1px solid rgba(156, 39, 176, 0.1);
  }
  
  .tag-new {
    background-color: rgba(76, 175, 80, 0.15);
    color: #388E3C;
    border: 1px solid rgba(76, 175, 80, 0.1);
  }
  
  .tag-unique {
    background-color: rgba(255, 152, 0, 0.15);
    color: #F57C00;
    border: 1px solid rgba(255, 152, 0, 0.1);
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--blue-gradient);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
  }
  
  .feature-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
  }
  
  .feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
    font-family: 'Heebo', sans-serif !important;
  }
  
  .feature-description {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 130px;
}

/* --- Reviews Section --- */
.reviews {
  padding: 80px 0;
  background-color: var(--background-alt);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(67, 97, 238, 0.03) 0%, rgba(156, 39, 176, 0.03) 100%);
  z-index: -1;
}

.reviews-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 800;      
  font-family: 'Heebo', sans-serif !important;
  background: var(--gradient);      
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent; 
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.review-card {
  background-color: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 15px;
  border: 2px solid var(--primary-light);
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-light);
  font-size: 16px;
}

.reviewer-role {
  color: var(--text-light);
  font-size: 14px;
}

.review-rating {
  display: flex;
  gap: 5px;
  color: #FFB800;
  font-size: 18px;
}

.review-content {
  background-color: #F8F9FF;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  position: relative;
}

.review-content::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 15px;
  height: 15px;
  background-color: #F8F9FF;
  transform: rotate(45deg);
}

.review-text {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.5;
}

.review-date {
  text-align: left;
  color: var(--text-light);
  font-size: 13px;
  margin-top: auto;
}

/* --- FAQ Section --- */
.faq {
  padding: 20px 0;
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 800;      
  font-family: 'Heebo', sans-serif !important;
  background: var(--gradient);      
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent; 
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.accordion-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: rgba(67, 97, 238, 0.03);
}

.accordion-title {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Heebo', sans-serif !important;
  color: var(--text-light);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.accordion-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-text {
  padding: 0 25px 20px;
  color: var(--text-light);
  line-height: 1.6;
}

.accordion-item.active .accordion-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* --- Final CTA Section --- */
.final-cta {
  padding: 100px 0;
  background: var(--gradient);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.final-cta::before {
  top: -100px;
  right: -100px;
}

.final-cta::after {
  bottom: -100px;
  left: -100px;
}

.final-cta-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
}

.final-cta-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.final-cta-button {
  padding: 18px 36px;
  border-radius: 12px;
  background: white;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  display: inline-block;
}

.final-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-section {
  max-width: 1200px;
  margin: 25px auto;
  padding: 20px 40px 40px;
  text-align: center;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 30px;
  padding: 6px 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(67, 97, 238, 0.1);
  border: 1px solid rgba(67, 97, 238, 0.2);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.badge-icon {
  margin-left: 6px;
}
.section-title {
  font-size: 42px;
  font-weight: 800;
  font-family: 'Heebo', sans-serif !important;
  line-height: 1.2;
  margin-bottom: 28px;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


/* --- Pricing Grid --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.pricing-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(67, 97, 238, 0.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(67, 97, 238, 0.1);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  z-index: 1;
}


.popular-badge {
  background-color: #FF7A00;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 5px 16px;
  position: absolute;
  top: 0px;  /* Changed from -20px to -15px to make it more visible */
  right: 0%; /* Position it on the right side instead of center */
  transform: none; /* Remove the center transform */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
  z-index: 300;
}

.card-header {
  padding: 30px 20px;
  background-color: var(--gray-light);
  border-bottom: 1px solid rgba(67, 97, 238, 0.05);
}

.plan-name {
  font-size: 1.4rem;
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--text-light);
  font-family: 'Heebo', sans-serif;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0 0.5rem;
  color: var(--primary-dark);
}

.price span {
  font-size: 1rem;
  font-weight: normal;
  color: var(--text-light);
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0;
}

.card-body {
  padding: 30px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-grow: 1;
  text-align: right;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: var(--text-light);
}

.feature-list li::before {
  content: "✓";
  color: var(--success);
  margin-left: 0.75rem;
  margin-right: 0;
  font-weight: bold;
}

.hours-control {
  margin-top: 1rem;
}

.hours-display {
  font-size: 0.9rem;
  margin-bottom: 0rem;
  font-weight: 500;
  color: var(--text-light);
  
}

.usage-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 4px;
  background: #ddd;
  outline: none;
  margin: 0.5rem 0;
}

.usage-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
}

.usage-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.enterprise-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  padding: 0.5rem;
  background-color: rgba(255, 190, 11, 0.1);
  border-radius: 6px;
  border-right: 3px solid var(--highlight);
  border-left: none;
  text-align: right;
  display: none;
}

.monthly-comparison {
  margin: 1rem 0;
  text-align: right;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}


/* --- CTA Buttons --- */
.cta-button {
  display: block;
  background: var(--blue-gradient);
  color: white;
  text-align: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  margin-top: auto;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.25);
  position: relative;
  overflow: hidden;
  font-family: 'Heebo', sans-serif;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(67, 97, 238, 0.4);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 6px 15px rgba(67, 97, 238, 0.1);
}

.cta-button.secondary:hover {
  background-color: rgba(67, 97, 238, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(67, 97, 238, 0.15);
}

.cta-button.minimal {
  background-color: var(--gray-light);
  color: var(--text-light);
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cta-button.minimal:hover {
  background-color: #eee;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
/* --- FAQ Section --- */
.faq {
  padding: 80px 0;
  max-width: 900px;
  margin: 80px auto 0;
}

.faq .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}

.accordion-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
  border: 1px solid rgba(67, 97, 238, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(67, 97, 238, 0.1);
}

.accordion-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: rgba(67, 97, 238, 0.03);
}

.accordion-title {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Heebo', sans-serif !important;
  color: var(--text-light);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-right: 10px;
}

.accordion-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-text {
  padding: 0 25px 20px;
  color: var(--text-light);
  line-height: 1.6;
}

.accordion-item.active .accordion-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}
/* --- About Hero Section --- */
.about-hero {
  max-width: 900px;
  margin: 25px auto;
  padding: 100px 40px 40px;
  text-align: center;
  position: relative;
}

/* --- About Story Section --- */
.about-body {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
  padding: 0 40px;
}

/* --- Team Section --- */
.about-team {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.team-title {
  font-size: 42px;
  font-weight: 800;
  font-family: 'Heebo', sans-serif !important;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.team-member {
  background-color: white;
  width: 100%;
  max-width: 300px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.team-member img {
  width: 100%;
  border-radius: 8px;
}

.team-member h3 {
  margin-top: 15px;
  font-family: 'Heebo', sans-serif;
}
/* --- Contact Hero Section --- */
.contact-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 40px 40px;
  text-align: center;
  position: relative;
}

/* --- Contact Form Section --- */
.contact-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 0 20px;
}

.contact-form-container {
  flex: 1;
  background-color: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.08);
}

.contact-form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-family: 'Heebo', sans-serif;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(67, 97, 238, 0.2);
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: 'Heebo', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

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

.form-button {
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  background: var(--blue-gradient);
  color: white;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Heebo', sans-serif;
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.25);
  margin-top: 10px;
}

.form-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(67, 97, 238, 0.4);
}

/* --- Contact Info Section --- */
.contact-info-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  border-radius: 16px;
  padding: 25px;
  background-color: white;
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.08);
  position: relative;
}
.contact-method-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon-whatsapp {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
}

.icon-email {
  background-color: rgba(67, 97, 238, 0.1);
  color: var(--primary);
}

.icon-whatsapp svg, .icon-email svg {
  width: 30px;
  height: 30px;
}

.contact-method-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Heebo', sans-serif;
}

.contact-method-text {
  color: var(--text-light);
  margin-bottom: 15px;
}

.contact-method-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Heebo', sans-serif;
}

.whatsapp-button {
  background-color: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
}

.email-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.email-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* --- Extra Contact Information --- */
.additional-contact-info {
  max-width: 400px;
  margin: 40px auto;
  padding: 0 20px;
}

.contact-details-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  flex-wrap: wrap;
}


.contact-detail-card {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.08);
  display: flex;
  align-items: flex-start;
  text-align: right;
  min-width: 260px;
  max-width: 350px;
  transition: transform 0.3s ease;
  width: calc(50% - 15px); /* Add this */
  direction: rtl;
}

.contact-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(67, 97, 238, 0.15);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  margin-left: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
  color: white;
}

.contact-detail-content {
  flex: 1;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}


.contact-detail-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-family: 'Heebo', sans-serif;
}

.contact-detail-text {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

/* Make sure links in the cards have proper styling */
.contact-detail-card a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.terms-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(67, 97, 238, 0.1);
}

.terms-header {
  text-align: center;
  margin-bottom: 40px;
}

.terms-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 30px;
  padding: 6px 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(67, 97, 238, 0.1);
  border: 1px solid rgba(67, 97, 238, 0.2);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.terms-title {
  font-size: 36px;
  font-weight: 800;
  font-family: 'Heebo', sans-serif !important;
  margin-bottom: 10px;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.terms-update {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.terms-content {
  text-align: right;
}

.terms-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 30px 0 15px;
  font-family: 'Heebo', sans-serif;
}

.terms-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 25px 0 10px;
  font-family: 'Heebo', sans-serif;
}

.terms-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.terms-content ul, .terms-content ol {
  margin: 15px 25px;
}

.terms-content li {
  margin-bottom: 10px;
}

.terms-content strong {
  font-weight: 600;
  color: var(--text-dark);
}

.terms-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.terms-content a:hover {
  text-decoration: underline;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(67, 97, 238, 0.1), rgba(156, 39, 176, 0.1), rgba(67, 97, 238, 0.1));
  margin: 40px 0;
  border: none;
}

/* ------------- Footer Styles ------------- */
/* --- Footer --- */
#footer-container {
  display: block;
  width: 100%;
  background-color: #1A1A40;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.footer {
  background-color: #1A1A40;
  color: white;
  padding: 80px 0 30px;
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 3;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

.footer-logo svg {
  width: 28px;
  height: 28px;
  margin-left: 10px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 25px;
  color: white;
  font-family: 'Heebo', sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-logo-container {
    justify-content: center;
  }
}

.ai-transparency {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 20px auto 0;
  position: relative;
  z-index: 1;
}

.transparency-content {
  background: rgba(156, 39, 176, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 8px 32px rgba(156, 39, 176, 0.08);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(156, 39, 176, 0.1);
}

.transparency-intro {
  text-align: center;
  margin-bottom: 25px;
}

.transparency-intro p {
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 25px 0;
}

.transparency-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.08) 0%, rgba(156, 39, 176, 0.03) 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(156, 39, 176, 0.1);
  position: relative;
  overflow: hidden;
}

.transparency-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(156, 39, 176, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.transparency-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.12) 0%, rgba(156, 39, 176, 0.06) 100%);
  border-color: rgba(156, 39, 176, 0.2);
  box-shadow: 0 8px 20px rgba(156, 39, 176, 0.1);
}

.transparency-item:hover::before {
  opacity: 1;
}

.transparency-item:nth-child(1) {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(156, 39, 176, 0.03) 100%);
}

.transparency-item:nth-child(2) {
  background: linear-gradient(135deg, rgba(103, 58, 183, 0.08) 0%, rgba(156, 39, 176, 0.03) 100%);
}

.transparency-item:nth-child(3) {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.08) 0%, rgba(156, 39, 176, 0.03) 100%);
}

.item-icon {
  font-size: 24px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(156, 39, 176, 0.15);
  border-radius: 12px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(5px);
}

.transparency-item:nth-child(1) .item-icon {
  background: rgba(233, 30, 99, 0.15);
}

.transparency-item:nth-child(2) .item-icon {
  background: rgba(103, 58, 183, 0.15);
}

.transparency-item:nth-child(3) .item-icon {
  background: rgba(33, 150, 243, 0.15);
}

.item-content p {
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0;
  position: relative;
  z-index: 1;
}

.transparency-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.12) 0%, rgba(103, 58, 183, 0.08) 100%);
  border-radius: 12px;
  border: 1px solid rgba(156, 39, 176, 0.15);
  position: relative;
  overflow: hidden;
}

.transparency-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(156, 39, 176, 0.15), transparent);
  opacity: 0.5;
}

.highlight-icon {
  font-size: 24px;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(156, 39, 176, 0.2);
  border-radius: 12px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(5px);
}

.transparency-highlight p {
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .transparency-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .transparency-item {
    padding: 15px;
  }

  .item-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .transparency-highlight {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .highlight-icon {
    margin-bottom: 12px;
  }
}


/* --- Responsive --- */
@media (max-width: 1024px) {
  

  .reviews-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-branding {
    grid-column: 1 / -1;
  }
}


/* Medium screens (between mobile and desktop) */
@media (min-width: 769px) and (max-width: 1199px) {
  header {
    position: relative;
    height: 80px; /* Set a fixed height to accommodate absolute positioning */
    padding: 0 20px;
  }
  
  .logo {
    position: absolute;
   
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    z-index: 5;
  }
  
  .logo-icon {
    width: 200px;
    height: auto;
    max-height: 60px;
  }
  
  nav {
    position: absolute;
    /*
    left: 20px; 
    */
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: auto;
    background: rgba(255, 255, 255, 0.9);
  }
}


@media (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    height: auto;
    min-height: 70px;
  }

  .hamburger-menu {
    display: flex;
    position: relative;
  }

  .hamburger-menu span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .logo {
    font-size: 20px;
    position: relative;
    z-index: 30; /* Increase z-index to be above nav */
    width: 140px;
    display: flex;
    align-items: center;
  }

  .logo-icon {
    width: 140px;
    height: auto;
    max-height: 50px;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%; /* Switch from left to right for RTL */
    left: auto; /* Remove left positioning */
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); /* Adjust shadow for RTL */
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    transition: right 0.3s ease; /* Change from left to right */
    z-index: 25;
    border-radius: 0;
    overflow-y: auto;
  }

  nav.active {
    right: 0; /* Switch from left to right for RTL */
    left: auto;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

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

  .hero {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-metrics {
    flex-wrap: wrap;
    gap: 15px;
  }

  .action-button {
    width: 100%;
  }

  .features-section {
    padding: 40px 20px;
  }

  .features-title {
    font-size: 26px;
  }

  .features-description {
    font-size: 15px;
  }

  .section-title-container {
    margin-bottom: 20px;
  }

  .section-label {
    font-size: 14px;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-step {
    width: 100%;
  }

  .process-flow {
    display: none;
  }

  .step-connector {
    display: none;
  }

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

  .feature-description {
    min-height: auto;
  }

  .feature-tag {
    right: 10px;
    top: 10px;
  }

  .trusted-logos {
    flex-direction: column;
    gap: 20px;
  }

  .trusted-logo {
    max-width: 80%;
  }

  .pricing-section {
    padding: 40px 20px;
  }

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

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-detail-card {
    width: 100%;
  }

  .contact-method-icon {
    width: 50px;
    height: 50px;
  }

  .nav-link {
    width: 100%;
    padding: 12px 0;
    margin-bottom: 5px;
    font-size: 18px;
  }

  .sign-in {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  
  header {
    padding: 15px 15px;
    height: auto;
    min-height: 60px;
    justify-content: space-between;
    width: 100%;
    position: relative;
  }

  .logo {
    font-size: 18px;
    width: 120px;
    margin-right: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 30;
  }

  .logo-icon {
    width: 120px;
    height: auto;
    margin-left: 0;
    max-height: 45px;
  }

  .hamburger-menu {
    margin-left: 0;
    position: relative;
    width: 25px;
    height: 20px;
  }

  body, .hero, header, nav, .container, 
  .footer, .features-section, .trusted-by,
  .reviews, .video-section, .pricing-section, 
  .contact-section, .faq {
    max-width: 100%;
    overflow-x: hidden;
  }

  nav.active {
    right: 0;
    width: 85%;
    padding: 80px 20px 30px;
  }
  
  .nav-link {
    display: block;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 16px;
    text-align: right;
  }
  
  .sign-in {
    margin-top: 20px;
    display: block;
    width: 100%;
    text-align: center;
  }
}





/* Mobile fixes */

.hamburger-menu {
  display: flex !important;
}

.hamburger-menu span {
  background-color: #4361EE !important;
}

@media (max-width: 768px) {
  nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    left: auto !important;
    width: 80% !important;
    height: 100vh !important;
    transition: right 0.3s ease !important;
    z-index: 999 !important;
    transform: translateX(0%);
  }
  
  nav.active {
    right: 0 !important;
  }
  
  .menu-overlay {
    z-index: 998 !important;
  }
  
  .hero, .features-section, .section-header {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

 
} 

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

@media (max-width: 480px) {
   .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
  }
  .nav-link {
    border-radius: 0;
  }
 
  .hamburger-menu.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }
}


@media (min-width: 769px) and (max-width: 1199px) {
    .logo {
      left: 20px;
      right: auto;
    }
    nav {
      right: 20px;
        left: auto;
    }
} 
@media (min-width: 769px) and (max-width: 850px) {
  .logo .logo-icon {
    width: 140px;
    height: auto;
    max-height: 50px;
  }
}
@media (min-width: 1200px)  {
  header {
    flex-direction: row-reverse;
  }
  nav {
    left: auto;
    right: 20px;
    transform: translateX(0%);
  }
}

@media (min-width: 769px) {
  .hamburger-menu {
    display: none !important;
  }
  .menu-overlay.active {
    display: none;
  }
  
}