/* ===== VARIABLES ===== */
:root {
  --primary-blue: #0066ff;
  --primary-dark: #0052cc;
  --primary-light: #4d94ff;
  --secondary-blue: #3366ff;
  --accent-blue: #3399ff;
  --dark-navy: #001a33;
  --light-blue: #e6f2ff;
  --white: #ffffff;
  --gray-light: #f8fafc;
  --gray-medium: #e2e8f0;
  --gray-dark: #64748b;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --shadow-sm: 0 2px 8px rgba(0, 102, 255, 0.08);
  --shadow-md: 0 10px 25px rgba(0, 102, 255, 0.12);
  --shadow-lg: 0 20px 40px rgba(0, 102, 255, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}




/* ALERTS */

/* POP UPS AND OVERLAY */





/* Success Overlay Styles with modern design */
.spop-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  animation: spop-fadeIn 0.4s ease-out;
}

.spop-popup {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  border-radius: 10px;
  width: 95%;
  max-width: 400px;
  padding: 30px 10px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  animation: spop-popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.spop-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.spop-popup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #4f46e5, #3b82f6, #10b981);
}

.spop-success-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
  position: relative;
  animation: spop-iconFloat 3s ease-in-out infinite;
}

.spop-success-icon::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 2px dashed rgba(16, 185, 129, 0.2);
  animation: spop-spin 20s linear infinite;
}

.spop-success-icon i {
  font-size: 40px;
  color: white;
  z-index: 1;
}

.spop-title {
  color: #1e293b;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 800;
}

.spop-message {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 1rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

.spop-ok-button {
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1.2rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
  min-width: 180px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.spop-ok-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.spop-ok-button:active {
  transform: translateY(0);
}

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

.spop-ok-button:hover::after {
  left: 100%;
}

/* Modern Animations */
@keyframes spop-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spop-popIn {
  0% {
    transform: scale(0.7) translateY(20px);
    opacity: 0;
  }

  70% {
    transform: scale(1.05) translateY(-5px);
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes spop-iconFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes spop-spin {
  0% {
    transform: rotate(0deg);
  }

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

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

  .spop-popup {
    padding: 20px 5px;
    border-radius: 10px;
  }

  .spop-title {
    font-size: 1.5rem;
  }

  .spop-success-icon {
    width: 50px;
    height: 50px;
  }

  .spop-success-icon i {
    font-size: 30px;
  }
}

@media (max-width: 480px) {


  .spop-popup {
    padding: 25px 10px;
  }
}




/* Error Overlay Styles */
.epop-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  animation: epop-fadeIn 0.4s ease-out;
}

.epop-popup {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 242, 242, 0.95) 100%);
  border-radius: 10px;
  width: 95%;
  max-width: 400px;
  padding: 30px 10px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(220, 38, 38, 0.2);
  animation: epop-popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.epop-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.epop-popup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.epop-error-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
  position: relative;
  animation: epop-iconFloat 3s ease-in-out infinite;
}

.epop-error-icon::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 2px dashed rgba(220, 38, 38, 0.2);
  animation: epop-spin 20s linear infinite;
}

.epop-error-icon i {
  font-size: 40px;
  color: white;
  z-index: 1;
}

.epop-title {
  color: #1e293b;
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 800;
}

.epop-message {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 1rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

.epop-ok-button {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1.2rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
  min-width: 180px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.epop-ok-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.epop-ok-button:active {
  transform: translateY(0);
}

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

.epop-ok-button:hover::after {
  left: 100%;
}

/* Modern Animations */
@keyframes epop-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes epop-popIn {
  0% {
    transform: scale(0.7) translateY(20px);
    opacity: 0;
  }

  70% {
    transform: scale(1.05) translateY(-5px);
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes epop-iconFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes epop-spin {
  0% {
    transform: rotate(0deg);
  }

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

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


  .epop-popup {
    padding: 20px 5px;
    border-radius: 10px;
  }

  .epop-title {
    font-size: 1.5rem;
  }

  .epop-error-icon {
    width: 50px;
    height: 50px;
  }

  .epop-error-icon i {
    font-size: 30px;
  }
}

@media (max-width: 480px) {


  .epop-popup {
    padding: 25px 10px;
  }
}





/* Identity Confirmation Modal Styles */
.cid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  animation: cid-fadeIn 0.4s ease-out;
}

.cid-popup {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  animation: cid-popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cid-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  z-index: -1;
}

.cid-popup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
}

.cid-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
  position: relative;
}

.cid-icon i {
  font-size: 25px;
  color: white;
}

.cid-title {
  color: #1e293b;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 800;
}

.cid-subtitle {
  color: #64748b;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.5;
}

.cid-form {
  width: 100%;
  margin-bottom: 30px;
}

.cid-input-group {
  margin-bottom: 25px;
  text-align: left;
}

.cid-label {
  display: block;
  margin-bottom: 8px;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
}

.cid-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cid-input {
  width: 100%;
  padding: 16px 20px;
  padding-right: 50px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: white;
  color: #1e293b;
}

.cid-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.cid-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.cid-toggle-password {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cid-toggle-password:hover {
  color: #2563eb;
}

.cid-toggle-password i {
  font-size: 1.2rem;
}

.cid-error {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 8px;
  display: none;
  text-align: left;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cid-forgot-link {
  display: block;
  text-align: right;
  margin-top: 10px;
  color: #2563eb;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cid-forgot-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.cid-button-group {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.cid-button {
  flex: 1;
  padding: 10px 24px;
  font-size: 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
}

.cid-cancel-button {
  background: #f1f5f9;
  color: #64748b;
}

.cid-cancel-button:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.cid-confirm-button {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.cid-confirm-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.cid-confirm-button:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cid-success-message {
  display: none;
  background: #d1fae5;
  color: #065f46;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

/* Modern Animations */
@keyframes cid-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes cid-popIn {
  0% {
    transform: scale(0.7) translateY(20px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes cid-shake {

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

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

/* Responsive design */
@media (max-width: 768px) {
 
  .cid-popup {
    padding: 30px 25px;
    border-radius: 24px;
  }

  .cid-title {
    font-size: 1.6rem;
  }

  .cid-button-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  
  .cid-popup {
    padding: 25px 20px;
  }
}





/* POP UPS AND OVERLAY */





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

/* ===== NAVIGATION (Same as before) ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 102, 255, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.nav-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gray-light), var(--gray-medium));
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.logo-icon img {
  width: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark-navy);
  letter-spacing: -0.5px;
}

.logo-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-blue);
  background: var(--light-blue);
  padding: 2px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
}

.nav-link.active {
  background: var(--light-blue);
  color: var(--primary-blue);
  font-weight: 600;
}

.nav-link i {
  font-size: 0.9rem;
  width: 16px;
}

/* CTA Buttons */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gray-medium);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}



/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-navy);
  transition: var(--transition);
  border-radius: 1px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark-navy);
}

.close-mobile-nav {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-menu {
  flex: 1;
  list-style: none;
  padding: 1.5rem 0;
  overflow-y: auto;
}

.mobile-nav-menu li {
  margin-bottom: 0.5rem;
}

.mobile-nav-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 1.5rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  background: var(--light-blue);
  color: var(--primary-blue);
}

.mobile-nav-menu a i {
  width: 20px;
  text-align: center;
}

.nav-divider {
  height: 1px;
  background: var(--gray-medium);
  margin: 1rem 1.5rem;
}

.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-medium);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-mobile-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-mobile-secondary {
  background: transparent;
  border: 1px solid var(--gray-medium);
  color: var(--text-dark);
  padding: 14px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}


@media(max-width: 1130px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}





/* ===== HERO CAROUSEL WITH BACKGROUND IMAGES ===== */
/* ===== HERO CAROUSEL WITH BACKGROUND IMAGES ===== */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 80px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  /* This prevents non-active slides from blocking clicks */
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
  /* Active slide should be above others */
  pointer-events: auto;
  /* Allow interactions with active slide */
}

.slide-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
  z-index: 2;
}

.slide-content {
  max-width: 800px;
  color: white;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.8s ease-out 0.5s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.slide-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 1.1s both;
}

.btn-hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.hero-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 10px;
  transition: var(--transition);
  border-radius: 8px;
}

