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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(ellipse at bottom, #58a6ff 0%, #4a90e2 15%, #1a2332 40%, #1a1a1a 70%, #0d0d0d 100%);
    min-height: 100vh;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Header Styles */
.header {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: none;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #58a6ff;
    background: rgba(88, 166, 255, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-signup {
    background: transparent;
    border: 2px solid #58a6ff;
    color: #58a6ff;
    padding: 4px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: #58a6ff;
    color: #ffffff;
}

.btn-contact {
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
    border: none;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}



/* Main Content */
.main-content {
    padding: 0;
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, #2d1810 0%, #3d2817 25%, #4d3520 50%, #5d4228 75%, #6d4f30 100%); */
    color: white;
    padding: 60px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-left: 15px;
}

.hero-text h1 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hero-text h2 {
    font-size: 1.1em;
    font-weight: 300;
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 0.9em;
    color: white;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 20px;
}

.stat-item {
    text-align: left;
    padding: 10px 0;
    border-left: 3px solid #58a6ff;
    padding-left: 20px;
    margin-left: 10px;
}

.stat-number {
    display: block;
    font-size: 1.6em;
    font-weight: 700;
    color: #58a6ff;
    margin-bottom: 6px;
}

.stat-number sup {
    font-size: 0.6em;
    top: -0.8em;
}

.stat-label {
    font-size: 0.7em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    display: block;
    margin-top: 4px;
}

.cta-button {
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.8), rgba(74, 144, 226, 0.8));
    color: #ffffff;
    border: none;
    padding: 18px 35px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
   
}

.cta-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
    box-shadow: 0 12px 35px rgba(88, 166, 255, 0.4);
}

.hero-visual {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-right: 20px;
}

.image-slider {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.hero-image {
    width: 33.333%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}


.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #d4af37;
    border-color: #d4af37;
}

