
    :root {
      --primary: #4364F7;
      --primary-dark: #0052D4;
      --primary-light: #6FB1FC;
      --secondary: #FF6B6B;
      --accent: #4ECDC4;
      --dark: #2D3748;
      --light: #F7FAFC;
      --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
      --shadow: 0 10px 30px rgba(0, 82, 212, 0.15);
      --radius: 16px;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
     .contact-hero {
      background: linear-gradient(135deg, #4366F7 0%, #3A5BD9 100%);
      color: white;
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
    }
    
    .contact-hero-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }
    
    .contact-hero-shape {
      position: absolute;
      bottom: -50px;
      right: -50px;
      width: 300px;
      height: 300px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 60px;
    }
    
    .form-card, .info-card {
      background: white;
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .form-title, .info-title {
      font-size: 28px;
      margin-bottom: 30px;
      color: #333;
      font-weight: 600;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: #555;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      transition: border-color 0.3s;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #4366F7;
      outline: none;
    }
    
    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }
    
    .contact-info-item {
      display: flex;
      margin-bottom: 25px;
    }
    
    .info-icon {
      width: 50px;
      height: 50px;
      background: #F0F4FF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #4366F7;
      font-size: 20px;
      margin-right: 20px;
      flex-shrink: 0;
    }
    
    .info-content h3 {
      margin: 0 0 5px;
      font-size: 18px;
      color: #333;
    }
    
    .info-content p {
      margin: 0;
      color: #666;
      line-height: 1.6;
    }
    
    .company-details {
      margin-top: 40px;
      padding-top: 30px;
      border-top: 1px solid #eee;
    }
    
    .company-details h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #333;
    }
    
    .company-details p {
      margin: 5px 0;
      color: #666;
      font-size: 15px;
    }
    
    .registration-badge {
      display: flex;
      align-items: center;
      background: #F8FAFF;
      padding: 15px;
      border-radius: 8px;
      margin-top: 20px;
    }
    
    .badge-icon {
      width: 40px;
      height: 40px;
      background: #4366F7;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    .badge-content {
      font-size: 14px;
    }
    
    .badge-content span {
      display: block;
      color: #666;
    }
    
    .badge-content strong {
      color: #333;
      font-weight: 600;
    }
    
    /* Business Types Section */
    .business-types-section {
      padding: 80px 0;
      background: #F9FAFF;
    }
    
    .business-types-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
    }
    
    .business-types-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .business-type-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.03);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .business-type-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(67,102,247,0.1);
    }
    
    .type-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #4366F7 0%, #3A5BD9 100%);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin: 0 auto 20px;
    }
    
    .business-type-card h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #333;
    }
    
    .business-type-card p {
      color: #666;
      line-height: 1.6;
      margin: 0;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
      
      .contact-hero {
        padding: 80px 0 60px;
      }
    }
    
    @media (max-width: 768px) {
      .business-types-grid {
        grid-template-columns: 1fr;
      }
      
      .form-card, .info-card {
        padding: 30px;
      }
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      background-color: #fff;
      overflow-x: hidden;
      line-height: 1.6;
    }
    
    h1, h2, h3, h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }
    
    .text-gradient {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .section-padding {
      padding: 100px 0;
    }
    
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--gradient);
      border-radius: 2px;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
      color: #718096;
      max-width: 600px;
      margin-bottom: 3rem;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      cursor: pointer;
      border: none;
      outline: none;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .btn-primary {
      background: var(--gradient);
      color: white;
      box-shadow: var(--shadow);
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0, 82, 212, 0.3);
    }
    
    .btn-primary:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      opacity: 0;
      z-index: -1;
      transition: var(--transition);
    }
    
    .btn-primary:hover:before {
      opacity: 1;
    }
    
    /* Navbar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 0px 0;
      z-index: 1000;
      transition: all 0.4s ease;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    }
    
    .navbar.scrolled {
      padding: 0px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo img {
      height: 100px;
      transition: var(--transition);
    }
    
    .nav-links {
      display: flex;
      list-style: none;
      gap: 30px;
    }
    
    .nav-links li a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      position: relative;
      padding: 8px 0;
      transition: var(--transition);
    }
    
    .nav-links li a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient);
      transition: var(--transition);
    }
    
    .nav-links li a:hover:after {
      width: 100%;
    }
    
    .nav-links li a:hover {
      color: var(--primary);
    }
    
    .nav-cta {
      margin-left: 30px;
    }
    
    .menu-toggle {
      display: none;
      font-size: 24px;
      color: var(--dark);
      cursor: pointer;
      z-index: 1001;
    }
    
    @media (max-width: 992px) {
      .menu-toggle {
        display: block;
      }
      
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: all 0.5s ease;
        z-index: 1000;
      }
      
      .nav-links.active {
        right: 0;
      }
      
      .nav-cta {
        margin-left: 0;
        margin-top: 20px;
      }
    }
    
    /* Hero Banner */
    .hero-banner {
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #0052D4, #4364F7, #6FB1FC);
      color: white;
      padding-top: 80px;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
    }
    
    .hero-title {
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
      max-width: 600px;
      margin-bottom: 2.5rem;
      opacity: 0.9;
    }
    
    .hero-bg-shape {
      position: absolute;
      width: 800px;
      height: 800px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      right: -300px;
      top: -300px;
      z-index: 1;
    }
    
    .hero-bg-shape:nth-child(2) {
      width: 600px;
      height: 600px;
      right: -100px;
      top: -100px;
      background: rgba(255, 255, 255, 0.05);
    }
    

/* Enhanced Visual Styles */
.exchange-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
  position: relative;
  overflow: hidden;
}

.exchange-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(67, 100, 247, 0.03) 0%, transparent 70%);
  z-index: 0;
}

.exchange-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #0052D4, #4364F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4364F7, #6FB1FC);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.exchange-container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Form Card - Enhanced */
.form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 
    0 10px 25px rgba(0, 82, 212, 0.1),
    0 5px 10px rgba(0, 82, 212, 0.05);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(67, 100, 247, 0.1) 0%, transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.form-card:hover .card-glow {
  opacity: 1;
}

/* Input Fields - Enhanced */
.input-group {
  margin-bottom: 25px;
  position: relative;
}

.input-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #334155;
  z-index: 2;
}

.amount-input input {
  width: 100%;
  padding: 18px 15px 18px 35px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  background: #f8fafc;
  box-shadow: 
    inset 2px 2px 5px rgba(0, 0, 0, 0.05),
    inset -2px -2px 5px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.amount-input input:focus {
  background: #ffffff;
  box-shadow: 
    0 0 0 3px rgba(67, 100, 247, 0.2),
    inset 2px 2px 5px rgba(0, 0, 0, 0.05);
  outline: none;
}

.input-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4364F7, #6FB1FC);
  transition: width 0.3s ease;
}

