:root {
  /* Brand Colors - Based on Logo */
  --primary-red: #e63946;
  --primary-red-rgb: 230, 57, 70;
  --primary-gold: #d4922b;
  --secondary-red: #d62828;
  --secondary-gold: #f4a261;
  
  /* Neutral Colors */
  --dark-primary: #1a1a1a;
  --dark-secondary: #2d2d2d;
  --gray-dark: #4a4a4a;
  --gray-medium: #6c6c6c;
  --gray-light: #e0e0e0;
  --white: #ffffff;
  --off-white: #fafafa;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-gold) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-red) 0%, var(--secondary-gold) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1.5rem;
  
  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-small: 0.375rem;
  --radius-medium: 0.5rem;
  --radius-large: 1rem;
  --radius-xl: 1.5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--dark-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.125rem); }

p {
  margin-bottom: 1rem;
  color: var(--gray-dark);
  font-size: 1.125rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: var(--font-weight-medium);
  font-size: 1rem;
  line-height: 1;
  border-radius: var(--radius-medium);
  text-decoration: none;
  transition: all var(--transition-medium);
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-medium);
}

.btn:hover::before {
  left: 100%;
}

.btn-dark {
  background: var(--gradient-dark);
  color: var(--white);
}

.btn-dark:hover {
  transform: translateY(-2px);
  color: var(--white);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.main-header {
  position: relative;
  z-index: 1000;
}

.navbar {
  transition: all var(--transition-medium);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-img{
    width: 40%;
    height: auto;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-medium);
}


.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--dark-primary);
  position: relative;
  transition: var(--transition-fast);
  margin: 0 0.25rem;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-red);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

._button {
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: var(--radius-medium);
  margin-left: 1rem;
  transition: all var(--transition-medium);
}

._button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: var(--white) !important;
}

._button::after {
  display: none;
}

._button-2 {
  background: var(--primary-red);
  color: var(--white) !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: var(--radius-medium);
  margin-left: 1rem;
  transition: all var(--transition-medium);
}

._button-2:hover {
  transform: translateY(-2px);
  color: var(--primary-gold) !important;
  border-radius: var(--radius-medium);
}

._button-2::after {
  display: none;
}

/* Custom Mobile Menu Toggle */
.custom-toggler {
  border: none;
  padding: 0.25rem;
  background: transparent;
  width: 30px;
  height: 24px;
  position: relative;
  outline: none;
  box-shadow: none;
}

.hamburger-line {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--dark-primary);
  margin: 4px 0;
  transition: var(--transition-fast);
  transform-origin: center;
}

.custom-toggler:not(.collapsed) .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(2px, 2px);
}

.custom-toggler:not(.collapsed) .hamburger-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler:not(.collapsed) .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.dropdown-menu {
    border: none;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--dark-primary);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary-red);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    opacity: 0.7;
}

.dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Multi-level Dropdown - Fixed for Mobile */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropdown-submenu .dropdown-item {
    position: relative;
}

.dropdown-submenu .dropdown-item::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    opacity: 0.5;
}

/* Desktop hover behavior */
@media (hover: hover) and (pointer: fine) {
    .dropdown-submenu:hover .dropdown-menu {
        display: block;
    }
}

/* Mobile click behavior */
@media (hover: none) or (pointer: coarse) {
    .dropdown-submenu .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(230, 57, 70, 0.05);
        margin: 0.5rem 0 0 1rem;
        border-left: 2px solid var(--primary-red);
    }
    
    .dropdown-submenu.show .dropdown-menu {
        display: block;
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 3rem 0 0;
  margin-top: auto;
}

.footer-content {
  padding-bottom: 2rem;
}

.footer-section {
  height: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.footer-logo i {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 0.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-medium);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
  color: var(--white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--primary-gold);
  width: 16px;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary-gold);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-primary { color: var(--primary-red) !important; }
.text-secondary { color: var(--primary-gold) !important; }
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-primary { background: var(--gradient-primary) !important; }
.bg-dark { background: var(--gradient-dark) !important; }
.bg-light { background-color: var(--off-white) !important; }

.shadow-custom { box-shadow: var(--shadow-medium); }
.rounded-custom { border-radius: var(--radius-large); }

