:root {
    --primary-dark: #1a1a2e;
    --primary-black: #0a0a0a;
    --primary-blue: #0f4c81;
    --accent-silver: #c0c0c0;
    --accent-gold: #d4af37;
    --text-primary: #2d2d2d;
    --text-secondary: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo a {
    text-decoration: none;
    color: var(--primary-dark);
}

.logo a:hover {
    color: var(--primary-dark);
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.ipo-btn {
    background: linear-gradient(135deg, var(--primary-blue), #0a3a5f);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(15, 76, 129, 0.2);
}

.ipo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 76, 129, 0.3);
    color: white;
}

/* Bootstrap overrides for navigation */
.navbar-toggler {
    border-color: var(--primary-blue);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(15, 76, 129, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15, 76, 129, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    align-items: flex-start;
}

@media (min-width: 992px) {
    .navbar-nav {
        align-items: center;
    }
}


/* Hero Section */
.hero {
    margin-top: 60px;
    background: linear-gradient(135deg, #0f4c81 0%, #1a1a2e 100%);
    padding: 8rem 3rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 strong {
    font-weight: 700;
    display: block;
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 6rem 3rem;
    background: var(--bg-white);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto; 
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-label {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 600;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    align-items: start;
}

.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    min-width: 80px;
}

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

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

/* Business Segments */
.segments {
    padding: 6rem 3rem;
    background: var(--bg-light);
}

.segments-content {
    max-width: 1400px;
    margin: 0 auto;
}

.segments-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.segments-grid {
     
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
}

.segment-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.segment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold), var(--primary-blue));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s;
}

.segment-card:hover::before {
    transform: scaleY(1);
}

.segment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.segment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #0a3a5f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.segment-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.segment-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.segment-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.detail-item::before {
    content: '→';
    color: var(--accent-gold);
    font-weight: bold;
}

/* Market Position */
.market {
    padding: 6rem 3rem;
    background: var(--primary-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.market::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.market-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.market-header .section-title {
    color: white;
}

.market-grid {
 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    
}

.market-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.market-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.market-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.market-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Investors Section */
.investors {
    padding: 1rem 3rem;
    background: var(--bg-white);
}

.investors-content {
    max-width: 1400px;
    margin: 0 auto;
}

.investors-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.investor-benefits {
 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    
    margin-bottom: 4rem;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.financial-highlights {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.financial-highlights h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.highlights-grid {
    
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    text-align: center;
}

.highlight-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: center;
}

/* IPO Hero Banner */
.ipo-hero {
    /* : linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);   */
    padding: 8rem 3rem 6rem;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.ipo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.ipo-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.ipo-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--bg-white);
}

.ipo-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--accent-silver);
}

.ipo-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ipo-hero-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: var(--accent-gold);
    border: none;
    color: var(--primary-dark);
}

.ipo-hero-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background: var(--bg-white);
}

/* IPO Snapshot Section */
.ipo-snapshot { 
    padding-top: 4rem;
    padding-bottom: 0rem;
    padding-left: 3rem;
    padding-right: 3rem;
    background: var(--bg-light);
    position: relative;
}

.ipo-snapshot-content {
    max-width: 1400px;
    margin: 0 auto;
}

.snapshot-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.status-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.snapshot-grid {
    
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    
    margin-bottom: 3rem;
}

.snapshot-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.snapshot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
}

.snapshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.snapshot-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.snapshot-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.snapshot-detail {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.snapshot-highlight {
    background: linear-gradient(135deg, var(--primary-blue), #0a3a5f);
    grid-column: 1 / -1;
    color: white;
    text-align: center;
    padding: 3rem;
}

.snapshot-highlight .snapshot-label {
    color: rgba(255, 255, 255, 0.8);
}

.snapshot-highlight .snapshot-value {
    color: var(--accent-gold);
    font-size: 2.5rem;
}

.snapshot-highlight .snapshot-detail {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* IPO Timeline Section */
.ipo-timeline {
    padding: 6rem 3rem;
    background: var(--bg-white);
}

.ipo-timeline-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold), var(--primary-blue));
}

