:root {
            --primary: #0A1A3F;
            --accent: #051e58;
            --text: #333;
            --light: #f8f9fa;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-md: 0 12px 40px rgba(0,0,0,0.12);
            --shadow-lg: 0 25px 70px rgba(0,0,0,0.18);
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, h6, .section-title, .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
        }
        .navbar {
            background: #0A1A3F;
            transition: var(--transition);
        }
        .navbar.scrolled {
            background: rgba(10,26,63,0.65);
            backdrop-filter: blur(20px);
            padding: 0.3rem 0;
            box-shadow: var(--shadow-sm);
        }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}
.navbar-brand:hover .mij-logo .dot {
    color: #ec4899;
}
        .navbar-toggler { border: none; padding: 0; }
        .toggler-icon { width: 30px; height: 3px; background: white; display: block; margin: 6px 0; transition: var(--transition); border-radius: 2px; }
        .navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) { opacity: 0; }
        .navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
        /* Offcanvas - unchanged */
        .offcanvas { background: linear-gradient(135deg, var(--primary) 0%, #0d234a 100%); width: 100% !important; max-width: 340px; }
        .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1.2rem 1.5rem; }
        .offcanvas-title { color: white; font-weight: 700; font-size: 1.4rem; }
        .offcanvas-body .nav-link { color: rgba(255,255,255,0.95); font-size: 1.35rem; font-weight: 500; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: var(--transition); }
        .offcanvas-body .nav-link:hover { color: var(--accent); padding-left: 1rem; }
        .offcanvas-body .collapse-submenu { padding-left: 1.5rem; background: rgba(255,255,255,0.05); border-radius: 8px; margin: 0.5rem 0; }
        .offcanvas-body .collapse-submenu .nav-link { font-size: 1.15rem; padding: 0.8rem 0; border-bottom: none; color: rgba(255,255,255,0.85); }
        .offcanvas-body .nav-link .chevron { transition: transform 0.4s ease; }
        .offcanvas-body .nav-link[aria-expanded="true"] .chevron { transform: rotate(180deg); }
        .dropdown-toggle::after{
            display:none;
        }
        .dropdown-item:focus, .dropdown-item:hover{
            background: #0d234a;
        }
        /* Hero */
        /* Updated Hero Carousel CSS - Modern, Startup-Focused, Premium Feel */
.hero-carousel {
    height: 100%;
    min-height: 700px;
    overflow: hidden;
}
.hero-carousel .carousel-item {
    height: 100%;
    background: no-repeat center center/cover;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,26,63,0.55) 0%, rgba(10,26,63,0.75) 60%, rgba(255,107,0,0.15) 100%);
    z-index: 1;
}
.hero {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(60px);
    animation: fadeUp 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Hero Carousel Fixes & Enhancements - Eliminate Blank Space & Make More Prominent */
.hero-carousel {
    height: 100vh; /* Full viewport height on all devices */
    min-height: unset; /* Remove fixed min-height to prevent extra space on smaller screens */
    overflow: hidden;
    position: relative;
}
.hero-carousel .carousel-item {
    height: 100vh;
    background: no-repeat center center / cover;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,26,63,0.65) 0%, rgba(10,26,63,0.85) 60%, rgba(255,107,0,0.25) 100%);
    z-index: 1;
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding-top: 4rem;
}
.hero-content {
    margin-top:4rem !important;
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 6rem 2.5rem;
    opacity: 0;
    transform: translateY(70px);
    animation: fadeUp 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-content h1 {
    font-size: 4.5rem; /* Larger for more prominence */
    font-weight: 900;
    color: white;
    text-shadow: 0 10px 50px rgba(0,0,0,0.8);
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}
.hero-content p {
    font-size: 2rem; /* Bolder subtitle */
    font-weight: 500;
    color: rgba(255,255,255,0.98);
    text-shadow: 0 6px 30px rgba(0,0,0,0.7);
    margin-bottom: 4.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.hero .btn-accent {
    background: var(--accent);
    color: white;
    font-weight: 800;
    font-size: 1.5rem; /* Larger button */
    padding: 1.5rem 4rem;
    border-radius: 60px;
    box-shadow: 0 20px 50px rgba(255,107,0,0.6);
    transition: all 0.5s ease;
}
.hero .btn-accent:hover {
    background: #0A1A3F;
    transform: translateY(-12px) scale(1.1);
    box-shadow: 0 35px 80px #0A1A3F;
}
/* Stronger Responsive Scaling */
@media (max-width: 992px) {
    .hero-carousel, .hero-carousel .carousel-item, .hero { height: 100%; padding-top: 2rem; } /* Slightly shorter on tablets */
    .hero-content h1 { font-size: 4.8rem; }
    .hero-content p { font-size: 1.6rem; }
    .hero-content { padding: 3rem 2rem; }
}
@media (max-width: 768px) {
    .hero-carousel, .hero-carousel .carousel-item, .hero { height: 100%; padding-top: 2rem; }
    .hero-content h1 { font-size: 4rem; }
    .hero-content p { font-size: 1.4rem; }
    .btn-accent { padding: 1.3rem 3.5rem; font-size: 1.3rem; }
}
@media (max-width: 576px) {
    .hero-carousel, .hero-carousel .carousel-item, .hero { height: 100%; padding-top: 2rem; }
    .hero-content h1 { font-size: 3.4rem; }
    .hero-content p { font-size: 1.3rem; }
    .hero-content { padding: 2.5rem 1.5rem; }
    .btn-accent { padding: 1.2rem 3rem; font-size: 1.2rem; }
}
        .btn-accent {
            background: var(--accent);
            border: none;
            padding: .6rem 1rem;
            font-weight: 700;
            border-radius: 10px;
            transition: var(--transition);
            box-shadow: 0 8px 25px #0A1A3F;
            color: white;
        }
        .btn-accent:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 50px #0A1A3F;
            background: #0A1A3F;
        }
        /* section { padding: 4rem 0; } */
        .section-title {
            font-size: 3.8rem;
            text-align: center;
            color: var(--primary);
            margin-bottom: 4rem;
            position: relative;
        }
        .section-title::after {
            content: '';
            width: 140px;
            height: 6px;
            background: var(--accent);
            display: block;
            margin: 2rem auto 0;
            border-radius: 4px;
        }
        /* Amenities */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}