.section-padding {
  padding: var(--section-padding);
}

/* ==========================================
   ANIMATIONS & EFFECTS
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}

/* Selection color */
::selection {
  background: var(--primary-gold);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary-gold);
  color: var(--white);
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* ==========================================
   LOADING & TRANSITIONS
   ========================================== */
.page-transition {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow);
}

.page-transition.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   HOMEPAGE MAIN SECTION STYLES
   ========================================== */

/* Hero Section */
main .hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--off-white) 0%, rgba(228, 57, 70, 0.05) 100%);
}

main .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 80%, rgba(228, 57, 70, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(212, 146, 43, 0.1) 0%, transparent 50%);
  z-index: -1;
}

main .hero-content {
  padding: 2rem 0;
}

main .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--dark-primary);
}

main .hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--gray-dark);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 90%;
}

main .hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

main .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

main .stat-item {
  text-align: left;
}

main .stat-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

main .stat-label {
  color: var(--gray-medium);
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Visual */
main .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

/* Main Image Styling */
main .hero-visual img {
  max-width: 50%;
  height: auto;
  border-radius: 20px;
  transform: rotateY(-15deg) rotateX(10deg);
  box-shadow: 
    20px 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(1.1) contrast(1.05);
}

/* Hover Effect */
main .hero-visual img:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.08);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 10px 20px rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  filter: brightness(1.15) contrast(1.1);
}

main .hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 0%, transparent 25%);
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  main .hero-visual {
    padding: 2rem 0;
    min-height: 400px;
    perspective: 800px;
  }
  
  main .hero-visual img {
    max-width: 85%;
    transform: rotateY(-10deg) rotateX(5deg);
  }
  
  main .hero-visual img:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
  }
}

@media (max-width: 480px) {
  main .hero-visual {
    padding: 1.5rem 0;
    min-height: 350px;
    perspective: 600px;
  }
  
  main .hero-visual img {
    max-width: 90%;
    transform: rotateY(-8deg) rotateX(3deg);
  }
  
  main .hero-visual img:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.03);
  }
}

main .hero-visual img {
  will-change: transform;
  backface-visibility: hidden;
}

main .stock-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

main .stock-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--off-white);
  border-radius: var(--radius-small);
  transition: var(--transition-fast);
}

main .stock-item:hover {
  background: rgba(228, 57, 70, 0.05);
  transform: translateX(4px);
}

main .stock-symbol {
  font-weight: var(--font-weight-semibold);
  color: var(--dark-primary);
}

main .stock-price {
  font-weight: var(--font-weight-bold);
  font-size: 0.9rem;
}

main .stock-price.green {
  color: #10b981;
}

main .stock-price.red {
  color: #ef4444;
}

/* Services Section */
main .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-primary);
}

main .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-dark);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

main .service-card {
  background: var(--white);
  border-radius: var(--radius-large);
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

main .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-medium);
}

main .service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark);
}

main .service-card:hover::before {
  transform: scaleX(1);
}