.amount-input input:focus ~ .input-underline {
  width: 100%;
}

.clear-btn {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 50%;
}

.clear-btn:hover {
  color: #64748b;
  background: rgba(100, 116, 139, 0.1);
}

/* Select Wrapper - Enhanced */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  padding: 16px 40px 16px 15px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  appearance: none;
  background: #f8fafc;
  box-shadow: 
    inset 2px 2px 5px rgba(0, 0, 0, 0.05),
    inset -2px -2px 5px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.select-wrapper select:focus {
  background: #ffffff;
  box-shadow: 
    0 0 0 3px rgba(67, 100, 247, 0.2),
    inset 2px 2px 5px rgba(0, 0, 0, 0.05);
  outline: none;
}

.select-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

/* Swap Button - Enhanced */
.swap-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4364F7, #6FB1FC);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 5px 15px rgba(67, 100, 247, 0.3),
    0 10px 30px rgba(67, 100, 247, 0.2);
  transition: all 0.3s ease;
}

.swap-icon-wrapper {
  position: relative;
  z-index: 2;
}

.swap-circle-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swap-btn:hover {
  transform: rotate(180deg) scale(1.1);
  box-shadow: 
    0 8px 25px rgba(67, 100, 247, 0.4),
    0 15px 40px rgba(67, 100, 247, 0.3);
}

.swap-btn:hover .swap-circle-effect {
  opacity: 1;
}

