* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
            position: relative;
        }

        /* Galaxy Animation Background */
        .cosmos-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -2;
        }
		
		.faeri-map-container {
            position: relative;
            width: 100%;
            height: 600px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
            border: 5px solid #fff;
        }

        .faeri-map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: saturate(1.2) contrast(1.1);
        }
		
		 @media (max-width: 1024px) {
            

            .faeri-map-container {
                height: 500px;
            }
        }

        .stellar-particle {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: stellar-drift 20s infinite linear;
        }

        @keyframes stellar-drift {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-10vh) rotate(360deg);
                opacity: 0;
            }
        }

        .galaxy-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(30, 144, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.05) 0%, transparent 70%);
            z-index: -1;
            animation: galaxy-pulse 8s ease-in-out infinite alternate;
        }

        @keyframes galaxy-pulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }

        /* Main Container */
        .main-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 2rem;
        }

        .contact-wrapper {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                0 0 100px rgba(138, 43, 226, 0.2);
            max-width: 1200px;
            width: 100%;
            overflow: hidden;
            animation: container-entrance 1.2s ease-out;
        }

        @keyframes container-entrance {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }

        /* Contact Information Section */
        .info-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .info-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            z-index: 1;
        }

        .info-content {
            position: relative;
            z-index: 2;
        }

        .primary-heading {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #fff, #e0e0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: pointer;
            transition: all 0.4s ease;
            animation: heading-glow 3s ease-in-out infinite alternate;
        }

        .primary-heading:hover {
            transform: scale(1.05) translateY(-5px);
            text-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
        }

        @keyframes heading-glow {
            0% { filter: brightness(1); }
            100% { filter: brightness(1.2); }
        }

        .contact-block {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            border-left: 4px solid #fff;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-block:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .block-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .block-content {
            font-size: 1rem;
            line-height: 1.6;
            color: #f0f0ff;
        }

        .website-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .website-link {
            color: #e0e0ff;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.3rem 0;
            border-bottom: 1px solid transparent;
        }

        .website-link:hover {
            color: #fff;
            border-bottom-color: #fff;
            transform: translateX(5px);
        }

        /* Form Section */
        .form-section {

			padding-top: 3rem;
			padding-right: 3rem;
			padding-bottom: 17rem;
			padding-left: 3rem;
			
            background: rgba(255, 255, 255, 0.98);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .form-heading {
            font-size: 2.2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .form-heading:hover {
            color: #667eea;
            transform: scale(1.05);
        }

        .form-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 2px;
            animation: underline-expand 0.4s ease;
        }

        @keyframes underline-expand {
            0% { width: 0; }
            100% { width: 60px; }
        }

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

        .form-group {
            position: relative;
        }

        .validation-icon {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .validation-icon.show {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }

        .validation-icon.success {
            color: #28a745;
        }

        .validation-icon.error {
            color: #dc3545;
        }

        .error-message {
            position: absolute;
            top: 100%;
            left: 0;
            color: #dc3545;
            font-size: 0.85rem;
            margin-top: 0.3rem;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .error-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        .success-message {
            position: absolute;
            top: 100%;
            left: 0;
            color: #28a745;
            font-size: 0.85rem;
            margin-top: 0.3rem;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .success-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        .form-group.has-error {
            margin-bottom: 2.5rem;
        }

        .form-group.has-success {
            margin-bottom: 2.5rem;
        }

        .textarea-group .validation-icon {
            top: 1.5rem;
            transform: translateY(0);
        }

        .textarea-group .validation-icon.show {
            transform: translateY(0) scale(1.1);
        }

        .form-input {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus {
            border-color: #667eea;
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
            transform: translateY(-2px);
        }

        .form-input.valid {
            border-color: #28a745;
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
        }

        .form-input.invalid {
            border-color: #dc3545;
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
            animation: shake 0.5s ease-in-out;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }

        .form-input:focus + .form-label,
        .form-input:not(:placeholder-shown) + .form-label {
            transform: translateY(-35px) scale(0.8);
            color: #667eea;
        }

        .form-label {
            position: absolute;
            left: 1.5rem;
            top: 1rem;
            color: #666;
            font-size: 1rem;
            transition: all 0.3s ease;
            pointer-events: none;
            background: rgba(255, 255, 255, 0.9);
            padding: 0 0.5rem;
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 1.2rem 3rem;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: center;
            position: relative;
            overflow: hidden;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .submit-button:active {
            transform: translateY(-1px);
        }

        .submit-button:disabled {
            background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
            cursor: not-allowed;
            transform: none;
        }

        .submit-button:disabled:hover {
            transform: none;
            box-shadow: none;
        }

        .form-progress {
            width: 100%;
            height: 4px;
            background: #e9ecef;
            border-radius: 2px;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }

        .form-progress-bar {
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
            width: 0%;
            transition: width 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .form-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background-image: linear-gradient(
                45deg,
                rgba(255, 255, 255, 0.2) 25%,
                transparent 25%,
                transparent 50%,
                rgba(255, 255, 255, 0.2) 50%,
                rgba(255, 255, 255, 0.2) 75%,
                transparent 75%,
                transparent
            );
            background-size: 30px 30px;
            animation: progress-stripes 1s linear infinite;
        }

        @keyframes progress-stripes {
            0% { background-position: 0 0; }
            100% { background-position: 30px 0; }
        }

        .validation-summary {
            background: rgba(220, 53, 69, 0.1);
            border: 1px solid rgba(220, 53, 69, 0.3);
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1rem;
            color: #721c24;
            font-size: 0.9rem;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .validation-summary.show {
            opacity: 1;
            transform: translateY(0);
        }

        .validation-summary ul {
            margin: 0;
            padding-left: 1.2rem;
        }

        .validation-summary li {
            margin-bottom: 0.3rem;
        }

        .submit-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .submit-button:hover::before {
            left: 100%;
        }

        /* Innovation Showcase Section */
        .innovation-showcase {
            margin-top: 2rem;
            padding: 2rem;
            background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
            border-radius: 20px;
            border: 2px solid rgba(102, 126, 234, 0.1);
            position: relative;
            overflow: hidden;
        }

        .innovation-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
            z-index: 1;
        }

        .showcase-content {
            position: relative;
            z-index: 2;
        }

        .showcase-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            text-align: center;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tech-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .tech-card {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            padding: 1rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }

        .tech-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
            background: rgba(255, 255, 255, 0.95);
        }

        .tech-icon {
            width: 100%;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .tech-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
            animation: tech-shine 3s ease-in-out infinite;
        }

        @keyframes tech-shine {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .tech-icon svg {
            width: 40px;
            height: 40px;
            color: white;
            z-index: 1;
        }

        .tech-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #555;
        }

        /* Aerospace/Robotics SVG Icons */
        .drone-icon {
            fill: currentColor;
        }

        /* AI Generated Visual */
        .ai-visual {
            margin-top: 1.5rem;
            height: 120px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ai-visual::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 2px,
                    rgba(255,255,255,0.03) 2px,
                    rgba(255,255,255,0.03) 4px
                );
            animation: ai-pattern 20s linear infinite;
        }

        @keyframes ai-pattern {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .ai-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .ai-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .ai-subtitle {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Circuit Board Pattern */
        .circuit-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: 
                linear-gradient(90deg, #667eea 1px, transparent 1px),
                linear-gradient(180deg, #667eea 1px, transparent 1px);
            background-size: 20px 20px;
            animation: circuit-flow 15s linear infinite;
        }

        @keyframes circuit-flow {
            0% { background-position: 0 0; }
            100% { background-position: 20px 20px; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .main-container {
                padding: 1rem;
            }

            .info-section,
            .form-section {
                padding: 2rem;
            }

            .primary-heading {
                font-size: 2.2rem;
            }

            .form-heading {
                font-size: 1.8rem;
            }

            .innovation-showcase {
                margin-top: 1rem;
                padding: 1.5rem;
            }

            .tech-gallery {
                grid-template-columns: 1fr;
            }

            .ai-visual {
                height: 100px;
            }
        }

        @media (max-width: 480px) {
            .info-section,
            .form-section {
                padding: 1.5rem;
            }

            .primary-heading {
                font-size: 1.8rem;
            }

            .form-heading {
                font-size: 1.5rem;
            }

            .contact-block {
                padding: 1rem;
            }
        }