/* --- Startups Hero Section Styles --- */
.startups-hero-section {
    padding: 100px 0 120px 0;
    background-color: #0a2540; /* Primary Deep Navy Blue Background */
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.startup-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* --- Matte Gold Startup Badge Style --- */
.startups-hero-section .gold-badge {
    color: #b38a38 !important;
    background-color: rgba(179, 138, 56, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Typography Structure */
.startup-hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin: 20px 0;
}

.startup-hero-content p {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Action Controls Panel */
.startup-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.startup-primary-btn {
    display: inline-block;
    background-color: #b38a38; /* Matte Gold Main Button */
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(179, 138, 56, 0.3);
}

.startup-primary-btn:hover {
    background-color: #96732e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 138, 56, 0.5);
}

.startup-secondary-btn {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.startup-secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #b38a38;
}

/* --- Right Side Startup Valuation Preview Window --- */
.startup-hero-visual {
    display: flex;
    justify-content: flex-end;
}

.startup-valuation-preview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.startup-preview-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.startup-preview-header h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Live dynamic pulse point for startups */
.startup-live-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
}

.startup-preview-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.startup-data-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.startup-data-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.startup-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.startup-value {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.text-gold { color: #b38a38 !important; }
.text-green { color: #10b981 !important; }

/* --- Responsive Layout Adjustments --- */
@media (max-width: 991px) {
    .startup-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .startup-hero-actions {
        justify-content: center;
    }

    .startup-hero-visual {
        justify-content: center;
    }
    
    .startup-valuation-preview {
        max-width: 100%;
    }
    
    .startup-data-row {
        text-align: left;
    }
    
    .startup-hero-content h1 {
        font-size: 34px;
    }
}

/* --- Startups Sprint Timeline Section Styles --- */
.startup-sprint-section {
    padding: 100px 0;
    background-color: #ffffff; /* Clean White Base Canvas background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Golden Badge Style --- */
.startup-sprint-section .style-gold-badge {
    color: #b38a38 !important;
    background-color: rgba(179, 138, 56, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.5px;
}

/* Title Core Typography styling */
.startup-sprint-section .team-title-wrapper h2 {
    color: #0a2540; /* Navy Title Header */
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0 25px 0; 
}

/* इसके पैरेंट कंटेनर की चौड़ाई भी बढ़ा दें */
.startup-sprint-section .team-title-wrapper {
    max-width: 1320px !important;
    width: 100%;
    margin: 0 auto;
}

/* पैराग्राफ का नया कोड */
.startup-sprint-section .team-title-wrapper p {
    color: #475569;
    max-width: 1320px !important; 
    width: 100%;
    margin: 20px auto 0 !important;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-align: justify;
    text-align-last: left; /* center से बदलकर left किया ताकि आखरी लाइन सही दिखे */
}

/* --- Sprint Layout Flow Stack --- */
.sprint-timeline-container {
    display: flex;
    flex-direction: column;
    gap: 0; /* Keeps line segments seamless */
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Individual Timeline Segment Row --- */
.sprint-timeline-item {
    display: grid;
    grid-template-columns: 140px 1fr; /* Distinct timeline node rail on the left */
    gap: 40px;
    position: relative;
}

/* Timeline Rail Markers Elements */
.sprint-node-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 30px;
}

.sprint-badge {
    background-color: #0a2540;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.sprint-badge.badge-gold {
    background-color: #b38a38;
}

/* Connecting continuous vector line */
.sprint-line-connector {
    width: 2px;
    background-color: rgba(10, 37, 64, 0.15);
    position: absolute;
    top: 50px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.sprint-line-connector.connector-gold {
    background-color: rgba(179, 138, 56, 0.3);
}

/* Content Panel Boxes */
.sprint-content-card {
    background-color: #f8fafc; /* Very soft layout gray backdrop */
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 40px;
    margin-bottom: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sprint-timeline-item:hover .sprint-content-card {
    transform: translateX(5px);
    border-color: #b38a38; /* Gold Border alignment shift on hover */
    box-shadow: 0 10px 25px -10px rgba(10, 37, 64, 0.06);
}

/* Inside Typography adjustments */
.sprint-content-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.sprint-objective {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.sprint-objective strong {
    color: #0a2540;
}

.sprint-content-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.sprint-content-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.dark-navy-card {
    background-color: #0a2540 !important; 
    border-color: #0a2540;
}

.dark-navy-card .sprint-objective strong {
    color: #ffffff;
}


.text-navy { color: #0a2540 !important; }
.text-gold { color: #b38a38 !important; }
.text-white { color: #ffffff !important; }
.text-slate { color: #cbd5e1 !important; }


@media (max-width: 768px) {
    .sprint-timeline-item {
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    
    .sprint-node-marker {
        align-items: flex-start;
        padding-top: 0;
    }
    
    .sprint-line-connector {
        display: none; 
    }
    
    .sprint-content-card {
        padding: 30px 25px;
        margin-bottom: 25px;
    }
}

/* add new section */
/* Start-ups Funding Section Styling */

.st-funding-section {
    background-color: #ffffff; 
    padding-top: 20px;    
    padding-bottom: 50px; 
}


.st-title-wrapper {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.st-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b38a38; /* Gold Accent */
    border: 1px solid #b38a38;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.st-title-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #0a2540; /* Dark Blue Text */
}

.st-title-wrapper p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* 3 Column Grid Layout */
.st-funding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.st-funding-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.st-funding-card:hover {
    transform: translateY(-5px);
    border-color: #b38a38; 
    box-shadow: 0 10px 15px -3px rgba(10, 37, 64, 0.08);
}

.st-card-icon {
    font-size: 32px;
    color: #b38a38; 
    margin-bottom: 20px;
}

.st-funding-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a2540; 
    margin-bottom: 12px;
}

.st-funding-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Structural Controls */
@media (max-width: 991px) {
    .st-funding-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .st-title-wrapper h2 {
        font-size: 28px;
    }
}


.st-lifecycle-section {
    background-color: #0a2540; 
    padding: 80px 0;
    color: #ffffff;
}

.st-lc-title-wrapper {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.st-lc-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b38a38; 
    border: 1px solid #b38a38;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.st-lc-title-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #ffffff;
}

.st-lc-title-wrapper p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* 3 Column Grid */
.st-lc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.st-lc-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.st-lc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(179, 138, 56, 0.4);
}

/* Center Highlighted Card Style */
.st-lc-card.active-gold {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #b38a38; 
    box-shadow: 0 10px 25px rgba(179, 138, 56, 0.1);
}

.st-lc-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.st-lc-badge.highlight {
    background: #b38a38; 
    border-color: #b38a38;
}

.st-lc-card h3 {
    font-size: 21px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 5px;
}

.st-lc-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Arrow Bullet List */
.st-lc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.st-lc-list li {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.st-lc-list li:last-child {
    margin-bottom: 0;
}

.st-lc-list li i {
    color: #b38a38; 
    font-size: 12px;
}

/* Responsive Rules */
@media (max-width: 991px) {
    .st-lc-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 40px;
    }
    .st-lc-badge {
        top: -12px;
    }
}

@media (max-width: 575px) {
    .st-lc-title-wrapper h2 {
        font-size: 28px;
    }
}


.st-launchpad-section {
    padding: 120px 20px;
    background-color: #ffffff; 
    font-family: Arial, sans-serif;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.st-launchpad-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr; 
    gap: 80px;
    align-items: center;
}

.st-launchpad-image-block {
    position: relative;
    display: flex;
    justify-content: center;
}

.st-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    z-index: 2;
}

.st-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


.st-gold-frame-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #b38a38; 
    border-radius: 20px;
    top: 20px;
    left: 20px;
    z-index: -1; 
    transition: all 0.4s ease;
}


.st-launchpad-image-block:hover .st-main-photo {
    transform: scale(1.05); 
}

.st-launchpad-image-block:hover .st-gold-frame-accent {
    transform: translate(-6px, -6px); 
}


.st-launchpad-tag {
    color: #b38a38 !important; 
    font-size: 13px;
    text-transform: uppercase;
    font-weight:600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.st-launchpad-content h2 {
    font-size: 36px;
    color: #0a2540; 
    line-height: 1.25;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.st-launchpad-lead {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 40px;
}

/* List Items Distribution Grid */
.st-milestones-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.st-milestone-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.st-milestone-icon {
    width: 44px;
    height: 44px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
   
}


.st-milestone-item:hover .st-milestone-icon {
    background: #0a2540;
    border-color: #b38a38;
    color: #ffffff; 
    filter: brightness(1.2);
}

.st-milestone-text h3 {
    font-size: 18px;
    color: #0f172a;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.st-milestone-text p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Responsive breakdowns formatting rules overrides */
@media (max-width: 992px) {
    .st-launchpad-container {
        grid-template-columns: 1fr; 
        gap: 60px;
    }
    .st-launchpad-content h2 {
        font-size: 32px;
    }
    .st-image-wrapper {
        height: 380px;
    }
    .st-launchpad-section {
        padding: 70px 15px;
    }
}


.st-pre-footer {
    padding: 60px 20px;
    background-color: #ffffff; 
    font-family: Arial, sans-serif;
    border-top: 1px solid #e2e8f0; 
    border-bottom: 1px solid #e2e8f0; 
}

.st-pre-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between; 
}

/* Left Content Configuration */
.st-pre-footer-content h2 {
    font-size: 28px;
    color: #0f172a; 
    font-weight: 700;
    letter-spacing: -0.5px;
     margin-bottom: 15px !important;
}

.st-pre-footer-content p {
    color: #475569; 
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    max-width: 780px;
}


.st-pre-footer-action {
    flex-shrink: 0; 
}

.st-gold-action-btn {
    display: inline-block;
    background-color: #b38a38; 
    color: #ffffff !important;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}


.st-gold-action-btn:hover {
    background-color: #96722e;
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .st-pre-footer-container {
        flex-direction: column; 
        text-align: center;
        gap: 25px;
    }
    .st-pre-footer {
        padding: 50px 15px;
    }
    .st-pre-footer-content h2 {
        font-size: 24px;
    }
}


@media (max-width: 360px) {
    .st-pre-footer {
        padding-top: 30px !important; 
        padding-bottom: 30px !important;
    }
    .st-pre-footer-content h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    .st-pre-footer-content p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    .st-gold-action-btn {
        padding: 12px 24px !important;
        font-size: 13px !important;
    }
}