/* Transaction Types - Enhanced */
.type-options {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.type-option {
  flex: 1;
  padding: 18px 10px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.option-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(67, 100, 247, 0.1) 0%, transparent 70%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.type-option i {
  font-size: 22px;
  margin-bottom: 8px;
  color: #64748b;
  position: relative;
  z-index: 1;
}

.type-option span {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  position: relative;
  z-index: 1;
}

.type-option.active {
  background: rgba(67, 100, 247, 0.05);
  border-color: rgba(67, 100, 247, 0.3);
  box-shadow: 
    0 5px 15px rgba(67, 100, 247, 0.1),
    inset 0 0 0 1px rgba(67, 100, 247, 0.2);
}

.type-option.active .option-glow {
  opacity: 1;
}

.type-option.active i {
  color: #4364F7;
}

.type-option:hover:not(.active) {
  background: rgba(255, 255, 255, 0.8);
  border-color: #cbd5e1;
}

/* Rate Details - Enhanced */
.rate-details {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(240, 245, 255, 0.8));
  border-radius: 16px;
  padding: 20px;
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.rate-sparkle {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  opacity: 0.3;
}

.rate-info, .fee-info {
  display: flex;
  flex-direction: column;
}

.rate-info span:first-child, .fee-info span:first-child {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 5px;
}

.rate-info span:last-child, .fee-info span:last-child {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

/* Result Box - Enhanced */
.result-box {
  background: linear-gradient(135deg, #4364F7, #6FB1FC);
  border-radius: 20px;
  padding: 30px;
  color: white;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(67, 100, 247, 0.3),
    0 15px 50px rgba(67, 100, 247, 0.2);
}

.result-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  z-index: 1;
}

.result-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: 1;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.result-header h3 {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.9;
}

.delivery-time {
  display: flex;
  align-items: center;
  font-size: 14px;
  opacity: 0.9;
}

.delivery-time i {
  margin-right: 8px;
  font-size: 14px;
}

.result-amount {
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.result-amount span:first-child {
  font-size: 24px;
  font-weight: 600;
  margin-right: 12px;
  opacity: 0.9;
  align-self: flex-start;
  margin-top: 5px;
}

.result-amount span:last-child {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.rate-type-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  z-index: 2;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-sparkle {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  border-radius: 50%;
}

.rate-type-badge i {
  margin-right: 8px;
  font-size: 12px;
}

/* Continue Button - Enhanced */
.btn-block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  border-radius: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border: none;
  background: linear-gradient(135deg, #0052D4, #4364F7);
  color: white;
  box-shadow: 
    0 5px 15px rgba(0, 82, 212, 0.3),
    0 10px 30px rgba(0, 82, 212, 0.2);
  transition: all 0.3s ease;
  z-index: 2;
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-block:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(0, 82, 212, 0.4),
    0 15px 40px rgba(0, 82, 212, 0.3);
}

.btn-block:hover .btn-glow {
  opacity: 1;
}

.btn-block:hover i {
  transform: translateX(5px);
}

.btn-block i {
  transition: transform 0.3s ease;
}

/* Exchange Visual - Enhanced */
.exchange-visual {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.world-map {
  position: relative;
  height: 300px;
  background-image: url('https://svgur.com/i/zx8.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 20px rgba(0, 82, 212, 0.1));
}

.map-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(67, 100, 247, 0.05) 0%, transparent 70%);
}

.map-point {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4364F7;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.point-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(67, 100, 247, 0.4) 0%, transparent 70%);
  animation: pulse-glow 3s infinite;
}

.pulse-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(67, 100, 247, 0.4);
  animation: pulse 2s infinite;
  top: 0;
  left: 0;
}

.point-label {
  position: absolute;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(to right, rgba(67, 100, 247, 0.3), rgba(67, 100, 247, 0.8), rgba(67, 100, 247, 0.3));
  transform-origin: left center;
  z-index: 1;
  animation: connection-pulse 3s infinite;
}

.ny-london {
  width: 30%;
  top: 30%;
  left: 20%;
  transform: rotate(15deg);
}

.london-lagos {
  width: 25%;
  top: 40%;
  left: 50%;
  transform: rotate(35deg);
  animation-delay: 0.5s;
}

.transfer-stats {
  display: flex;
  justify-content: space-around;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 
    0 10px 30px rgba(0, 82, 212, 0.1),
    0 5px 15px rgba(0, 82, 212, 0.05);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(67, 100, 247, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 15px;
  color: #64748b;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes connection-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .exchange-container {
    flex-direction: column;
  }
  
  .exchange-visual {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .form-card {
    padding: 30px;
  }
  
  .currency-selection {
    flex-direction: column;
    gap: 20px;
  }
  
  .swap-btn {
    margin: 10px auto;
    transform: rotate(90deg);
  }
  
  .type-options {
    flex-direction: column;
  }
  
  .type-option {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .form-card {
    padding: 25px 20px;
  }
  
  .result-amount span:last-child {
    font-size: 36px;
  }
}


    
    /* Why Us Section */
    .why-us-section {
      padding: 100px 0;
      background: white;
    }
    
    .why-us-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .why-us-item {
      background: white;
      border-radius: var(--radius);
      padding: 40px 30px;
      text-align: center;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .why-us-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 82, 212, 0.1);
    }
    
    .icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(67, 100, 247, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      font-size: 30px;
      color: var(--primary);
    }
    
    .stat-value {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    /* Visa Payout Section */
    .visa-payout-section {
      padding: 120px 0;
      background: linear-gradient(135deg, #1A2980, #26D0CE);
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    .visa-payout-container {
      display: flex;
      align-items: center;
      gap: 50px;
      position: relative;
      z-index: 2;
    }
    
    .visa-payout-content {
      flex: 1;
    }
    
    .visa-payout-title {
      font-size: 2.8rem;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }
    
    .visa-payout-subtitle {
      font-size: 1.2rem;
      opacity: 0.9;
      margin-bottom: 2.5rem;
      max-width: 500px;
    }
    
    .visa-payout-cards {
      flex: 1;
      position: relative;
      height: 300px;
    }
    
    .floating-card {
      position: absolute;
      width: 300px;
      height: 180px;
      border-radius: 15px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      transition: all 0.5s ease;
      background: linear-gradient(45deg, #1A237E, #283593);
    }
    
    .floating-card.visa {
      top: 0;
      left: 0;
      z-index: 2;
    }
    
    .floating-card.mastercard {
      bottom: 0;
      right: 0;
      background: linear-gradient(45deg, #E53935, #D81B60);
    }
    
    .visa-payout-cards:hover .floating-card.visa {
      transform: translate(-10px, -10px) rotate(-5deg);
    }
    
    .visa-payout-cards:hover .floating-card.mastercard {
      transform: translate(10px, 10px) rotate(5deg);
    }
    
    .card-chip {
      width: 40px;
      height: 30px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 5px;
    }
    
    .card-number {
      font-family: 'Courier New', monospace;
      font-size: 1.1rem;
      letter-spacing: 2px;
    }
    
    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .card-expiry {
      font-size: 0.9rem;
    }
    
    .card-logo img {
      height: 30px;
    }
    
    /* Features Section */
    .features-section {
      padding: 100px 0;
      background: #F8FAFF;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .feature-card {
      background: white;
      border-radius: var(--radius);
      padding: 40px 30px;
      text-align: center;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 82, 212, 0.1);
    }
    
    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      color: var(--primary);
      background: rgba(67, 100, 247, 0.1);
      border-radius: 50%;
    }
    
    .feature-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
    }
    
    /* App Download Section */
    .app-download-section {
      padding: 120px 0;
      background: white;
      position: relative;
      overflow: hidden;
    }
    
    .app-download-container {
      display: flex;
      align-items: center;
      gap: 50px;
    }
    
    .app-download-content {
      flex: 1;
    }
    
    .app-download-title {
      font-size: 2.8rem;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }
    
    .app-download-subtitle {
      font-size: 1.2rem;
      color: #718096;
      margin-bottom: 2.5rem;
      max-width: 500px;
    }
    
    .download-buttons {
      display: flex;
      gap: 20px;
      margin-top: 30px;
    }
    
    .download-btn {
      display: flex;
      align-items: center;
      padding: 12px 20px;
      border-radius: 10px;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .download-btn.apple {
      background: #000;
      color: white;
    }
    
    .download-btn.google {
      background: white;
      color: #000;
      border: 1px solid #E2E8F0;
    }
    
    .download-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .btn-icon {
      margin-right: 12px;
      font-size: 24px;
    }
    
    .btn-text {
      display: flex;
      flex-direction: column;
      text-align: left;
    }
    
    .btn-text span {
      font-size: 0.8rem;
      opacity: 0.8;
    }
    
    .btn-text strong {
      font-size: 1.1rem;
    }
    
    .app-mockup {
      flex: 1;
      position: relative;
      text-align: center;
    }
    
    .app-mockup img {
      max-width: 600px;
      border-radius: 30px;
      box-shadow: 0 30px 60px rgba(0, 82, 212, 0.2);
      transform: perspective(1000px) rotateY(-15deg);
      transition: var(--transition);
    }
    
    .app-mockup:hover img {
      transform: perspective(1000px) rotateY(-5deg);
    }
    
    /* Partners Section */
    .partners-section {
      padding: 80px 0;
      background: #F8FAFF;
    }
    
    .partners-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 50px;
    }
    
    .partner-logo {
      height: 60px;
      opacity: 0.6;
      transition: var(--transition);
      filter: grayscale(100%);
    }
    
    .partner-logo:hover {
      opacity: 1;
      filter: grayscale(0%);
      transform: scale(1.1);
    }
    
    /* How It Works Section */
    .how-it-works-section {
      padding: 100px 0;
      background: white;
    }
    
    .steps-container {
      display: flex;
      justify-content: center;
      margin-top: 50px;
      position: relative;
    }
    
    .steps-line {
      position: absolute;
      height: 3px;
      width: 70%;
      background: #E2E8F0;
      top: 40px;
      left: 15%;
      z-index: 1;
    }
    
    .steps-line:after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 0;
      background: var(--gradient);
      transition: all 1.5s ease;
    }
    
    .steps-container.animate .steps-line:after {
      width: 100%;
    }
    
    .step {
      text-align: center;
      padding: 0 30px;
      position: relative;
      z-index: 2;
    }
    
    .step-number {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: white;
      border: 3px solid #E2E8F0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      font-weight: 700;
      margin: 0 auto 20px;
      color: #CBD5E0;
      transition: var(--transition);
    }
    
    .step.active .step-number {
      border-color: var(--primary);
      color: var(--primary);
      box-shadow: 0 10px 20px rgba(67, 100, 247, 0.2);
    }
    
    .step h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
    }
    
    /* Countries Section */
    .countries-section {
      padding: 100px 0;
      background: #F8FAFF;
    }
    
    .countries-grid {
     display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 50px;
    }
    
    .country-card {
     background: white;
  border-radius: var(--radius);
  padding: 5px 5px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.31);
  position: relative;
  overflow: hidden;
    }
    
    .country-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 82, 212, 0.1);
    }
    
    .country-flag {
  font-size: 2rem;
  margin-bottom: 0px;
    }
    
    .country-name {
      font-size: 13px;
      font-weight: 500;
    }
    
    /* Footer */
    .footer {
      background: var(--dark);
      color: white;
      padding: 80px 0 30px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 60px;
    }
    
    .footer-logo {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .footer-about p {
      opacity: 0.8;
      margin-bottom: 20px;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
    }
    
    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    
    .social-link:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .footer-links h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-links h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--gradient);
    }
    
    .footer-links ul {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: var(--transition);
    }
    
    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
    }
    
    /* Animations */
    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-20px);
      }
    }
    
    .floating {
      animation: float 6s ease-in-out infinite;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .section-title {
        font-size: 2rem;
      }
      
      .hero-title {
        font-size: 2.8rem;
      }
      
      .exchange-container,
      .visa-payout-container,
      .app-download-container {
        flex-direction: column;
      }
      
      .exchange-image,
      .app-mockup {
        order: -1;
        margin-bottom: 50px;
      }
    }
    
    @media (max-width: 768px) {
      .section-padding {
        padding: 70px 0;
      }
      
      .hero-title {
        font-size: 2.2rem;
      }
      
      .download-buttons {
        flex-direction: column;
      }
      
      .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
      }
      
      .steps-line {
        width: 3px;
        height: 80%;
        top: 10%;
        left: 50%;
      }
    }
  /* World Map Container */
