.engineer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .engineer h1 {
            text-align: center;
            color: #000;
            margin-bottom: 30px;
            font-size: 2.5rem;
            font-weight: 700;
            position: relative;
        }

        .engineer h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #000;
            border-radius: 2px;
        }

        .engineer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .engineer-form {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .engineer-form:hover {
            transform: translateY(-5px);
        }

        .engineer-form h2 {
            color: #000000;
            margin-bottom: 25px;
            font-size: 1.8rem;
            font-weight: 600;
        }

        .engineer-form-group {
            margin-bottom: 20px;
        }

        .engineer-form-group label {
            display: block;
            margin-bottom: 8px;
            color: #000000;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .engineer-form-group input,
        .engineer-form-group textarea,
        .engineer-form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e1e8ed;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .engineer-form-group input:focus,
        .engineer-form-group textarea:focus,
        .engineer-form-group select:focus {
            outline: none;
            border-color: #667eea;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .engineer-form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .engineer-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .engineer-submit-btn {
            width: 100%;
            padding: 15px;
            background: #d70000;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .engineer-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .engineer-submit-btn:active {
            transform: translateY(0);
        }

        .engineer-map-section {
            background: #fff;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(0);
            transition: transform 0.3s ease;
            margin-bottom: 0px;
            padding: 0 0 75px 0px;
        }

        .engineer-map-section:hover {
            transform: translateY(-5px);
        }

        .engineer-map-header {
            padding: 25px;
            background: #959595;
            color: white;
        }

        .engineer-map-header h2 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .engineer-map-header p {
            opacity: 0.9;
            font-size: 1rem;
        }

        .engineer-map-container {
            height: 300px;
            position: relative;
            background: linear-gradient(45deg, #f0f2f5, #e9ecef);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .engineer-map-placeholder {
            text-align: center;
            color: #6c757d;
        }

        .engineer-map-placeholder i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #667eea;
        }

        .engineer-contact-info {
            padding: 25px;
            background: #f8f9fa;
        }

        .engineer-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            background: white;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .engineer-contact-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .engineer-contact-item i {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .engineer-contact-details {
            flex: 1;
        }

        .engineer-contact-details strong {
            display: block;
            color: #2c3e50;
            font-weight: 600;
        }

        .engineer-contact-details span {
            color: #6c757d;
            font-size: 0.9rem;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .engineer {
                margin: 20px;
                padding: 15px;
                margin-top: 20px;
                margin-bottom: 20px;
            }

            .engineer h1 {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .engineer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .engineer-form,
            .engineer-map-section {
                padding: 20px;
            }

            .engineer-form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .engineer-map-container {
                height: 250px;
            }

            .engineer-contact-info {
                padding: 20px;
            }

            .engineer h1::after {
                width: 60px;
            }
        }

        @media (max-width: 480px) {
            .engineer {
                margin: 10px;
                padding: 10px;
            }

            .engineer h1 {
                font-size: 1.8rem;
            }

            .engineer-form,
            .engineer-map-section {
                padding: 15px;
            }

            .engineer-form h2,
            .engineer-map-header h2 {
                font-size: 1.5rem;
            }

            .engineer-submit-btn {
                padding: 12px;
                font-size: 1rem;
            }

            .engineer-contact-item {
                padding: 8px;
            }

            .engineer-contact-item i {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .engineer {
            animation: fadeInUp 0.8s ease;
        }

        .engineer-form,
        .engineer-map-section {
            animation: fadeInUp 0.8s ease 0.2s both;
        }