@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family:  "Montserrat", sans-serif;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: #333;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Montserrat", sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.container .col-6{
  width: 50%;
}

.text-center {
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    padding: 20px 0;
    position: sticky;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    top: 0;
    z-index: 1000;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
}

.nav-links a:hover, .nav-links a.active {
    color: #c00;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #c00;
    transition: width 0.3s;
}

.nav-links a:hover:after, .nav-links a.active:after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(270deg, #D00004 0%, #410607 100%);
    color: white;
    position: relative;
}

.hero-content {
    max-width: 600px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 80px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
}



.ipo_box {
    border-radius: .8rem;
    background: #FFFFFF1A;
    backdrop-filter: blur(35px);
    padding: 2.2rem 2.5rem 1rem;
    box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.25);
}
.ipo_box table td, .ipo_box table th {
    background: transparent;
}
table tr td:nth-child(2), table tr td:nth-child(3), table tr th:nth-child(2), table tr th:nth-child(3) {
    text-align: start;
}
.ipo-container td {
    font-size: 1.6rem !important;
    padding: 1rem 0rem;
}
.ipo_box h3 {
    font-size: clamp(1.8rem, 1.5vw, 2.3rem);
    line-height: normal;
    margin: 0;
}
.ipo_box h2 {
    font-weight: 700;
    font-size: 40px;
    color: white;
}




.banner {
    padding: 100px 0 230px;
}
.banner p{
   font-weight: 500;
   font-size: 18px;
}
.banner .btn{
    color: #CC0000;
    font-size: 18px;
}
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: white !important;
    color: #333;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.btn i {
    margin-left: 8px;
}

.btn:hover {
    background-color: #f5f5f5;
}

/* Stock Widget */
.stock-widget {
    background-color: white;
    border-radius: 8px;
    position: relative;
    margin-bottom: 30px;
    top: 0;
    left: 0;
    transform: translateY(-8rem);
    z-index: 999;
    /* padding: 4rem 5rem; */
    width: 100% !important;
    box-shadow: 4px 8px 4px 0px #00000040;
}
.stock-widget::after {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(0deg, #D00004 0%, #410607 100%);
    border-radius: 20px;
    z-index: -1;
}
.stock-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: white;
    border-radius: 15px 15px 0px 0px;
}

.stock-header img {
    height: 30px;
    margin-right: 10px;
}

.stock-symbol {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-right: 20px;
}

.stock-price {
    margin-right: auto;
}

.stock-price h2 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #333;
}

.stock-change {
    font-size: 14px;
}

.stock-change.down {
    color: #e74c3c;
}

.stock-change.up {
    color: #2ecc71;
}

.time-period {
    display: flex;
    margin-top: 10px;
}

.time-period span {
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.time-period span.active {
    background-color: #c00;
    color: white;
}

.stock-chart {
    padding: 20px;
    background-color: white;
    border-radius: 0px 0px 15px 15px;
}

/* Updated chart styling to match the reference image */
.chart-area {
    position: relative;
    width: 100%;
    height: 170px;
    margin-bottom: 15px;
    background: linear-gradient(to bottom, rgba(255, 200, 200, 0.15) 0%, rgba(255, 200, 200, 0.05) 100%);
    border-radius: 0;
    overflow: hidden;
}

.chart-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: transparent;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
}

/* Vertical grid lines */
.chart-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(200, 200, 200, 0.2) 1px, transparent 1px);
    background-size: 10% 100%;
    z-index: 1;
}

/* Horizontal dotted line */
.chart-placeholder::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px dashed rgba(200, 200, 200, 0.8);
    z-index: 1;
}

/* SVG Chart */
.chart-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.chart-stroke {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Y-axis values */
.y-axis-values {
    position: absolute;
    right: 5px;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 10px;
    color: #888;
    padding: 5px 0;
    text-align: right;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 3px;
}

.y-axis-values span {
    display: block;
    line-height: 1.2;
}

.chart-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Red line path with no fill */
.chart-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L40,80 L80,120 L120,60 L160,90 L200,70 L240,50 L280,80 L320,30 L360,70 L400,50 L440,90 L480,60 L520,100 L560,110 L600,80 L640,120 L680,90 L720,60 L760,130 L800,100 L840,70 L880,90 L920,120 L960,110 L1000,130' stroke='%23e84c3d' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Pink gradient fill beneath the line */
.chart-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L40,80 L80,120 L120,60 L160,90 L200,70 L240,50 L280,80 L320,30 L360,70 L400,50 L440,90 L480,60 L520,100 L560,110 L600,80 L640,120 L680,90 L720,60 L760,130 L800,100 L840,70 L880,90 L920,120 L960,110 L1000,130 L1000,200 L0,200 Z' fill='rgba(232, 76, 61, 0.1)'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.chart-months {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    padding: 0 5px;
}