.exchange-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 82, 212, 0.2);
}

.world-map-container {
  position: relative;
  height: 500px;
  background: linear-gradient(145deg, #f0f5ff, #e6f0ff);
}

/* SVG World Map */
.world-map {
  position: absolute;
  width: 100%;
  height: 100%;
}

.world-map svg {
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.continent-path {
  fill: rgba(67, 100, 247, 0.1);
  stroke: rgba(67, 100, 247, 0.3);
  stroke-width: 0.5;
  transition: all 0.3s ease;
}

.continent-path:hover {
  fill: rgba(67, 100, 247, 0.15);
}

/* Continent Overlay */
.continents-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.continent {
  position: absolute;
  width: 120px;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  z-index: 3;
  pointer-events: auto;
  transition: all 0.3s ease;
  transform: scale(0.95);
  opacity: 0.9;
}

.continent:hover {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 10px 25px rgba(0, 82, 212, 0.15);
}

.continent-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(67, 100, 247, 0.1) 0%, transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.continent:hover .continent-glow {
  opacity: 1;
}

.continent-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.continent-info p {
  font-size: 12px;
  color: #64748b;
}

/* Continent Positions */
.north-america {
  top: -2%;
  left: 10%;
}

.south-america {
top: 45%;
  left: 20%;
}

.europe {
  top: 8%;
  left: 40%;
}

.africa {
  top: 62%;
  left: 44%;
}

.asia {
top: 25%;
  left: 70%;
}

.oceania {
 top: 81%;
 left: 75%;
}

/* Map Points */
.map-point {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4364F7;
  transform: translate(-50%, -50%);
  z-index: 4;
  cursor: pointer;
}

.point-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(67, 100, 247, 0.4) 0%, transparent 70%);
  animation: pulse-glow 3s infinite;
}

.pulse-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(67, 100, 247, 0.4);
  animation: pulse 2s infinite;
  top: 0;
  left: 0;
}

.point-label {
  position: absolute;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-point:hover .point-label {
  opacity: 1;
}

/* Connection Lines */
.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(to right, 
    rgba(67, 100, 247, 0.2), 
    rgba(67, 100, 247, 0.8), 
    rgba(67, 100, 247, 0.2));
  transform-origin: left center;
  z-index: 3;
  animation: connection-pulse 3s infinite;
}

.ny-london {
  top: 25%;
  left: 20%;
  width: 28%;
  transform: rotate(10deg);
}

.london-hk {
  top: 30%;
  left: 48%;
  width: 24%;
  transform: rotate(15deg);
  animation-delay: 0.5s;
}

.hk-sydney {
  top: 45%;
  left: 72%;
  width: 13%;
  transform: rotate(70deg);
  animation-delay: 1s;
}

.sydney-sp {
  top: 70%;
  left: 85%;
  width: 45%;
  transform: rotate(-50deg);
  animation-delay: 1.5s;
}

.sp-lagos {
  top: 70%;
  left: 30%;
  width: 22%;
  transform: rotate(70deg);
  animation-delay: 2s;
}

.lagos-ny {
  top: 60%;
  left: 52%;
  width: 32%;
  transform: rotate(-50deg);
  animation-delay: 2.5s;
}

/* Transfer Stats */
.transfer-stats {
  display: flex;
  justify-content: space-around;
  background: white;
  border-radius: 0 0 24px 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(67, 100, 247, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, #0052D4, #4364F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes connection-pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .world-map-container {
    height: 400px;
  }
  
  .continent {
    width: 100px;
    padding: 10px;
  }
  
  .continent-info h4 {
    font-size: 12px;
  }
  
  .continent-info p {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .world-map-container {
    height: 300px;
  }
  
  .transfer-stats {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .stat-item {
    padding: 10px 0;
  }
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d5f8e;
  margin-bottom: 0.5rem;
}

 .values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    position: relative;
    overflow: hidden;
  }
  
  .values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }
  
  .section-title:after {
    content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #9b59b6);
  bottom: -10px;
  left: 50%;
  border-radius: 3px;
  }
  
  .section-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .scrolling-partners-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
  }
  
  .scrolling-partners {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200% + 40px);
  }
  
  .value-wrapper {
    display: flex;
    justify-content: space-around;
    width: 110%;
    gap: 20px;
  }
  
  .value-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .value-card:hover .glow-effect {
    opacity: 1;
  }
  
  .value_icon {
   border-radius: 10px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  }
  
  .value_img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.3s ease;
  }
  
  .value-card:hover .value_img {
    filter: grayscale(0%);
    transform: scale(1.1);
  }
  
  .glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(155, 89, 182, 0.1) 70%, transparent 90%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .value-title {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
  }
  
  .value-card:hover .value-title {
    color: #3498db;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .value-wrapper {
      flex-wrap: wrap;
      gap: 15px;
    }
    
    .value-card {
      width: calc(50% - 30px);
      margin-bottom: 20px;
    }
    
    .scrolling-partners {
      animation: scroll 60s linear infinite;
    }
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .value-card {
      width: 100%;
      max-width: 250px;
    }
  }
.how-it-works-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 60px;
}

.timeline-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline-progress {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  z-index: 1;
}

.timeline-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 3px;
  animation: progress-animation 2s ease-in-out forwards;
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-step {
  flex: 1;
  text-align: center;
  padding: 0 15px;
}

.step-icon {
  margin-bottom: 20px;
}

.icon-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.icon-circle:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.icon-circle i {
  font-size: 40px;
  color: #3498db;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.step-content h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.step-content p {
  color: #7f8c8d;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Animation */
@keyframes progress-animation {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-steps {
    flex-direction: column;
  }
  
  .timeline-step {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    text-align: left;
  }
  
  .step-icon {
    margin-right: 20px;
    margin-bottom: 0;
    min-width: 80px;
  }
  
  .icon-circle {
    width: 80px;
    height: 80px;
  }
  
  .timeline-progress {
    display: none;
  }
}



.how-it-works-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(52, 152, 219, 0.03)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
  background-size: cover;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #7f8c8d;
  margin-bottom: 70px;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.process-flow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}

.process-card {
  flex: 0 0 20%;
  text-align: center;
  position: relative;
  padding-bottom: 40px;
}

.card-illustration {
  position: relative;
  margin-bottom: 25px;
}

