/* ===================================
   Google Fonts Import
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===================================
   CSS Variables & Root Styles
   =================================== */
:root {
  /* Color Palette - Enhanced Contrast */
  --navy-blue: #001f3f;
  --navy-dark: #001529;
  --navy-light: #003366;
  --gold: #d4af37;
  --gold-light: #f4e5b8;
  --gold-dark: #b8941f;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --text-dark: #0a0a0a;
  --text-gray: #555555;
  --text-light: #8b8b8b;
  --green: #28a745;
  --red: #dc3545;
  
  /* Enhanced Color Accents */
  --accent-blue: #0066cc;
  --accent-purple: #6366f1;
  --accent-teal: #14b8a6;
  
  /* Shadows - More depth */
  --shadow-sm: 0 2px 8px rgba(0, 31, 63, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 31, 63, 0.15);
  --shadow-lg: 0 10px 40px rgba(0, 31, 63, 0.2);
  --shadow-xl: 0 20px 60px rgba(0, 31, 63, 0.25);
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 
               sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ===================================
   Typography - Professional Styling
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--navy-blue);
  letter-spacing: -0.02em;
}

h1 { 
  font-size: clamp(2.5rem, 5vw, 4.5rem); 
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 { 
  font-size: clamp(2rem, 4vw, 3.5rem); 
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 { 
  font-size: clamp(1.5rem, 3vw, 2.5rem); 
  font-weight: 600;
}

h4 { 
  font-size: clamp(1.25rem, 2.5vw, 1.75rem); 
  font-weight: 600;
}

h5 { 
  font-size: clamp(1.125rem, 2vw, 1.5rem); 
  font-weight: 500;
}

h6 { 
  font-size: clamp(1rem, 1.5vw, 1.25rem); 
  font-weight: 500;
}

p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  font-weight: 400;
  color: var(--text-gray);
  letter-spacing: 0.01em;
}

a {
  color: var(--navy-blue);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
}

a:hover {
  color: var(--gold);
}

strong, b {
  font-weight: 600;
  color: var(--text-dark);
}

/* ===================================
   Container & Layout
   =================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

section {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

/* ===================================
   Section Backgrounds - FIXED WITH INVESTMENT SECTION
   =================================== */
.section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Investment Section Background - ADDED */


.comparison-section .section-bg-image {
  background-image: url('../images/manMobile.png');
  background-attachment: fixed;
}





/* .cta-section .section-bg-image {
  background-image: url('../images/manMobile.png');
} */

/* .footer .section-bg-image {
  background-image: url('../images/poster-1.webp');
} */

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.418);
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Investment Section Overlay - ADDED */


.comparison-section .section-overlay {
  background: rgba(255, 255, 255, 0);
}




.cta-section .section-overlay {
  /* background: linear-gradient(135deg, 
    rgba(0, 31, 63, 0.96), 
    rgba(0, 21, 41, 0.96)); */
}

.footer .section-overlay {
  /* background: linear-gradient(135deg, 
    rgba(0, 21, 41, 0.154), 
    rgb(0, 31, 63)); */
}

section > .container,
section > * {
  position: relative;
  z-index: 2;
}

/* ===================================
   Section Titles - Enhanced Typography
   =================================== */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--navy-blue);
  margin-bottom: var(--spacing-sm);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cta-section .section-title h2,
.footer .section-title h2 {
  color: var(--navy-blue);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.comparison-section .section-title h2 {
  color: var(--navy-blue);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: var(--spacing-md) auto 0;
  border-radius: var(--radius-full);
  position: relative;
}

.title-underline::before,
.title-underline::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.title-underline::before {
  left: -16px;
}

.title-underline::after {
  right: -16px;
}

/* ===================================
   Buttons - Enhanced Styling
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.02em;
}

.btn svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: var(--shadow-md);
  font-weight: 700;
}

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

.btn-secondary {
  background: transparent;
  border: 2px solid var(--navy-blue);
  color: var(--navy-blue);
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--navy-blue);
  color: var(--white);
}

/* ===================================
   Investment Cards Section - Enhanced
   =================================== */


.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title-main {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--navy-blue);
  margin-bottom: var(--spacing-md);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.8;
}

.investment-buttons-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}

.investment-card-btn {
  position: relative;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: linear-gradient(135deg, var(--white), #fafafad5);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.investment-card-btn:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--navy-blue);
}

.btn-glare {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255, 255, 255, 0.5) 50%, 
    transparent 70%);
  animation: glareAnimation 4s infinite;
  pointer-events: none;
}

@keyframes glareAnimation {
  0% { 
    transform: translateX(-100%) translateY(-100%) rotate(45deg); 
  }
  100% { 
    transform: translateX(100%) translateY(100%) rotate(45deg); 
  }
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

.investment-card-btn:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: var(--shadow-lg);
}

.card-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.btn-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.btn-content h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--navy-blue);
  margin-bottom: var(--spacing-xs);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.btn-content p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-gray);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.min-investment {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-dark);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: var(--spacing-sm);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card-arrow {
  margin-top: var(--spacing-md);
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-spring);
  box-shadow: var(--shadow-sm);
}

.investment-card-btn:hover .card-arrow {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.card-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy-dark);
  stroke-width: 3;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* ===================================
   Scroll Animations
   =================================== */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-down {
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards;
}

.slide-in-left {
  opacity: 0;
  animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
}

/* Stagger animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ===================================
   Utility Classes
   =================================== */
.hidden {
  display: none !important;
}

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

.text-left {
  text-align: left;
}

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

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }

.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }

/* ===================================
   Accessibility
   =================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.fixed-social-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; /* Ensures it stays above all overlays */
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn svg {
    width: 26px;
    height: 26px;
}

/* WhatsApp Styling */
.social-btn.whatsapp {
    background: #25D366;
}

/* LinkedIn Styling */
.social-btn.linkedin {
    background: #0077b5;
}

/* Hover Effects */
.social-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.social-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    z-index: -1;
    transition: transform 0.3s ease;
}

.social-btn:hover::after {
    transform: scale(1.4);
    opacity: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .fixed-social-actions {
        bottom: 20px;
        right: 20px;
    }
    .social-btn {
        width: 48px;
        height: 48px;
    }
}
.ticker-item .up {
    color: #00c853; /* Success Green */
    margin-left: 5px;
    font-weight: bold;
}

.ticker-item .down {
    color: #ff3d00; /* Danger Red */
    margin-left: 5px;
    font-weight: bold;
}

.ticker-item .price {
    font-family: 'Monaco', monospace;
    margin-left: 8px;
}
/* Ticker Styling */
.ticker-item .up {
    color: #2ecc71 !important; /* Green */
    font-weight: 600;
}

.ticker-item .down {
    color: #e74c3c !important; /* Red */
    font-weight: 600;
}

.price {
    margin-left: 5px;
    font-variant-numeric: tabular-nums; /* Prevents text jumping */
}

/* Logo Animation */
.nav-logo-img {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .nav-logo-img {
    transform: rotate(-5deg) scale(1.1);
}
body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;    /* IE 10 and Consumer Preview */
    user-select: none;        /* Standard syntax */
}