main .service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, rgba(228, 57, 70, 0.1), rgba(212, 146, 43, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

main .service-icon i {
  font-size: 1.75rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

main .service-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: var(--dark-primary);
}

main .service-description {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

main .service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

main .feature-tag {
  background: rgba(228, 57, 70, 0.1);
  color: var(--primary-red);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-small);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
}

/* Market Overview Section */
main .market-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

main .market-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

main .market-feature i {
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

main .market-feature h5 {
  margin-bottom: 0.5rem;
  color: var(--dark-primary);
  font-weight: var(--font-weight-semibold);
}

main .market-feature p {
  color: var(--gray-dark);
  margin-bottom: 0;
  font-size: 1rem;
}

/* Market Dashboard Styles */
.market-dashboard {
    background: var(--gradient-primary);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.market-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.market-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.market-header h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.market-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.market-status.positive {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.market-status.negative {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.market-indices {
    position: relative;
    z-index: 1;
}

.market-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    color: rgba(255, 255, 255, 0.8);
}

.market-loading .spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 15px;
}

.market-error {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.stock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stock-item:last-child {
    border-bottom: none;
}

.stock-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

.stock-info {
    display: flex;
    flex-direction: column;
}

.stock-symbol {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.stock-name {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: capitalize;
}

.stock-price {
    text-align: right;
}

.stock-current-price {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.stock-change {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.stock-change.positive {
    color: #2ecc71;
}

.stock-change.negative {
    color: #e74c3c;
}

.stock-change.neutral {
    color: rgba(163, 158, 158, 0.7);
}

.change-arrow {
    width: 12px;
    height: 12px;
    margin-right: 4px;
    transition: transform 0.3s ease;
}

.stock-item:hover .change-arrow {
    transform: scale(1.2);
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.stat-value {
    font-weight: 700;
    font-size: 0.9rem;
}

.last-updated {
    text-align: center;
    margin-top: 15px;
    font-size: 0.75rem;
    opacity: 0.6;
    font-style: italic;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.stock-item {
    animation: fadeIn 0.5s ease forwards;
}

.stock-item:nth-child(1) { animation-delay: 0.1s; }
.stock-item:nth-child(2) { animation-delay: 0.2s; }
.stock-item:nth-child(3) { animation-delay: 0.3s; }
.stock-item:nth-child(4) { animation-delay: 0.4s; }
.stock-item:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .market-dashboard {
        padding: 20px;
        margin-top: 50px;
    }
    
    .market-header h4 {
        font-size: 1.3rem;
    }
    
    .stock-item {
        padding: 10px 0;
    }
    
    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-item {
        padding: 8px;
    }
}

/* About Section */
main .about-stat {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

main .about-stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

main .about-stat .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(228, 57, 70, 0.1), rgba(212, 146, 43, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

main .about-stat .stat-icon i {
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

main .about-stat .stat-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

main .about-stat .stat-label {
  color: var(--gray-medium);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
}

/* CTA Section */
main .cta-section {
  position: relative;
  padding: 50px 0 50px 0;
  background: var(--gradient-dark);
  color: var(--white);
  overflow: hidden;
}

main .cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(228, 57, 70, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(212, 146, 43, 0.2) 0%, transparent 50%);
  z-index: 1;
}

main .cta-section .container {
  position: relative;
  z-index: 2;
}

main .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

main .cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

main .cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-weight-medium);
}

main .cta-feature i {
  color: var(--primary-gold);
}

/* Animations */
@keyframes pulse {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

@keyframes chartLine {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* ==========================================
   OUR STORY PAGE SPECIFIC STYLES
   ========================================== */

/* Story Hero Section */
.story-hero-section {
  position: relative;
  min-height: 75vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--off-white) 0%, rgba(228, 57, 70, 0.08) 50%, rgba(212, 146, 43, 0.05) 100%);
}

.story-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(228, 57, 70, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212, 146, 43, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(228, 57, 70, 0.08) 0%, transparent 30%);
  z-index: -1;
}

.story-hero-content {
  padding: 2rem 0;
}

.story-hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--dark-primary);
  text-align: center;
}

.story-hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--gray-dark);
  margin-bottom: 3rem;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.story-hero-timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.timeline-year {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.timeline-label {
  font-size: 0.9rem;
  color: var(--gray-medium);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.6;
}

/* Story Content Sections */
.story-content {
  padding: 2rem 0;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(228, 57, 70, 0.1);
  color: var(--primary-red);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.5rem;
}

.story-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  color: var(--dark-primary);
  line-height: 1.2;
}

.story-text {
  font-size: 1.125rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: var(--font-weight-medium);
  color: var(--dark-primary);
}

.highlight-item i {
  width: 20px;
  color: var(--primary-red);
  font-size: 1.1rem;
}

/* Story Visual Elements */
.story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  position: relative;
  perspective: 1000px;
}

.story-image-container {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(228, 57, 70, 0.3);
}

.story-floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  animation: float 3s ease-in-out infinite;
}

.story-floating-element i {
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-element-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.story-element-2 {
  bottom: 20%;
  right: 10%;
  animation-delay: 1s;
}

.story-element-3 {
  top: 40%;
  left: -10%;
  animation-delay: 2s;
}

/* Mission Cards */
.story-mission-card {
  background: var(--white);
  border-radius: var(--radius-large);
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-medium);
}

.story-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark);
}