.amenity-card {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 32px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}
.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0A1A3F, #0A1A3F);
    transition: left 0.6s ease;
}
.amenity-card:hover::before {
    left: 0;
}
.amenity-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}
.amenity-icon {
    font-size: 4.2rem;
    color: #0A1A3F;
    margin-bottom: 1.8rem;
    transition: all 0.5s ease;
}
.amenity-card:hover .amenity-icon {
    color: #0A1A3F;
    transform: scale(1.2) translateY(-8px);
}
.amenity-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #0A1A3F;
    line-height: 1.5;
}
        /* About */
        .about-img {
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }
        .about-img:hover { transform: translateY(-15px); }
        /* Spaces */
        #spaces{
            background:#b9b9b917;
        }
        .space-card {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }
        .space-card:hover {
            transform: translateY(-20px) scale(1.02);
            box-shadow: 0 35px 80px rgba(0,0,0,0.22);
        }
        .space-img {
            height: 380px;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .space-card:hover .space-img { transform: scale(1.2); }
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            margin: 1.5rem 0;
        }
        /* Footer */
        footer {
            background: linear-gradient(to top, var(--primary), #0d234a);
            color: white;
            padding: 1rem 0;
        }
        @media (max-width: 992px) {
            .hero-content h1 { font-size: 4.5rem; }
            .section-title { font-size: 3.4rem; }
        }
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 3.8rem; }
            .hero-content p { font-size: 1.4rem; }
            .amenity-grid { gap: 2.5rem; }
        }
        /* Startup Ecosystem Section */
#ecosystem {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.ecosystem-img {
    transition: transform 0.6s ease;
}
.ecosystem-img:hover {
    transform: scale(1.05);
}
.stat-item {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 32px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
}
.stat-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.text-accent {
    color: #0A1A3F !important;
}
.counter {
    font-weight: 800;
    line-height: 1;
}
@media (max-width: 992px) {
    .stat-item {
        padding: 2rem 1rem;
    }
    .counter {
        font-size: 3rem !important;
    }
}
@media (max-width: 768px) {
    .row.g-4 > .col-sm-4 {
        margin-bottom: 1.5rem;
    }
}
.swal2-actions{
    gap: 10px !important;
}
/* Pricing Section */
.pricing-section {
    background: #ffffff;
}
.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.14);
    /* border-color: var(--accent); */
}
.pricing-header {
    padding: 1.8rem 1.5rem 1.4rem;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}
.pricing-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    color: var(--primary);
}
.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.6rem;
    line-height: 1;
}
.currency {
    font-size: 1.6rem;
    /* vertical-align: super; */
}
.period {
    font-size: 1rem;
    font-weight: 500;
    color: #777;
    display: block;
}
.savings-badge {
    display: inline-block;
    background: rgba(255,107,0,0.12);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    margin-top: 0.6rem;
}
.pricing-features {
    list-style: none;
    padding: 1.4rem 1.8rem;
    margin: 0;
    flex-grow: 1;
    font-size: 0.95rem;
}
.pricing-features li {
    margin-bottom: 0.9rem;
    color: #555;
    position: relative;
    padding-left: 1.8rem;
}
.pricing-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}
.popular {
    /* border: 2px solid var(--accent); */
    transform: scale(1.03);
    box-shadow: 0 15px 45px rgba(255,107,0,0.18);
}
.popular .pricing-header {
    background: linear-gradient(to bottom, #fffaf0, #fff);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.35rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255,107,0,0.35);
}
.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}
.btn-outline-accent:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}
/* Mobile adjustments */
@media (max-width: 992px) {
    .pricing-header h3 { font-size: 1.5rem; }
    .price { font-size: 2.2rem; }
    .pricing-features { font-size: 0.92rem; }
}