.timeline-event {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-event:nth-child(odd) {
    flex-direction: row;
}

.timeline-event:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content-box {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 0 2rem;
}

.timeline-event:nth-child(odd) .timeline-content-box {
    margin-right: calc(50% + 2rem);
}

.timeline-event:nth-child(even) .timeline-content-box {
    margin-left: calc(50% + 2rem);
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    z-index: 1;
}

.timeline-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How to Apply Section */
.how-to-apply {
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.how-to-apply-content {
    max-width: 1400px;
    margin: 0 auto;
}

.apply-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.apply-steps {
    
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    
}

.apply-step {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.apply-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), #b8941f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.apply-step h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.apply-step p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.apply-step ul {
    list-style: none;
    padding-left: 0;
}

.apply-step li {
    color: var(--text-secondary);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.apply-step li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Resources Section */
.resources {
    padding: 4rem 3rem;
    background: var(--bg-white);
}

.resources-content {
    max-width: 1400px;
    margin: 0 auto;
}

.resources-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.resources-grid {
    
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    
}

.resource-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), #0a3a5f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    color: white;
}

.resource-card h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

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

.download-btn {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Management Team Section */
.management {
    padding: 6rem 3rem;
    background: var(--bg-light);
}

.management-content {
    max-width: 1400px;
    margin: 0 auto;
}

.management-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-grid {
    
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    
}

.team-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-blue);
}

.team-info {
    padding: 2rem;
}

.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* News Section */
.news {
    padding: 6rem 3rem;
    background: var(--bg-white);
}

.news-content {
    max-width: 1400px;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.news-body {
    padding: 2rem;
}

.news-date {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

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

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

.read-more:hover {
    gap: 0.8rem;
    color: var(--accent-gold);
}

.read-more::after {
    content: '→';
    font-size: 1.2rem;
    line-height: 1;
}

/* Contact Section */
.contact {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
}

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

.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

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

/* Footer */
footer {
    background: var(--primary-black);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

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

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

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }

    .ipo-hero {
        padding: 6rem 2rem 4rem;
    }

    .ipo-hero-title {
        font-size: 2.5rem;
    }

    .ipo-hero-subtitle {
        font-size: 1.2rem;
    }

    .ipo-hero-description {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .segments-grid {
        grid-template-columns: 1fr;
    }

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

    nav {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .snapshot-grid {
        grid-template-columns: 1fr;
    }

    .snapshot-highlight {
        grid-column: 1;
    }

    .process-timeline::before {
        left: 30px;
    }

    .timeline-event {
        flex-direction: row !important;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content-box {
        margin-left: 80px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .timeline-event:nth-child(odd) .timeline-content-box,
    .timeline-event:nth-child(even) .timeline-content-box {
        margin-left: 80px;
        margin-right: 0;
    }

    .apply-steps {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
    
    /* Bootstrap navbar overrides for mobile */
    nav {
        padding: 1rem 1.5rem;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
    }
    
    .nav-links {
        gap: 0;
    }
    
    .nav-item {
        padding: 0.5rem 0;
    }
    
    .ipo-btn {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 120px 1rem 4rem;
    }

    .ipo-hero {
        padding: 5rem 1.5rem 3rem;
    }

    .ipo-hero-title {
        font-size: 2rem;
    }

    .ipo-hero-subtitle {
        font-size: 1.1rem;
    }

    .ipo-hero-description {
        font-size: 0.95rem;
    }

    .ipo-hero-cta .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    nav {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .snapshot-grid {
        gap: 0.75rem;
    }
    
    .snapshot-value {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Additional responsive utilities */
@media (min-width: 768px) and (max-width: 991px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    nav {
        padding: 1.5rem 2rem;
    }
}

/* Ensure cards have equal height within rows */
.h-100 {
    height: 100%;
}

/* Mobile-first spacing adjustments */
section {
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    section {
        padding: 5rem 2rem;
    }
}

@media (min-width: 992px) {
    section {
        padding: 6rem 3rem;
    }
}