.illustration-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #3498db, #5dade2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.illustration-circle:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(52, 152, 219, 0.4);
}

.step-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}

.connecting-line {
  position: absolute;
  top: 50px;
  left: calc(100% - 20px);
  width: calc(100% - 60px);
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  z-index: -1;
}

.process-card:last-child .connecting-line {
  display: none;
}

.card-content h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 12px;
  font-weight: 600;
}

.card-content p {
  color: #7f8c8d;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 15px;
}

.cta-section {
  text-align: center;
  margin-top: 50px;
}

.cta-button {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(46, 204, 113, 0.4);
}

/* Animations */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(52, 152, 219, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
}

.pulse-grow {
  animation: pulseGrow 2s infinite;
}

@keyframes pulseGrow {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .process-card {
    flex: 0 0 50%;
    margin-bottom: 50px;
  }
  
  .connecting-line {
    display: none;
  }
}

@media (max-width: 576px) {
  .process-card {
    flex: 0 0 100%;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
}


/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(67, 100, 247, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-rating {
  color: #FFD700;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.author-info h4 {
  margin: 0;
  font-size: 16px;
}

.author-info span {
  font-size: 14px;
  color: #777;
}

.testimonial-bg-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%234366F7" opacity="0.05"><circle cx="25" cy="25" r="10"/><circle cx="75" cy="25" r="10"/><circle cx="25" cy="75" r="10"/><circle cx="75" cy="75" r="10"/></svg>');
  z-index: 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.trust-badge {
  height: 50px;
}

.trust-badge img {
  height: 100%;
  object-fit: contain;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

.faq-answer ul {
  padding-left: 20px;
  margin: 10px 0;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-cta {
  text-align: center;
  margin-top: 50px;
}

.faq-cta p {
  color: #666;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-question h3 {
    font-size: 16px;
    padding-right: 15px;
  }
}


  
   .services-hero {
            background: linear-gradient(135deg, #4366F7 0%, #3A5BD9 100%);
            color: white;
            text-align: center;
            padding: 100px 20px;
        }

        .services-hero .hero-title {
            font-size: 48px;
            margin: 0 0 20px;
        }

        .services-hero .hero-subtitle {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-section {
            padding: 80px 0;
        }

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

        .service-card {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            font-size: 40px;
            color: #4366F7;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 24px;
            margin-top: 0;
            margin-bottom: 15px;
            color: #333;
        }

        .service-card p {
            font-size: 16px;
            color: #666;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }
        
        .feature-list li {
            background: #eef2ff;
            padding: 12px 20px;
            border-radius: 8px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .feature-list li i {
            color: #4366F7;
            margin-right: 15px;
        }

        .cta-section {
            text-align: center;
            padding: 80px 20px;
            background: #f0f4ff;
        }

        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease-in-out;
        }

        .btn-primary {
            background-color: #4366F7;
            color: white;
        }

        .btn-primary:hover {
            background-color: #3A5BD9;
        }


        /* About Us Page Styles */
.about-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a237e, #283593);
  color: white;
  overflow: hidden;
  text-align: center;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.about-hero .hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-hero .hero-subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Mission Section */
.mission-section {
  padding: 100px 0;
  background-color: #f9f9ff;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-content {
  max-width: 600px;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #555;
}

.mission-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3949ab;
  margin-bottom: 5px;
}

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

/* Globe Animation */
.globe-animation {
  position: relative;
  height: 400px;
}

.globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: conic-gradient(
    #3f51b5, #7986cb, #e8eaf6, #7986cb, #3f51b5
  );
  box-shadow: 0 0 40px rgba(63, 81, 181, 0.2);
}

.transfer-path {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 150px;
  background-color: #3f51b5;
  transform-origin: top center;
  animation: rotate 15s linear infinite;
  opacity: 0.7;
}

.transfer-path:nth-child(2) {
  transform: rotate(120deg);
  animation-delay: -5s;
}

.transfer-path:nth-child(3) {
  transform: rotate(240deg);
  animation-delay: -10s;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Timeline Section */
.timeline-section {
  padding: 100px 0;
  background-color: white;
}

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

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #e0e0e0;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}

.timeline-year {
  width: 120px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3949ab;
  align-self: center;
}

.timeline-content {
  width: calc(50% - 80px);
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  position: relative;
}

.timeline-content h3 {
  margin-top: 0;
  color: #1a237e;
}

.timeline-content p {
  color: #555;
  line-height: 1.6;
}

.timeline-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #3949ab;
  border: 4px solid white;
  box-shadow: 0 0 0 2px #3949ab;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background-color: #f9f9ff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(57, 73, 171, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .photo-overlay {
  opacity: 1;
}

.team-member h3 {
  margin: 15px 0 5px;
  color: #1a237e;
}

.position {
  color: #3949ab;
  font-weight: 500;
  margin-bottom: 15px;
}

.bio {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  color: #3949ab;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #1a237e;
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background-color: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card {
background: #f9f9ff;
  border-radius: 10px;
  padding: 5px 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.value-card:hover {
  background: white;
  box-shadow: 0 15px 30px rgba(57, 73, 171, 0.1);
  transform: translateY(-5px);
  border-color: transparent;
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3949ab, #1a237e);
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.value-card h3 {
  color: #1a237e;
  margin-bottom: 15px;
}

.value-card p {
  color: #555;
  line-height: 1.6;
}

/* CTA Section */
.about-cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #3949ab, #1a237e);
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: #1a237e;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-visual {
    order: -1;
    margin-bottom: 50px;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-year {
    text-align: left;
    margin-bottom: 15px;
    width: auto;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  
  .timeline-dot {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .about-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .mission-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn, .btn-outline {
    width: 100%;
  }
}


  .about-value-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
/* Policy/Service Page Styles */
.policy-hero-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #1a237e, #283593);
}

.policy-hero-section h1 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-shape img {
    width: 100%;
    height: auto;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.policy-content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.policy-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    margin-bottom: 30px;
}

.card-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header h4 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0;
}

.last-updated {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.last-updated i {
    margin-right: 5px;
}

.card-body {
    padding: 30px;
}

.policy-content {
    line-height: 1.8;
    color: #34495e;
    font-size: 1rem;
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.policy-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
}

.policy-content h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul, 
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content ul {
    list-style-type: disc;
}

.policy-content ol {
    list-style-type: decimal;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-content a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.toc-wrapper {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin-top: 40px;
}

.toc-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.toc-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.toc-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.toc-list li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
}

.toc-link {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.toc-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.card-footer {
    padding: 15px 30px;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.policy-version small {
    font-size: 0.8rem;
}

.btn-outline-primary {
    border-color: #3498db;
    color: #3498db;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.help-card .card {
    border-radius: 10px;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.help-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.help-icon {
    color: #3498db;
    font-size: 2.5rem;
}

.help-card h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

.help-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .policy-hero-section {
        padding: 80px 0 60px;
    }
    
    .policy-hero-section h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .policy-hero-section {
        padding: 70px 0 50px;
    }
    
    .policy-hero-section h1 {
        font-size: 2rem;
    }
    
    .card-header, 
    .card-body, 
    .card-footer {
        padding: 20px;
    }
    
    .help-card .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .help-icon {
        margin-bottom: 15px;
        margin-right: 0 !important;
        font-size: 2rem;
    }
    
    .policy-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .policy-version {
        order: 2;
    }
}

@media (max-width: 575.98px) {
    .policy-hero-section h1 {
        font-size: 1.8rem;
    }
    
    .policy-content h2 {
        font-size: 1.3rem;
    }
    
    .policy-content h3 {
        font-size: 1.1rem;
    }
    
    .toc-wrapper {
        padding: 15px;
    }
}

/* Security Page Specific Styles */
.security-hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  color: white;
  overflow: hidden;
}

.security-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../images/security-bg.png') no-repeat center right;
  background-size: contain;
  opacity: 0.2;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.security-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.security-card:hover {
  transform: translateY(-5px);
}

.security-icon {
  font-size: 2.5rem;
  color: #1565c0;
  margin-bottom: 20px;
}

/* Secure Transfers Section */
.transfer-security {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.transfer-step {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.transfer-step:hover {
  transform: translateY(-5px);
}

.transfer-step i {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 15px;
}

/* Fraud Protection */
.fraud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.fraud-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  text-align: center;
}

.fraud-card:hover {
  transform: translateY(-5px);
}

.fraud-card i {
  font-size: 2.2rem;
  color: #1e88e5;
  margin-bottom: 20px;
}

/* Data Privacy Section */
.privacy-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}

.privacy-text {
  flex: 1;
  min-width: 300px;
}

.privacy-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.privacy-text li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.privacy-text i {
  color: #43a047;
  margin-right: 10px;
}

.privacy-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.privacy-image img {
  max-width: 100%;
  border-radius: 12px;
}

/* FAQ Section */
.security-faq .faq-container {
  max-width: 800px;
  margin: 40px auto;
}


/* CTA Section */
.security-cta .cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
   background: linear-gradient(135deg, #4366F7 0%, #3A5BD9 100%);
  color: white;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  gap: 40px;
}

.security-cta .cta-content {
  flex: 1;
  min-width: 280px;
}

.security-cta .cta-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.security-cta .cta-image img {
  max-width: 100%;
  border-radius: 12px;
}


.compliance-hero {
  position: relative;
  text-align: center;
  padding: 6rem 1rem;
  color: #fff;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  overflow: hidden;
  margin-top: 40px;
}

.compliance-hero .hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.compliance-hero .hero-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #e9ecef;
}

/* ================================
   Compliance Overview
================================ */
.compliance-overview {
  padding: 4rem 0;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.compliance-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.compliance-card:hover {
  transform: translateY(-5px);
}

.compliance-card i {
  font-size: 2rem;
  color: #0072ff;
  margin-bottom: 1rem;
}

.compliance-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* ================================
   Regulatory Logos
================================ */
.regulatory-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.regulatory-item {
  text-align: center;
  flex: 1 1 250px;
}

.regulatory-item img {
  max-width: 140px;
  margin-bottom: 1rem;
}

/* ================================
   AML Policy Section
================================ */
.aml-policy-section {
  padding: 4rem 0;
  background: #f1f5f9;
}

.policy-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.policy-content {
  flex: 1 1 55%;
}

.policy-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.policy-item {
  margin-bottom: 1.5rem;
}

.policy-item h3 {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0072ff;
}

.policy-visual {
  flex: 1 1 40%;
  position: relative;
}

.policy-visual img {
  max-width: 100%;
  border-radius: 1rem;
}

/* ================================
   KYC Section
================================ */
.kyc-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.kyc-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  background: #0072ff;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kyc-note {
  background: #e9f5ff;
  padding: 1rem 1.5rem;
  border-left: 4px solid #0072ff;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.5rem;
}

/* ================================
   Data Protection Section
================================ */
.protection-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.protection-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.protection-card i {
  font-size: 2rem;
  color: #00c6ff;
  margin-bottom: 1rem;
}

.gdpr-compliance {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  background: #f9fafc;
  padding: 2rem;
  border-radius: 1rem;
}

.gdpr-badge img {
  max-width: 120px;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #0072ff;
  color: #fff;
}

.btn-outline {
  border: 2px solid #0072ff;
  color: #0072ff;
}

.btn:hover {
  opacity: 0.85;
}

/* ================================
   Risk Management Section
================================ */
.risk-diagram {
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 3rem 0;
  gap: 2rem;
}

.risk-item {
  flex: 1 1 200px;
  background: #fff;
  padding: 1.2rem;
  border-radius: 0.8rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.risk-icon i {
  font-size: 1.5rem;
  color: #0072ff;
  margin-bottom: 0.5rem;
}

.risk-center .center-circle {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 2rem;
  border-radius: 50%;
  text-align: center;
}



/* ================================
   CTA Section
================================ */
.compliance-cta {
  padding: 4rem 0;
            background: linear-gradient(135deg, #4366F7 0%, #3A5BD9 100%);
  color: #fff;
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.cta-content {
  flex: 1 1 50%;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-image {
  flex: 1 1 40%;
}

.cta-image img {
  border-radius: 1rem;
}


/* ================================
   Cookie Policy Page Styles
================================ */

/* Hero Banner */
.cookie-hero {
  position: relative;
  padding: 6rem 1rem;
            background: linear-gradient(135deg, #4366F7 0%, #3A5BD9 100%);
  color: #fff;
  overflow: hidden;
}

.cookie-hero .hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cookie-hero .hero-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #fdfdfd;
}

.cookie-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/public/frontend/images/cookie-bg.png') no-repeat center/cover;
  opacity: 0.1;
  z-index: 0;
}

/* Section Titles */
.section-header {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d3557;
}

.section-subtitle {
  font-size: 1rem;
  color: #6c757d;
  max-width: 650px;
  margin: 0.5rem auto 0;
}

/* Cookie Explanation */
.cookie-explanation {
  padding: 4rem 0;
}

.cookie-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cookie-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.cookie-card:hover {
  transform: translateY(-5px);
}

.cookie-icon i {
  font-size: 2rem;
  color: #4366F7;
  margin-bottom: 1rem;
}

/* Types of Cookies */
.cookie-types {
  background: #f9fafc;
  padding: 4rem 0;
}

.types-table {
  overflow-x: auto;
}

.types-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
}

.types-table th,
.types-table td {
  padding: 1rem;
  border: 1px solid #dee2e6;
  text-align: left;
}

.types-table th {
  background: #4366F7;
  color: #fff;
}

/* Cookie Management */
.cookie-management {
  padding: 4rem 0;
}

.management-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.option-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px);
}

.option-icon i {
  font-size: 2rem;
  color: #4366F7;
  margin-bottom: 1rem;
}

/* Third-Party Cookies */
.third-party-cookies {
  background: #f1f5f9;
  padding: 4rem 0;
}

.third-party-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.logo-item {
  text-align: center;
  flex: 1 1 200px;
}

.logo-item img {
  max-width: 120px;
  margin-bottom: 0.8rem;
}

/* Policy Updates */
.policy-updates {
  padding: 4rem 0;
}

.update-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.update-icon i {
  font-size: 2rem;
  color: #4366F7;
  margin-bottom: 1rem;
}

/* Contact Section */
.cookie-contact {
  padding: 4rem 0;
  background: linear-gradient(135deg, #4366F7, #3A5BD9);
  color: #fff;
}

.contact-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}

.contact-methods {
  margin: 1rem 0;
}

.contact-methods p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.contact-methods i {
  margin-right: 0.5rem;
  color: #fff;
}

/* ===== Fees Page Styles ===== */

.fees-hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  color: white;
  overflow: hidden;
  text-align: center;
}

.fees-hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: url('../images/fees-bg.png') no-repeat center right;
  background-size: contain;
  opacity: 0.15;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.fees-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform .3s ease;
  text-align: center;
}
.fees-card:hover { transform: translateY(-5px); }

.fees-icon {
  font-size: 2.5rem;
  color: #1976d2;
  margin-bottom: 15px;
}

/* Steps */
.fees-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.fees-step {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
}
.fees-step i {
  font-size: 2rem;
  color: #1976d2;
  margin-bottom: 15px;
}

/* FAQ */
.fees-faq .faq-container {
  margin-top: 30px;
}
.fees-faq .faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 0;
}
.fees-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.fees-faq .faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
}

/* CTA */
.fees-cta .cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #f9fafb;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.fees-cta .cta-content {
  flex: 1;
}
.fees-cta .cta-image {
  flex: 1;
}



.help-hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  color: white;
  overflow: hidden;
  text-align: center;
}

.help-hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: url('../images/fees-bg.png') no-repeat center right;
  background-size: contain;
  opacity: 0.15;
}

