        /* CSS Reset and Base Styles */
        :root {
            --primary: #FF5A5F;
            --secondary: #00A699;
            --dark: #2B303A;
            --light: #F5F5F5;
            --accent: #FFC107;
            --text: #333333;
            --text-light: #777777;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--secondary);
        }
		

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
			padding-top: 50px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--secondary);
            color: white;
            border-radius: 4px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        .btn:hover {
            background-color: var(--light);
            transform: translateY(-2px);
			 color: var(--secondary);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background-color: var(--secondary);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--dark);
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            margin: 15px auto;
        }

        .text-center {
            text-align: center;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
            position: fixed;
			opacity: 0.95;
            width: 100%;
			backdrop-filter: blur(5px);
            top: 0;
            z-index: 1000;
        }
		
		
		.header.scrolled{
		    padding: 100px 0;
			opacity: 1;
		    background: rgba(44, 62, 80, 0.9);
		    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.95);
		}

		.header-container {
		    display: flex;
		    justify-content: space-between;
		    align-items: center;
		    padding: 20px 0;
		}
		
		.logo {
		    display: flex;
		    align-items: center;
		    text-decoration: none;
		    font-family: 'Space Mono', monospace;
		    font-weight: 700;
		    font-size: 1.5rem;
		    gap: 10px; /* This creates consistent spacing between logo image and text */
		}
		
		.logo img {
		    height: 50px;
			display: block; 
		    width: 100%; /* Changed from 100% to maintain aspect ratio */
		}
		
		.logo span{
		    color: var(--secondary);
		}
		
		.logo-text {
	display: inline;
		}	

        .logo:hover {
            transform: translateX(10px);
			zoom: 150%;
        }
        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--secondary);
            font-weight: 500;
            position: relative;
        }
        nav ul li a.active {
            color: var(--primary);
        }
		
		nav ul li a.active:after,
		nav ul li a:not(.active):hover:after {
		    content: '';
		    position: absolute;
		    bottom: -5px;
		    left: 0;
		    width: 100%;
		    height: 2px;
		    background-color: var(--secondary);
		    transform: scaleX(1);
		    transition: transform 0.3s ease;
		}
		
			nav ul li a:not(.active):not(:hover):after {
   			transform: scaleX(0);
		}
		
		/* Mobile menu active state */
		#mainNav.active ul li a.active {
		    color: var(--secondary);
		    font-weight: 600;
		}
			nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }

		/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 15px 0;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
		border-radius: 5px;
        background-color: var(--primary);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
        color: var(--dark);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Adjust the active state for mobile */
    #mainNav.active ul li a.active {
        color: var(--primary);
        font-weight: 600;
    }
    
    nav ul li a:after {
        display: none; /* Remove underline effect on mobile if desired */
    }
}

	
	/* Add to your mobile media query */