.chart-months span {
    flex: 1;
    text-align: center;
}

.stock-details {
    padding: 20px;
}

.stock-details h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.stock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stock-info {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.value {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.update-time {
    font-size: 12px;
    color: #777;
    text-align: center;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #f5f5f5;
    margin-top: -100px;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Press Releases */
.press-releases {
    padding: 60px 0;
    background-color: #fff;
}

.press-releases h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.press-releases > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.press-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.press-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
}

.press-logo {
    background-color: #c00;
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190px;
}

.press-logo img {
    height: 50px;
    filter: brightness(20);
}

.press-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.press-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #c00;
    line-height: 1.4;
}

.release-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #999;
    margin-bottom: 12px;
}

.press-content p {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    color: #c00;
    font-size: 12px;
    font-weight: bold;
    align-self: flex-start;
    margin-top: auto;
    text-transform: uppercase;
}

.read-more i {
    margin-left: 5px;
    font-size: 10px;
}

/* Leadership Team */
.leadership {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.leadership h2 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.leadership-team {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 170px;
    height: 170px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #F6F6F6;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.team-member p {
    font-size: 14px;
    color: #777;
}

/* Governance Documents */
.governance {
    padding: 60px 0;
    background-color: #fff;
}

.governance h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.document-list {
    max-width: 800px;
    margin: 0 auto;
}

.document-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #F6F6F6;
    border-radius: 10px;
}
.document-item:nth-child(2n + 2) {
    background: transparent;
}

.document-item:last-child {
    border-bottom: none;
}

.document-item span {
    font-size: 16px;
    color: #333;
}

.download-link {
    color: #999;
    font-size: 16px;
    transition: color 0.3s;
}

.download-link:hover {
    color: #c00;
}

/* SEC Filings */
.sec-filings {
    padding: 60px 0;
    background-color: #fff;
}

.sec-filings h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.sec-filings > p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.filings-filter {
    margin-bottom: 20px;
}

.filter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    max-width: 200px;
    cursor: pointer;
}

.filter-container span {
    font-size: 14px;
    color: #555;
}

.filter-icon {
    color: #999;
    font-size: 12px;
}

.filings-table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    background-color: #f8f8f8;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 12px 15px;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.table-row:last-child {
    border-bottom: none;
}

.row-cell {
    font-size: 14px;
    color: #555;
}

.row-cell.actions {
    display: flex;
    gap: 15px;
}

.view-btn, .download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #e6f7ff;
    border-radius: 50%;
    color: #3399ff;
    transition: all 0.3s;
}

.download-btn {
    background-color: #fff0e6;
    color: #ff9933;
}

.view-btn:hover {
    background-color: #3399ff;
    color: white;
}

.download-btn:hover {
    background-color: #ff9933;
    color: white;
}

/* Email Alerts */
section#email-alerts {
    padding: 50px 0px;
}
.email-alerts .container {
    padding: 60px 0;
    background-color: #6b0000;
    color: white;
    border-radius: 20px;
}

.email-alerts h2 {
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.email-alerts > p {
    text-align: center;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.alert-form {
    margin: 0 auto;
    padding: 0px 150px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 11px 15px;
    border-radius: 29px;
    border: none;
    height: 52px;
    font-size: 14px;
    background-color: #fff;
}
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.checkbox {
    display: flex;
    align-items: center;
    padding: 8px 2px;
    border-radius: 4px;
    min-width: 116px;
}

.checkbox input {
    margin-right: 8px;
}

.checkbox label {
    margin-bottom: 0;
    font-size: 14px;
}

.sign-up-btn {
    background-color: #0E101C;
    color: white;
    border: none;
    flex-shrink: 0;
    border-radius: 25px;
    height: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 38px;
    float: right;
}

.sign-up-btn:hover {
    background-color: #000000;
}

/* Footer */
footer {
    padding: 20px 0;
    background-color: #F6F6F6;
    color: #181823;
    text-align: center;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about .container {
        flex-direction: column;
    }
    
    .leadership-team {
        gap: 40px;
    }
    
    .stock-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-header, .table-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .header-cell:nth-child(4),
    .header-cell:nth-child(5),
    .row-cell:nth-child(4),
    .row-cell:nth-child(5) {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .press-cards {
        grid-template-columns: 1fr;
    }
    
    .leadership-team {
        flex-direction: column;
        gap: 30px;
    }
    
    .stock-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .header-cell:nth-child(3),
    .row-cell:nth-child(3) {
        display: none;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
} 