* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary-gold: #E6AE01;
    --secondary-gold: #FFD700;
    --light-gold: #FFF9E6;
    --accent-gold: #B8860B;
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --bg-light: #f8f9fa;
    --card-light: #ffffff;
    --border-light: #e0e0e0;
}

body {
    background-color: var(--primary-black);
    color: var(--text-light);
    overflow-x: hidden;
    transition: all 0.5s ease;
}

body.light-mode {
    background-color: var(--bg-light);
    color: var(--primary-black);
}

/* Fixed Theme Switch */
.theme-switch-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: var(--primary-black);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(230, 174, 1, 0.3);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(230, 174, 1, 0.5);
    background: var(--primary-gold);
    color: var(--primary-black);
}

body.light-mode .theme-toggle {
    background: var(--card-light);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.theme-label {
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid var(--primary-gold);
}

body.light-mode .theme-label {
    color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.9);
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(230, 174, 1, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

body.light-mode header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(230, 174, 1, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.logo-icon {
    color: var(--primary-gold);
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

body.light-mode nav a {
    color: var(--primary-black);
}

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

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 174, 1, 0.3);
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--primary-black);
}

.btn-primary:hover {
    background-color: var(--secondary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 174, 1, 0.4);
}

/* ===== FIXED HERO SLIDER STYLES ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.1) contrast(1.05) saturate(1.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active { opacity: 1; z-index: 5; }

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Improved background sizing for different screen sizes */
@media (min-width: 769px) {
  .slide {
    background-size: contain; /* Changed from cover to contain for PC */
    background-position: center center;
  }
}

@media (max-width: 768px) {
  .slide {
    background-size: cover; /* Keep cover for mobile */
    background-position: center center;
  }
}

/* Alternative approach - use object-fit if using img elements */
/* Uncomment if you switch to img tags instead of background images */
/*
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 769px) {
  .slide-img {
    object-fit: contain;
  }
}
*/

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 10;
  max-width: 650px;
  color: #fff;
  padding: 2rem;
  text-align: center;
  animation: fadeInUp 1s forwards;
  background: rgba(0, 0, 0, 0.4); /* Added background for better text readability */
  backdrop-filter: blur(5px);
  border-radius: 15px;
  margin: 0 20px;
}

.slide-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.slide-content h2 span {
  background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.slide-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 0 0 10px rgba(255,255,255,0.7);
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  min-width: 160px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  color: var(--primary-black);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230,174,1,0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--primary-gold);
}
.btn-outline:hover {
  background: var(--primary-gold);
  color: var(--primary-black);
  transform: translateY(-3px);
}

/* Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.slider-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background-color: var(--primary-gold);
  transform: scale(1.2);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: var(--primary-gold);
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}
.slider-arrow:hover {
  background: var(--primary-gold);
  color: var(--primary-black);
}
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* Floating decorations */
.floating-elements {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.floating-element {
  position: absolute;
  background: rgba(230, 174, 1, 0.1);
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}
.floating-element:nth-child(1) { width:80px; height:80px; top:20%; left:10%; animation-delay:0s; }
.floating-element:nth-child(2) { width:120px; height:120px; top:60%; left:5%; animation-delay:2s; }
.floating-element:nth-child(3) { width:60px; height:60px; top:40%; right:15%; animation-delay:4s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 768px) {
  .slide-content {
    padding: 1rem;
    margin: 0 15px;
    background: rgba(0, 0, 0, 0.5); /* Darker background for mobile readability */
  }
  .slider-arrow { width: 40px; height: 40px; }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 200px; }
  .slider-controls { bottom: 20px; }
  .slide-content {
    margin: 0 10px;
    padding: 1.5rem 1rem;
  }
}

/* =====END FIXED HERO SLIDER STYLES ===== */


/* About Hero Section */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding-top: 100px;
}

