/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



@media screen and (max-width: 768px) {
    .hero {
      height: 70vh; /* Reduce height of hero section */
      position: relative;
      overflow: hidden;
    }
  
    .hero .slide-content {
      padding: 10px;
      text-align: left;
      max-width: 100%;
      margin-top: 1;
    }
  
    .hero h1 {
      font-size: 1.6rem;
      /* margin: 0 0 10px 0; */
      padding-left: 10px; /* Align to the left with padding */
      line-height: 1.3;
    }
  
    .performance-chart{
        width: 100%;
    }

    .hero p {
      font-size: 1rem;
      padding-left: 10px;
      margin-bottom: 15px;
    }
  
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-left: 10px;
    }
  
    .hero-buttons .cta-btn {
      font-size: 0.9rem;
      padding: 10px 16px;
      border-radius: 4px;
    }
  
    .slider-nav {
      display: none; /* Hide slider nav on mobile */
    }
  
    .hero .slide {
      background-size: cover;
      background-position: center;
    }
  
    .hero .slide-content {
      margin-top: 20vh; /* Push content down slightly for mobile spacing */
    }
  }
  



.blueoak-investment {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    min-height: 100vh;
}

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

.bsection-header {
    text-align: center;
    margin-bottom: 60px;
}

.bsection-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.bsection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.bsection-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.binvestment-table-wrapper {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 48, 73, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.binvestment-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.binvestment-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.binvestment-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.binvestment-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.binvestment-table tbody tr:hover {
    background: var(--background-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 48, 73, 0.1);
}

.binvestment-table tbody tr.featured {
    background: linear-gradient(135deg, rgba(0, 48, 73, 0.05) 0%, rgba(0, 48, 73, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
}

.binvestment-table td {
    padding: 25px 15px;
    vertical-align: middle;
}

.bplan-name {
    display: flex;
    flex-direction: column;
}

.bplan-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.bplan-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.broi-badge {
    background: var(--success);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
}

.binvest-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.binvest-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bfeatured-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 4px 15px rgba(0, 48, 73, 0.3);
}

.binvestment-note {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--warning);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.binvestment-note p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.binvestment-note strong {
    color: var(--text-dark);
}

/* Mobile Responsive Styles – Keep table format but shrink layout */
@media (max-width: 768px) {
    .blueoak-investment {
      padding: 40px 0;
    }
  
    .bcontainer {
      padding: 0 10px;
    }
  
    .bsection-title {
      font-size: 2rem;
    }
  
    .bsection-subtitle {
      font-size: 1rem;
    }
  
    .binvestment-table-wrapper {
      border-radius: 10px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
  
    .binvestment-table {
      font-size: 0.85rem;
      min-width: 100%;
    }
  
    .binvestment-table th,
    .binvestment-table td {
      padding: 12px 10px;
    }
  
    .bplan-title {
      font-size: 1rem;
    }
  
    .bplan-desc {
      font-size: 0.8rem;
    }
  
    .broi-badge {
      padding: 6px 10px;
      font-size: 0.8rem;
    }
  
    .binvest-btn {
      padding: 8px 16px;
      font-size: 0.8rem;
    }
  
    .binvestment-note p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .bsection-title {
      font-size: 1.6rem;
    }
  
    .binvestment-table th,
    .binvestment-table td {
      padding: 10px 8px;
      font-size: 0.8rem;
    }
  
    .broi-badge {
      padding: 5px 8px;
      font-size: 0.75rem;
    }
  
    .binvest-btn {
      padding: 7px 14px;
      font-size: 0.75rem;
    }
  }
  

/* Mobile Responsive Styles */
/* @media (max-width: 768px) {
    .blueoak-investment {
        padding: 40px 0;
    }
    
    .bcontainer {
        padding: 0 15px;
    }
    
    .bsection-title {
        font-size: 2.2rem;
    }
    
    .bsection-subtitle {
        font-size: 1rem;
    }
    
    .binvestment-table-wrapper {
        border-radius: 10px;
        overflow-x: auto;
    }
    
    .binvestment-table {
        min-width: 600px;
    }
    
    .binvestment-table th,
    .binvestment-table td {
        padding: 15px 10px;
    }
    
    .binvestment-table th {
        font-size: 0.9rem;
    }
    
    .bplan-title {
        font-size: 1rem;
    }
    
    .bplan-desc {
        font-size: 0.8rem;
    }
    
    .broi-badge {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .binvest-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
} */



/* Extra small devices */
/* 
@media (max-width: 480px) {
    .bsection-header {
        margin-bottom: 40px;
    }
    
    .bsection-title {
        font-size: 1.8rem;
    }
    
    .binvestment-table,
    .binvestment-table thead,
    .binvestment-table tbody,
    .binvestment-table th,
    .binvestment-table td,
    .binvestment-table tr {
        display: block;
    }
    
    .binvestment-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .binvestment-table tr {
        background: var(--white);
        border: 1px solid #ccc;
        border-radius: 10px;
        margin-bottom: 15px;
        padding: 20px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .binvestment-table tr.featured {
        border-left: 4px solid var(--primary-color);
        background: linear-gradient(135deg, rgba(0, 48, 73, 0.05) 0%, rgba(0, 48, 73, 0.1) 100%);
    }
    
    .binvestment-table td {
        border: none;
        padding: 10px 0;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .binvestment-table td:before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--primary-color);
        width: 40%;
        flex-shrink: 0;
    }
    
    .binvestment-table td:last-child {
        justify-content: center;
        margin-top: 15px;
    }
    
    .binvestment-table td:last-child:before {
        display: none;
    }
    
    .bplan-name {
        text-align: right;
        flex: 1;
    }
    
    .broi-badge {
        margin-left: auto;
    }
    
    .binvest-btn {
        width: 100%;
        margin-top: 10px;
    }
    
    .binvestment-note {
        padding: 15px;
        margin: 0 10px;
    }
    
    .binvestment-note p {
        font-size: 0.9rem;
    }
}
 */











:root {
    --primary-color: #003049;
    /* --secondary-color: #2A6B7A; */
    --secondary-color: black;
    /* --accent-color: #3A8B9A; */
    --accent-color: #000;

    --text-dark: #000000;
    --text-light: #666666;
    --background-light: #F5F5F0;
    --white: #FFFFFF;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
/* 
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #003049;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    height: 80px;
}

.navbar.scrolled {
    background: rgba(27, 75, 90, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo .logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--warning);
}


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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
} */

/* Dropdown Menu */
/* 
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 1rem 0;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--background-light);
    color: var(--primary-color);
} */

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

.auth-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.login-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.login-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.signup-btn {
    background: var(--accent-color);
    color: var(--white);
}

.signup-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
} */

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.cta-btn.primary {
    background: var(--accent-color);
    color: var(--white);
}

.cta-btn.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(58, 139, 154, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Quick Stats */
.quick-stats {
    background: var(--white);
    padding: 4rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

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

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--background-light);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

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

.stat-info p {
    color: var(--text-light);
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome {
    background: var(--background-light);
}

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

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

.welcome-text p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.welcome-features {
    list-style: none;
    margin-bottom: 2rem;
}

.welcome-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.welcome-features i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.welcome-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Calculator Section */
.calculator-section {
    background: var(--white);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--background-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.duration-display {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}


.calculator-container{
    width: auto;
}
.calculator-form{
    width: auto;
}
.calculate-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 75, 90, 0.3);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.result-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.result-card h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--background-light);
}

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

.result-item.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.profit-chart {
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Investment Plans */
.investment-plans {
    background: var(--background-light);
}

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

.plan-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.plan-price span {
    font-size: 1rem;
    color: var(--text-light);
}

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

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-features i {
    color: var(--accent-color);
    margin-right: 1rem;
}

.plan-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 75, 90, 0.3);
}

/* Market Performance */
.market-performance {
    background: var(--white);
}

.performance-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.performance-card,
.market-indicators {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.performance-card h4,
.market-indicators h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.indicator-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indicator-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.indicator-name {
    font-weight: 600;
    color: var(--text-dark);
}

.indicator-value {
    font-weight: 700;
}

.indicator-value.positive {
    color: var(--success);
}

.indicator-value.negative {
    color: var(--danger);
}

/* Features Section */
.why-choose-us {
    background: var(--background-light);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--background-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* How It Works */
.how-it-works {
    background: var(--white);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(58, 139, 154, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(58, 139, 154, 0); }
    100% { box-shadow: 0 0 0 0 rgba(58, 139, 154, 0); }
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: var(--background-light);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.testimonial-slides {
    position: relative;
    height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.testimonial-content {
    text-align: center;
    padding: 3rem;
    max-width: 700px;
}

.stars {
    color: var(--warning);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-content blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    quotes: """ """ "'" "'";
}

.testimonial-content blockquote::before {
    content: open-quote;
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -20px;
    left: -30px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

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

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.location {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(27, 75, 90, 0.8);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-testimonial {
    left: 20px;
}

.next-testimonial {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(27, 75, 90, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--accent-color);
}

/* Latest News */
.latest-news {
    background: var(--white);
}

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

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--background-light);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.news-content h3 {
    color: var(--primary-color);
    margin: 0.5rem 0 1rem;
    font-size: 1.2rem;
}

.news-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
}

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

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

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

.cta-btn.primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-btn.primary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var( --warning);
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    background: var(--accent-color);
    border: none;
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
}

.auth-form input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.forgot-password {
    color: var(--accent-color);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 75, 90, 0.3);
}

.auth-switch {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
}

.auth-switch a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-auth {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* .slide-content h1 {
        font-size: 3rem;
        text-align: left;
        margin-top: 10px;
        margin-left: 1;

    }

    .slide-content p {
        font-size: 1rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    } */

    .welcome-content,
    .calculator-container,
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid,
    .features-grid,
    .steps-container,
    .news-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
.calculator-container{
    width: auto;
}
.calculator-form{
    width: auto;
}
    .author-info {
        text-align: center;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
.testimonial-content blockquote {
    font-size: 15px;
}
    .prev-testimonial {
        left: 10px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}



/* Services Pages Common Styles */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.hero-features .feature i {
    font-size: 1.2rem;
}

/* Investment Plans Specific */
.plans-section {
    padding: 80px 0;
    background: var(--background-light);
}

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

.plan-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

.plan-card.exclusive {
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFF9E6, var(--white));
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-card.exclusive .plan-badge {
    background: #FFD700;
    color: var(--text-dark);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.plan-icon i {
    font-size: 2rem;
    color: var(--white);
}

.plan-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.plan-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.plan-details {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.detail-item .label {
    font-weight: 500;
    color: var(--text-light);
}

.detail-item .value {
    font-weight: 600;
    color: var(--text-dark);
}

.risk-low {
    color: var(--success) !important;
}

.risk-medium {
    color: var(--warning) !important;
}

.risk-high {
    color: var(--danger) !important;
}

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

.plan-features h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.plan-features i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1rem;
}

.plan-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 75, 90, 0.3);
}

/* Plan Comparison */
.plan-comparison {
    padding: 80px 0;
    background: var(--white);
}

.comparison-table {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--background-light);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table td {
    color: var(--text-dark);
    font-weight: 500;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-table i.fa-check {
    color: var(--success);
    font-size: 1.2rem;
}

.comparison-table i.fa-times {
    color: var(--danger);
    font-size: 1.2rem;
}

/* Portfolio Management Specific */
.portfolio-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.portfolio-services {
    padding: 80px 0;
    background: var(--background-light);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.service-card li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Portfolio Process */
.portfolio-process {
    padding: 80px 0;
    background: var(--white);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Performance Metrics */
.performance-metrics {
    padding: 80px 0;
    background: var(--background-light);
}

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

.metric-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.metric-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

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

.metric-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.metric-period {
    font-size: 0.9rem;
    color: var(--text-light);
}


/* Market Insights Page Specific Styles */
.insights-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.insights-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.insights-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Market Overview */
.market-overview {
    padding: 80px 0;
    background: var(--background-light);
}

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

.overview-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.card-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.sentiment-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.sentiment-indicator.bullish {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.sentiment-indicator.bearish {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

.sentiment-indicator.neutral {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning);
}

.sentiment-meter {
    margin-bottom: 1rem;
}

.meter-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--danger), var(--warning), var(--success));
    transition: width 0.3s ease;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-light);
}

.vix-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vix-value .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.vix-value .change {
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.vix-value .change.positive {
    color: var(--success);
    background: rgba(40, 167, 69, 0.1);
}

.vix-value .change.negative {
    color: var(--danger);
    background: rgba(220, 53, 69, 0.1);
}

.indicators-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indicator-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--background-light);
}

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

.indicator-name {
    font-weight: 600;
    color: var(--text-dark);
}

.indicator-value {
    font-weight: 700;
    color: var(--primary-color);
}

.indicator-value.positive {
    color: var(--success);
}

.indicator-value.negative {
    color: var(--danger);
}

/* Featured Analysis */
.featured-analysis {
    padding: 80px 0;
    background: var(--white);
}

.analysis-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.analysis-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--background-light);
}

.analysis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.analysis-card.featured {
    grid-row: span 2;
}

.analysis-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.analysis-card.featured .analysis-image {
    height: 300px;
}

.analysis-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.analysis-card:hover .analysis-image img {
    transform: scale(1.05);
}

.analysis-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.analysis-content {
    padding: 1.5rem;
}

.analysis-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.analysis-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.analysis-card.featured .analysis-content h3 {
    font-size: 1.4rem;
}

.analysis-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.analysis-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: var(--background-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-more-btn {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-color);
}

/* Market Dashboard */
.market-dashboard {
    padding: 80px 0;
    background: var(--background-light);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.dashboard-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dashboard-card h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.sector-performance {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sector-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sector-name {
    min-width: 80px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.performance-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.bar-fill.positive {
    background: var(--success);
}

.bar-fill.negative {
    background: var(--danger);
}

.performance-value {
    min-width: 60px;
    text-align: right;
    font-weight: 600;
    font-size: 0.9rem;
}

.performance-value.positive {
    color: var(--success);
}

.performance-value.negative {
    color: var(--danger);
}

.movers-tabs {
    display: flex;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--background-light);
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

.movers-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mover-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 8px;
}

.mover-item .symbol {
    font-weight: 700;
    color: var(--text-dark);
}

.mover-item .price {
    font-weight: 600;
    color: var(--primary-color);
}

.mover-item .change {
    font-weight: 600;
    font-size: 0.9rem;
}

.mover-item .change.positive {
    color: var(--success);
}

.mover-item .change.negative {
    color: var(--danger);
}

/* Weekly Insights */
.weekly-insights {
    padding: 80px 0;
    background: var(--white);
}

.insights-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--background-light);
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-date {
    min-width: 80px;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.impact-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.impact-indicator.positive {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.impact-indicator.negative {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

.impact-indicator.neutral {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning);
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form-large {
    display: flex;
    max-width: 500px;
    margin: 0 auto 1rem;
    gap: 0.5rem;
}

.newsletter-form-large input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form-large button {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form-large button:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .insights-hero h1 {
        font-size: 2.5rem;
    }
    
    .overview-grid,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-card.featured {
        grid-row: span 1;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-date {
        min-width: auto;
    }
    
    .newsletter-form-large {
        flex-direction: column;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .insights-hero {
        padding: 100px 0 60px;
    }
    
    .insights-hero h1 {
        font-size: 2rem;
    }
    
    .overview-card,
    .dashboard-card {
        padding: 1.5rem;
    }
    
    .sector-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .performance-bar {
        width: 100%;
    }
    
    .mover-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}