.story-mission-card:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(228, 57, 70, 0.1), rgba(212, 146, 43, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.mission-icon i {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: var(--dark-primary);
}

.mission-description {
  color: var(--gray-dark);
  line-height: 1.6;
  font-size: 1rem;
}

/* Timeline Styles */
.story-timeline {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem 0;
}

.timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-milestone {
  position: relative;
  margin: 3rem 0;
  display: flex;
  align-items: center;
}

.timeline-milestone-right {
  flex-direction: row-reverse;
}

.milestone-year {
  min-width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(228, 57, 70, 0.3);
  z-index: 10;
  position: relative;
  margin: 0 2rem;
}

.milestone-content {
  background: var(--white);
  border-radius: var(--radius-large);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  max-width: 400px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.milestone-content h4 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: var(--dark-primary);
}

.milestone-content p {
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Leadership Quote */
.leadership-quote-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-dark);
  text-align: center;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.quote-icon i {
  font-size: 2rem;
  color: var(--white);
}

.leadership-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
}

.quote-author {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray-light);
}

.author-name {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-primary);
  margin-bottom: 0.5rem;
}

.author-title {
  color: var(--gray-medium);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
}

/* Impact Stats */
.impact-stat {
  background: var(--white);
  border-radius: var(--radius-large);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.impact-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-medium);
}

.impact-stat:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark);
}

.impact-stat:hover::before {
  transform: scaleX(1);
}

