        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
		.searchContainer * {
			box-sizing: content-box;
		}

        body {
            font-family: Inter, sans-serif;
			font-optical-sizing: auto;
            background: #f4f4f4;/*linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            min-height: 100vh;
            padding: 0px 20px 20px 20px;
			font-weight: bold;
        }	
		
		input {
			color: black;
		}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            position: relative;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" opacity="0.1">📍</text></svg>');
            opacity: 0.3;
        }

        .header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            animation: fadeInDown 1s ease;
        }

        .header p {
            font-size: 1.3rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease;
        }

        .content {
            padding: 60px 40px;
        }

        .about-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .about-section {
                grid-template-columns: 1fr;
            }
			
			.about-image {
				display: none;
			}
        }

        .about-text h2 {
            color: #667eea;
            font-size: 2.2rem;
            margin-bottom: 25px;
            position: relative;
        }
		

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }

        .about-text p {
            color: #4a5568;
            line-height: 2;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .about-image {
            text-align: center;
            animation: slideInLeft 1s ease;
			animation-fill-mode: forwards;
        }

        .about-image i, .about-image svg {
            font-size: 15rem;
			color: #4056b8;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .feature-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .feature-card i {
            font-size: 3rem;
            color: #667eea;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            color: #2d3748;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #718096;
            line-height: 1.8;
			font-size: 1.1rem;
        }

        .stats {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 50px 40px;
            border-radius: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            color: white;
            text-align: center;
            margin: 60px 0;
        }

        .stat-item h3 {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 60px 0;
        }

        @media (max-width: 768px) {
            .mission-vision {
                grid-template-columns: 1fr;
            }
        }

        .mission-box, .vision-box {
            padding: 40px;
            border-radius: 15px;
            border: 2px solid #667eea;
        }

        .mission-box {
            background: #f0f4ff;
        }

        .vision-box {
            background: #fdf2f8;
            border-color: #764ba2;
        }

        .mission-box h3, .vision-box h3 {
            color: #667eea;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .mission-box h3::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #667eea;
            margin: 10px 0;
            border-radius: 2px;
        }

        .vision-box h3::after {
            background: #764ba2;
        }

        .mission-box p, .vision-box p {
            color: #4a5568;
            line-height: 2;
			font-size: 1.15rem;
        }

        .cta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            border-radius: 20px;
            margin-top: 60px;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-btn {
            background: white;
            color: #667eea;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        footer {
            background: #2d3748;
            color: white;
            text-align: center;
            padding: 30px 40px;
            margin-top: 60px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;

                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
				transform: rotate(300deg);
            }
            to {
                opacity: 1;
                transform: translateX(0);
				transform: rotate(360deg);
            }
        }
		
		/* Header & Navbar */
		header {
			background-color: #02696d;
			box-shadow: 0px 3px 8px #7d7d7d;
			margin: 0px -20px 20px -20px;
			z-index: 2;
		}
		
		header a {
			text-decoration: none;
		}
		
		/************* Dark Theme *****************/
		body.forcedark {
			scrollbar-color: #888 #121212;
		}
		
		body.forcedark::-webkit-scrollbar-track {
			background: white;
		}
			
		body.forcedark {
			background: #26272b;
			color: #efefef;
		}
		
		body.forcedark .container {
			background: #111111;
		}
		
		body.forcedark .about-text p {
			color: #e8e8e8;
		}
		
		body.forcedark header {
			box-shadow: none;
		}
		
		.navbar__brand span {
			margin-top: 1px !important;
		}
		
		h2.navbar__brand {
			margin-top: 7px;
		}