body.menu-open {
    overflow: hidden;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

@media (max-width: 768px) {
    .mobile-menu-overlay.active {
        display: block;
    }
}	

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0, 0.7) 0%, rgba(0,0,0, 0.7) 100%), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: var(--secondary);
            display: flex;

            align-items: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
			    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            animation: fadeInDown 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeIn 1.5s ease;
        }

        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--secondary) !important;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            cursor: pointer;
        }
		
		
		.scroll-down a {
            text-decoration: none;
            color: var(--secondary);
            transition: all 0.3s ease;
        }

        .scroll-down a:hover {
            color: var(--light);
        }


        /* About Section */
        .about {
            background-color: white;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Services Section */
        .services {
            background-color: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-image {
            height: 200px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* Makerspaces Section */
        .makerspaces {
            background-color: white;
        }

        .spaces-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .space-card {
            width: 350px;
            background-color: var(--light);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .space-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .space-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .space-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .space-location {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background-color: rgba(0, 166, 153, 0.9);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.9rem;
        }

        .space-content {
            padding: 20px;
        }

        .space-content h3 {
            margin-bottom: 10px;
            color: var(--dark);
        }

        .space-equipment {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 15px 0;
        }

        .equipment-tag {
            background-color: var(--primary);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1523961131990-5ea7c61b2107?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 1.2rem;
            color: white;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--light);
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            display: none;
        }

        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--text);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
            color: var(--primary);
        }

        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            background-color: #ccc;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .testimonial-dot.active {
            background-color: var(--primary);
        }

        /* CTA Section */
        .cta {
            background-color: var(--primary);
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .cta h2 {
            color: white;
            margin-bottom: 30px;
            font-size: 2.5rem;
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .cta .btn {
            background-color: white;
            color: var(--primary);
        }

        .cta .btn:hover {
            background-color: var(--dark);
            color: white;
        }

        .cta .btn-outline {
            border-color: white;
            color: white;
            background-color: transparent;
        }

        .cta .btn-outline:hover {
            background-color: white;
            color: var(--primary);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-column p {
            margin-bottom: 15px;
            color: #ccc;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 0.9rem;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
        }

        .modal-content {
            background-color: white;
            max-width: 800px;
            margin: 50px auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.3s ease;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            color: var(--text-light);
            cursor: pointer;
            z-index: 1;
            background: none;
            border: none;
        }

        .close-modal:hover {
            color: var(--primary);
        }

        .modal-header {
            padding: 30px;
            background-color: var(--primary);
            color: white;
            text-align: center;
        }

        .modal-header h2 {
            color: white;
        }

        .modal-body {
            padding: 30px;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.2);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        .form-footer {
            margin-top: 30px;
            text-align: center;
        }

        /* Makerspace Grid Page */
        .spaces-page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 150px 0 80px;
            text-align: center;
        }

        .spaces-page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .spaces-filter {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 1000px;
            margin: -40px auto 0;
            position: relative;
            z-index: 1;
        }

        .filter-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .filter-group {
            flex: 1;
        }

        .filter-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .filter-group select {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Roboto', sans-serif;
            font-size: 0.9rem;
        }

        .spaces-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        /* Makerspace Single Page */
        .space-header {
            background-color: var(--light);
            padding: 100px 0 50px;
        }

        .space-header-content {
            display: flex;
            gap: 40px;
        }

        .space-header-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .space-header-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .space-header-info {
            flex: 1;
        }

        .space-header-info h1 {
            font-size: 2.5rem;
            color: var(--dark);
        }

        .space-location-badge {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 15px 0;
            font-size: 0.9rem;
        }

        .space-meta {
            display: flex;
            gap: 20px;
            margin: 20px 0;
        }

        .space-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
        }

        .space-meta-item i {
            color: var(--primary);
        }

        .space-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .space-section {
            padding: 5px 0;
        }

        .space-section-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--dark);
            position: relative;
        }

        .space-section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--primary);
            margin-top: 15px;
        }

        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }

        .equipment-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .equipment-card:hover {
            transform: translateY(-5px);
        }

        .equipment-card h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .equipment-card p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            height: 200px;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Membership Plans */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .plan-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .plan-card.featured {
            border: 3px solid var(--primary);
            transform: scale(1.05);
        }

        .plan-card:hover {
            transform: translateY(-10px);
        }

        .plan-header {
            padding: 30px;
            text-align: center;
            background-color: var(--light);
        }

        .plan-header.featured {
            background-color: var(--primary);
            color: white;
        }

        .plan-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .plan-header.featured .plan-price {
            color: white;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .plan-features {
            padding: 30px;
        }

        .plan-features ul {
            list-style: none;
        }

        .plan-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .plan-features li i {
            color: var(--primary);
        }

        .plan-footer {
            padding: 0 30px 30px;
            text-align: center;
        }

        /* Donation Page */
        .donation-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .donation-option {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .donation-option:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .donation-option.selected {
            border-color: var(--primary);
            background-color: rgba(255, 90, 95, 0.05);
        }

        .donation-option h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .donation-option .amount {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .donation-option .btn {
            width: 100%;
        }

        .custom-amount {
            margin-top: 40px;
        }

        .custom-amount-input {
            display: flex;
            max-width: 400px;
            margin: 20px auto;
        }

        .custom-amount-input span {
            background-color: var(--primary);
            color: white;
            padding: 12px 15px;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .custom-amount-input input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-left: none;
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
            font-size: 1rem;
        }

        /* Success Message */
        .success-message {
            text-align: center;
            padding: 80px 0;
        }

        .success-message i {
            font-size: 5rem;
            color: var(--secondary);
            margin-bottom: 30px;
        }

        .success-message h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .success-message p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .space-header-content {
                flex-direction: column;
            }
        }

        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-text, .about-image {
                flex: none;
                width: 100%;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }

            .filter-row {
                flex-direction: column;
            }
        }

/* New styles for additional pages */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    color: var(--secondary); /* white;*/
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About page styles */
.about-story {
    padding: 10px 0;
    background-color: white;
}

.about-story .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-content {
    flex: 1;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.mission-vision {
    padding: 80px 0;
    background-color: var(--light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mv-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.team {
    padding: 80px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 5px;
    color: var(--dark);
}

.member-info .position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact page styles */
.contact-main {
    padding: 80px 0;
    background-color: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-item h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-map {
    padding: 80px 0;
    background-color: white;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



.training-schedule {
    padding: 80px 0;
    background-color: var(--light);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Spaces page styles */
.spaces-page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.spaces-page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.spaces-page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.spaces-filter {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: -40px auto 0;
    position: relative;
    z-index: 1;
}

.filter-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.filter-group {
    flex: 1;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.filter-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.spaces-grid-section {
    padding: 20px 0;
    background-color: var(--light);
}

.space-benefits {
    padding: 20px 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

/* Donation page styles */
.donate-options {
    padding: 80px 0;
    background-color: white;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.donation-option {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.donation-option:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.donation-option.featured {
    border-color: var(--primary);
    background-color: rgba(255, 90, 95, 0.05);
}

.donation-option h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.donation-option .amount {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.custom-amount {
    margin-top: 40px;
    text-align: center;
}

.custom-amount-input {
    display: flex;
    max-width: 400px;
    margin: 20px auto;
}

.custom-amount-input span {
    background-color: var(--primary);
    color: white;
    padding: 12px 15px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.custom-amount-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-left: none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    font-size: 1rem;
}

.payment-methods {
    margin-top: 60px;
    text-align: center;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.payment-method {
    background: none;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method.active {
    border-color: var(--primary);
    background-color: rgba(255, 90, 95, 0.05);
}

.payment-method img {
    height: 30px;
    width: auto;
}

.donation-impact {
    padding: 80px 0;
    background-color: var(--light);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.impact-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.impact-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

/* Responsive styles for new pages */
@media (max-width: 992px) {
    .about-story .container,
    .service-content-inner {
        flex-direction: column;
    }
    
    .story-content,
    .story-image,
    .service-text,
    .service-image {
        flex: none;
        width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
    }
    
    .service-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .service-tab {
        width: 100%;
        text-align: center;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .service-tab.active {
        border-bottom: none;
        border-left-color: var(--primary);
    }
}

@media (max-width: 576px) {
    .page-header h1,
    .spaces-page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p,
    .spaces-page-header p {
        font-size: 1rem;
    }
}


    /* FAQ Styles */
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-item {
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-item:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }
    
    .faq-question {
        width: 100%;
        padding: 20px 25px;
        text-align: left;
        background: none;
        border: none;
        font-family: 'Space Mono', monospace;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--dark);
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .faq-question:hover {
        color: var(--primary);
    }
    
    .faq-question i {
        transition: transform 0.3s ease;
        color: var(--primary);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        transition: max-height 0.4s ease, padding 0.4s ease;
        background-color: rgba(255, 90, 95, 0.03);
        border-top: 1px solid rgba(255, 90, 95, 0.1);
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 20px 25px;
    }
    
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    
    .faq-answer p {
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .faq-answer ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    
    .faq-answer li {
        margin-bottom: 8px;
        color: var(--text-light);
    }
	
	
	/* Enhanced Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    max-width: 600px;
    margin: 50px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 25px;
    background: var(--primary);
    color: white;
}

.modal-header h2 {
    color: white;
    margin-bottom: 5px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



    /* Calendar Container */
    .calendar-container {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        padding: 25px;
        margin: 30px 0;
    }
    
    /* Calendar Header */
    .calendar-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    
    #current-month {
        font-family: 'Space Mono', monospace;
        font-size: 1.3rem;
        color: var(--dark);
        margin: 0;
    }
    
    .calendar-nav button {
        background: var(--primary);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .calendar-nav button:hover {
        background: var(--secondary);
        transform: scale(1.05);
    }
    
    /* Calendar Grid */
    .calendar {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
    }
    
    .calendar-header {
        font-weight: 600;
        text-align: center;
        padding: 12px 0;
        color: var(--primary);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .calendar-day {
        border-radius: 8px;
        padding: 10px;
        min-height: 80px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .calendar-day:hover {
        background: rgba(0, 166, 153, 0.05);
        transform: translateY(-2px);
    }
    
    .calendar-day.empty {
        background: transparent;
        border: 1px dashed rgba(0, 0, 0, 0.08);
    }
    
    .calendar-date {
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--dark);
    }
    
    .calendar-day.today .calendar-date {
        color: var(--primary);
        position: relative;
    }
    
    .calendar-day.today .calendar-date:after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--primary);
    }
    
    /* Events */
    .calendar-event {
        background: var(--primary);
        color: white;
        padding: 4px 8px;
        border-radius: 6px;
        font-size: 0.75rem;
        margin-bottom: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .calendar-event:hover {
        background: var(--secondary);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    }
    
    .calendar-event.workshop {
        background: #6a4c93;
    }
    
    .calendar-event.training {
        background: #21b0a6;
    }
    
    .calendar-event.special {
        background: #ff9a1f;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .calendar {
            grid-template-columns: 1fr;
        }
        
        .calendar-header {
            display: none;
        }
        
        .calendar-day {
            min-height: auto;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .calendar-day.empty {
            display: none;
        }
        
        .calendar-events {
            margin-left: 15px;
            flex-grow: 1;
        }
        
        .calendar-date {
            margin-bottom: 0;
            min-width: 30px;
        }
    }
	
	
	/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: white;
    max-width: 600px;
    margin: 50px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
    position: relative;
}

.modal-header {
    padding: 25px;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.modal-header h2 {
    color: white;
    margin-bottom: 10px;
}

.modal-body {
    padding: 25px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Styles */
#membership-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

#membership-form .form-group {
    flex: 1;
}

#membership-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

#membership-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#membership-form .form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.2);
}

#membership-form textarea.form-control {
    min-height: 100px;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    #membership-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .modal-content {
        margin: 20px auto;
    }
}


/* Event Modal Styles */
#event-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
  display: none;
}

#event-modal .modal-content {
  background: white;
  margin: 5% auto;
  padding: 30px;
  max-width: 700px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
}

.close-modal:hover {
  color: #000;
}

.modal-header {
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.modal-header h2 {
  margin: 0;
  color: #333;
}

.event-meta {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  color: #666;
  font-size: 15px;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-meta i {
  color: #00a699;
}

#event-details {
  margin: 25px 0;
  line-height: 1.6;
}

#event-details h4 {
  margin: 20px 0 10px;
  color: #333;
}

#event-details ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

#event-details li {
  margin-bottom: 8px;
}

.event-instructor {
  margin: 30px 0;
  padding: 20px;
  background: rgba(0, 166, 153, 0.05);
  border-radius: 8px;
}

.event-instructor h3 {
  margin-top: 0;
  color: #333;
}

.instructor-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.instructor-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f0f0;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-info h4 {
  margin: 0 0 5px 0;
  color: #333;
}

.instructor-title {
  color: #00a699;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.event-registration {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.event-registration h3 {
  margin-top: 0;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
}



.loading-instructor {
  padding: 20px;
  text-align: center;
  color: #666;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .instructor-card {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .event-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  #event-modal .modal-content {
    margin: 20px auto;
    padding: 20px;
  }
}



/* Tour Modal Styles */
#tour-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
  display: none;
}

#tour-modal .modal-content {
  background: white;
  margin: 5% auto;
  padding: 30px;
  max-width: 700px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#tour-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
}

#tour-modal .close-modal:hover {
  color: #000;
}

#tour-modal .modal-header {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

#tour-modal .modal-header h2 {
  margin: 0 0 10px 0;
  color: #333;
}

#tour-modal .modal-header p {
  margin: 0;
  color: #666;
}

#tour-modal .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

#tour-modal .form-group {
  margin-bottom: 20px;
}

#tour-modal .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

#tour-modal .form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
}

#tour-modal .form-control:focus {
  outline: none;
  border-color: #00a699;
  box-shadow: 0 0 0 2px rgba(0, 166, 153, 0.2);
}

#tour-modal select.form-control {
  height: 40px;
}

#tour-modal textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

#tour-modal input[type="date"].form-control {
  height: 40px;
}