.hero-link:hover {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
}

.hero-link i:last-child {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.hero-link:hover i:last-child {
  transform: translateX(5px);
}

.slide-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease-out 1.3s both;
}

.stat {
  flex: 1;
  min-width: 150px;
}

.stat h4 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-light);
}

.stat p {
  font-size: 0.95rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  z-index: 10;
  /* Make sure controls are above slides */
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: white;
  font-size: 1.2rem;
  z-index: 11;
  /* Higher than slides */
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.carousel-indicators {
  display: flex;
  gap: 16px;
  z-index: 11;
  /* Higher than slides */
}

.indicator {
  position: relative;
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: var(--transition);
}

.indicator.active {
  background: rgba(255, 255, 255, 0.5);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.4);
}

.indicator-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: white;
  border-radius: 2px;
  transition: width 5s linear;
}

.indicator.active .indicator-progress {
  animation: progress 5s linear;
}

@keyframes progress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  z-index: 10;
  animation: float 3s infinite ease-in-out;
}

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

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

@keyframes scroll {
  0% {
    top: 10px;
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.scroll-down span {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

@media (max-width: 800px) {
  .hero-carousel {
    height: 80vh;
    min-height: 500px;
  }

  .slide-title {
    font-size: 2.2rem;
  }

  .slide-description {
    font-size: 1.1rem;
  }

  .carousel-controls {
    bottom: 40px;
    gap: 1.5rem;
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
  }

  .indicator {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 70vh;
    min-height: 400px;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slide-description {
    font-size: 1rem;
  }

  .slide-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .carousel-controls {
    bottom: 30px;
    gap: 1rem;
  }
}













/* ===== ADVANCED HERO SECTION ===== */
.advanced-hero {
  position: relative;
  min-height: 100vh;
  margin-top: 80px;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #001a33 0%, #00264d 50%, #003366 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(51, 153, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(0, 82, 204, 0.08) 0%, transparent 50%);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(51, 153, 255, 0.05));
  backdrop-filter: blur(10px);
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 10s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  top: 20%;
  right: 20%;
  animation-delay: 15s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Content */
.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  position: relative;
}

.badge-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #4d94ff;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.highlight {
  position: relative;
  display: inline-block;
  margin: 0.5rem 0;
}

.highlight-text {
  position: relative;
  z-index: 2;
  color: #4d94ff;
  text-shadow: 0 0 20px rgba(77, 148, 255, 0.5);
}

.highlight-underline {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(77, 148, 255, 0.3), transparent);
  border-radius: 4px;
  z-index: 1;
  animation: underlineSlide 3s infinite;
}

@keyframes underlineSlide {

  0%,
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }

  50% {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 500px;
}

/* Interactive Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card.interactive {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.stat-card.interactive:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(77, 148, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(77, 148, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d94ff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.stat-trend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.stat-trend.up {
  color: #00ff88;
}

.stat-trend.secure {
  color: #4d94ff;
}

.stat-trend.fast {
  color: #ffcc00;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.btn-primary-glow {
  position: relative;
  background: linear-gradient(135deg, #0066ff, #3399ff);
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

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

.btn-secondary-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  border-color: #4d94ff;
  background: rgba(77, 148, 255, 0.1);
  transform: translateY(-2px);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.trust-badge i {
  color: #00ff88;
}

/* Partners */
.partners {
  margin-top: 3rem;
}

.partners-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.partner-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.logo-item i {
  color: #4d94ff;
}

/* Right Visual */
.hero-visual {
  position: relative;
}

.dashboard-preview {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: floatCard 6s infinite ease-in-out;
}

@keyframes floatCard {

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

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

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.dashboard-title i {
  color: #4d94ff;
}

.dashboard-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.dashboard-badge i {
  font-size: 0.6rem;
  animation: pulse 2s infinite;
}

.dashboard-chart {
  margin-bottom: 2rem;
}

.chart-container {
  height: 200px;
  margin-bottom: 1rem;
}

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

.chart-stat h4 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.chart-stat p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.investment-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.investment-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.investment-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.investment-icon.tech {
  background: rgba(77, 148, 255, 0.1);
  color: #4d94ff;
}

.investment-icon.crypto {
  background: rgba(255, 204, 0, 0.1);
  color: #ffcc00;
}

.investment-info h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.investment-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.investment-value {
  margin-left: auto;
  text-align: right;
}

.investment-value h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.value-trend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
}

.value-trend.up {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
}

.quick-actions {
  display: flex;
  gap: 1rem;
}

.quick-btn {
  flex: 1;
  background: rgba(77, 148, 255, 0.1);
  border: 1px solid rgba(77, 148, 255, 0.2);
  color: #4d94ff;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.quick-btn:hover {
  background: rgba(77, 148, 255, 0.2);
  transform: translateY(-2px);
}

/* Floating Cards */
.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  width: 180px;
  animation: floatCard 6s infinite ease-in-out;
  pointer-events: all;
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px) scale(1.05);
}

.card-1 {
  top: -20px;
  left: -100px;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: -80px;
  animation-delay: 2s;
}