body.light-mode .about-hero {
    background: linear-gradient(135deg, var(--light-gold) 0%, #ffffff 100%);
}

.about-hero-content {
    max-width: 800px;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.about-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.about-hero h2 span {
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

body.light-mode .about-hero p {
    color: #666666;
}

/* Gold Hero Section */
.gold-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding-top: 100px;
}

body.light-mode .gold-hero {
    background: linear-gradient(135deg, var(--light-gold) 0%, #ffffff 100%);
}

.gold-hero-content {
    max-width: 800px;
    z-index: 2;
}

.gold-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.gold-hero h2 span {
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gold-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

body.light-mode .gold-hero p {
    color: #666666;
}

.gold-hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

/* Stocks Hero Section */
.stocks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding-top: 100px;
}

body.light-mode .stocks-hero {
    background: linear-gradient(135deg, var(--light-gold) 0%, #ffffff 100%);
}

.stocks-hero-content {
    max-width: 800px;
    z-index: 2;
}

.stocks-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.stocks-hero h2 span {
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stocks-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

body.light-mode .stocks-hero p {
    color: #666666;
}

.stocks-hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

/* Loans Hero Section */
.loans-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding-top: 100px;
}

body.light-mode .loans-hero {
    background: linear-gradient(135deg, var(--light-gold) 0%, #ffffff 100%);
}

.loans-hero-content {
    max-width: 800px;
    z-index: 2;
}

.loans-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.loans-hero h2 span {
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.loans-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

body.light-mode .loans-hero p {
    color: #666666;
}

.loans-hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

/* Crypto Hero Section */
.crypto-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding-top: 100px;
}

body.light-mode .crypto-hero {
    background: linear-gradient(135deg, var(--light-gold) 0%, #ffffff 100%);
}

.crypto-hero-content {
    max-width: 800px;
    z-index: 2;
}

.crypto-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.crypto-hero h2 span {
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.crypto-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

body.light-mode .crypto-hero p {
    color: #666666;
}

.crypto-hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

/* Forex Hero Section */
.forex-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding-top: 100px;
}

body.light-mode .forex-hero {
    background: linear-gradient(135deg, var(--light-gold) 0%, #ffffff 100%);
}

.forex-hero-content {
    max-width: 800px;
    z-index: 2;
}

.forex-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.forex-hero h2 span {
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.forex-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

body.light-mode .forex-hero p {
    color: #666666;
}

.forex-hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

/* Real Estate Hero Section */
.realestate-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding-top: 100px;
}

body.light-mode .realestate-hero {
    background: linear-gradient(135deg, var(--light-gold) 0%, #ffffff 100%);
}

.realestate-hero-content {
    max-width: 800px;
    z-index: 2;
}

.realestate-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.realestate-hero h2 span {
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.realestate-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

body.light-mode .realestate-hero p {
    color: #666666;
}

.realestate-hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

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

.floating-element {
    position: absolute;
    background: rgba(230, 174, 1, 0.1);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

body.light-mode .floating-element {
    background: rgba(230, 174, 1, 0.2);
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 15%;
    animation-delay: 4s;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

body.light-mode .section-title p {
    color: #666666;
}

/* Mission Section */
.mission {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .mission {
    background-color: var(--card-light);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.mission-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .mission-text p {
    color: #666666;
}

.mission-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.mission-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 174, 1, 0.2);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .values {
    background-color: var(--bg-light);
}

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

.value-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .value-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

body.light-mode .value-card p {
    color: #666666;
}

/* Timeline Section */
.timeline {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .timeline {
    background-color: var(--card-light);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--primary-gold);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    width: 50%;
    padding: 0 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

body.light-mode .timeline-content {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

.timeline-year {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

body.light-mode .timeline-content p {
    color: #666666;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 2rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-gold);
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .features {
    background-color: var(--card-light);
}

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

.feature-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .feature-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

body.light-mode .feature-card p {
    color: #666666;
}

/* Investment Offers Section */
.investment-offers {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .investment-offers {
    background-color: var(--bg-light);
}

.offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background-color: var(--secondary-black);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .offer-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

.offer-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.offer-content {
    padding: 1.5rem;
}

.offer-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

body.light-mode .offer-content p {
    color: #666666;
}

.offer-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.offer-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

body.light-mode .offer-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.offer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-return {
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Investment Plans Section */
.investment-plans {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .investment-plans {
    background-color: var(--card-light);
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .plan-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.plan-card.featured {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.plan-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

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

.plan-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .plan-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* Trading Signals Section */
.trading-signals {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .trading-signals {
    background-color: var(--bg-light);
}

.signals-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.signal-card {
    background-color: var(--secondary-black);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .signal-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.signal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

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

.signal-asset {
    font-size: 1.2rem;
    font-weight: 600;
}

.signal-type {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.signal-type.buy {
    background-color: rgba(0, 200, 83, 0.2);
    color: #00c853;
}

.signal-type.sell {
    background-color: rgba(255, 82, 82, 0.2);
    color: #ff5252;
}

.signal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.signal-detail {
    display: flex;
    flex-direction: column;
}

.signal-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

body.light-mode .signal-label {
    color: #666666;
}

.signal-value {
    font-size: 1rem;
    font-weight: 600;
}

.signal-timestamp {
    color: var(--text-gray);
    font-size: 0.8rem;
    text-align: right;
}

body.light-mode .signal-timestamp {
    color: #666666;
}

/* News Section */
.news {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .news {
    background-color: var(--card-light);
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background-color: var(--secondary-black);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .news-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 174, 1, 0.1);
}

.news-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    display: inline-block;
    background-color: rgba(230, 174, 1, 0.2);
    color: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

body.light-mode .news-category {
    background-color: var(--light-gold);
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

body.light-mode .news-excerpt {
    color: #666666;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-gray);
}

body.light-mode .news-meta {
    color: #666666;
}

/* Team Section */
.team {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .team {
    background-color: var(--bg-light);
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--secondary-black);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

body.light-mode .team-member {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
}

.member-photo {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

body.light-mode .member-bio {
    color: #666666;
}

/* Stats Section */
.stats {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
    transition: all 0.5s ease;
}

body.light-mode .stats {
    background: linear-gradient(135deg, var(--light-gold) 0%, #ffffff 100%);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-gray);
}

body.light-mode .stat-text {
    color: #666666;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .testimonials {
    background-color: var(--card-light);
}

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

.testimonial-card {
    background-color: var(--secondary-black);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .testimonial-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-weight: 700;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

body.light-mode .author-info p {
    color: #666666;
}

/* FAQ Section */
.faq {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .faq {
    background-color: var(--bg-light);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(230, 174, 1, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

body.light-mode .faq-item {
    border: 1px solid rgba(230, 174, 1, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--secondary-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

body.light-mode .faq-question {
    background-color: var(--card-light);
}

.faq-question:hover {
    background-color: rgba(230, 174, 1, 0.1);
}

body.light-mode .faq-question:hover {
    background-color: var(--light-gold);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-icon {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(230, 174, 1, 0.05);
}

body.light-mode .faq-answer {
    background-color: var(--light-gold);
}

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

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

/* Gold Overview Section */
.gold-overview {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .gold-overview {
    background-color: var(--card-light);
}

.gold-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gold-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.gold-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .gold-text p {
    color: #666666;
}

.gold-features {
    list-style: none;
    margin: 2rem 0;
}

.gold-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

body.light-mode .gold-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gold-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.gold-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.gold-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 174, 1, 0.2);
}

.gold-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gold Products Section */
.gold-products {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .gold-products {
    background-color: var(--bg-light);
}

.gold-products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gold-product-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .gold-product-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gold-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.gold-product-card:hover::before {
    transform: scaleX(1);
}

.gold-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

.gold-product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.gold-product-name {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gold-product-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-black);
}

.gold-product-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.gold-product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.gold-product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gold-product-detail {
    display: flex;
    flex-direction: column;
}

.gold-product-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

body.light-mode .gold-product-label {
    color: #666666;
}

.gold-product-value {
    font-size: 1rem;
    font-weight: 600;
}

.gold-product-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.trend-up {
    color: #00c853;
}

.trend-down {
    color: #ff5252;
}

/* Stocks Overview Section */
.stocks-overview {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .stocks-overview {
    background-color: var(--card-light);
}

.stocks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stocks-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.stocks-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .stocks-text p {
    color: #666666;
}

.stocks-features {
    list-style: none;
    margin: 2rem 0;
}

.stocks-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

body.light-mode .stocks-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stocks-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.stocks-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.stocks-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 174, 1, 0.2);
}

.stocks-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Top Stocks Section */
.top-stocks {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .top-stocks {
    background-color: var(--bg-light);
}

.stocks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stock-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .stock-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stock-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stock-card:hover::before {
    transform: scaleX(1);
}

.stock-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

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

.stock-name {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stock-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-black);
}

.stock-symbol {
    font-size: 1.5rem;
    font-weight: 700;
}

.stock-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.stock-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stock-detail {
    display: flex;
    flex-direction: column;
}

.stock-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

body.light-mode .stock-label {
    color: #666666;
}

.stock-value {
    font-size: 1rem;
    font-weight: 600;
}

.stock-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* Loans Overview Section */
.loans-overview {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .loans-overview {
    background-color: var(--card-light);
}

.loans-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.loans-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.loans-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .loans-text p {
    color: #666666;
}

.loans-features {
    list-style: none;
    margin: 2rem 0;
}

.loans-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

body.light-mode .loans-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.loans-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.loans-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.loans-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 174, 1, 0.2);
}

.loans-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Loan Products Section */
.loan-products {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .loan-products {
    background-color: var(--bg-light);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .product-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

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

.product-name {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-black);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.product-rate {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-detail {
    display: flex;
    flex-direction: column;
}

.product-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

body.light-mode .product-label {
    color: #666666;
}

.product-value {
    font-size: 1rem;
    font-weight: 600;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.feature-included {
    color: #00c853;
}

.feature-excluded {
    color: #ff5252;
}

/* Grants Section */
.grants-section {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .grants-section {
    background-color: var(--card-light);
}

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

.grant-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .grant-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.grant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.grant-card:hover::before {
    transform: scaleX(1);
}

.grant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

.grant-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.grant-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.grant-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.grant-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .grant-card p {
    color: #666666;
}

.grant-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.grant-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .grant-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.grant-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* Application Process Section */
.application-process {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .application-process {
    background-color: var(--bg-light);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.process-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .process-text p {
    color: #666666;
}

.process-steps {
    list-style: none;
    margin: 2rem 0;
}

.process-steps li {
    padding: 1rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
}

body.light-mode .process-steps li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.process-icon {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.process-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.process-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 174, 1, 0.2);
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .success-stories {
    background-color: var(--card-light);
}

.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .story-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

.story-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

body.light-mode .story-quote {
    color: #666666;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

body.light-mode .author-info p {
    color: #666666;
}

/* Crypto Overview Section */
.crypto-overview {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .crypto-overview {
    background-color: var(--card-light);
}

.crypto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.crypto-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.crypto-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .crypto-text p {
    color: #666666;
}

.crypto-features {
    list-style: none;
    margin: 2rem 0;
}

.crypto-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

body.light-mode .crypto-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.crypto-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.crypto-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.crypto-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 174, 1, 0.2);
}

.crypto-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Forex Overview Section */
.forex-overview {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .forex-overview {
    background-color: var(--card-light);
}

.forex-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.forex-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.forex-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .forex-text p {
    color: #666666;
}

.forex-features {
    list-style: none;
    margin: 2rem 0;
}

.forex-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

body.light-mode .forex-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.forex-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.forex-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.forex-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 174, 1, 0.2);
}

.forex-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Real Estate Overview Section */
.realestate-overview {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .realestate-overview {
    background-color: var(--card-light);
}

.realestate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.realestate-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.realestate-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .realestate-text p {
    color: #666666;
}

.realestate-features {
    list-style: none;
    margin: 2rem 0;
}

.realestate-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

body.light-mode .realestate-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.realestate-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.realestate-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.realestate-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 174, 1, 0.2);
}

.realestate-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Top Cryptocurrencies Section */
.top-cryptos {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .top-cryptos {
    background-color: var(--bg-light);
}

.cryptos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.crypto-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .crypto-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.crypto-card:hover::before {
    transform: scaleX(1);
}

.crypto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

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

.crypto-name {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.crypto-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-black);
}

.crypto-symbol {
    font-size: 1.5rem;
    font-weight: 700;
}

.crypto-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.crypto-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.crypto-detail {
    display: flex;
    flex-direction: column;
}

.crypto-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

body.light-mode .crypto-label {
    color: #666666;
}

.crypto-value {
    font-size: 1rem;
    font-weight: 600;
}

.crypto-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.trend-up {
    color: #00c853;
}

.trend-down {
    color: #ff5252;
}

/* Trading Pairs Section */
.trading-pairs {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .trading-pairs {
    background-color: var(--bg-light);
}

.pairs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pair-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .pair-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pair-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pair-card:hover::before {
    transform: scaleX(1);
}

.pair-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

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

.pair-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.pair-spread {
    background-color: rgba(230, 174, 1, 0.2);
    color: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pair-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pair-detail {
    display: flex;
    flex-direction: column;
}

.pair-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

body.light-mode .pair-label {
    color: #666666;
}

.pair-value {
    font-size: 1rem;
    font-weight: 600;
}

.pair-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* Property Types Section */
.property-types {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .property-types {
    background-color: var(--bg-light);
}

.types-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.type-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .type-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.type-card:hover::before {
    transform: scaleX(1);
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

.type-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.type-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .type-card p {
    color: #666666;
}

.type-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.type-stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

body.light-mode .stat-label {
    color: #666666;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Investment Strategies Section */
.investment-strategies {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .investment-strategies {
    background-color: var(--card-light);
}

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

.strategy-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .strategy-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.strategy-card:hover::before {
    transform: scaleX(1);
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

.strategy-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.strategy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.strategy-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .strategy-card p {
    color: #666666;
}

.strategy-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.strategy-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .strategy-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.strategy-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* Market Analysis Section */
.market-analysis {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .market-analysis {
    background-color: var(--bg-light);
}

.analysis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.analysis-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.analysis-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .analysis-text p {
    color: #666666;
}

.analysis-features {
    list-style: none;
    margin: 2rem 0;
}

.analysis-features li {
    padding: 1rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
}

body.light-mode .analysis-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.analysis-icon {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.analysis-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.analysis-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 174, 1, 0.2);
}

.analysis-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Storage & Security Section */
.storage-security {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .storage-security {
    background-color: var(--bg-light);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.security-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .security-text p {
    color: #666666;
}

.security-features {
    list-style: none;
    margin: 2rem 0;
}

.security-features li {
    padding: 1rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
}

body.light-mode .security-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.security-icon {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.security-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.security-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 174, 1, 0.2);
}

.security-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Trading Platforms Section */
.trading-platforms {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .trading-platforms {
    background-color: var(--card-light);
}

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

.platform-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .platform-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

.platform-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.platform-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .platform-card p {
    color: #666666;
}

.platform-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.platform-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .platform-features li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.platform-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* Strategy Section */
.strategy {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .strategy {
    background-color: var(--bg-light);
}

.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.strategy-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.strategy-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light-mode .strategy-text p {
    color: #666666;
}

.strategy-steps {
    list-style: none;
    margin: 2rem 0;
}

.strategy-steps li {
    padding: 1rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
}

body.light-mode .strategy-steps li {
    color: #666666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.step-number {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.strategy-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.strategy-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 174, 1, 0.2);
}

.strategy-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Investment Strategy Section */
.investment-strategy {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .investment-strategy {
    background-color: var(--bg-light);
}

/* Featured Properties Section */
.featured-properties {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .featured-properties {
    background-color: var(--card-light);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.property-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .property-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.property-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.property-content {
    padding: 1.5rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

body.light-mode .property-location {
    color: #666666;
}

.property-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.property-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

body.light-mode .property-feature {
    color: #666666;
}

.property-feature i {
    color: var(--primary-gold);
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.property-roi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.roi-badge {
    background-color: rgba(230, 174, 1, 0.2);
    color: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Security Section */
.security {
    padding: 6rem 5%;
    background-color: var(--primary-black);
    transition: all 0.5s ease;
}

body.light-mode .security {
    background-color: var(--bg-light);
}

/* Performance Section */
.performance {
    padding: 6rem 5%;
    background-color: var(--secondary-black);
    transition: all 0.5s ease;
}

body.light-mode .performance {
    background-color: var(--card-light);
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .stat-card {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 174, 1, 0.1);
    border-color: rgba(230, 174, 1, 0.3);
}

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

.stat-text {
    font-size: 1rem;
    color: var(--text-gray);
}

body.light-mode .stat-text {
    color: #666666;
}

.performance-chart {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .performance-chart {
    background-color: var(--card-light);
    border: 1px solid rgba(230, 174, 1, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.chart-placeholder {
    height: 300px;
    background: linear-gradient(135deg, rgba(230, 174, 1, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.2rem;
}

body.light-mode .chart-placeholder {
    background: linear-gradient(135deg, rgba(230, 174, 1, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    color: #666666;
}

/* CTA Section */
.cta {
    padding: 6rem 5%;
    text-align: center;
    background-color: var(--secondary-black);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

body.light-mode .cta {
    background-color: var(--card-light);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

body.light-mode .cta p {
    color: #666666;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Footer */
        footer {
            background-color: #1a1a1a;
            padding: 4rem 5% 2rem;
            border-top: 1px solid rgba(230, 174, 1, 0.2);
            transition: all 0.5s ease;
            color: var(--text-light);
        }

        body.light-mode footer {
            background-color: #2d2d2d;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-gold);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--primary-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #cccccc;
            font-size: 0.9rem;
        }

        /* Scroll buttons */
        .scroll-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }
        
        .scroll-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-gold);
            color: #1a1a1a;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }
        
        .scroll-btn.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-btn:hover {
            background-color: #d4a001;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }
        
        .scroll-btn:active {
            transform: translateY(0);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .scroll-buttons {
                right: 15px;
                bottom: 15px;
            }
            
            .scroll-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .footer-content {
                gap: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .scroll-buttons {
                right: 10px;
                bottom: 10px;
            }
            
            .scroll-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

/* END FOOTERs */

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px) translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

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

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

/* Landscape Mode Styles */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 120vh;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features-grid,
    .offers-container,
    .plans-container,
    .signals-container,
    .news-container,
    .team-container,
    .testimonials-container,
    .products-container,
    .grants-grid,
    .stories-container,
    .cryptos-container,
    .strategies-grid,
    .performance-stats,
    .pairs-container,
    .platforms-grid,
    .types-container,
    .properties-grid,
    .gold-products-container,
    .stocks-container,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h2,
    .about-hero h2,
    .gold-hero h2,
    .stocks-hero h2,
    .loans-hero h2,
    .crypto-hero h2,
    .forex-hero h2,
    .realestate-hero h2 {
        font-size: 2.8rem;
    }
    
    .theme-switch-container {
        right: 10px;
    }
    
    .theme-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-content,
    .about-hero-content,
    .gold-hero-content,
    .stocks-hero-content,
    .loans-hero-content,
    .crypto-hero-content,
    .forex-hero-content,
    .realestate-hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .about-hero,
    .gold-hero,
    .stocks-hero,
    .loans-hero,
    .crypto-hero,
    .forex-hero,
    .realestate-hero {
        padding-top: 100px;
    }
    
    .hero-buttons,
    .gold-hero-buttons,
    .stocks-hero-buttons,
    .loans-hero-buttons,
    .crypto-hero-buttons,
    .forex-hero-buttons,
    .realestate-hero-buttons,
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .mission-content,
    .gold-content,
    .loans-content,
    .process-content,
    .crypto-content,
    .security-content,
    .forex-content,
    .strategy-content,
    .realestate-content,
    .stocks-content,
    .analysis-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 20px !important;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .auth-buttons {
        display: none;
    }
    
    .theme-switch-container {
        display: flex;
        right: 5px;
        top: 60%;
    }
    
    .theme-toggle {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .theme-label {
        font-size: 0.7rem;
    }
    
}

@media (max-width: 576px) {
    .hero h2,
    .about-hero h2,
    .gold-hero h2,
    .stocks-hero h2,
    .loans-hero h2,
    .crypto-hero h2,
    .forex-hero h2,
    .realestate-hero h2 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
    }
    
    .theme-switch-container {
        display: flex;
        right: 5px;
        top: 60%;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .theme-label {
        font-size: 0.6rem;
    }
    
    .hero-buttons,
    .gold-hero-buttons,
    .stocks-hero-buttons,
    .loans-hero-buttons,
    .crypto-hero-buttons,
    .forex-hero-buttons,
    .realestate-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* === Mobile Navigation Fix === */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2001;
}

body.light-mode .mobile-menu-btn {
    color: var(--primary-black);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    /* hide by default */
    #mainNav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--secondary-black);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.8rem;
        transform: translateX(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 2000; /* above header and other content */
        overflow-y: auto;
    }

    body.light-mode #mainNav {
        background-color: var(--card-light);
    }

    /* show when active */
    #mainNav.active {
        transform: translateX(0);
        opacity: 1;
    }

    #mainNav ul {
        flex-direction: column;
        gap: 1.2rem;
    }

    #mainNav a {
        color: var(--text-light);
        font-size: 1.2rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s;
    }

    body.light-mode #mainNav a {
        color: var(--primary-black);
    }

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

    .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    body.light-mode .mobile-auth {
        border-top: 1px solid rgba(0,0,0,0.1);
    }
}

/* Add borders to all card components */
.value-card,
.feature-card,
.offer-card,
.plan-card,
.signal-card,
.news-card,
.team-member,
.testimonial-card,
.gold-product-card,
.stock-card,
.product-card,
.grant-card,
.story-card,
.crypto-card,
.pair-card,
.type-card,
.strategy-card,
.platform-card,
.property-card,
.stat-card,
.performance-chart {
    border: 3px solid rgba(230, 174, 1, 0.2) !important;
}

/* Dark mode specific border colors */
body:not(.light-mode) .value-card,
body:not(.light-mode) .feature-card,
body:not(.light-mode) .offer-card,
body:not(.light-mode) .plan-card,
body:not(.light-mode) .signal-card,
body:not(.light-mode) .news-card,
body:not(.light-mode) .team-member,
body:not(.light-mode) .testimonial-card,
body:not(.light-mode) .gold-product-card,
body:not(.light-mode) .stock-card,
body:not(.light-mode) .product-card,
body:not(.light-mode) .grant-card,
body:not(.light-mode) .story-card,
body:not(.light-mode) .crypto-card,
body:not(.light-mode) .pair-card,
body:not(.light-mode) .type-card,
body:not(.light-mode) .strategy-card,
body:not(.light-mode) .platform-card,
body:not(.light-mode) .property-card,
body:not(.light-mode) .stat-card,
body:not(.light-mode) .performance-chart {
    border-color: rgba(230, 174, 1, 0.3) !important;
}

/* Light mode specific border colors */
body.light-mode .value-card,
body.light-mode .feature-card,
body.light-mode .offer-card,
body.light-mode .plan-card,
body.light-mode .signal-card,
body.light-mode .news-card,
body.light-mode .team-member,
body.light-mode .testimonial-card,
body.light-mode .gold-product-card,
body.light-mode .stock-card,
body.light-mode .product-card,
body.light-mode .grant-card,
body.light-mode .story-card,
body.light-mode .crypto-card,
body.light-mode .pair-card,
body.light-mode .type-card,
body.light-mode .strategy-card,
body.light-mode .platform-card,
body.light-mode .property-card,
body.light-mode .stat-card,
body.light-mode .performance-chart {
    border-color: rgba(230, 174, 1, 0.4) !important;
}

/* Hover effects with border enhancement */
.value-card:hover,
.feature-card:hover,
.offer-card:hover,
.plan-card:hover,
.signal-card:hover,
.news-card:hover,
.team-member:hover,
.testimonial-card:hover,
.gold-product-card:hover,
.stock-card:hover,
.product-card:hover,
.grant-card:hover,
.story-card:hover,
.crypto-card:hover,
.pair-card:hover,
.type-card:hover,
.strategy-card:hover,
.platform-card:hover,
.property-card:hover,
.stat-card:hover {
    border-color: rgba(230, 174, 1, 0.6) !important;
}

/* Featured plan card border enhancement */
.plan-card.featured {
    border-color: var(--primary-gold) !important;
    border-width: 2px !important;
}

/* Timeline content borders */
.timeline-content {
    border: 1px solid rgba(230, 174, 1, 0.2) !important;
}

body:not(.light-mode) .timeline-content {
    border-color: rgba(230, 174, 1, 0.3) !important;
}

body.light-mode .timeline-content {
    border-color: rgba(230, 174, 1, 0.4) !important;
}

.timeline-content:hover {
    border-color: rgba(230, 174, 1, 0.6) !important;
}

/* FAQ item borders */
.faq-item {
    border: 2px solid rgba(230, 174, 1, 0.2) !important;
}

body:not(.light-mode) .faq-item {
    border-color: rgba(230, 174, 1, 0.3) !important;
}

body.light-mode .faq-item {
    border-color: rgba(230, 174, 1, 0.4) !important;
}

/* Mission image border */
.mission-image,
.gold-image,
.loans-image,
.process-image,
.crypto-image,
.security-image,
.forex-image,
.strategy-image,
.realestate-image,
.stocks-image,
.analysis-image {
    border: 4px solid rgba(230, 174, 1, 0.2) !important;
}

body:not(.light-mode) .mission-image,
body:not(.light-mode) .gold-image,
body:not(.light-mode) .loans-image,
body:not(.light-mode) .process-image,
body:not(.light-mode) .crypto-image,
body:not(.light-mode) .security-image,
body:not(.light-mode) .forex-image,
body:not(.light-mode) .strategy-image,
body:not(.light-mode) .realestate-image,
body:not(.light-mode) .stocks-image,
body:not(.light-mode) .analysis-image {
    border-color: rgba(230, 174, 1, 0.3) !important;
}

body.light-mode .mission-image,
body.light-mode .gold-image,
body.light-mode .loans-image,
body.light-mode .process-image,
body.light-mode .crypto-image,
body.light-mode .security-image,
body.light-mode .forex-image,
body.light-mode .strategy-image,
body.light-mode .realestate-image,
body.light-mode .stocks-image,
body.light-mode .analysis-image {
    border-color: rgba(230, 174, 1, 0.4) !important;
}

/* page loader */
#page-loader {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* loader background */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Coin Container */
.coin-container {
  perspective: 1000px;
}

.coin {
  width: 100px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  animation: spin 1.8s linear infinite;
}

/* Coin Sides */
.side {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd700, #b8860b);
  border: 3px solid #fff3b0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
  font-weight: bold;
}

/* Front = Bitcoin */
.side-front {
  transform: rotateY(0deg) translateZ(5px);
}

/* Back = Dollar */
.side-back {
  transform: rotateY(180deg) translateZ(5px);
}

/* Spin Animation */
@keyframes spin {
  0%   { transform: rotateY(0); }
  100% { transform: rotateY(360deg); }
}
   
 