#tour-modal input[type="checkbox"] {
  margin: 0;
}

#tour-modal .form-footer {
  margin-top: 30px;
  text-align: center;
}

#tour-modal .btn {
  display: inline-block;
  background: #00a699;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

#tour-modal .btn:hover {
  background: #008577;
}

@media (max-width: 768px) {
  #tour-modal .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  #tour-modal .modal-content {
    margin: 20px auto;
    padding: 20px;
  }
}


/* Start a Space Modal Styles */
#start-space-modal .modal-content {
  max-width: 800px;
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.form-section:last-child {
  border-bottom: none;
}

.form-section h3 {
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section h3 i {
  font-size: 1.2rem;
}

#space-application-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

#space-application-form .form-group {
  flex: 1;
}

#space-application-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

#space-application-form input,
#space-application-form select,
#space-application-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#space-application-form input:focus,
#space-application-form select:focus,
#space-application-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.2);
}

#space-application-form textarea {
  min-height: 100px;
  resize: vertical;
}

#space-application-form .form-footer {
  margin-top: 40px;
  text-align: center;
}

#space-application-form .btn {
  padding: 15px 30px;
  font-size: 1rem;
}

#space-application-form .btn i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  #space-application-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  #start-space-modal .modal-content {
    margin: 20px auto;
    width: 95%;
  }
}