.impact-stat .stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(228, 57, 70, 0.1), rgba(212, 146, 43, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.impact-stat .stat-icon i {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-stat .stat-number {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.impact-stat .stat-label {
  color: var(--gray-medium);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Story CTA Section */
.story-cta-section {
  position: relative;
  padding: 5rem 0;
  background: var(--gradient-dark);
  color: var(--white);
  overflow: hidden;
}

.story-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(228, 57, 70, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(212, 146, 43, 0.25) 0%, transparent 50%);
  z-index: 1;
}

.story-cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design for Story Page */
@media (max-width: 1024px) {
  .timeline-track {
    left: 30px;
  }
  
  .timeline-milestone,
  .timeline-milestone-right {
    flex-direction: row;
    margin-left: 0;
  }
  
  .milestone-year {
    margin: 0 2rem 0 0;
    min-width: 80px;
    height: 80px;
    font-size: 1rem;
  }
  
  .milestone-content {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .story-hero-timeline {
    flex-direction: column;
    gap: 2rem;
  }
  
  .timeline-divider {
    width: 2px;
    height: 40px;
  }
  
  .story-highlights {
    margin-top: 1.5rem;
  }
  
  .story-floating-element {
    display: none;
  }
  
  .story-image-container {
    width: 200px;
    height: 200px;
  }
  
  .timeline-milestone {
    margin: 2rem 0;
  }
  
  .milestone-year {
    min-width: 60px;
    height: 60px;
    font-size: 0.9rem;
    margin-right: 1rem;
  }
  
  .milestone-content {
    padding: 1.5rem;
  }
  
  .leadership-quote-card {
    padding: 2rem 1.5rem;
  }
  
  .leadership-quote {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .story-hero-section {
    padding-top: 80px;
  }
  
  .story-hero-title {
    font-size: 2.5rem;
  }
  
  .story-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .timeline-item {
    min-width: 100px;
  }
  
  .timeline-year {
    font-size: 1.5rem;
  }
  
  .story-mission-card,
  .impact-stat {
    padding: 2rem 1.5rem;
  }
  
  .mission-icon,
  .impact-stat .stat-icon {
    width: 60px;
    height: 60px;
  }
  
  .mission-icon i,
  .impact-stat .stat-icon i {
    font-size: 1.5rem;
  }
  
  .impact-stat .stat-number {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Additional Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-milestone {
  animation: slideInLeft 0.8s ease-out;
}

.timeline-milestone-right {
  animation: slideInRight 0.8s ease-out;
}

/* Utility class for minimum height */
.min-vh-75 {
  min-height: 75vh;
}

/* Enhanced focus states for accessibility */
.story-mission-card:focus-within,
.impact-stat:focus-within,
.leadership-quote-card:focus-within {
  outline: 3px solid var(--primary-gold);
  outline-offset: 3px;
}

/* Print styles */
@media print {
  .story-hero-section,
  .story-cta-section {
    background: var(--white) !important;
    color: var(--dark-primary) !important;
  }
  
  .story-floating-element {
    display: none;
  }
  
  .timeline-track {
    background: var(--gray-light) !important;
  }
  
  .milestone-year {
    background: var(--gray-light) !important;
    color: var(--dark-primary) !important;
  }
}

/* Job Listings */
.job-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.job-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.job-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-requirements {
    margin-bottom: 1.5rem;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.apply-btn {
    background: var(--primary-color);
    color: rgb(22, 16, 16);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Application Modal */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-radius: 15px 15px 0 0;
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.filter-btn {
    border-radius: 25px;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Progress Steps */
.steps-section {
    padding: 4rem 0;
    background: var(--white);
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    align-items: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.2rem;
    margin-right: 1rem;
    box-shadow: var(--shadow-medium);
}

.step-text {
    font-weight: var(--font-weight-medium);
    color: var(--dark-primary);
}

.step-connector {
    width: 100px;
    height: 2px;
    background: var(--gray-light);
    margin: 0 2rem;
}

/* Requirements Section */
.requirements-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.requirement-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--gray-light);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.requirement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.requirement-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.requirement-title {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-primary);
    margin-bottom: 1rem;
}

.requirement-description {
    color: var(--gray-medium);
    font-size: 1rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: var(--white);
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-large);
    transition: all var(--transition-medium);
}

.benefit-item:hover {
    background: var(--off-white);
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.2rem;
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-weight: var(--font-weight-semibold);
    color: var(--dark-primary);
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-indicator {
        flex-direction: column;
        gap: 1rem;
    }
    
    .requirement-card {
        padding: 2rem;
    }
    
    .btn-secondary-custom {
        margin-left: 0;
        margin-top: 1rem;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 40%; right: 15%; animation-delay: 2s; }
.floating-element:nth-child(3) { top: 70%; left: 20%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Tab Navigation */
.transaction-tabs {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1rem;
    margin: -3rem auto 0;
    position: relative;
    z-index: 10;
    max-width: 500px;
    box-shadow: var(--shadow-dark);
}

.nav-pills .nav-link {
    border-radius: var(--radius-large);
    padding: 1rem 2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-medium);
    border: none;
    transition: var(--transition-medium);
}

.nav-pills .nav-link.active {
    background: var(--gradient-primary);
    color: var(--white);
}

/* Process Steps */
.process-section {
    padding: 6rem 0;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-text {
    font-weight: var(--font-weight-semibold);
    color: var(--gray-dark);
    max-width: 120px;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: var(--gray-light);
    margin: 0 1rem;
}

/* Cards */
.method-card, .requirement-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
    border: 1px solid var(--gray-light);
}

.method-card:hover, .requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.method-icon, .requirement-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-large);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.method-icon i, .requirement-icon i {
    font-size: 2rem;
    color: var(--white);
}

.method-title, .requirement-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-primary);
    margin-bottom: 1rem;
}

.method-description, .requirement-description {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Info Section */
.Withdrawal-info-section {
    background: var(--white);
    padding: 5rem 0;
}

.Withdrawal-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-red);
}

.Withdrawal-info-title {
    color: var(--dark-primary);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.Withdrawal-info-title i {
    margin-right: 0.5rem;
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 768px) {
    .story-hero-title {
        font-size: 2.5rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-item {
        margin-bottom: 2rem;
    }
    
    .transaction-tabs {
        margin-top: -2rem;
    }
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
    border: 1px solid var(--gray-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition-medium);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-primary);
    margin-bottom: 1.5rem;
}

.service-description {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
    position: relative;
    padding-left: 2rem;
}

.service-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-red);
    position: absolute;
    left: 0;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    text-align: center;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--white);
}

.team-name {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-primary);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-red);
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--white);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.process-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-primary);
    margin-bottom: 1rem;
}

.process-description {
    color: var(--gray-medium);
    line-height: 1.6;
}

