/* Global Styles */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0b0b;
    color: #e0e0e0;
    letter-spacing: 0.7px;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: all 0.4s ease;
}

.container {
    width: 85%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Anchor Links */
a {
    text-decoration: none;
    color: #00fcd3;
    transition: color 0.3s ease;
}

a:hover {
    color: #00ddbc;
    text-shadow: 0px 0px 8px rgba(0, 252, 211, 0.7);
}

/* Header Section */
.header {
    min-height: 100vh;
    background: linear-gradient(135deg, #0b0b0b 30%, #191919 100%);
    display: flex;
    flex-direction: column;
    justify-content: center; /* Align content in the center vertically */
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 15px; /* Adjust padding as necessary */
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.7);
    text-align: center;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0; /* Adjust position to the very top */
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000; /* Ensure navbar is always on top */
    backdrop-filter: blur(10px);
}



/* Adjust hero content placement to avoid navbar overlap */
.hero-content {
    position: relative;
    max-width: 900px;
    padding: 20px;
    margin-top: 40px; /* Provide additional top margin to avoid navbar */
}

.logo {
    font-size: 32px;
    font-weight: 900;
    color: #00fcd3;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #00ddbc;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(3px);
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0px 4px 15px rgba(0, 252, 211, 0.5);
}

/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 30px;
    color: #00fcd3;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Content */
.hero-content {
    z-index: 1;
    position: relative;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #00fcd3, #00ddbc, #00c7ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0px 0px 15px rgba(0, 252, 211, 0.7);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0px 0px 8px rgba(0, 252, 211, 0.4);
    }
    to {
        text-shadow: 0px 0px 20px rgba(0, 252, 211, 0.8);
    }
}

.hero-subtitle {
    font-size: 26px;
    margin-bottom: 50px;
    color: #b7b7b7;
    font-weight: 500;
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.15);
}

/* Call to Action Button */
.cta-btn {
    background-color: #00fcd3;
    padding: 16px 45px;
    border-radius: 10px;
    font-weight: 800;
    color: #0b0b0b;
    box-shadow: 0px 6px 20px rgba(0, 252, 211, 0.5);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover,
.cta-btn:focus,
.cta-btn:active {
    background-color: #00ddbc;
    box-shadow: 0px 8px 28px rgba(0, 252, 211, 0.7);
    transform: translateY(-2px);
    color: #0b0b0b; /* Keeps the text black */
    outline: none; /* Removes any browser-specific outline */
}

/* Hero Background Overlay */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
    z-index: 0;
}

/* Section Styles */
section {
    padding: 120px 0;
    background-color: #191919;
    color: #e0e0e0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

section h2 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.25);
    animation: fadeIn 1.5s ease-in-out forwards;
}

section p {
    font-size: 24px;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
    color: #b7b7b7;
    animation: fadeIn 1.8s ease-in-out forwards;
}

/* Solutions List */
.solutions-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 850px;
    margin: 0 auto;
    animation: fadeIn 2s ease-in-out forwards;
    opacity: 0;
}

.solutions-list li {
    font-size: 24px;
    margin-bottom: 25px;
}

.solutions-list strong {
    color: #00fcd3;
}

/* Footer Section */
.footer {
    padding: 90px 0;
    background: #1a1a1a;
    text-align: center;
    position: relative;
}

.footer-content h3 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.25);
    animation: fadeIn 1.5s ease-in-out forwards;
}

.footer-content p {
    font-size: 22px;
    line-height: 1.8;
    color: #b7b7b7;
    animation: fadeIn 1.8s ease-in-out forwards;
}

/* Advanced Background and Gradient Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(60deg, rgba(0, 252, 211, 0.05), rgba(0, 0, 0, 0.95));
    z-index: -1;
    pointer-events: none;
    animation: backgroundFade 4s infinite alternate;
}

@keyframes backgroundFade {
    from {
        background: linear-gradient(60deg, rgba(0, 252, 211, 0.05), rgba(0, 0, 0, 0.95));
    }
    to {
        background: linear-gradient(60deg, rgba(0, 252, 211, 0.08), rgba(0, 0, 0, 0.92));
    }
}

/* Subtle Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 40px;
    }

    .nav-menu {
        gap: 25px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .cta-btn {
        padding: 12px 35px;
    }
}

@media (max-width: 850px) {
    .navbar {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }

    .nav-menu li {
        margin-bottom: 15px;
    }

    .nav-menu a {
        font-size: 18px;
        padding: 10px 20px;
        border-radius: 5px;
    }

    .hamburger {
        display: block;
    }

    .cta-btn {
        padding: 10px 30px;
    }

    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .cta-btn {
        padding: 8px 25px;
        font-size: 16px;
    }

    .hero-content {
        padding: 0 10px;
    }
}

/* Show Navigation Menu when Active */
.nav-menu.active {
    display: flex;
}