.help-section {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.help-section h2 {
  font-size: 1.4rem;
  color: #0d47a1;
  margin-bottom: 12px;
}

.help-section p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 8px;
}

/* ========== FAQ List ========== */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.faq-list li::before {
  content: "❓";
  position: absolute;
  left: 0;
  color: #0d47a1;
}

/* ========== Contact Box ========== */
.contact-box {
  background: #e3f2fd;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
}

.contact-box h3 {
  font-size: 1.2rem;
  color: #0d47a1;
  margin-bottom: 10px;
}

.contact-box p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

.contact-box a {
  display: inline-block;
  background: #0d47a1;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-box a:hover {
  background: #1565c0;
}

/* Import Google Fonts for a modern look */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Basic Body and Root Styling */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f7fc; /* A soft, light gray for the background */
}

/* Footer Container Styling */
.footer {
  background-color: #1a237e; /* Deep blue background, representing trust and stability */
  color: #e0e0e0; /* A soft white for contrast */
  padding: 60px 0;
}

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

/* Main Content Grid */
.footer-main-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #3f51b5; /* A subtle separator line */
  padding-bottom: 40px;
}

/* Footer About Section */
.footer-about .footer-logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e3f2fd; /* A lighter blue for the logo */
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #283593; /* Darker blue for social icons */
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #e3f2fd;
  color: #1a237e;
  transform: translateY(-5px); /* A subtle hover effect */
}