.process-connector {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    z-index: 1;
}

/* Contact Form Section */
.consultation-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
}

.form-control {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-medium);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.25);
}

.form-label {
    font-weight: var(--font-weight-semibold);
    color: var(--dark-primary);
    margin-bottom: 0.5rem;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-large);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-medium);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--gradient-dark);
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="800" cy="200" r="300" fill="url(%23grad)"/><circle cx="200" cy="800" r="400" fill="url(%23grad)"/></svg>') no-repeat center;
    background-size: cover;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
    .story-hero-title {
        font-size: 2.5rem;
    }
    
    .process-connector {
        display: none;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Support Cards */
.support-card {
    background: var(--white);
    border-radius: var(--radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-medium);
    border: none;
    height: 100%;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.support-card h4 {
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--dark-primary);
}

.support-card p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.support-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-medium);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-medium);
}

.support-btn:hover {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    padding: var(--section-padding);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.accordion-button {
    background: var(--off-white);
    border: none;
    padding: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-primary);
    border-radius: var(--radius-large);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    color: var(--gray-medium);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
}

.form-control {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-medium);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-medium);
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.25);
}

.form-select {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-medium);
    padding: 0.875rem 1rem;
}

.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-medium);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-medium);
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Status Banner */
.status-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 1rem 0;
    text-align: center;
    margin-bottom: 0;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Quick Links */
.quick-links {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 3rem 0;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-large);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-medium);
    color: var(--white);
    text-decoration: none;
    display: block;
    height: 100%;
}

.quick-link-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    color: var(--white);
}

.quick-link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .support-card {
        margin-bottom: 2rem;
    }
}

/* Market Summary Styles */

/* Market Index Section */
.market-index-section {
    position: relative;
    padding: 80px 0 20px 0;
    margin: 50px 0 50px 0; 
    display: flex;
    overflow: hidden;
    background: var(--gradient-dark);
    color: var(--white);
}

.market-index-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
}

.market-index-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.index-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.index-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin: 0;
}

.index-time {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--font-weight-medium);
}

.index-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.index-value-section {
    flex: 1;
}

.index-value {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.index-change {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
}

.index-change.up {
    color: #10b981;
}

.index-change.down {
    color: var(--primary-red);
}

.index-change.equal {
    color: var(--gray-light);
}

.change-percent::before {
    content: "(";
}

.change-percent::after {
    content: ")";
}

.index-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
    font-weight: var(--font-weight-medium);
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

/* Stock Table Section */
.stock-table-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-primary);
    margin: 0;
}

.refresh-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.refresh-btn {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-medium);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.refresh-btn:active {
    transform: translateY(0);
}

.refresh-btn i {
    font-size: 0.9rem;
}

.refresh-btn.loading i {
    animation: spin 1s linear infinite;
}

.last-update {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: var(--font-weight-medium);
}

.stock-table-container {
    background: var(--white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.stock-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-family);
}

.stock-table thead th {
    background: var(--dark-primary);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    padding: 1rem 0.75rem;
    text-align: left;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--primary-red);
    position: sticky;
    top: 0;
    z-index: 10;
}

.stock-table tbody tr {
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition-fast);
}

.stock-table tbody tr:hover {
    background-color: rgba(230, 57, 70, 0.05);
}

.stock-table tbody tr:last-child {
    border-bottom: none;
}

.stock-table td {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
    color: var(--dark-primary);
}

.stock-symbol {
    font-weight: var(--font-weight-bold);
    color: var(--primary-red);
}

.stock-name {
    font-weight: var(--font-weight-medium);
    color: var(--dark-secondary);
}

.stock-price {
    font-weight: var(--font-weight-bold);
    color: var(--dark-primary);
}

.stock-change {
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stock-change.up {
    color: #10b981;
}

.stock-change.down {
    color: var(--primary-red);
}

.stock-change.equal {
    color: var(--gray-medium);
}

.stock-change::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.stock-change.up::before {
    content: "\f062";
}

.stock-change.down::before {
    content: "\f063";
}

.stock-change.equal::before {
    content: "\f068";
}

.stock-volume,
.stock-value {
    color: var(--gray-dark);
    font-weight: var(--font-weight-medium);
}

.loading-row td {
    text-align: center;
    padding: 3rem;
    color: var(--gray-medium);
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.loading-spinner i {
    font-size: 1.2rem;
    color: var(--primary-red);
}

/* Market Statistics */
.market-stats {
    margin-top: 3rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-large);
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-medium);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    background: var(--gray-medium);
}