/* Training Schedule Modal */
#training-schedule-modal .modal-content {
  max-width: 800px;
}

.schedule-tabs {
  display: flex;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 12px 25px;
  background: none;
  border: none;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.program-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-3px);
}

.program-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.program-card h3 i {
  color: var(--primary);
}

.program-schedule {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.program-schedule span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.program-schedule i {
  color: var(--primary);
}

.program-description {
  margin-bottom: 15px;
  line-height: 1.6;
}

.program-levels {
  display: flex;
  gap: 10px;
}

.level-badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.level-badge.beginner {
  background: rgba(0, 166, 153, 0.1);
  color: var(--secondary);
}

.level-badge.intermediate {
  background: rgba(255, 154, 31, 0.1);
  color: #ff9a1f;
}

.level-badge.advanced {
  background: rgba(106, 76, 147, 0.1);
  color: #6a4c93;
}

.schedule-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

.schedule-footer p {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .schedule-tabs {
    justify-content: center;
  }
  
  .program-schedule {
    flex-direction: column;
    gap: 8px;
  }
}

/* Login link specific styles */
.login-link {
    display: flex;
    align-items: center;
    display: flex;
    list-style: none;
	gap: 8px;
}



.login-link:hover {
    background-color: rgba(255, 90, 95, 0.1);
    color: var(--secondary);
}

.login-link i {
    font-size: 1.1rem;
}






/* Define CSS Variables */

/* Chatbot Styles */
/* ===== CHATBOT CONTAINER ===== */
#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  max-height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

#chatbot-container.active {
  transform: translateY(0);
  opacity: 1;
}