/* Solutions Section */
.solutions-section {
    padding: 90px 0;
    background-color: #191919;
    color: #e0e0e0;
}

.solutions-section h2 {
    font-size: 48px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.25);
    margin-bottom: 40px;
    text-align: center;
}

.solutions-section .intro-text {
    font-size: 20px;
    color: #b7b7b7;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background: #242424;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card h3 {
    font-size: 24px;
    color: #00fcd3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0px 0px 8px rgba(0, 252, 211, 0.4);
}

.solution-card p {
    font-size: 18px;
    color: #b7b7b7;
    line-height: 1.6;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}
/* Login Page Styles */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #0b0b0b 30%, #191919 100%);
    padding: 0 20px;
}

.login-wrapper {
    background: rgba(36, 36, 36, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.6);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.25);
}

.login-subtitle {
    font-size: 18px;
    color: #b7b7b7;
    margin-bottom: 30px;
    line-height: 1.5;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.input-group {
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.input-group input {
    width: 94%;
    padding: 12px 15px;
    background: #191919;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: #e0e0e0;
    outline: none;
    box-shadow: 0px 4px 15px rgba(0, 252, 211, 0.1);
    transition: box-shadow 0.3s ease;
}

.input-group input:focus {
    box-shadow: 0px 4px 15px rgba(0, 252, 211, 0.5);
}

.login-btn {
    background-color: #00fcd3;
    border: none;
    font-weight: 800;
    color: #0b0b0b;
    box-shadow: 0px 6px 20px rgba(0, 252, 211, 0.5);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.login-btn:hover {
    background-color: #00ddbc;
    box-shadow: 0px 8px 28px rgba(0, 252, 211, 0.7);
    transform: translateY(-2px);
}

.login-links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #00fcd3;
}

.login-links a {
    color: #00fcd3;
    transition: color 0.3s ease;
}

.login-links a:hover {
    color: #00ddbc;
    text-shadow: 0px 0px 8px rgba(0, 252, 211, 0.7);
}
/* Model Results Section */
.model-results-section {
    padding: 40px 0; /* Reduced padding for tighter vertical layout */
    text-align: center;
}

.model-results-section h2 {
    color: #00fcd3;
    margin-bottom: 10px; /* Reduced margin for header */
}

.model-results-section .metrics-intro,
.model-results-section .metrics-explanation p {
    font-size: 18px;
    color: #b7b7b7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px; /* Slightly reduced margin */
}

.model-results-section .metrics-explanation h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px; /* Reduced margin for subheaders */
}

.ticker-metrics {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin: 10px auto; /* Reduced margin for tighter grouping */
    width: 80%;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

.ticker-metrics h3 {
    color: #00fcd3;
    margin-bottom: 5px; /* Reduced margin for section headers */
}

.ticker-metrics p {
    color: #b7b7b7;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 5px; /* Reduced margin for paragraphs */
}

.metrics-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Maintain a smaller gap for intra-company metrics */
}

.financial-report {
    margin-bottom: 60px; /* Increased from previous value for more space between different companies */
}

.classification-report {
    margin-bottom: 10px; /* Reduced to bring closer to the financial metrics of the same company */
}

/* Styling to visually distinguish different company sections more clearly */
.company-section {
    border-bottom: 1px solid #323232; /* Optional: add a subtle separator between companies */
    padding-bottom: 20px; /* Padding at the bottom of each company section */
    margin-bottom: 40px; /* Space after each company section before the next starts */
}

.classification-report,
.financial-report {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

.classification-report {
    margin-bottom: 10px;
}

.classification-report h3,
.financial-report h3 {
    color: #00fcd3;
    margin-bottom: 10px; /* Consistent margin for headers */
}

table {
    width: 100%;
    margin-top: 5px; /* Reduced margin above tables */
    border-collapse: collapse;
}

th, td {
    text-align: left;
    padding: 8px;
    color: #e0e0e0;
    border-bottom: 1px solid #00fcd3;
}

th {
    background-color: #242424;
}

td {
    background-color: #323232;
}
