: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;
        }
        .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;
        }
        /* Fix for mobile hamburger appearing outside viewport */
@media (max-width: 991px) {
    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .navbar-toggler {
        margin-right: 0;
        padding: 0.5rem;
    }
    .navbar-brand {
        max-width: calc(100% - 60px); /* Reserve space for hamburger */
    }
}
@media (max-width: 576px) {
    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .mij-logo .made { font-size: 1.2rem; }
    .mij-logo .in { font-size: 0.95rem; }
    .mij-logo .jis { font-size: 1.35rem; }
    .navbar-brand {
        max-width: calc(100% - 50px);
    }
}
        /* section { padding: 4rem 0; } */
        .section-title {
            font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 0.75rem;
        }
        /* .section-title::after {
            content: '';
            width: 140px;
            height: 6px;
            background: var(--accent);
            display: block;
            margin: 2rem auto 0;
            border-radius: 4px;
        } */
        /* Amenities */
 .amenities-section {
            padding: 70px 0 90px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(165deg, #fafbfc 0%, #f1f5f9 100%);
        }
        /* Background Canvas */
        #particleCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        /* Subtle gradient overlays */
        .bg-gradient {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }
        .gradient-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
        }
        .g-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #eab308, transparent 70%);
            top: -150px;
            right: 10%;
        }
        .g-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #3b82f6, transparent 70%);
            bottom: -100px;
            left: 5%;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        /* Compact Header */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        .section-header p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.5;
        }
        /* Amenity Grid */
        .amenity-grid {
            display: block;
        }
        .amenity-row {
            display: grid;
            gap: 1.5rem;
            margin: 0 auto;
        }
        .amenity-row-1 {
            grid-template-columns: repeat(4, 1fr);
            max-width: 1080px;
            margin-bottom: 1.5rem;
        }
        .amenity-row-2 {
            grid-template-columns: repeat(3, 1fr);
            max-width: 810px;
        }
        /* Card Design */
        .amenity-card {
            background: #ffffff;
            padding: 2rem 1.5rem;
            text-align: center;
            border-radius: 20px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow:
                0 8px 24px rgba(15, 23, 42, 0.05),
                0 1px 3px rgba(15, 23, 42, 0.03);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            height: 100%;
            overflow: hidden;
        }
        .amenity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top, rgba(234, 179, 8, 0.05), transparent 60%);
            opacity: 0;
            transition: opacity 0.35s ease;
        }
        .amenity-card:hover::before {
            opacity: 1;
        }
        .amenity-card:hover {
            transform: translateY(-10px);
            box-shadow:
                0 20px 40px rgba(234, 179, 8, 0.12),
                0 0 0 1px rgba(234, 179, 8, 0.15);
            border-color: rgba(234, 179, 8, 0.2);
        }
        .amenity-icon-wrap {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #fafafa, #f1f5f9);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
        }
        .amenity-card:hover .amenity-icon-wrap {
            background: linear-gradient(135deg, #0A1A3F, #1e3a5f);
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(234, 179, 8, 0.25);
        }
        .amenity-icon {
            font-size: 1.85rem;
            color: #1e2937;
            transition: all 0.35s ease;
        }
        .amenity-card:hover .amenity-icon {
            color: #eab308;
            transform: scale(1.15);
        }
        .amenity-card h5 {
            font-size: 1.05rem;
            font-weight: 600;
            color: #1e2937;
            line-height: 1.4;
        }
        /* Responsive */
        @media (max-width: 992px) {
            .amenity-row-1 { grid-template-columns: repeat(2, 1fr); }
            .section-header h2 { font-size: 2.2rem; }
        }
        @media (max-width: 640px) {
            .amenities-section { padding: 50px 0 70px; }
            .amenity-row-1,
            .amenity-row-2 {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }
            .amenity-row-2 .amenity-card:last-child {
                grid-column: 1 / -1;
                max-width: 260px;
                margin: 0 auto;
            }
            .section-header h2 { font-size: 1.85rem; }
            .section-header p { font-size: 1rem; }
        }
        /* 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 {
          overflow: hidden;
            padding: 100px 0;
            background: linear-gradient(135deg, #fff 0%, #ffffff 50%, #fff 100%);
            position: relative;
        }
        .pricing-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .pricing-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
         .pricing-section .section-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 2;
        }
         .pricing-section .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #0A1A3F 0%, #0A1A3F 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
         .pricing-section .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 16px;
            line-height: 1.2;
        }
         .pricing-section .section-subtitle {
            font-size: 1.15rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }
         .pricing-section .pricing-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 20px auto 0;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
         .pricing-section .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 32px 24px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid #f1f5f9;
            overflow: visible;
            margin-top: 20px;
        }
         .pricing-section .pricing-card:hover::before {
            transform: scaleX(1);
        }
         .pricing-section .pricing-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(102, 126, 234, 0.15);
            border-color: #e0e7ff;
        }
         .pricing-section .popular-badge {
            position: absolute;
            top: -12px;
            right: 24px;
            background: linear-gradient(135deg, #0A1A3F 0%, #0A1A3F 100%);
            color: white;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
        }
         .pricing-section .card-header {
            margin-bottom: 20px;
        }
         .pricing-section .plan-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 10px;
        }
         .pricing-section .plan-price {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 8px;
        }
         .pricing-section .currency {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0A1A3F;
        }
         .pricing-section .amount {
            font-family:'Playfair Display', serif;
            font-size: 2.15rem;
            font-weight: 800;
            color: #1a202c;
            line-height: 1;
        }
         .pricing-section .period {
            font-size: 0.9rem;
            color: #94a3b8;
            font-weight: 500;
        }
         .pricing-section .savings {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #ecfdf5;
            color: #059669;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-top: 8px;
        }
         .pricing-section .savings i {
            font-size: 11px;
        }
         .pricing-section .features-list {
            list-style: none;
            margin: 20px 0;
            padding: 0;
        }
         .pricing-section .features-list li {
            font-family:'Playfair Display', serif;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 16px;
            color: #475569;
            line-height: 1.5;
        }
         .pricing-section .feature-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0A1A3F 0%, #0A1A3F 100%);
             color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }
         .pricing-section .feature-icon i {
            color: white;
            font-size: 9px;
        }
         .pricing-section .cta-button {
            width: 100%;
            padding: 14px 20px;
            border: 2px solid #e2e8f0;
            background: white;
            color: #1a202c;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
         .pricing-section .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #0A1A3F 100%);
            transition: left 0.3s ease;
            z-index: 0;
        }
         .pricing-section .cta-button span {
            position: relative;
            z-index: 1;
        }
         .pricing-section .cta-button:hover::before {
            left: 0;
        }
         .pricing-section .cta-button:hover {
            border-color: #0A1A3F;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }
         .pricing-section .pricing-footer {
            font-family:'Playfair Display', serif;
            text-align: center;
            margin-top: 60px;
            position: relative;
            z-index: 2;
        }
         .pricing-section .footer-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
         .pricing-section .footer-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #64748b;
            font-size: 16px;
        }
         .pricing-section .footer-feature i {
            color: #667eea;
            font-size: 16px;
        }
         .pricing-section .footer-note {
            color: #94a3b8;
            font-size: 15px;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
             .pricing-section .section-title {
                font-size: 2.2rem;
            }
             .pricing-section .pricing-cards {
                grid-template-columns: 1fr;
                gap: 24px;
            }
             .pricing-section .amount {
                font-size: 2.8rem;
            }
             .pricing-section .footer-features {
                flex-direction: column;
                gap: 16px;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
             .pricing-section .pricing-cards {
                grid-template-columns: repeat(2, 1fr);
            }
             .pricing-section amount {
                font-size: 2.2rem;
            }
        }
         .faq{
            background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #ecebeb 100%);
        }