/* ===== HEADER ===== */
#chatbot-header {
  background: var(--primary);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-title h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.chatbot-title i {
  font-size: 1.3rem;
}

#chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s;
}

#chatbot-close:hover {
  transform: scale(1.1);
}

/* ===== MESSAGES AREA ===== */
#chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #f9f9f9;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #f1f1f1;
}

#chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

#chatbot-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#chatbot-messages::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 3px;
}

/* ===== MESSAGE BUBBLES ===== */
.chat-message {
  margin-bottom: 15px;
  max-width: 85%;
  padding: 10px 15px;
  border-radius: 18px;
  line-height: 1.4;
  font-size: 0.95rem;
  word-wrap: break-word;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.bot-message {
  background: white;
  border: 1px solid #eee;
  border-radius: 18px 18px 18px 4px;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.user-message {
  background: var(--primary);
  color: white;
  border-radius: 18px 18px 4px 18px;
  margin-left: auto;
}

/* ===== INPUT AREA ===== */
#chatbot-input-area {
  display: flex;
  padding: 15px;
  border-top: 1px solid #eee;
  background: white;
  align-items: center;
}

#chatbot-input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
  font-size: 0.95rem;
  transition: border 0.3s;
}

#chatbot-input:focus {
  border-color: var(--primary);
}

