/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary-color: #3974f5;
    --secondary-color: #101664;
    --accent-color: #5b8fff;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --shadow: 0 10px 40px rgba(57, 116, 245, 0.1);
    --shadow-lg: 0 20px 60px rgba(57, 116, 245, 0.15);
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Custom Cursor */
  .cursor,
  .cursor-follower {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
  }
  
  .cursor {
    background: var(--primary-color);
    mix-blend-mode: difference;
  }
  
  .cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: transparent;
    transition: transform 0.3s ease;
  }
  
  /* Header */
  .header {
   
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
  }
  
  .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 0;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
  
  .logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
  }
  
  .logo-text p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
  }
  
  .nav {
    display: flex;
    gap: 30px;
  }
  
  .nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-color);
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .language-switcher {
    position: relative;
  }
  
  .lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--bg-light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
  }
  
  .lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .lang-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .lang-dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 100px;
    overflow: hidden;
  }
  
  .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0) translateX(0);
    }
    25% {
      transform: translateY(-100px) translateX(50px);
    }
    50% {
      transform: translateY(-50px) translateX(-50px);
    }
    75% {
      transform: translateY(-150px) translateX(100px);
    }
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(57, 116, 245, 0.1), transparent);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
  }
  
  .hero-badge i {
    color: var(--primary-color);
  }
  
  .hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  
  .title-line {
    display: block;
  }
  
  .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(57, 116, 245, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(57, 116, 245, 0.4);
  }
  
  .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
  }
  
  .hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .stat-item i {
    font-size: 40px;
    color: var(--primary-color);
  }
  
  .stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
  }
  
  .stat-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
  }
  
  .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
  }
  
  .wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
  }
  
  @keyframes scroll {
    0% {
      top: 10px;
      opacity: 1;
    }
    100% {
      top: 30px;
      opacity: 0;
    }
  }
  
  .scroll-indicator p {
    font-size: 12px;
    color: var(--text-light);
  }
  
  /* Section Styles */
  section {
    padding: 100px 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(57, 116, 245, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* About Section */
  .about {
    background: var(--white);
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .about-image {
    position: relative;
  }
  
  .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 22, 100, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .image-wrapper:hover .image-overlay {
    opacity: 1;
  }
  
  .play-button {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .play-button:hover {
    transform: scale(1.1);
  }
  
  .play-button i {
    color: var(--primary-color);
    font-size: 30px;
    margin-left: 5px;
  }
  
  .floating-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .floating-card i {
    font-size: 40px;
    color: var(--primary-color);
  }
  
  .floating-card h4 {
    font-size: 18px;
    margin: 0;
  }
  
  .floating-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
  }
  
  .about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .feature-item {
    display: flex;
    gap: 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .feature-icon i {
    font-size: 24px;
    color: var(--white);
  }
  
  .feature-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .feature-content p {
    color: var(--text-light);
    margin: 0;
  }
  
  .about-cta {
    margin-top: 30px;
  }
  
  /* Products Section */
  .products {
    background: var(--bg-light);
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .product-card:hover .product-image img {
    transform: scale(1.1);
  }
  
  .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(57, 116, 245, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .product-card:hover .product-overlay {
    opacity: 1;
  }
  
  .product-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .product-btn:hover {
    transform: scale(1.1);
  }
  
  .product-btn i {
    color: var(--primary-color);
    font-size: 20px;
  }
  
  .product-content {
    padding: 30px;
  }
  
  .product-icon {
    width: 50px;
    height: 50px;
    background: rgba(57, 116, 245, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .product-icon i {
    font-size: 24px;
    color: var(--primary-color);
  }
  
  .product-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .product-content p {
    color: var(--text-light);
    margin-bottom: 20px;
  }
  
  .product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
  }
  
  .product-features i {
    color: var(--primary-color);
    font-size: 12px;
  }
  
  /* Stats Section */
  .stats-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
  }
  
  .stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/placeholder.svg?height=600&width=1200") center / cover;
    opacity: 0.1;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
  }
  
  .stat-box {
    text-align: center;
    color: var(--white);
  }
  
  .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .stat-icon i {
    font-size: 36px;
  }
  
  .stat-box h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .stat-box p {
    font-size: 16px;
    opacity: 0.9;
  }
  
  /* Global Reach Section */
  .global-reach {
    background: var(--white);
  }
  
  .map-container {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow);
  }
  
  .world-map {
    margin-bottom: 60px;
  }
  
  .map-svg {
    width: 100%;
    height: auto;
  }
  
  .continent {
    fill: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
  }
  
  .continent:hover {
    opacity: 0.6;
  }
  
  .connection-line {
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-dasharray: 10 5;
    animation: dash 20s linear infinite;
  }
  
  @keyframes dash {
    to {
      stroke-dashoffset: -1000;
    }
  }
  
  .pulse-dot {
    fill: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%,
    100% {
      opacity: 1;
      r: 8;
    }
    50% {
      opacity: 0.5;
      r: 12;
    }
  }
  
  .countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .country-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .country-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
  }
  
  .country-flag {
    font-size: 48px;
    margin-bottom: 15px;
  }
  
  .country-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .country-item p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
  }
  
  /* Why Choose Us */
  .why-choose {
    background: var(--bg-light);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 72px;
    font-weight: 700;
    color: rgba(57, 116, 245, 0.1);
  }
  
  .feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }
  
  .feature-icon-large i {
    font-size: 36px;
    color: var(--white);
  }
  
  .feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .feature-card p {
    color: var(--text-light);
    margin: 0;
  }
  
  /* Process Section */
  .process-section {
    background: var(--white);
  }
  
  .process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .process-step {
    text-align: center;
    flex: 1;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
  }
  
  .step-icon {
    width: 100px;
    height: 100px;
    background: rgba(57, 116, 245, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .step-icon i {
    font-size: 40px;
    color: var(--primary-color);
  }
  
  .process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .process-step p {
    color: var(--text-light);
    font-size: 14px;
  }
  
  .process-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    margin: 0 20px;
    margin-top: -100px;
  }
  
  /* Testimonials */
  .testimonials {
    background: var(--bg-light);
  }
  
  .testimonials-slider {
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
  }
  
  .testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    min-width: calc(33.333% - 20px);
  }
  
  .testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
  }
  
  .testimonial-rating i {
    color: #ffc107;
    font-size: 18px;
  }
  
  .testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .author-avatar i {
    font-size: 24px;
    color: var(--white);
  }
  
  .author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .author-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
  }
  
  .slider-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
  }
  
  .slider-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
  }
  
  .slider-btn i {
    color: inherit;
  }
  
  /* CTA Section */
  .cta-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
  }
  
  .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/placeholder.svg?height=400&width=1200") center / cover;
    opacity: 0.1;
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
  }
  
  .cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .btn-large {
    padding: 20px 40px;
    font-size: 18px;
  }
  
  /* Contact Section */
  .contact {
    background: var(--white);
  }
  
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .contact-item {
    display: flex;
    gap: 20px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .contact-icon i {
    font-size: 24px;
    color: var(--white);
  }
  
  .contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .contact-item p {
    color: var(--text-light);
    margin: 0;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-link {
    width: 50px;
    height: 50px;
    background: rgba(57, 116, 245, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
  }
  
  .contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .form-group {
    position: relative;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--white);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
  }
  
  .form-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
  }
  
  .form-group textarea + i {
    top: 20px;
    transform: none;
  }
  
  .btn-block {
    width: 100%;
    justify-content: center;
  }
  
  /* Footer */
  .footer {
    background: var(--secondary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .footer-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    pointer-events: none;
  }
  
  .globe-container {
    width: 500px;
    height: 500px;
    position: relative;
  }
  
  .globe {
    width: 100%;
    height: 100%;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: relative;
    animation: rotate 30s linear infinite;
  }
  
  .globe::before,
  .globe::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .globe::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    width: 50px;
    height: 50px;
  }
  
  .footer-logo h3 {
    font-size: 20px;
    margin: 0;
  }
  
  .footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
  }
  
  .footer-social {
    display: flex;
    gap: 10px;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col ul li {
    margin-bottom: 12px;
  }
  
  .footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: var(--white);
  }
  
  .newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
  }
  
  .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .newsletter-form button:hover {
    transform: scale(1.1);
  }
  
  .footer-certifications {
    display: flex;
    gap: 15px;
  }
  
  .footer-certifications img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  
  .footer-certifications img:hover {
    opacity: 1;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
  }
  
  .footer-links {
    display: flex;
    gap: 30px;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--white);
  }
  
  /* Back to Top */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    transform: translateY(-5px);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .hero-title {
      font-size: 56px;
    }
  
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .countries-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .footer-content {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .nav {
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background: var(--white);
      flex-direction: column;
      padding: 20px;
      box-shadow: var(--shadow);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }
  
    .nav.active {
      transform: translateX(0);
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .hero-title {
      font-size: 40px;
    }
  
    .hero-stats {
      flex-direction: column;
      gap: 30px;
    }
  
    .about-content,
    .contact-wrapper {
      grid-template-columns: 1fr;
    }
  
    .products-grid,
    .features-grid,
    .stats-grid,
    .countries-grid {
      grid-template-columns: 1fr;
    }
  
    .process-timeline {
      flex-direction: column;
    }
  
    .process-connector {
      width: 2px;
      height: 50px;
      margin: 20px auto;
    }
  
    .testimonial-card {
      min-width: 100%;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  }
  










/* Enhanced Hero Section */
.enhanced-hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #101664 0%, #1a1f7a 50%, #3974f5 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

/* Animated Background */
.hero-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(57, 116, 245, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 22, 100, 0.15) 0%, transparent 50%);
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Particles Canvas */
.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Hero Container */
.hero-container-enhanced {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 1;
}

/* Left Content Side */
.hero-content-enhanced {
  opacity: 0;
  transform: translateX(-50px);
}

.hero-badge-enhanced {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.hero-badge-enhanced:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-badge-enhanced i {
  color: #3974f5;
  font-size: 16px;
}

/* Hero Title */
.hero-title-enhanced {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: white;
}

.hero-title-enhanced span {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

.title-line-1 {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-2 {
  background: linear-gradient(135deg, #3974f5 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-3 {
  color: white;
}

/* Hero Description */
.hero-description-enhanced {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 550px;
  opacity: 0;
  transform: translateY(20px);
}

/* Hero Buttons */
.hero-buttons-enhanced {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary-enhanced,
.btn-secondary-enhanced {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-enhanced {
  background: linear-gradient(135deg, #3974f5 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(57, 116, 245, 0.4);
}

.btn-primary-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(57, 116, 245, 0.6);
}

.btn-primary-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary-enhanced:hover::before {
  left: 100%;
}

.btn-secondary-enhanced {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-enhanced:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats-enhanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.stat-card-enhanced {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.stat-card-enhanced:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon-enhanced {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3974f5 0%, #2563eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.stat-content-enhanced {
  flex: 1;
}

.stat-number-enhanced {
  font-size: 32px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-number-enhanced::after {
  content: "+";
  color: #3974f5;
}

.stat-label-enhanced {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Right Slider Side */
.hero-slider-enhanced {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
}

.slider-container-enhanced {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 1500px;
}

.slider-wrapper-enhanced {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-enhanced {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%) rotateY(45deg) scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.slide-enhanced.active {
  opacity: 1;
  transform: translateX(0) rotateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.slide-enhanced.prev {
  opacity: 0.3;
  transform: translateX(-100%) rotateY(-45deg) scale(0.8);
  z-index: 1;
}

.slide-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.slide-image-enhanced {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.slide-enhanced:hover .slide-image-enhanced {
  transform: scale(1.1);
}

.slide-overlay-enhanced {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(16, 22, 100, 0.9) 0%, transparent 100%);
}

.slide-info-enhanced {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  color: white;
  z-index: 3;
}

.slide-info-enhanced h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-info-enhanced p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-controls-enhanced {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.slider-btn-enhanced {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn-enhanced:hover {
  background: rgba(57, 116, 245, 0.8);
  border-color: #3974f5;
  transform: scale(1.1);
}

/* Slider Dots */
.slider-dots-enhanced {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot-enhanced {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-enhanced.active {
  background: #3974f5;
  width: 30px;
  border-radius: 6px;
}

.dot-enhanced:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Progress Bar */
.slider-progress-enhanced {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.progress-bar-enhanced {
  height: 100%;
  background: linear-gradient(90deg, #3974f5 0%, #60a5fa 100%);
  width: 0%;
  transition: width 0.1s linear;
}

/* Floating Elements */
.floating-element-enhanced {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #3974f5;
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 50%;
  right: -5%;
  animation-delay: 2s;
}

.element-3 {
  bottom: 15%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Scroll Indicator */
.scroll-indicator-enhanced {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  z-index: 10;
  animation: bounce 2s ease-in-out infinite;
}

.mouse-enhanced {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  position: relative;
}

.wheel-enhanced {
  width: 4px;
  height: 10px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container-enhanced {
    gap: 60px;
    padding: 0 30px;
  }

  .hero-title-enhanced {
    font-size: 56px;
  }

  .slider-container-enhanced {
    height: 500px;
  }
}

@media (max-width: 968px) {
  .hero-container-enhanced {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 20px;
  }

  .hero-title-enhanced {
    font-size: 48px;
  }

  .hero-stats-enhanced {
    grid-template-columns: repeat(3, 1fr);
  }

  .slider-container-enhanced {
    height: 450px;
  }
}

@media (max-width: 640px) {
  .hero-title-enhanced {
    font-size: 36px;
  }

  .hero-description-enhanced {
    font-size: 16px;
  }

  .hero-buttons-enhanced {
    flex-direction: column;
  }

  .hero-stats-enhanced {
    grid-template-columns: 1fr;
  }

  .slider-container-enhanced {
    height: 400px;
  }

  .slide-info-enhanced h3 {
    font-size: 24px;
  }
}