.stat-icon.up {
    background: #10b981;
}

.stat-icon.down {
    background: var(--primary-red);
}

.stat-icon.equal {
    background: var(--gray-medium);
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: var(--font-weight-medium);
}

/* Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error States */
.error-message {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary-red);
    padding: 1rem;
    border-radius: var(--radius-medium);
    text-align: center;
    margin: 1rem 0;
    border: 1px solid rgba(230, 57, 70, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .market-index-card {
        padding: 1.5rem;
    }
    
    .index-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .index-title {
        font-size: 1.5rem;
    }
    
    .index-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .index-value {
        font-size: 2.5rem;
    }
    
    .index-stats {
        gap: 1rem;
        align-self: stretch;
        justify-content: space-around;
    }
    
    .refresh-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
    }
    
    .refresh-btn {
        width: 100%;
        justify-content: center;
    }
    
    .stock-table-container {
        border-radius: var(--radius-medium);
    }
    
    .stock-table thead th,
    .stock-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .stock-table-container {
        margin: 0 -1rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .stock-table thead th,
    .stock-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }
    
    .index-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-medium);
    }
}

.company-card {
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.company-card:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  background-color: #f8f9fa;
}

.company-logo {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-medium);
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
}

.status-open {
    background-color: rgba(34, 197, 94, 0.1);
    color: #059669;
}

.status-closed {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.status-pre-market {
    background-color: rgba(251, 191, 36, 0.1);
    color: #d97706;
}

.current-time {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-red);
}

/* Trading Schedule */
.schedule-section {
    padding: var(--section-padding);
}

.schedule-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.schedule-card:hover::before {
    transform: scaleX(1);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.schedule-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.schedule-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--dark-primary);
}

.schedule-time {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.schedule-details {
    color: var(--gray-medium);
    font-weight: var(--font-weight-medium);
}

/* Timeline */
.timeline-section {
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--section-padding);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 3rem 0;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-large);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 45%;
}

.timeline-time {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
}

.timeline-desc {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Info Cards */
.info-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.info-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.info-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--dark-primary);
}

.info-text {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .schedule-card {
        margin-bottom: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 90%;
        margin: 0 auto;
        margin-top: 1rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-marker {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 1rem;
    }
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-medium);
    border: 1px solid var(--gray-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--dark-primary);
}

.feature-description {
    color: var(--gray-medium);
    line-height: 1.6;
}

.app-showcase {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    color: var(--white);
}

.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.phone-frame {
    background: var(--dark-secondary);
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: var(--shadow-dark);
}

.phone-screen {
    background: var(--white);
    border-radius: 1.5rem;
    aspect-ratio: 9/19.5;
    position: relative;
    overflow: hidden;
}

.app-interface {
    padding: 1rem;
    height: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: var(--primary-red);
    color: white;
    border-radius: var(--radius-small);
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    background: var(--dark-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-medium);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-medium);
    font-weight: var(--font-weight-semibold);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
    color: var(--white);
    background: rgba(26, 26, 26, 0.9);
}

.placeholder-img {
    width: 100%;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: var(--radius-large);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-mockup {
        max-width: 250px;
    }
}

.csx-trade-phone img{
  max-width: 100%;
}

.contact-section {
    padding: var(--section-padding);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    padding: 3rem;
    margin-bottom: 2rem;
    transition: all var(--transition-medium);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

/* Contact Information Cards */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-large);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-primary);
    margin-bottom: 1rem;
}

.contact-info-text {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: var(--font-weight-medium);
    color: var(--dark-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-medium);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--gray-medium);
}

/* Map Container */
.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 450px;
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Office Hours */
.office-hours {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-large);
    margin-top: 2rem;
}

.office-hours h4 {
    color: var(--secondary-gold);
    margin-bottom: 1rem;
    font-weight: var(--font-weight-semibold);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}