#chatbot-send {
  background: var(--primary);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#chatbot-send:hover {
  background: var(--secondary);
  transform: scale(1.05);
}

.typing .content{
	min-width: 60px;
}
/*.dot{
	display: inline-block;
	width: 8px;
	height:8px;
	border-radius: 50%;
	background: #666;
	margin: 0 2px;
	animation: bounce 1.4s infinite ease-in-out;
}

.dot:nth-child(2) {
	animation-delay: 0.2s;
}

.dot:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes bounce {
	0%, 60%, 100% {transform: translateY(0); }
	30% {transform: translateY(-5px); }
}*/

/* ===== QUICK REPLIES ===== */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-reply {
  background: rgba(var(--primary-rgb), 0.1);
  border: none;
  border-radius: 15px;
  padding: 8px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary);
}

.quick-reply:hover {
  background: rgba(var(--primary-rgb), 0.2);
}

/* ===== TYPING INDICATOR ===== */
#chatbot-container .typing-indicator {
  display: flex;
  align-items: center;
  padding: 10px;
  margin: 5px 0;
  background: rgba(0, 0, 0, 0.05); /* Subtle background for contrast */
}

#chatbot-container .typing-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary); /* Darker for visibility */
  border-radius: 50%;
  margin: 0 3px;
  animation: bounce 0.6s infinite alternate;
  -webkit-animation: bounce 0.6s infinite alternate;
}

#chatbot-container .typing-dot:nth-child(2) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}

#chatbot-container .typing-dot:nth-child(3) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}

@keyframes bounce {
  to {
    transform: translateY(-5px);
  }
}

@-webkit-keyframes bounce {
  to {
    transform: translateY(-5px);
  }
}

/* Fallback for reduced motion */
@media (prefers-reduced-motion: reduce) {
  #chatbot-container .typing-dot {
    animation: none;
    background-color: #333; /* Static dots */
  }
}

/* ===== TOGGLE BUTTON ===== */
.chatbot-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chatbot-float:hover {
  transform: scale(1.1);
  background: var(--secondary);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  #chatbot-container {
    width: 100%;
    max-height: 80vh;
    bottom: 0;
    right: 0;
    border-radius: 15px 15px 0 0;
  }
  
  .chatbot-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .chat-message {
    max-width: 90%;
    font-size: 0.9rem;
  }
  
  #chatbot-input {
    padding: 8px 12px;
  }
  
  #chatbot-send {
    width: 36px;
    height: 36px;
  }
}

/* ===== LINK STYLING IN MESSAGES ===== */
.chat-message a {
  color: var(--primary);
  text-decoration: underline;
  word-break: break-all;
}

.bot-message a {
  color: var(--primary);
}

.user-message a {
  color: white;
  text-decoration: underline;
}

/* ===== Project Page Specific Styles ===== */
.page-header {
    padding: 150px 0 100px;
    text-align: center;
    color: white;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

/* Project Gallery Grid */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-image-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.project-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-image-card:hover .project-image img {
    transform: scale(1.05);
}

.project-caption {
    padding: 20px;
    text-align: center;
}

.project-caption h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Featured Works Grid */
.featured-works {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.work-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.work-item a {
    text-decoration: none;
    color: var(--dark);
}

.work-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.work-item h4 {
    padding: 15px 10px;
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.work-item:hover h4 {
    color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .featured-works {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .work-item img {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .project-gallery {
        grid-template-columns: 1fr;
    }
    
    .featured-works {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .work-item img {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .featured-works {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-item h4 {
        font-size: 0.9rem;
        padding: 10px 5px;
    }
}




