/* ========================================
   TCG Global - Main Stylesheet
   Theme: Corporate Blue - Professional Design
   ======================================== */

/* === ROOT VARIABLES === */
:root {
    /* Corporate Blue Color Scheme - From Reference Design */
    --primary-blue: #00BBE4;
    --primary-dark: #0A2540;
    --primary-navy: #1B3AAD;
    --accent-blue: #4481eb;
    --accent-light: #25aae1;
    --gradient-blue: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #F6F9FC;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --almost-black: #1a1a1a;
    --bg-light: #F3F7FE;
    
    /* Semantic Colors */
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #189FE0;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(27, 58, 173, 0.15);
    --shadow-xl: 0 20px 50px rgba(10, 37, 64, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: var(--primary-dark);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav-logo
{
        max-width: 25%;
}
.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.admin-btn {
    background: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: var(--white) !important;
}

.admin-btn:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 50%, var(--accent-blue) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 187, 228, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(68, 129, 235, 0.2) 0%, transparent 50%);
    animation: heroOverlayShift 15s ease-in-out infinite;
}

@keyframes heroOverlayShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-item i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    opacity: 0.9;
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   SLIDING ANIMATED OFFER BANNER
   ======================================== */
.sliding-offer-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 50%, var(--accent-blue) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-top: -60px;
}

.sliding-offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 187, 228, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(68, 129, 235, 0.3) 0%, transparent 50%);
}

.offer-slider-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.offer-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-blob-shape {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    animation: floatOrb 6s ease-in-out infinite;
    z-index: 1;
}

.orb-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 15%;
    background: radial-gradient(circle, rgba(0, 187, 228, 0.6), rgba(37, 170, 225, 0.3));
}

.orb-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 75%;
    animation-delay: 1s;
    background: radial-gradient(circle, rgba(68, 129, 235, 0.6), rgba(4, 190, 254, 0.3));
}

.orb-3 {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 10%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(25, 159, 224, 0.6), rgba(0, 187, 228, 0.3));
}

.orb-4 {
    width: 70px;
    height: 70px;
    bottom: 15%;
    left: 50%;
    animation-delay: 1.5s;
    background: radial-gradient(circle, rgba(63, 134, 237, 0.6), rgba(27, 58, 173, 0.3));
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(15px, 15px) scale(1.05);
        opacity: 0.9;
    }
}

/* Main Offer Content */
.offer-content-slider {
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.offer-main-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.offer-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.offer-value-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.value-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.btn-claim-now {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 187, 228, 0.4);
    margin-bottom: 1.5rem;
}

.btn-claim-now:hover {
    background: var(--accent-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 187, 228, 0.6);
}

.btn-icon, .btn-arrow {
    font-size: 1.5rem;
}

.offer-urgency-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffeb3b;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ========================================
   SECTIONS
   ======================================== */
.section-light {
    background: var(--bg-light);
    padding: 5rem 0;
}

.section-dark {
    background: var(--primary-dark);
    color: var(--white);
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
    position: relative;
    display: inline-block;
}

.section-dark .section-title {
    color: var(--white);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 1rem auto 0;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.certifications h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin: 2rem 0 1.5rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition-normal);
}

.cert-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.cert-item i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.cert-item span {
    font-weight: 600;
    color: var(--dark-gray);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border-top: 4px solid var(--primary-blue);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--dark-gray);
}

.service-features i {
    color: var(--success);
    font-size: 1rem;
}

/* ========================================
   ECOSYSTEM SECTION - SINGLE LINE STATS
   ======================================== */
.ecosystem-highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.ecosystem-stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.eco-stat {
    text-align: center;
    color: var(--white);
    min-width: 150px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

.ecosystem-desc {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   STARTUP CATEGORIES
   ======================================== */
.startup-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border-top: 4px solid var(--primary-blue);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-blue);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.category-card h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.category-count {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-blue);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.category-card ul {
    list-style: none;
}

.category-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--medium-gray);
    line-height: 1.6;
}

.category-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 1.5rem;
    line-height: 1;
}

/* ========================================
   HEALTH CHECK CTA SECTION
   ======================================== */
.health-check-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.health-check-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 187, 228, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(68, 129, 235, 0.2) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-time {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-item i {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.why-item h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.why-item p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-top: 0.3rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    opacity: 0.9;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.15);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--almost-black);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li {
    opacity: 0.8;
    transition: var(--transition-normal);
}

.footer-section ul li:hover {
    opacity: 1;
    color: var(--primary-blue);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-5px);
}

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

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in-out 0.3s both;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-grid,
    .startup-categories {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-stats-row {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: var(--primary-dark);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .offer-main-title {
        font-size: 2rem;
    }
    
    .offer-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .startup-categories,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-stats-row {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container,
    .container-nav {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-lg {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and text */
}
.header-logo {
    height: 4px; /* Adjust size as needed */
    width: auto;
}
/* ========================================
   STARTUPS INNOVATION ECOSYSTEM SECTION
   ======================================== */

.startup-category {
    margin-bottom: 4rem;
    opacity: 1;              /* CHANGED TO 1 */
    transform: translateY(0);
    transition: all 0.6s ease;
}

.startup-category.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.startup-category h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.startup-category h3 i {
    color: var(--primary-blue);
    font-size: 2rem;
}

.startup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.startup-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--primary-blue);
}

.startup-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-navy);
}

.startup-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.startup-item p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Responsive adjustments for startups section */
@media (max-width: 1024px) {
    .startup-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.2rem;
    }
    
    .startup-category h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .startup-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .startup-category {
        margin-bottom: 3rem;
    }
    
    .startup-category h3 {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .startup-item {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .startup-category h3 {
        font-size: 1.2rem;
    }
    
    .startup-item strong {
        font-size: 1rem;
    }
    
    .startup-item p {
        font-size: 0.9rem;
    }
}