.card-3 {
  bottom: -20px;
  left: -60px;
  animation-delay: 4s;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(77, 148, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d94ff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.card-content h5 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.card-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Advanced Scroll Indicator */
.scroll-indicator-advanced {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 10;
  color: white;
}

.scroll-indicator-advanced .mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator-advanced .wheel {
  width: 4px;
  height: 8px;
  background: #4d94ff;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

.scroll-indicator-advanced p {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(180deg, transparent, #4d94ff, transparent);
  animation: scrollProgress 2s infinite;
}

@keyframes scrollProgress {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;

  }

  
}

@media (max-width: 768px) {
  .advanced-hero {
    padding: 100px 0 60px;
  }

  .hero-container {
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-logos {
    gap: 1rem;
  }

  .logo-item {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .dashboard-preview {
    padding: 10px;
  }

  .investment-cards {
    grid-template-columns: 1fr;
  }

  .card-1 {
    display: none;
  }

  .card-2 {
    top: 30%;
    right: -80px;

  }

  .card-3 {
    left: -20px;
    bottom: -50px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-primary-glow,
  .btn-secondary-outline {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .dashboard-preview {
    padding: 10px;
    width: 100%;
  }

  .quick-actions {
    flex-direction: column;
  }
}


/* ============================================= */
/* PERFORMANCE STATS SECTION - UNIQUE CLASS NAMES */
/* ============================================= */

.performance-stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.performance-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(51, 153, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.1);
  color: #0066ff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #001a33;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid-animated {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.stat-item-animated {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item-animated:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
  border-color: #c7d2fe;
}

.stat-item-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0066ff, #3399ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item-animated:hover::before {
  opacity: 1;
}

/* Icon Wrapper */
.stat-icon-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.stat-icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e6f2ff, #d1e7ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.1);
}

.stat-trend-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 255, 136, 0.1);
  color: #00b368;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.stat-trend-badge .fa-arrow-down {
  color: #ff4d4d;
}

/* Stat Content */
.stat-content-animated {
  position: relative;
}

.stat-number-animated {
  font-size: 3rem;
  font-weight: 800;
  color: #001a33;
  margin-bottom: 5px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0066ff;
  margin-left: 5px;
}

.stat-desc-animated {
  color: #64748b;
  font-size: 0.95rem;
  margin: 15px 0;
  line-height: 1.5;
}

/* Progress Bar */
.stat-progress {
  height: 8px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 20px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0066ff, #3399ff);
  border-radius: 4px;
  position: relative;
  transition: width 1.5s ease-in-out;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Performance Preview */
.performance-preview {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.preview-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #001a33;
}

.preview-badge {
  background: rgba(0, 102, 255, 0.1);
  color: #0066ff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.preview-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.chart-preview {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.chart-bars {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  height: 200px;
  padding-bottom: 30px;
}

.bar-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.bar-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.bar {
  width: 30px;
  background: linear-gradient(180deg, #0066ff, #3399ff);
  border-radius: 8px 8px 0 0;
  transition: height 1.5s ease-in-out;
  position: relative;
  cursor: pointer;
}

.bar:hover {
  transform: scale(1.05);
}

.bar::after {
  content: attr(data-value) '%';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #001a33;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bar:hover::after {
  opacity: 1;
}

.chart-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.info-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.info-value {
  color: #001a33;
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

@media (max-width: 1024px) {
  .stats-grid-animated {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .chart-preview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .performance-stats {
    padding: 60px 0;
  }

  .stats-grid-animated {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item-animated {
    padding: 25px;
  }

  .stat-number-animated {
    font-size: 2.5rem;
  }

  .performance-preview {
    padding: 25px;
  }

  .chart-bars {
    height: 150px;
    gap: 15px;
  }

  .bar {
    width: 25px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .stat-icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .stat-number-animated {
    font-size: 2rem;
  }

  .chart-bars {
    gap: 10px;
  }

  .bar {
    width: 20px;
  }

  .performance-preview {
    padding: 20px;
  }
}


/* ============================================= */
/* SERVICES SHOWCASE SECTION - DARK BACKGROUND */
/* ============================================= */

.services-showcase {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1929 0%, #0f2542 50%, #1a365d 100%);
  position: relative;
  overflow: hidden;
}

.services-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(51, 153, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(0, 82, 204, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header - Dark Theme */
.showcase-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #4d94ff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(77, 148, 255, 0.3);
}

.showcase-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.showcase-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Showcase Grid - Dark Theme Cards */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

/* Showcase Card Base Styles */
.showcase-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.showcase-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(77, 148, 255, 0.4);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(77, 148, 255, 0.1);
}

/* Card Image Section */
.showcase-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.showcase-card:hover .showcase-image {
  transform: scale(1.1);
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.showcase-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card Content */
.showcase-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.showcase-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(77, 148, 255, 0.2), rgba(51, 153, 255, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d94ff;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(77, 148, 255, 0.3);
}

.showcase-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  line-height: 1.3;
}

.showcase-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Card Features List */
.showcase-features {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.showcase-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-features li:last-child {
  border-bottom: none;
}

.showcase-features li i {
  color: #00ff88;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Card CTA Section */
.showcase-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.showcase-btn {
  flex: 1;
  background: linear-gradient(135deg, #0066ff, #3399ff);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.showcase-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.4);
}

.showcase-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.showcase-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4d94ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: rgba(77, 148, 255, 0.1);
}

.showcase-link:hover {
  background: rgba(77, 148, 255, 0.2);
  padding: 8px 16px;
}

/* Individual Card Color Variations */
.showcase-card.ai-investing .showcase-icon {
  background: linear-gradient(135deg, rgba(77, 148, 255, 0.2), rgba(51, 153, 255, 0.1));
  color: #4d94ff;
  border-color: rgba(77, 148, 255, 0.4);
}

.showcase-card.digital-wallet .showcase-icon {
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.2), rgba(0, 170, 255, 0.1));
  color: #00aaff;
  border-color: rgba(0, 170, 255, 0.4);
}

.showcase-card.global-transfers .showcase-icon {
  background: linear-gradient(135deg, rgba(0, 204, 136, 0.2), rgba(0, 204, 136, 0.1));
  color: #00cc88;
  border-color: rgba(0, 204, 136, 0.4);
}

.showcase-card.wealth-management .showcase-icon {
  background: linear-gradient(135deg, rgba(153, 102, 255, 0.2), rgba(153, 102, 255, 0.1));
  color: #9966ff;
  border-color: rgba(153, 102, 255, 0.4);
}

/* Section Footer */
.showcase-footer {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.showcase-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(51, 153, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.showcase-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.footer-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 500px;
}

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

.footer-btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
}

.footer-btn.primary {
  background: linear-gradient(135deg, #0066ff, #3399ff);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.footer-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.4);
}

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

.footer-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #4d94ff;
  transform: translateY(-3px);
}

/* Trust Indicators */
.trust-showcase {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #4d94ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.trust-item i {
  color: #4d94ff;
  font-size: 1.2rem;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

@media (max-width: 1200px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-text p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .services-showcase {
    padding: 60px 0;
  }

  .showcase-title {
    font-size: 2.2rem;
  }

  .showcase-subtitle {
    font-size: 1rem;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .showcase-footer {
    padding: 30px;
  }

  .footer-text h3 {
    font-size: 1.5rem;
  }

  .footer-actions {
    flex-direction: column;
    width: 100%;
  }

  .footer-btn {
    width: 100%;
    justify-content: center;
  }

  .trust-showcase {
    gap: 20px;
  }

  .trust-item {
    padding: 12px 20px;
  }

  .showcase-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .showcase-link {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .showcase-title {
    font-size: 1.8rem;
  }

  .showcase-label {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  .showcase-content {
    padding: 20px;
  }

  .showcase-card-title {
    font-size: 1.3rem;
  }

  .showcase-footer {
    padding: 25px;
  }

  .trust-showcase {
    flex-direction: column;
    gap: 15px;
  }
}




/* ============================================= */
/* HOW IT WORKS SECTION - PROCESS FLOW */
/* ============================================= */

.process-flow {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(51, 153, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header */
.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(51, 153, 255, 0.05));
  color: #0066ff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.process-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #001a33;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.process-subtitle {
  color: #64748b;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Process Steps Container */
.process-steps {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 100px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 3px;
  background: linear-gradient(180deg,
      rgba(0, 102, 255, 0.2),
      rgba(0, 102, 255, 0.1),
      rgba(0, 102, 255, 0.2));
  transform: translateX(-50%);
  z-index: 1;
}

/* Process Step */
.process-step {
  display: flex;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.process-step:last-child {
  margin-bottom: 0;
}

/* Step Marker */
.step-marker {
  flex-shrink: 0;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0066ff, #3399ff);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
  position: relative;
  z-index: 2;
}

.step-connector {
  flex: 1;
  width: 3px;
  background: linear-gradient(180deg, #0066ff, #3399ff);
  margin-top: 20px;
  border-radius: 2px;
}

/* Step Card */
.step-card {
  flex: 1;
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 102, 255, 0.15);
  border-color: #c7d2fe;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #0066ff, #3399ff);
}

/* Step Symbol */
.step-symbol {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e6f2ff, #d1e7ff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 1.8rem;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.15);
}

/* Step Heading & Text */
.step-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 15px;
  line-height: 1.3;
}

.step-text {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 500px;
}

/* Step Tags */
.step-tags {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tag-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.08);
  color: #0066ff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.tag-item i {
  font-size: 0.9rem;
}

/* Step Demo Area */
.step-demo {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  margin-top: 30px;
}

/* Demo 1 - Phone */
.demo-phone {
  max-width: 300px;
  margin: 0 auto;
}

.phone-display {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.display-content {
  text-align: center;
}

.display-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e6f2ff, #d1e7ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.display-content h4 {
  color: #001a33;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.display-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  color: #64748b;
}

.display-input i {
  color: #0066ff;
}

.display-button {
  width: 100%;
  background: linear-gradient(135deg, #0066ff, #3399ff);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.display-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

/* Demo 2 - Dashboard */
.demo-dashboard {
  max-width: 400px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  color: #001a33;
  font-weight: 600;
}

.risk-meter {
  width: 150px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.meter-level {
  height: 100%;
  background: linear-gradient(90deg, #0066ff, #3399ff);
  border-radius: 4px;
}

.dashboard-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.option-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-item.active {
  border-color: #0066ff;
  background: rgba(0, 102, 255, 0.05);
  color: #0066ff;
}

.option-item i {
  font-size: 1.5rem;
}

.option-item span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Demo 3 - Portfolio */
.demo-portfolio {
  max-width: 350px;
  margin: 0 auto;
}

.portfolio-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.portfolio-top h4 {
  color: #001a33;
  font-size: 1.2rem;
  font-weight: 600;
}

.portfolio-risk {
  background: rgba(0, 102, 255, 0.1);
  color: #0066ff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.portfolio-chart {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  background: conic-gradient(#0066ff 0% calc(var(--size)),
      #3399ff calc(var(--size)) calc(var(--size) * 2),
      #00cc88 calc(var(--size) * 2) calc(var(--size) * 3),
      #9966ff calc(var(--size) * 3) 100%);
}

.chart-piece {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.piece-label {
  position: absolute;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.piece-1 .piece-label {
  transform: rotate(20deg) translate(80px) rotate(-20deg);
}

.piece-2 .piece-label {
  transform: rotate(110deg) translate(80px) rotate(-110deg);
}

.piece-3 .piece-label {
  transform: rotate(180deg) translate(80px) rotate(-180deg);
}

.piece-4 .piece-label {
  transform: rotate(260deg) translate(80px) rotate(-260deg);
}

/* Demo 4 - Growth */
.demo-growth {
  max-width: 400px;
}

.growth-chart {
  height: 150px;
  position: relative;
  margin-bottom: 30px;
}

.chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0066ff, transparent);
}

.chart-dot {
  position: absolute;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: #0066ff;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
  transform: translateX(-50%);
}

.chart-dot::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, #0066ff, transparent);
  transform: translateX(-50%);
}

.dot-1 {
  left: 20%;
}

.dot-2 {
  left: 50%;
}

.dot-3 {
  left: 80%;
}

.dot-value {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #0066ff;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.growth-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.growth-item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.stat-name {
  display: block;
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.stat-figure {
  display: block;
  color: #001a33;
  font-size: 1.3rem;
  font-weight: 700;
}

.stat-figure.positive {
  color: #00b368;
}

/* Process CTA */
.process-cta {
  background: linear-gradient(135deg, #0066ff, #3399ff);
  border-radius: 24px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.process-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.cta-message h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-message p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 30px;
}

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

.cta-action {
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: none;
}

.cta-action.primary {
  background: white;
  color: #0066ff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-action.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-help {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-help:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Process Benefits */
.process-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.benefit:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-3px);
}

.benefit i {
  font-size: 1.2rem;
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

@media (max-width: 1024px) {
  .process-steps::before {
    left: 40px;
  }

  .step-marker {
    width: 80px;
  }

  .process-step {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .process-flow {
    padding: 60px 0;
  }

  .process-title {
    font-size: 2.2rem;
  }

  .process-subtitle {
    font-size: 1rem;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }

  .step-marker {
    flex-direction: row;
    width: auto;
    gap: 20px;
    align-items: center;
  }

  .step-connector {
    flex: 1;
    width: auto;
    height: 3px;
    margin-top: 0;
  }

  .step-card {
    padding: 30px;
  }

  .step-heading {
    font-size: 1.5rem;
  }

  .process-cta {
    padding: 40px 30px;
  }

  .cta-message h3 {
    font-size: 1.8rem;
  }

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

  .process-benefits {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .process-title {
    font-size: 1.8rem;
  }

  .process-badge {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  .step-card {
    padding: 25px;
  }

  .step-symbol {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step-heading {
    font-size: 1.3rem;
  }

  .step-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-demo {
    padding: 20px;
  }

  .process-cta {
    padding: 30px 20px;
  }

  .cta-message h3 {
    font-size: 1.5rem;
  }

  .cta-action {
    padding: 15px 25px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .cta-help {
    padding: 15px 25px;
    justify-content: center;
  }
}



/* ============================================= */
/* INVESTMENT OPTIONS SECTION */
/* ============================================= */

.investment-options {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.investment-options::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(51, 153, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header */
.options-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.options-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(51, 153, 255, 0.05));
  color: #0066ff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.options-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #001a33;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.options-subtitle {
  color: #64748b;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Options Grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

/* Option Card */
.option-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  border: 2px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.option-card:hover {
  transform: translateY(-15px);
  border-color: #c7d2fe;
  box-shadow: 0 25px 50px rgba(0, 102, 255, 0.1);
}

/* Featured Card */
.option-card.featured-option {
  border-color: #0066ff;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

.option-card.featured-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0066ff, #3399ff);
}

/* Featured Badge */
.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #8a6d00;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  z-index: 2;
}

/* Card Badge */
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  color: #475569;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start;
  border: 1px solid #e2e8f0;
}

/* Card Main Content */
.card-main {
  flex: 1;
}

.card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Investment Range */
.card-range {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.range-item {
  flex: 1;
  text-align: center;
}

.range-label {
  display: block;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.range-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0066ff;
}

.range-divider {
  color: #94a3b8;
  font-weight: 600;
}

/* Card Description */
.card-description {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Card Features */
.card-features {
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.feature i {
  color: #00b368;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Card Stats */
.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Card Footer */
.card-footer {
  margin-top: auto;
}

.option-button {
  width: 100%;
  background: linear-gradient(135deg, #0066ff, #3399ff);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.option-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.3);
}

.featured-btn {
  background: linear-gradient(135deg, #0066ff, #3399ff);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}

/* Card Tags */
.card-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.featured-tag {
  background: rgba(0, 102, 255, 0.1);
  color: #0066ff;
  border-color: rgba(0, 102, 255, 0.2);
}

.warning-tag {
  background: rgba(255, 77, 77, 0.1);
  color: #dc2626;
  border-color: rgba(255, 77, 77, 0.2);
}

/* Plan-specific colors */
.starter-option .card-badge i {
  color: #00cc88;
}

.starter-option .range-value {
  color: #00cc88;
}

.starter-option .option-button {
  background: linear-gradient(135deg, #00cc88, #00ffaa);
}

.growth-option .card-badge i {
  color: #0066ff;
}

.growth-option .range-value {
  color: #0066ff;
}

.growth-option .option-button {
  background: linear-gradient(135deg, #0066ff, #3399ff);
}

.premium-option .card-badge i {
  color: #9966ff;
}

.premium-option .range-value {
  color: #9966ff;
}

.premium-option .option-button {
  background: linear-gradient(135deg, #9966ff, #b399ff);
}

.retirement-option .card-badge i {
  color: #00aaff;
}

.retirement-option .range-value {
  color: #00aaff;
}

.retirement-option .option-button {
  background: linear-gradient(135deg, #00aaff, #33bbff);
}

.aggressive-option .card-badge i {
  color: #ff4d4d;
}

.aggressive-option .range-value {
  color: #ff4d4d;
}

.aggressive-option .option-button {
  background: linear-gradient(135deg, #ff4d4d, #ff6666);
}

/* Investment Calculator */
.investment-calculator {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

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

.calculator-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 10px;
}

.calculator-header p {
  color: #64748b;
  font-size: 1.05rem;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Calculator Inputs */
.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.input-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #001a33;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.input-group label i {
  color: #0066ff;
}

.input-slider {
  position: relative;
}

.input-slider input[type="range"] {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
}

.input-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: #0066ff;
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.slider-value {
  margin-top: 10px;
  text-align: center;
}

.slider-value span {
  background: #0066ff;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
}

/* Time and Risk Options */
.time-options,
.risk-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.time-option,
.risk-option {
  padding: 12px 24px;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #475569;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

.time-option:hover,
.risk-option:hover {
  border-color: #c7d2fe;
  background: #e6f2ff;
}

.time-option.active,
.risk-option.active {
  background: #0066ff;
  color: white;
  border-color: #0066ff;
}

/* Calculator Results */
.calculator-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.result-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.1);
  border-color: #c7d2fe;
}

.result-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e6f2ff, #d1e7ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 1.5rem;
}

.result-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 5px;
}

.result-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #001a33;
  margin-bottom: 5px;
  line-height: 1;
}

.result-content p {
  color: #64748b;
  font-size: 0.9rem;
}

/* Calculator CTA */
.calculator-cta {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
}

.calculator-button {
  background: linear-gradient(135deg, #0066ff, #3399ff);
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.calculator-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
}

.calculator-disclaimer {
  color: #64748b;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.calculator-disclaimer i {
  color: #0066ff;
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

@media (max-width: 1200px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-option {
    grid-column: 1 / -1;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .investment-options {
    padding: 60px 0;
  }

  .options-title {
    font-size: 2.2rem;
  }

  .options-subtitle {
    font-size: 1rem;
  }

  .options-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .card-range {
    flex-direction: column;
    text-align: center;
  }

  .range-divider {
    display: none;
  }

  .investment-calculator {
    padding: 30px;
  }

  .calculator-header h3 {
    font-size: 1.5rem;
  }

  .time-options,
  .risk-options {
    flex-direction: column;
  }

  .time-option,
  .risk-option {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .options-title {
    font-size: 1.8rem;
  }

  .options-badge {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  .option-card {
    padding: 25px;
  }

  .card-name {
    font-size: 1.3rem;
  }

  .range-value {
    font-size: 1.1rem;
  }

  .featured-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 15px;
    align-self: flex-start;
  }

  .investment-calculator {
    padding: 25px;
  }

  .calculator-button {
    width: 100%;
    justify-content: center;
  }

  .calculator-disclaimer {
    flex-direction: column;
    text-align: center;
  }
}


/* ============================================= */
/* WHY CHOOSE US SECTION - UNIQUE PROPOSITION */
/* ============================================= */

.unique-proposition {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1929 0%, #0f2542 100%);
  position: relative;
  overflow: hidden;
}

.unique-proposition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(51, 153, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header */
.proposition-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.proposition-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #4d94ff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(77, 148, 255, 0.3);
}

.proposition-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.proposition-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Proposition Grid */
.proposition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

/* Proposition Card */
.proposition-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.proposition-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(77, 148, 255, 0.4);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(77, 148, 255, 0.1);
}

/* Card Image Frame */
.card-image-frame {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.proposition-card:hover .card-image {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Card Content */
.card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.card-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  flex: 1;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-left: 15px;
  flex-shrink: 0;
}

/* Card Text */
.card-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
}

/* Card Features */
.card-features {
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  color: #4d94ff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Card Stat */
.card-stat {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #4d94ff;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Card-specific color variations */
.ai-card .card-icon,
.ai-card .image-badge {
  background: rgba(77, 148, 255, 0.2);
  border-color: rgba(77, 148, 255, 0.4);
  color: #4d94ff;
}

.security-card .card-icon,
.security-card .image-badge {
  background: rgba(0, 204, 136, 0.2);
  border-color: rgba(0, 204, 136, 0.4);
  color: #00cc88;
}

.global-card .card-icon,
.global-card .image-badge {
  background: rgba(153, 102, 255, 0.2);
  border-color: rgba(153, 102, 255, 0.4);
  color: #9966ff;
}

.human-card .card-icon,
.human-card .image-badge {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
  color: #ffd700;
}

.transparency-card .card-icon,
.transparency-card .image-badge {
  background: rgba(255, 77, 77, 0.2);
  border-color: rgba(255, 77, 77, 0.4);
  color: #ff4d4d;
}

.innovation-card .card-icon,
.innovation-card .image-badge {
  background: rgba(0, 170, 255, 0.2);
  border-color: rgba(0, 170, 255, 0.4);
  color: #00aaff;
}

/* Trust Indicators */
.proposition-trust {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.trust-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.trust-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 400px;
}

.trust-metrics {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 180px;
}

.metric i {
  font-size: 1.8rem;
  color: #4d94ff;
}

.metric-content {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 5px;
}

.metric-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Trust CTA */
.trust-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-button {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
}

.trust-button.primary {
  background: linear-gradient(135deg, #0066ff, #3399ff);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.trust-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.4);
}

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

.trust-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #4d94ff;
  transform: translateY(-3px);
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

@media (max-width: 1200px) {
  .proposition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-content {
    flex-direction: column;
    text-align: center;
  }

  .trust-text p {
    max-width: 100%;
  }

  .trust-metrics {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .unique-proposition {
    padding: 60px 0;
  }

  .proposition-title {
    font-size: 2.2rem;
  }

  .proposition-subtitle {
    font-size: 1rem;
  }

  .proposition-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .proposition-trust {
    padding: 30px;
  }

  .trust-text h3 {
    font-size: 1.5rem;
  }

  .trust-metrics {
    flex-direction: column;
    align-items: stretch;
  }

  .metric {
    min-width: auto;
  }

  .trust-cta {
    flex-direction: column;
  }

  .trust-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .proposition-title {
    font-size: 1.8rem;
  }

  .proposition-badge {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  .card-content {
    padding: 25px;
  }

  .content-header {
    flex-direction: column;
    gap: 15px;
  }

  .card-icon {
    align-self: flex-start;
  }

  .card-heading {
    font-size: 1.3rem;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .proposition-trust {
    padding: 25px;
  }

  .metric {
    padding: 15px;
  }

  .metric-value {
    font-size: 1.3rem;
  }
}


/* ============================================= */
/* TESTIMONIALS CAROUSEL SECTION */
/* ============================================= */

.client-testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.client-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(51, 153, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header */
.testimonial-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(51, 153, 255, 0.05));
  color: #0066ff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.testimonial-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #001a33;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.testimonial-subtitle {
  color: #64748b;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 80px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  gap: 30px;
}

.testimonial-slide {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 0;
  opacity: 0.5;
  transform: scale(0.95);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 102, 255, 0.1);
  border-color: #c7d2fe;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0066ff, #3399ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Client Info */
.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.client-avatar {
  position: relative;
  flex-shrink: 0;
}

.avatar-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
  transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-image {
  border-color: #0066ff;
  transform: scale(1.05);
}

.avatar-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: #0066ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.client-details {
  flex: 1;
}

.client-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 5px;
}

.client-role {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.client-rating {
  display: flex;
  gap: 4px;
}

.client-rating i {
  color: #ffd700;
  font-size: 0.9rem;
}

/* Testimonial Content */
.testimonial-content {
  position: relative;
  margin-bottom: 30px;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e6f2ff, #d1e7ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
}

.testimonial-text {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
  padding-left: 20px;
  border-left: 3px solid #e2e8f0;
  padding-top: 10px;
}

/* Investment Stats */
.investment-stats {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0066ff;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  display: block;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Testimonial Footer */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
}

.client-portfolio {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0066ff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 20px;
}

.testimonial-date {
  color: #64748b;
  font-size: 0.85rem;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001a33;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
  background: #0066ff;
  border-color: #0066ff;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.prev-nav {
  left: -25px;
}

.next-nav {
  right: -25px;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #e2e8f0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background: #c7d2fe;
  transform: scale(1.2);
}

.dot.active {
  background: #0066ff;
  transform: scale(1.2);
}

/* Trust Metrics */
.testimonial-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.metric-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.1);
  border-color: #c7d2fe;
}

.metric-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e6f2ff, #d1e7ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 1.5rem;
}

.metric-content {
  flex: 1;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #001a33;
  margin-bottom: 5px;
  line-height: 1;
}

.metric-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

/* CTA Section */
.testimonial-cta {
  background: linear-gradient(135deg, #0066ff, #3399ff);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.cta-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.cta-button {
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: none;
}

.cta-button.primary {
  background: white;
  color: #0066ff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

@media (max-width: 1200px) {
  .testimonial-slide {
    flex: 0 0 calc(50% - 15px);
  }

  .testimonial-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .prev-nav {
    left: 10px;
  }

  .next-nav {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .client-testimonials {
    padding: 60px 0;
  }

  .testimonial-title {
    font-size: 2.2rem;
  }

  .testimonial-subtitle {
    font-size: 1rem;
  }

  .testimonial-slide {
    flex: 0 0 calc(100% - 20px);
  }

  .prev-nav,
  .next-nav {
    display: none;
  }

  .carousel-dots {
    margin-top: 30px;
  }

  .testimonial-metrics {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-cta {
    padding: 40px 30px;
  }

  .cta-content h3 {
    font-size: 1.8rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .testimonial-title {
    font-size: 1.8rem;
  }

  .testimonial-badge {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .client-info {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .testimonial-text {
    font-size: 1rem;
    padding-left: 15px;
  }

  .investment-stats {
    flex-direction: column;
    gap: 15px;
  }

  .testimonial-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .testimonial-cta {
    padding: 30px 20px;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .metric-card {
    padding: 20px;
  }
}

/* ============================================= */
/* HOMEPAGE PERFORMANCE SHOWCASE */
/* ============================================= */

.home-performance {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.home-performance::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(51, 153, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header */
.home-perf-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.home-perf-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(51, 153, 255, 0.05));
  color: #0066ff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.home-perf-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #001a33;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.home-perf-subtitle {
  color: #64748b;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Performance Comparison */
.home-perf-comparison {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Main Chart Container */
.home-perf-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.home-perf-chart-container {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.home-perf-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.home-perf-chart-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #001a33;
  margin: 0;
}

.home-perf-chart-period {
  display: flex;
  gap: 10px;
  background: #f8fafc;
  padding: 5px;
  border-radius: 12px;
}

.home-perf-chart-period span {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-perf-chart-period span:hover {
  background: #e2e8f0;
}

.home-perf-chart-period .active {
  background: #0066ff;
  color: white;
}

/* Performance Bars */
.home-perf-bars {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.home-perf-year {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
}

.home-perf-year-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #001a33;
  text-align: right;
}

.home-perf-bar-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-perf-bar {
  height: 36px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
  min-width: 60px;
  transition: all 0.3s ease;
}

.home-perf-bar:hover {
  transform: translateX(5px);
}

.home-perf-bar-value {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.home-perf-hupmac {
  background: linear-gradient(135deg, #0066ff, #3399ff);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.home-perf-sp500 {
  background: linear-gradient(135deg, #00cc88, #66ffbb);
  box-shadow: 0 4px 15px rgba(0, 204, 136, 0.2);
}

/* Chart Legend */
.home-perf-chart-legend {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.home-perf-legend-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.home-perf-legend-color {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  flex-shrink: 0;
}

.home-perf-legend-label {
  flex: 1;
  font-weight: 600;
  color: #001a33;
  font-size: 0.95rem;
}

.home-perf-legend-value {
  font-weight: 700;
  color: #0066ff;
  font-size: 1.1rem;
}

/* Performance Stats */
.home-perf-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.home-perf-stat-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.home-perf-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.1);
  border-color: #c7d2fe;
}

.home-perf-stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e6f2ff, #d1e7ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.home-perf-stat-content {
  flex: 1;
}

.home-perf-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #001a33;
  margin-bottom: 5px;
  line-height: 1;
}

.home-perf-stat-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Investment Strategies Sidebar */
.home-perf-strategies {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  position: sticky;
  top: 100px;
}

.home-perf-strategies-header {
  margin-bottom: 30px;
  text-align: center;
}

.home-perf-strategies-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 10px;
}

.home-perf-strategies-header p {
  color: #64748b;
  font-size: 0.95rem;
}

.home-perf-strategy-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-perf-strategy {
  padding: 20px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.home-perf-strategy:hover {
  background: #f1f5f9;
  border-color: #0066ff;
  transform: translateX(5px);
}

.home-perf-strategy-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 1.2rem;
  border: 2px solid #e2e8f0;
  flex-shrink: 0;
}

.home-perf-strategy:hover .home-perf-strategy-icon {
  border-color: #0066ff;
  transform: scale(1.1);
}

.home-perf-strategy-content {
  flex: 1;
}

.home-perf-strategy-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 8px;
}

.home-perf-strategy-returns {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 8px;
}

.home-perf-return-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0066ff;
}

.home-perf-return-label {
  color: #64748b;
  font-size: 0.85rem;
}

.home-perf-strategy-desc {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.home-perf-strategy-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.home-perf-tag {
  padding: 4px 12px;
  background: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0066ff;
  border: 1px solid #e2e8f0;
}

/* Performance Testimonials */
.home-perf-testimonials {
  background: white;
  border-radius: 24px;
  padding: 50px;
  margin-bottom: 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  position: relative;
  z-index: 1;
}

.home-perf-testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.home-perf-testimonial-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 10px;
}

.home-perf-testimonial-header p {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.home-perf-testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.home-perf-testimonial-card {
  padding: 30px;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: all 0.3s ease;
}

.home-perf-testimonial-card:hover {
  background: white;
  border-color: #0066ff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.1);
}

.home-perf-testimonial-content {
  position: relative;
  flex: 1;
}

.home-perf-quote-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e6f2ff, #d1e7ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
}

.home-perf-testimonial-text {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  padding-left: 20px;
  border-left: 3px solid #e2e8f0;
  padding-top: 10px;
}

.home-perf-testimonial-card:hover .home-perf-testimonial-text {
  border-left-color: #0066ff;
}

.home-perf-testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.home-perf-author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 5px;
}

.home-perf-author-info p {
  color: #64748b;
  font-size: 0.9rem;
}

.home-perf-author-returns {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.home-perf-return-badge {
  padding: 6px 16px;
  background: linear-gradient(135deg, #0066ff, #3399ff);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-perf-return-period {
  color: #64748b;
  font-size: 0.8rem;
}

/* CTA Section */
.home-perf-cta {
  background: linear-gradient(135deg, #0066ff, #3399ff);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-perf-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.home-perf-cta-content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.home-perf-cta-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.home-perf-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 30px;
}

.home-perf-cta-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.home-perf-cta-stat {
  text-align: center;
}

.home-perf-cta-value {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1;
}

.home-perf-cta-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.home-perf-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.home-perf-cta-btn {
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: none;
}

.home-perf-cta-primary {
  background: white;
  color: #0066ff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-perf-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.home-perf-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.home-perf-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

@media (max-width: 1200px) {
  .home-perf-comparison {
    grid-template-columns: 1fr;
  }

  .home-perf-strategies {
    position: static;
  }

  .home-perf-testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-performance {
    padding: 60px 0;
  }

  .home-perf-title {
    font-size: 2.2rem;
  }

  .home-perf-subtitle {
    font-size: 1rem;
  }

  .home-perf-stats {
    grid-template-columns: 1fr;
  }

  .home-perf-testimonial-cards {
    grid-template-columns: 1fr;
  }

  .home-perf-cta {
    padding: 40px 30px;
  }

  .home-perf-cta-content h3 {
    font-size: 1.8rem;
  }

  .home-perf-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .home-perf-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .home-perf-year {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-perf-year-label {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .home-perf-title {
    font-size: 1.8rem;
  }

  .home-perf-badge {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  .home-perf-chart-container,
  .home-perf-strategies,
  .home-perf-testimonials {
    padding: 25px;
  }

  .home-perf-cta {
    padding: 30px 20px;
  }

  .home-perf-cta-content h3 {
    font-size: 1.5rem;
  }

  .home-perf-cta-stats {
    gap: 20px;
  }

  .home-perf-cta-value {
    font-size: 1.5rem;
  }
}



/* ============================================= */
/* REFERRAL HERO SECTION */
/* ============================================= */

.referral-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1929 0%, #0f2542 100%);
  position: relative;
  overflow: hidden;
}

.referral-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(51, 153, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Header */
.referral-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.referral-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffd700;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.referral-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.referral-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Layout */
.referral-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Referral Card */
.referral-card-container {
  position: sticky;
  top: 100px;
}

.referral-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.referral-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.referral-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a1929;
  font-size: 1.5rem;
}

.referral-card-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 5px 0;
}

.referral-card-title p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

/* Referral Link Box */
.referral-link-box {
  margin-bottom: 30px;
}

.referral-link-input {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.referral-link-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px 20px;
  color: white;
  font-size: 0.95rem;
  font-family: monospace;
}

.referral-link-input input:focus {
  outline: none;
  border-color: #ffd700;
}

.copy-link-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border: none;
  border-radius: 12px;
  color: #0a1929;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.copy-link-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.copy-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: #00cc88;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 15px;
  background: rgba(0, 204, 136, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 204, 136, 0.2);
}

.copy-success.show {
  display: flex;
}

/* Share Buttons */
.share-buttons {
  margin-bottom: 30px;
}

.share-buttons h4 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.share-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.share-btn {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.share-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

.share-telegram:hover {
  background: #0088cc;
  border-color: #0088cc;
}

.share-email:hover {
  background: #EA4335;
  border-color: #EA4335;
}

.share-twitter:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
}

.share-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.share-copy:hover {
  background: #9966ff;
  border-color: #9966ff;
}

/* Referral Stats */
.referral-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.referral-stat .stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 5px;
  line-height: 1;
}

.referral-stat .stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Rewards Showcase */
.referral-rewards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.rewards-header {
  text-align: center;
}

.rewards-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.rewards-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

/* Rewards Steps */
.rewards-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.reward-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0066ff, #3399ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0 0 8px 0;
}

.step-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Rewards Tiers */
.rewards-tiers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tier-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.tier-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.tier-card.active {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.05);
}

.tier-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ffd700;
  color: #0a1929;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

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

.tier-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.tier-basic .tier-icon {
  background: rgba(0, 102, 255, 0.2);
  color: #0066ff;
}

.tier-premium .tier-icon {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
}

.tier-elite .tier-icon {
  background: rgba(153, 102, 255, 0.2);
  color: #9966ff;
}

.tier-title h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 5px 0;
}

.tier-title p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.tier-reward {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 20px;
}

.reward-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 5px;
}

.reward-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.tier-feature i {
  color: #00cc88;
}

/* Referral Progress */
.referral-progress {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.progress-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.progress-target {
  display: flex;
  align-items: center;
  gap: 15px;
}

.progress-target span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.target-reward {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.progress-bar-container {
  position: relative;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.progress-labels span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
  margin-bottom: 30px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0066ff, #ffd700);
  border-radius: 4px;
  position: relative;
}

.progress-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.marker-dot {
  width: 20px;
  height: 20px;
  background: #ffd700;
  border-radius: 50%;
  border: 4px solid #0a1929;
  box-shadow: 0 0 0 2px #ffd700;
}

.marker-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: #ffd700;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(10, 25, 41, 0.9);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.progress-milestones {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.milestone {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 600;
}

/* rfaq */
.referral-rfaq {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

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

.rfaq-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.rfaq-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.rfaq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rfaq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

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

.rfaq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0;
  flex: 1;
}

.rfaq-question i {
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

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

.rfaq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.rfaq-item.active .rfaq-answer {
  padding-bottom: 25px;
  max-height: 200px;
}

.rfaq-answer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.referral-cta {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.referral-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a1929;
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(10, 25, 41, 0.8);
  font-size: 1.15rem;
  max-width: 500px;
  margin: 0 auto 30px;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

.cta-value {
  font-size: 2rem;
  font-weight: 800;
  color: #0a1929;
  margin-bottom: 8px;
  line-height: 1;
}

.cta-label {
  color: rgba(10, 25, 41, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.cta-btn {
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: none;
}

.cta-btn.primary {
  background: #0a1929;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #001a33;
}

.cta-btn.secondary {
  background: white;
  color: #0a1929;
  border: 2px solid rgba(10, 25, 41, 0.1);
}

.cta-btn.secondary:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

@media (max-width: 1200px) {
  .referral-content {
    grid-template-columns: 1fr;
  }

  .referral-card-container {
    position: static;
  }

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

@media (max-width: 768px) {
  .referral-hero {
    padding: 60px 0;
  }

  .referral-title {
    font-size: 2.2rem;
  }

  .referral-subtitle {
    font-size: 1rem;
  }

  .share-platforms {
    grid-template-columns: 1fr;
  }

  .referral-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .progress-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .referral-cta {
    padding: 40px 30px;
  }

  .cta-content h3 {
    font-size: 2rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .referral-title {
    font-size: 1.8rem;
  }

  .referral-badge {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  .referral-card {
    padding: 25px;
  }

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

  .referral-cta {
    padding: 30px 20px;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .cta-stats {
    flex-direction: column;
    gap: 20px;
  }

  .cta-value {
    font-size: 1.5rem;
  }
}





/* ============================================= */
/* MAIN FOOTER */
/* ============================================= */

.main-footer {
  background: linear-gradient(135deg, #001a33 0%, #003366 100%);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(51, 153, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Footer Top */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

/* Company Info */
.footer-company {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}



.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.logo-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 5px;
}

.company-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.company-stats {
  display: flex;
  gap: 30px;
  margin-top: 15px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #4d94ff;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 15px 0;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0066ff, #3399ff);
  border-radius: 2px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-menu li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-menu li a i {
  font-size: 0.8rem;
  color: #4d94ff;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.newsletter-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0 0 15px 0;
}

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

.form-group {
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #4d94ff;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0066ff, #3399ff);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.form-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-agreement input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #0066ff;
}

.form-agreement label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.4;
  cursor: pointer;
}

.footer-social {
  margin-top: 20px;
}

.footer-social h5 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #0066ff;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

/* Certificates Section */
.footer-certificates {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

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

.certificates-header h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.certificates-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.certificate-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.certificate-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(77, 148, 255, 0.3);
  transform: translateY(-5px);
}

.certificate-image {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.certificate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.certificate-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background: #00cc88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  border: 3px solid #001a33;
}

.certificate-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.certificate-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.certificate-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.certificate-id {
  color: #4d94ff;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(77, 148, 255, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(77, 148, 255, 0.2);
}

/* Footer Middle */
.footer-middle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.mobile-apps h5,
.footer-contact h5,
.business-hours h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 10px 0;
}

.mobile-apps p,
.footer-contact p,
.business-hours p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0 0 20px 0;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: #0066ff;
}

.app-btn i {
  font-size: 2rem;
}

.app-text {
  display: flex;
  flex-direction: column;
}

.app-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.app-store-name {
  font-size: 1.1rem;
  font-weight: 700;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  color: #4d94ff;
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-detail strong {
  color: white;
  font-size: 0.95rem;
}

.contact-detail span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.4;
}

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

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-day {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.hours-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: white;
  text-decoration: underline;
}

.separator {
  color: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

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

.copyright-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.copyright-text .disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 10px;
}

.payment-methods {
  text-align: right;
}

.payment-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.payment-icons {
  display: flex;
  gap: 15px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.payment-icons i {
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-icons i:hover {
  color: white;
  transform: translateY(-3px);
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  padding: 12px 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #0066ff;
  transform: translateY(-3px);
}

.back-to-top i {
  font-size: 1rem;
}

/* Trust Indicators */
.trust-indicators {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item i {
  color: #00cc88;
  font-size: 1rem;
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-newsletter {
    grid-column: span 2;
  }

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

@media (max-width: 992px) {
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-copyright {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .payment-methods {
    text-align: center;
  }
}

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

  .footer-newsletter {
    grid-column: span 1;
  }

  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-stats {
    justify-content: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 10px;
  }

  .separator {
    display: none;
  }

  .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .footer-top {
    padding: 40px 0;
  }

  .footer-certificates,
  .footer-middle {
    padding: 40px 0;
  }

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

  .app-buttons {
    align-items: stretch;
  }

  .app-btn {
    justify-content: center;
  }

  .copyright-text {
    min-width: 100%;
  }

  .payment-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}





/* ============================================= */
/* ABOUT US PAGE STYLES */
/* ============================================= */

/* Hero Section */
.abt-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #001a33 0%, #003366 100%);
  position: relative;
  overflow: hidden;
}

.abt-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(51, 153, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.abt-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.abt-hero-text {
  color: white;
}

.abt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #4d94ff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(77, 148, 255, 0.3);
}

.abt-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.abt-hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
}

.abt-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 4rem;
}

.abt-hero-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.abt-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #4d94ff;
  margin-bottom: 8px;
  line-height: 1;
}

.abt-stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

.abt-hero-visual {
  position: relative;
}

.abt-visual-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.abt-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.abt-visual-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Section Header (Common for all sections) */
.abt-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.abt-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(51, 153, 255, 0.05));
  color: #0066ff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.abt-section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.abt-section-subtitle {
  color: var(--dark-navy);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Mission Section */
.abt-mission {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.abt-mission-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.abt-mission-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.abt-mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 102, 255, 0.1);
  border-color: #c7d2fe;
}

.abt-mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e6f2ff, #d1e7ff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 2rem;
  margin-bottom: 25px;
}

.abt-mission-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 15px;
}

.abt-mission-text p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* Story Timeline */
.abt-story {
  padding: 100px 0;
  background: white;
  position: relative;
}

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

.abt-timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}

.abt-timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.abt-timeline-year {
  width: 100px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0066ff;
  text-align: right;
  padding-right: 40px;
  flex-shrink: 0;
}

.abt-timeline-content {
  flex: 1;
  padding-left: 40px;
  position: relative;
}

.abt-timeline-marker {
  position: absolute;
  left: -31px;
  top: 0;
  width: 20px;
  height: 20px;
  background: #0066ff;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 2px #0066ff;
}

.abt-timeline-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.abt-timeline-card:hover {
  border-color: #0066ff;
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.1);
}

.abt-timeline-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 15px;
}

.abt-timeline-card p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.abt-timeline-milestones {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.abt-milestone {
  padding: 6px 15px;
  background: #f8fafc;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0066ff;
  border: 1px solid #e2e8f0;
}

/* Leadership Team */
.abt-leadership {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.abt-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.abt-team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.abt-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 102, 255, 0.1);
  border-color: #c7d2fe;
}

.abt-team-photo {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.abt-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.abt-team-card:hover .abt-team-photo img {
  transform: scale(1.05);
}

.abt-team-social {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.abt-team-card:hover .abt-team-social {
  opacity: 1;
  transform: translateY(0);
}

.abt-team-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.abt-team-social a:hover {
  background: #0066ff;
  color: white;
  transform: scale(1.1);
}

.abt-team-info {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.abt-team-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 5px;
}

.abt-team-role {
  color: #0066ff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.abt-team-bio {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

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

.abt-team-tag {
  padding: 4px 12px;
  background: #f8fafc;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0066ff;
  border: 1px solid #e2e8f0;
}

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

.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.abt-value-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
}

.abt-value-card:hover {
  border-color: #0066ff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.1);
}

.abt-value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #e6f2ff, #d1e7ff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 2rem;
}

.abt-value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #001a33;
  margin-bottom: 15px;
}

.abt-value-card p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.abt-value-example {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #0066ff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Global Presence */
.abt-global {
  padding: 100px 0;
  background: linear-gradient(135deg, #001a33 0%, #003366 100%);
  color: white;
  position: relative;
}

.abt-global::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(51, 153, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.abt-global-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}



.abt-global-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.abt-global-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.abt-global-value {
  font-size: 2rem;
  font-weight: 800;
  color: #4d94ff;
  margin-bottom: 8px;
  line-height: 1;
}

.abt-global-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

.abt-global-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.abt-global-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.abt-global-feature i {
  color: #4d94ff;
  font-size: 1.2rem;
}

.abt-global-map {
  position: relative;
}

.abt-map-visual {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.abt-map-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.abt-map-placeholder i {
  font-size: 5rem;
  margin-bottom: 20px;
  display: block;
  color: #4d94ff;
}

.abt-map-placeholder span {
  font-size: 1.2rem;
  font-weight: 600;
}

.abt-map-points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.abt-map-point {
  position: absolute;
  font-size: 2rem;
  animation: float 3s infinite ease-in-out;
}

.abt-map-point:nth-child(1) {
  animation-delay: 0s;
}

.abt-map-point:nth-child(2) {
  animation-delay: 1s;
}

.abt-map-point:nth-child(3) {
  animation-delay: 2s;
}

@keyframes float {

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

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

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

.abt-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.abt-cta-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.abt-cta-text {
  margin-bottom: 40px;
}

.abt-cta-text h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.abt-cta-text p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.abt-cta-btn {
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: none;
}

.abt-cta-primary {
  background: white;
  color: #0066ff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.abt-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.abt-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}


.vid-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;

}

.vid-modal .vid-container {
  height: 400px;
  width: 700px;
  background: var(--gray-dark);
  border-radius: 10px;
  position: relative;
  padding: 5px;
}

.vid-modal .vid-container button {
  background: var(--light-blue);
  border: none;
  font-size: 1.2rem;
  padding: 7px 15px;
  border-radius: 3px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 101;

}

.vid-modal .vid-container video {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  object-fit: contain;
}

@media (max-width: 768px) {
  .vid-modal .vid-container {
    height: 400px;
    width: 90%;
  }
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

@media (max-width: 1200px) {

  .abt-hero-content,
  .abt-global-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .abt-hero-visual {
    order: -1;
  }

  .abt-global-map {
    order: -1;
  }
}

@media (max-width: 992px) {

  .abt-mission-content,
  .abt-team-grid,
  .abt-values-grid {
    grid-template-columns: 1fr;
  }

  .abt-timeline::before {
    left: 60px;
  }

  .abt-timeline-year {
    width: 60px;
    padding-right: 20px;
  }

  .abt-timeline-content {
    padding-left: 20px;
  }

  .abt-timeline-marker {
    left: -21px;
  }
}

@media (max-width: 768px) {
  .abt-hero {
    padding: 100px 0 60px;
  }

  .abt-hero-title {
    font-size: 2.5rem;
  }

  .abt-section-title {
    font-size: 2.2rem;
  }

  .abt-hero-stats,
  .abt-global-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .abt-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .abt-cta-text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .abt-hero-title {
    font-size: 2rem;
  }

  .abt-section-title {
    font-size: 1.8rem;
  }

  .abt-hero-stats,
  .abt-global-stats {
    grid-template-columns: 1fr;
  }

  .abt-mission-card,
  .abt-value-card {
    padding: 30px;
  }

  .abt-team-info {
    padding: 20px;
  }
}



/* Services Hero Section */
.svc-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #001a33 0%, #003366 100%);
  position: relative;
  overflow: hidden;
}

.svc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(51, 153, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.svc-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.svc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #4d94ff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(77, 148, 255, 0.3);
}

.svc-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.svc-hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
}

.svc-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 4rem;
  width: 100%;
}

.svc-hero-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #4d94ff;
  margin-bottom: 8px;
  line-height: 1;
}

.svc-stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Section Header */
.svc-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.svc-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(51, 153, 255, 0.05));
  color: #0066ff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.svc-section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #001a33;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.svc-section-subtitle {
  color: #64748b;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid Section */
.svc-grid-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.svc-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-medium);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.svc-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.svc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-image img {
  transform: scale(1.05);
}

.svc-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.svc-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e6f2ff, #d1e7ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.svc-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.svc-description {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.svc-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.svc-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

.svc-feature i {
  color: var(--accent-blue);
  font-size: 0.8rem;
}

.svc-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.svc-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  border: none;
  flex: 1;
}

.svc-btn-primary {
  background: var(--primary-blue);
  color: white;
  box-shadow: var(--shadow-sm);
}

.svc-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.svc-btn-secondary {
  background: white;
  color: var(--primary-blue);
  border: 2px solid var(--gray-medium);
}

.svc-btn-secondary:hover {
  background: var(--light-blue);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

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

.svc-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.svc-cta-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.svc-cta-text {
  margin-bottom: 40px;
}

.svc-cta-text h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.svc-cta-text p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.svc-cta-btn {
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  border: none;
}

.svc-cta-primary {
  background: white;
  color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.svc-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.svc-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .svc-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .svc-hero {
    padding: 100px 0 60px;
  }

  .svc-hero-title {
    font-size: 2.5rem;
  }

  .svc-section-title {
    font-size: 2.2rem;
  }

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

  .svc-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .svc-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .svc-cta-text h2 {
    font-size: 2.2rem;
  }

  .svc-actions {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .svc-hero-title {
    font-size: 2rem;
  }

  .svc-section-title {
    font-size: 1.8rem;
  }

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

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

  .svc-content {
    padding: 20px;
  }
}