.indicator:hover {
    border-color: #d4af37;
    transform: scale(1.1);
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(rgb(36, 34, 34), rgba(13,13,13,0.8)), url('https://images.unsplash.com/photo-1542224566-dce9446d95e0?auto=format&fit=crop&w=1280&q=80') center/cover no-repeat;
    backdrop-filter: blur(15px);
    padding: 40px 0;
    margin-bottom: 0;
    border-top: 1px solid rgba(88, 166, 255, 0.2);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-section h2 {
    font-size: 2em;
    color: white;
    margin-bottom: 30px;
}

.philosophy-section blockquote {
    font-size: 1.1em;
    font-style: italic;
    color: white;
    margin: 30px 0;
    padding: 0 40px;
    line-height: 1.6;
    position: relative;
}

.philosophy-section blockquote::before,
.philosophy-section blockquote::after {
    content: '"';
    font-size: 2em;
    color: #58a6ff;
    font-weight: bold;
}

.philosophy-author {
    margin: 25px 0;
    color: white;
}

.philosophy-author strong {
    color: #58a6ff;
    font-size: 1.1em;
}

.philosophy-section p {
    font-size: 0.95em;
    color: white;
    line-height: 1.7;
    margin-top: 25px;
}

/* Why Us Section */
.why-us-section {
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(15px);
    padding: 30px 25px;
    margin-bottom: 0;
    text-align: center;
    border-top: 1px solid rgba(88, 166, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-us-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 8px;
    padding: 16px 10px;
    text-align: center;
    border: 1px solid rgba(88, 166, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.why-us-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
}

/* Removed hover effect for why-us-card */

.why-us-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

/* Different colors for each why-us icon */
.why-us-card:nth-child(1) .why-us-icon {
    background: linear-gradient(135deg, #E91E63, #C2185B); /* Pink */
}

.why-us-card:nth-child(2) .why-us-icon {
    background: linear-gradient(135deg, #00BCD4, #0097A7); /* Cyan */
}

.why-us-card:nth-child(3) .why-us-icon {
    background: linear-gradient(135deg, #FF5722, #D84315); /* Deep Orange */
}

.why-us-card:nth-child(4) .why-us-icon {
    background: linear-gradient(135deg, #607D8B, #455A64); /* Blue Grey */
}

.why-us-card:nth-child(5) .why-us-icon {
    background: linear-gradient(135deg, #795548, #5D4037); /* Brown */
}

.why-us-card:nth-child(6) .why-us-icon {
    background: linear-gradient(135deg, #3F51B5, #303F9F); /* Indigo */
}

/* Removed hover effect for why-us-icon */

.why-us-icon i {
    font-size: 1em;
    color: #ffffff;
}

.why-us-card h3 {
    color: #ffffff;
    margin-bottom: 6px;
    font-size: 0.8em;
    font-weight: 600;
    line-height: 1.2;
}

.why-us-card p {
    color: #ffffff;
    line-height: 1.2;
    font-size: 0.7em;
    margin: 0;
}

/* Performance Highlights */
.performance-highlights {
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(15px);
    padding: 30px 25px;
    margin-bottom: 0;
    border-top: 1px solid rgba(88, 166, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.highlight-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(88, 166, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.highlight-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
}

/* Removed hover effect for highlight-card */

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

/* Different colors for each highlight icon */
.highlight-card:nth-child(1) .highlight-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049); /* Green */
}

.highlight-card:nth-child(2) .highlight-icon {
    background: linear-gradient(135deg, #FF9800, #F57C00); /* Orange */
}

.highlight-card:nth-child(3) .highlight-icon {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2); /* Purple */
}

.highlight-card:nth-child(4) .highlight-icon {
    background: linear-gradient(135deg, #2196F3, #1976D2); /* Blue */
}

.highlight-icon i {
    font-size: 1.1em;
    color: #ffffff;
}

.highlight-card h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.highlight-stat {
    font-size: 1.5em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.highlight-card p {
    color: #ffffff;
    line-height: 1.4;
    font-size: 0.85em;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(15px);
    color: white;
    padding: 40px 25px;
    margin-bottom: 0;
    border-top: 1px solid rgba(88, 166, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.testimonials-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

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

.testimonial-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(88, 166, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Removed hover effect for testimonial-card */

.testimonial-content p {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.author-info strong {
    display: block;
    color: white;
    font-size: 0.95em;
    margin-bottom: 4px;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8em;
}

.author-return {
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.8em;
}

/* Section Titles */
.section-title {
    font-size: 1.3em;
    color: #ffff;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #58a6ff;
    display: inline-block;
}

/* Portfolio Snapshot */
.portfolio-snapshot {
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(15px);
    padding: 20px;
    margin-bottom: 0;
    border-top: 1px solid rgba(88, 166, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.snapshot-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(88, 166, 255, 0.2);
    transition: all 0.3s ease;
}

/* Removed hover effect for snapshot-card */

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

.card-header h3 {
    color: #ffffff;
    font-size: 0.85em;
}

.card-header i {
    font-size: 1.2em;
    color: #ffffff;
}

.value {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 6px;
}

.change {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.change.positive {
    color: #4CAF50;
}

.change.negative {
    color: #f44336;
}

/* Chart Container */
.chart-container {
    height: 200px;
    margin: 20px 0;
}

.mini-chart-container {
    height: 80px;
    margin-top: 15px;
    padding: 5px;
    background: rgba(88, 166, 255, 0.05);
    border-radius: 6px;
}

.allocation-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.color-dot.equities { background: #667eea; }
.color-dot.bonds { background: #764ba2; }
.color-dot.alternatives { background: #f093fb; }
.color-dot.cash { background: #4CAF50; }

.market-note {
    margin-top: 15px;
    padding: 10px;
    background: rgba(88, 166, 255, 0.1);
    border-radius: 6px;
    border-left: 3px solid #58a6ff;
}

.market-note p {
    color: #e5e5e5;
    font-size: 0.8em;
    line-height: 1.4;
    margin: 0;
}

.market-note strong {
    color: #58a6ff;
}


/* Performance Section */
.performance-section {
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(15px);
    padding: 20px;
    margin-bottom: 0;
    border-top: 1px solid rgba(88, 166, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.performance-header {
    margin-bottom: 25px;
}

.chart-container-large {
    height: 450px;
    margin: 25px 0;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(88, 166, 255, 0.2);
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.metric {
    background: rgba(35, 48, 62, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(88, 166, 255, 0.2);
}

.metric-label {
    display: block;
    color: white;
    font-size: 0.8em;
    margin-bottom: 6px;
}

.metric-value {
    font-size: 1.3em;
    font-weight: bold;
    color: white;
}

/* Market Insights */
.market-insights {
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(15px);
    padding: 20px;
    margin-bottom: 0;
    border-top: 1px solid rgba(88, 166, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.insight-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    padding: 14px;
    border: 1px solid rgba(88, 166, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Removed hover effect for insight-card */

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

.insight-header h3 {
    color: #58a6ff;
    font-size: 0.9em;
}

.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

.status.bullish {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.status.bearish {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.status.neutral {
    background: rgba(255, 193, 7, 0.2);
    color: #FF9800;
}

.insight-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-small {
    padding: 6px 12px;
    border: 1px solid #58a6ff;
    background: transparent;
    color: #58a6ff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8em;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: #58a6ff;
    color: #ffffff;
}

.btn-small.primary {
    background: #58a6ff;
    color: #ffffff;
}

.btn-small.primary:hover {
    background: #4a90e2;
}

/* Recent Transactions */
.recent-transactions {
    background: rgba(45, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.transactions-table {
    background: linear-gradient(135deg, #2d1810 0%, #3d2817 100%);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a1a;
    padding: 12px 16px;
    font-weight: bold;
    font-size: 0.8em;
}

.transaction-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    color: #e5e5e5;
    font-size: 0.85em;
}

.transaction-row:hover {
    background: rgba(212, 175, 55, 0.1);
}

.transaction-row:last-child {
    border-bottom: none;
}

.buy {
    color: #4CAF50;
    font-weight: bold;
}

.sell {
    color: #f44336;
    font-weight: bold;
}

.status-completed {
    color: #4CAF50;
    font-weight: 500;
}

.status-pending {
    color: #FF9800;
    font-weight: 500;
}

/* Footer */
.footer {
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(88, 166, 255, 0.2);
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.6em;
}

.footer-section p {
    color: white;
    line-height: 1.6;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Platform-specific colors */
.social-link[aria-label="Telegram"] {
    background: #0088cc;
}

.social-link[aria-label="Telegram"]:hover {
    background: #006ba3;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.social-link[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #8b0a5c 100%);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.social-link[aria-label="WhatsApp"] {
    background: #25d366;
}

.social-link[aria-label="WhatsApp"]:hover {
    background: #1da851;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.social-link[aria-label="LinkedIn"] {
    background: #0077b5;
}

.social-link[aria-label="LinkedIn"]:hover {
    background: #005885;
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
    color: #58a6ff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    padding: 20px 0;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9em;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 80%;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Side Panel */
.mobile-side-panel {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(15px);
    z-index: 10000;
    transition: left 0.3s ease;
    border-right: 1px solid rgba(255, 107, 53, 0.3);
    display: flex;
    flex-direction: column;
}

.mobile-side-panel.active {
    left: 0;
}

.mobile-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.panel-logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.close-panel-btn {
    background: none;
    border: none;
    color: #58a6ff;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    flex: 1;
    padding: 20px 0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: #e5e5e5;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(88, 166, 255, 0.1);
    color: #58a6ff;
}

.mobile-actions {
    padding: 20px;
    border-top: 1px solid rgba(88, 166, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-btn-signup,
.mobile-btn-contact {
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-btn-signup {
    background: transparent;
    border: 2px solid #58a6ff;
    color: #58a6ff;
}

.mobile-btn-signup:hover {
    background: #58a6ff;
    color: #ffffff;
}

.mobile-btn-contact {
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
    border: none;
    color: #ffffff;
}

.mobile-btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Contact Section */
.contact-section {
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(15px);
    padding: 25px;
    margin-bottom: 0;
    border-top: 1px solid rgba(88, 166, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 600;
}

.contact-info p {
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e5e5e5;
}

.contact-item i {
    color: #58a6ff;
    font-size: 1.2em;
    width: 20px;
}

.contact-item span {
    color: #ffffff;
    font-size: 0.9em;
}

/* International Offices Section */
.international-offices {
    margin-top: 30px;
}

.international-offices h4 {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.office-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.office-card:hover {
    border-color: rgba(88, 166, 255, 0.4);
    transform: translateY(-2px);
}

.office-card h5 {
    color: #58a6ff;
    font-size: 1em;
    margin-bottom: 8px;
    font-weight: 600;
}

.office-card p {
    color: #ffffff;
    font-size: 0.8em;
    line-height: 1.4;
    margin: 0;
}

.contact-form-container {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(88, 166, 255, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

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

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    color: #ffffff;
    font-size: 0.85em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #58a6ff;
    box-shadow: 0 0 0 2px rgba(88, 166, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
    height: 60px;
}

.submit-btn {
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.submit-btn i {
    font-size: 0.9em;
}

/* Signup Page Styles */
.signup-section {
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(15px);
    min-height: calc(100vh - 80px);
    padding: 40px 0;
    display: flex;
    align-items: center;
}

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

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

.signup-header h1 {
    font-size: 2.5em;
    color: #58a6ff;
    margin-bottom: 10px;
    font-weight: 700;
}

.signup-header h2 {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 300;
}

.signup-header p {
    color: #b0b0b0;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.signup-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.signup-benefits {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(88, 166, 255, 0.2);
    position: sticky;
    top: 100px;
}

.signup-benefits h3 {
    color: #58a6ff;
    font-size: 1.4em;
    margin-bottom: 25px;
    text-align: center;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(88, 166, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #58a6ff;
}

.benefit-item i {
    color: #58a6ff;
    font-size: 1.5em;
    margin-top: 5px;
    min-width: 24px;
}

.benefit-item h4 {
    color: #ffffff;
    font-size: 1em;
    margin-bottom: 5px;
    font-weight: 600;
}

.benefit-item p {
    color: #b0b0b0;
    font-size: 0.9em;
    line-height: 1.4;
    margin: 0;
}

.signup-form-container {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(88, 166, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.signup-form {
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

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

.form-step h3 {
    color: #58a6ff;
    font-size: 1.3em;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(13, 13, 13, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #58a6ff;
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #f44336;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.checkbox-label input[type="checkbox"].error + .checkmark {
    border-color: #f44336;
    box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2);
}

.simple-radio-label input[type="radio"].error {
    outline: 2px solid #f44336;
    outline-offset: 2px;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #b0b0b0;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #58a6ff;
}

.password-requirements {
    margin-top: 10px;
    padding: 15px;
    background: rgba(88, 166, 255, 0.05);
    border-radius: 6px;
    border-left: 3px solid #58a6ff;
}

.password-requirements p {
    color: #58a6ff;
    font-size: 0.85em;
    margin-bottom: 8px;
    font-weight: 500;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    color: #b0b0b0;
    font-size: 0.8em;
    margin-bottom: 4px;
    padding-left: 20px;
    position: relative;
}

.password-requirements li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

.password-requirements li.valid::before {
    content: '✓';
    color: #4CAF50;
}

.password-requirements li.valid {
    color: #4CAF50;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #e5e5e5;
    font-size: 0.9em;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: inline-block;
    width: 16px;
    height: 16px;
    accent-color: #58a6ff;
}

.checkmark {
    display: none;
    width: 0;
    height: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    position: relative;
    flex-shrink: 0;
    background: rgba(13, 13, 13, 0.8);
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #58a6ff;
    border-color: #58a6ff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #58a6ff;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.btn-next,
.btn-prev,
.btn-submit {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
    color: #ffffff;
    margin-left: auto;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-prev {
    background: transparent;
    border: 2px solid #58a6ff;
    color: #58a6ff;
}

.btn-prev:hover {
    background: #58a6ff;
    color: #ffffff;
}

.btn-submit {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.btn-submit:hover {
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.signup-footer {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(88, 166, 255, 0.2);
}

.signup-footer p {
    color: #b0b0b0;
    margin-bottom: 20px;
}

.login-link {
    color: #58a6ff;
    text-decoration: none;
    font-weight: 500;
}

.login-link:hover {
    text-decoration: underline;
}

.security-badges {
    display: none;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    font-size: 0.8em;
}

.security-item i {
    color: #4CAF50;
    font-size: 1em;
}

/* Email input group and OTP styles */
.email-input-group,
.otp-input-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.email-input-group input,
.otp-input-group input {
    flex: 1;
}

.btn-send-otp,
.btn-verify-otp {
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    min-width: 110px;
    justify-content: center;
}

.btn-send-otp:hover,
.btn-verify-otp:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-send-otp:disabled,
.btn-verify-otp:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Enhanced Signup Form Styles */
.signup-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: start;
}

.signup-benefits {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #333;
}

.signup-benefits h3 {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #58a6ff;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #222;
    border-radius: 8px;
    border: 1px solid #333;
}

.benefit-item i {
    font-size: 1.2em;
    color: #58a6ff;
    min-width: 20px;
}

.benefit-item h4 {
    font-size: 0.85em;
    margin: 0 0 4px 0;
    color: #ffffff;
}

.benefit-item p {
    font-size: 0.75em;
    margin: 0;
    color: #ccc;
    line-height: 1.3;
}

.signup-form-container {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
}

.signup-form h3 {
    font-size: 1em;
    margin: 20px 0 15px 0;
    color: #58a6ff;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.signup-form h3:first-child {
    margin-top: 0;
}

.signup-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.signup-form .form-group {
    margin-bottom: 8px;
}

.signup-form .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.8em;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"],
.signup-form input[type="password"],
.signup-form select,
.signup-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #333;
    border-radius: 6px;
    background: #222;
    color: #ffffff;
    font-size: 0.8em;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.signup-form input[type="text"]:focus,
.signup-form input[type="email"]:focus,
.signup-form input[type="tel"]:focus,
.signup-form input[type="password"]:focus,
.signup-form select:focus,
.signup-form textarea:focus {
    border-color: #58a6ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
}

.signup-form textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.signup-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 14px;
    padding-right: 35px;
}

/* Simple Radio Group Styles */
.simple-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.simple-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.85em;
    cursor: pointer;
}

.simple-radio-label input[type="radio"] {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: #007bff;
}

/* Password Requirements Styles */
.password-requirements {
    margin-top: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.password-requirements.show {
    display: flex;
}

.password-requirements p {
    color: #fff;
    font-size: 0.85em;
    margin-bottom: 8px;
    font-weight: 500;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8em;
    color: #888;
    padding: 2px 0;
}

.requirement i {
    font-size: 0.8em;
    width: 14px;
    color: #888;
}

.requirement.valid {
    color: #00d4aa;
}

.requirement.valid i {
    color: #00d4aa;
}

.requirement.valid i:before {
    content: "\f00c";
}

/* OTP Modal Styles */
.otp-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.otp-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 10% auto;
    padding: 0;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

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

.otp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.otp-modal-header h3 {
    color: #58a6ff;
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
}

.otp-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.otp-modal-close:hover {
    background: rgba(88, 166, 255, 0.1);
    color: #58a6ff;
}

.otp-modal-body {
    padding: 25px;
}

.otp-modal-body p {
    color: #e5e5e5;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.9em;
    line-height: 1.4;
}

.otp-input-container {
    margin-bottom: 20px;
}

.otp-input-container input {
    width: 100%;
    padding: 15px;
    background: rgba(13, 13, 13, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1.1em;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.otp-input-container input:focus {
    outline: none;
    border-color: #58a6ff;
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
}

.otp-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.btn-verify, .btn-resend {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-verify {
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
    color: #ffffff;
}

.btn-verify:hover {
    background: linear-gradient(135deg, #e55a2b, #e8831a);
    transform: translateY(-1px);
}

.btn-resend {
    background: transparent;
    color: #58a6ff;
    border: 2px solid #58a6ff;
}

.btn-resend:hover {
    background: rgba(88, 166, 255, 0.1);
}

.btn-resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.otp-countdown {
    text-align: center;
    color: #888;
    font-size: 0.85em;
}

.otp-countdown span {
    color: #58a6ff;
    font-weight: 600;
}

/* Character Counter Styles */
.char-counter {
    text-align: right;
    font-size: 0.7em;
    color: #888;
    margin-top: 3px;
}

.char-counter span {
    color: #58a6ff;
    font-weight: 600;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid #333;
    border-radius: 6px;
    background: #222;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.8em;
}

.radio-label:hover {
    border-color: #58a6ff;
    background: #2a2a2a;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 16px;
    height: 16px;
    border: 2px solid #666;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #58a6ff;
    background: #58a6ff;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.radio-label input[type="radio"]:checked ~ span:not(.radio-custom) {
    color: #58a6ff;
}

/* Read-only field styles */
.signup-form input[readonly] {
    background: #2a2a2a;
    color: #ccc;
    cursor: not-allowed;
    border-color: #444;
}

.signup-form input[readonly]:focus {
    border-color: #444;
    box-shadow: none;
}

/* Enhanced Password Input */
.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #58a6ff;
}

/* Form validation styles */
.signup-form input.error,
.signup-form select.error,
.signup-form textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.signup-form input.valid,
.signup-form select.valid,
.signup-form textarea.valid {
    border-color: #27ae60;
}

/* Enhanced button styles for signup form */
.signup-form .btn-submit {
    padding: 12px 20px;
    font-size: 0.85em;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    justify-content: center;
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
    color: #ffffff;
}

.signup-form .btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.signup-form .btn-submit:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form submit section */
.form-submit-section {
    margin-top: 25px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive adjustments for signup form */
@media (max-width: 768px) {
    .signup-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .signup-form .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .signup-form .btn-submit {
        width: 100%;
        min-width: auto;
    }
    
    .radio-group {
        gap: 6px;
    }
    
    .radio-label {
        padding: 8px 10px;
        font-size: 0.75em;
    }
    
    .benefit-item {
        padding: 10px;
    }
    
    .benefit-item h4 {
        font-size: 0.8em;
    }
    
    .benefit-item p {
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    .signup-form input[type="text"],
    .signup-form input[type="email"],
    .signup-form input[type="tel"],
    .signup-form input[type="password"],
    .signup-form select,
    .signup-form textarea {
        padding: 8px 10px;
        font-size: 0.75em;
    }
    
    .signup-form .form-group label {
        font-size: 0.75em;
    }
    
    .signup-form h3 {
        font-size: 0.9em;
    }
    
    .signup-form-container {
        padding: 20px;
    }
    
    .signup-benefits {
        padding: 15px;
    }
}

.btn-verify-otp {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.btn-verify-otp:hover {
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.otp-group {
    margin-top: 15px;
    padding: 15px;
    background: rgba(88, 166, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #58a6ff;
}

.otp-timer {
    margin-top: 10px;
    font-size: 0.85em;
    color: #58a6ff;
    text-align: center;
    font-weight: 500;
}

.email-verified {
    border-color: #4CAF50 !important;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1) !important;
}

.verification-status {
    margin-top: 8px;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verification-status.verified {
    color: #4CAF50;
}

.verification-status.pending {
    color: #FF9800;
}

.verification-status.error {
    color: #f44336;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Signup page mobile styles */
    .signup-header h1 {
        font-size: 2em;
    }
    
    .signup-header h2 {
        font-size: 1.1em;
    }
    
    .signup-header p {
        font-size: 1em;
    }
    
    .signup-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .signup-benefits {
        position: static;
        order: 2;
    }
    
    .signup-form-container {
        order: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-next,
    .btn-prev,
    .btn-submit {
        width: 100%;
        margin: 0;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .header .container {
        justify-content: space-between;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-text h2 {
        font-size: 1.4em;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlights-grid,
    .testimonials-grid,
    .snapshot-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .table-header,
    .transaction-row {
        grid-template-columns: repeat(3, 1fr);
        font-size: 0.8em;
    }
    
    .table-header span:nth-child(n+4),
    .transaction-row span:nth-child(n+4) {
        display: none;
    }
    
    .philosophy-section blockquote {
        font-size: 1.2em;
        padding: 0 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .welcome-section,
    .portfolio-snapshot,
    .performance-section,
    .market-insights,
    .recent-transactions {
        padding: 20px;
    }
    
    .value {
        font-size: 1.8em;
    }
    
    .chart-container-large {
        height: 300px;
    }
}

/* Agreement Section Styles */
.agreement-section {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(88, 166, 255, 0.2);
}

.agreement-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pdf-viewer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pdf-viewer-section label {
    font-weight: 600;
    color: #58a6ff;
    font-size: 16px;
}

.agreement-description {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.btn-view-pdf {
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 250px;
    justify-content: center;
}

.btn-view-pdf:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.signature-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.signature-section label {
    font-weight: 600;
    color: #58a6ff;
    font-size: 16px;
}

.signature-description {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.signature-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

#signature-pad {
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    cursor: crosshair;
}

.signature-controls {
    display: flex;
    gap: 10px;
}

.btn-clear-signature,
.btn-save-signature {
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.btn-clear-signature {
    background: transparent;
    border: 2px solid #666;
    color: #666;
}

.btn-clear-signature:hover {
    border-color: #58a6ff;
    color: #58a6ff;
}

.btn-save-signature {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: none;
    color: #ffffff;
}

.btn-save-signature:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.signature-preview {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.signature-preview p {
    color: #4CAF50;
    font-weight: 500;
    margin-bottom: 10px;
}

.signature-preview img {
    max-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: white;
}

/* Responsive styles for agreement section */
@media (max-width: 768px) {
    .agreement-content {
        gap: 20px;
    }
    
    #signature-pad {
        width: 100%;
        max-width: 350px;
        height: 120px;
    }
    
    .signature-controls {
        flex-wrap: wrap;
    }
    
    .btn-view-pdf {
        width: 100%;
        max-width: none;
    }
}

/* File Upload Styles */
.file-upload-container {
    position: relative;
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-container:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.file-upload-container.has-file {
    border-color: rgba(76, 175, 80, 0.5);
    background: rgba(76, 175, 80, 0.05);
}

.file-upload-container input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.file-upload-info i {
    font-size: 24px;
    color: #58a6ff;
    margin-bottom: 5px;
}

.file-upload-info span {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}

.file-upload-info small {
    color: #cccccc;
    font-size: 12px;
    line-height: 1.4;
}

.file-upload-container.has-file .file-upload-info i {
    color: #4CAF50;
}

.file-upload-container.has-file .file-upload-info span {
    color: #4CAF50;
}

/* Readonly input styles */
input[readonly] {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #cccccc !important;
    cursor: not-allowed !important;
    border-color: rgba(255, 107, 53, 0.2) !important;
}

/* Verified OTP button styles */
.btn-send-otp.verified {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    border-color: #4CAF50 !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
}

.btn-send-otp.verified:hover {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    transform: none !important;
}

/* Enhanced Upload Styles */
.upload-type-selector {
    margin-bottom: 20px;
}

.upload-type-options {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.upload-type-option {
    flex: 1;
    cursor: pointer;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.upload-type-option:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.upload-type-option input[type="radio"] {
    display: none;
}

.upload-type-option input[type="radio"]:checked + .option-content {
    color: #58a6ff;
}

.upload-type-option input[type="radio"]:checked + .option-content i {
    color: #58a6ff;
}

.upload-type-option:has(input[type="radio"]:checked) {
    border-color: #58a6ff;
    background: rgba(88, 166, 255, 0.1);
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #cccccc;
    transition: all 0.3s ease;
}

.option-content i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #888;
    transition: all 0.3s ease;
}

.option-content span {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px;
}

.option-content small {
    font-size: 11px;
    opacity: 0.8;
}

/* Image Upload Slots */
.images-upload-container {
    margin-top: 15px;
}

.image-upload-slots {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.image-upload-slot {
    position: relative;
    width: 90px;
    height: 90px;
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.image-upload-slot:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.image-upload-slot input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #888;
    transition: all 0.3s ease;
}

.upload-placeholder i {
    font-size: 16px;
    margin-bottom: 3px;
    color: #58a6ff;
}

.upload-placeholder span {
    font-size: 9px;
    text-align: center;
}

.image-preview {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.3s ease;
    z-index: 3;
}

.remove-image:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

.upload-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 15px;
}

.upload-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 13px;
    color: #ffffff;
}

.upload-info i {
    color: #58a6ff;
}

.upload-info small {
    font-size: 11px;
    color: #cccccc;
}

.btn-generate-pdf {
    background: linear-gradient(135deg, #58a6ff, #4a90e2);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.btn-generate-pdf:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-generate-pdf:active {
    transform: translateY(0);
}

/* PDF Preview */
.pdf-preview {
    margin-top: 10px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 12px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.file-info i {
    font-size: 20px;
    color: #4CAF50;
}

.file-name {
    flex: 1;
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
}

.file-size {
    font-size: 12px;
    color: #cccccc;
}

.remove-file {
    background: rgba(255, 0, 0, 0.8);
    border: none;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.remove-file:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

/* Responsive file upload */
@media (max-width: 768px) {
    .file-upload-container {
        padding: 15px;
    }
    
    .file-upload-info i {
        font-size: 20px;
    }
    
    .file-upload-info span {
        font-size: 14px;
    }

    .upload-type-options {
        flex-direction: column;
        gap: 10px;
    }

    .image-upload-slots {
        justify-content: center;
    }

    .image-upload-slot {
        width: 80px;
        height: 80px;
    }
}