/* Footer Links Section */
.footer-links h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e3f2fd;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: #e3f2fd;
}

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

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

.footer-links ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Company Details Section */
.company-details {
  border-bottom: 1px solid #3f51b5;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.company-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e3f2fd;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.company-details h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: #e3f2fd;
}

.company-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .company-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.company-poland, .company-uk {
  background-color: #283593;
  padding: 25px;
  border-radius: 10px;
}

.company-poland h4, .company-uk h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0;
  color: #ffffff;
}

.company-poland ul, .company-uk ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-poland ul li, .company-uk ul li {
  font-size: 0.85rem;
  line-height: 1.8;
}

.company-poland strong, .company-uk strong {
  color: #ffffff;
}

.sic-list {
  list-style-type: disc;
  padding-left: 20px;
}

/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #b0bec5; /* Lighter shade for copyright text */
  margin: 0;
}

/* FontAwesome icon sizing */
.fa-map-marker-alt, .fa-phone-alt {
  font-size: 1rem;
  color: #81d4fa; /* A vibrant light blue */
}

.social-link i {
  font-size: 1.2rem;
}

/* Small adjustments for responsiveness */
@media (max-width: 768px) {
  .footer-main-content {
    grid-template-columns: 1fr;
  }
}


/* Legal Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: #f9fbfd;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.partner-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-header {
    padding: 25px;
    background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partner-header h3 {
    margin: 0;
    font-size: 22px;
}

.partner-logo {
    width: 60px;
    height: 60px;
    background: rgb(0, 0, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.partner-content {
    padding: 25px;
}

.partner-info {
    margin-bottom: 20px;
}

.partner-info p {
    margin: 8px 0;
    color: #555;
    font-size: 15px;
}

.partner-info i {
    margin-right: 10px;
    color: #4a6cf7;
    width: 20px;
    text-align: center;
}

.partner-description {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.partner-expertise {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.partner-expertise li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.partner-expertise i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #4a6cf7;
}

.partner-regulations h4 {
    margin-bottom: 12px;
    color: #333;
}

.regulation-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.regulation-tags span {
    background: #f0f4ff;
    color: #4a6cf7;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.partners-summary {
    margin-top: 50px;
}

.summary-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.summary-card h3 {
    margin-top: 0;
    color: #333;
}

.summary-card p {
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 25px;
}

.partner-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-stats .stat-item {
    text-align: center;
}

.partner-stats .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #4a6cf7;
    margin-bottom: 5px;
}

.partner-stats .stat-label {
    font-size: 14px;
    color: #666;
}

.compliance-hero {
  position: relative;
  background-color: #f0f4f8;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.compliance-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, rgba(240, 244, 248, 0) 70%);
  opacity: 0.8;
  z-index: 0;
}

.compliance-hero .hero-content {
  position: relative;
  z-index: 1;
}

.compliance-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #222;
}

.compliance-hero .hero-subtitle {
  font-size: 1.25rem;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

/*=====================================================================
  Main Sections
  =======================================================================*/
.contact-section,
.compliance-overview,
.regulatory-section,
.aml-policy-section,
.kyc-section,
.data-protection-section,
.risk-management-section,
.compliance-faq,
.compliance-cta {
  padding: 80px 0;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.compliance-card,
.protection-card,
.regulatory-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compliance-card:hover,
.protection-card:hover,
.regulatory-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.compliance-icon,
.protection-icon {
  font-size: 3rem;
  color: #4A90E2;
  margin-bottom: 20px;
}

.compliance-card h3,
.protection-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.compliance-card p,
.protection-card p {
  color: #777;
}

.regulatory-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
}

.regulatory-item img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.regulatory-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.regulatory-item p {
  color: #777;
}

/*=====================================================================
  Policy & KYC Sections
  =======================================================================*/
.aml-policy-section,
.kyc-section,
.data-protection-section {
  background-color: #f9fbfd;
}

.policy-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.policy-content {
  flex: 1;
}

.policy-visual {
  flex: 1;
  position: relative;
  text-align: center;
}

.policy-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-item {
  margin-bottom: 25px;
}

.policy-item h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-item h3 i {
  color: #4CAF50;
}

.kyc-steps {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.kyc-step {
  flex: 1;
  min-width: 250px;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #4A90E2;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.kyc-step h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.kyc-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.kyc-step ul li {
  margin-bottom: 5px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kyc-step ul li i {
  color: #4CAF50;
  font-size: 1rem;
}

.kyc-note {
  background-color: #e3f2fd;
  border-left: 5px solid #4A90E2;
  padding: 20px;
  margin-top: 40px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.kyc-note i {
  color: #4A90E2;
  font-size: 1.5rem;
}

.gdpr-compliance {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.gdpr-badge {
  flex-shrink: 0;
}

.gdpr-badge img {
  max-width: 150px;
}

.gdpr-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.gdpr-content p {
  color: #666;
  margin-bottom: 20px;
}

/*=====================================================================
  Risk Management Section
  =======================================================================*/
.risk-diagram {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  padding: 50px;
}

.risk-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.risk-item .risk-icon {
  font-size: 2.5rem;
  color: #4A90E2;
  margin-bottom: 15px;
  background-color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.risk-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.risk-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.risk-center .center-circle {
  width: 150px;
  height: 150px;
  background-color: #4A90E2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.risk-center .center-circle i {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.risk-center .center-circle span {
  font-weight: 600;
  font-size: 0.9rem;
}

.risk-features {
  display: flex;
  gap: 40px;
  margin-top: 80px;
}

.risk-features .feature {
  flex: 1;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.risk-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #333;
}

.risk-features h3 i {
  color: #4A90E2;
}

.risk-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.risk-features ul li {
  margin-bottom: 10px;
  color: #666;
}

/*=====================================================================
  FAQ & CTA Sections
  =======================================================================*/
.compliance-faq {
  background-color: #f9fbfd;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.faq-question i {
  color: #777;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 0 20px 20px;
}

.faq-answer p {
  color: #555;
  margin: 0;
}

.compliance-cta {
  background-color: #4A90E2;
  color: #fff;
}

.compliance-cta .cta-card {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.compliance-cta .cta-content {
  flex: 1;
}

.compliance-cta .cta-content h2 {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
}

.compliance-cta .cta-content p {
  color: #666;
  margin-bottom: 25px;
}

.compliance-cta .cta-image {
  flex-shrink: 0;
  text-align: center;
}

/*=====================================================================
  Media Queries
  =======================================================================*/
@media (max-width: 992px) {
  .compliance-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .policy-container {
    flex-direction: column;
    text-align: center;
  }
  
  .kyc-steps,
  .risk-features {
    flex-direction: column;
  }
  
  .risk-diagram {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .risk-center {
    display: none;
  }
}

@media (max-width: 768px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .compliance-cta .cta-card {
    flex-direction: column;
    text-align: center;
  }
  
  .compliance-cta .cta-image {
    order: -1;
  }
  
  .gdpr-compliance {
    flex-direction: column;
    text-align: center;
  }
  
  .gdpr-badge {
    margin-bottom: 20px;
  }
}

.journey-flow {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f7faff 0%, #eaf3ff 100%);
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.journey-flow .header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e293b;
  background: linear-gradient(135deg, #3498db, #5dade2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.journey-flow .header p {
  color: #555;
  margin-bottom: 50px;
  font-size: 1.1rem;
}
.flow-diagram {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}
.flow-step {
  min-width: 240px;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  margin: 0 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  flex-shrink: 0;
  position: relative;
  transition: all 0.35s ease;
}
.flow-step:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.flow-step h3 {
  font-size: 1.2rem;
  margin: 18px 0 10px;
  color: #1e293b;
  font-weight: 600;
}
.flow-step p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}
.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto;
  font-size: 28px;
  position: relative;
  animation: pulse 2s infinite;
}
.gradient-bg {
  background: linear-gradient(135deg, #3498db, #5dade2);
}
.badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: #fff;
  color: #5dade2;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.arrow {
  width: 70px;
  height: 2px;
  background: linear-gradient(135deg, #3498db, #5dade2);
  position: relative;
  flex-shrink: 0;
  margin: auto 0;
}
.arrow::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -6px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #5dade2;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(26, 188, 156, 0.5); }
  70% { box-shadow: 0 0 0 25px rgba(26, 188, 156, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 188, 156, 0); }
}


  /* Regulatory Section */
        .regulatory-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .regulatory-item {
            background: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .regulatory-item img {
            height: 80px;
            margin-bottom: 20px;
        }
        
        .regulatory-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .regulatory-item p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .escalation-info {
            list-style-type: none;
        }
        
        .escalation-info li {
            padding: 8px 0;
            color: var(--text-light);
            display: flex;
            align-items: center;
        }
        
        .escalation-info li i {
            color: var(--primary);
            margin-right: 10px;
            width: 20px;
        }
        
        /* CTA Section */
        .compliance-cta {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: var(--white);
            padding: 80px 0;
        }
        
        .cta-card {
            background: var(--white);
            border-radius: 24px;
            padding: 50px;
            display: flex;
            align-items: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .cta-content {
            flex: 1;
            color: var(--text-dark);
        }
        
        .cta-image {
            flex: 1;
            text-align: right;
        }
        
        .cta-image img {
            max-width: 100%;
            border-radius: 16px;
        }
        
        
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* Training Section */
        .training-section {
            background: var(--white);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .cta-card {
                flex-direction: column;
                text-align: center;
            }
            
            .cta-image {
                margin-top: 30px;
                text-align: center;
            }
            
            .kyc-step {
                flex-direction: column;
                text-align: center;
            }
            
            .step-number {
                margin: 0 auto 20px;
            }
        }
        
        @media (max-width: 768px) {
            .regulatory-logos {
                grid-template-columns: 1fr;
            }
            
            .compliance-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
        }