 /* Header Start */

.custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, #0a5c36, #0a5c36);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s ease;
            box-shadow: 0 0 20px #0a5c36;
        }

        .banner-container {
            position: relative;
            height: 50vh;
            /* background: 
                radial-gradient(ellipse at top, #0a1a0f 0%, #000 50%),
                radial-gradient(ellipse at bottom, #0d2e1a 0%, #000 50%),
                linear-gradient(135deg, #0a3d27 0%, #0a5c36 25%, #0a5c36 50%, #0a5c36 75%, #1a7d4a 100%); */
            background-size: 100% 100%, 100% 100%, 400% 400%;
            animation: ultraGradient 8s ease-in-out infinite;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }

        /* @keyframes ultraGradient {
            0%, 100% { background-position: 0% 50%, 0% 50%, 0% 50%; }
            25% { background-position: 100% 50%, 0% 50%, 100% 50%; }
            50% { background-position: 100% 100%, 100% 0%, 200% 50%; }
            75% { background-position: 0% 100%, 100% 100%, 300% 50%; }
        } */

        /* .neural-network {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .neural-line {
            position: absolute;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(11, 168, 32, 0.301), 
                rgba(255, 255, 255, 0.8), 
                rgba(19, 119, 6, 0.466), 
                transparent
            );
            animation: neuralPulse 3s ease-in-out infinite;
            filter: drop-shadow(0 0 10px rgba(10, 92, 54, 0.8));
        }

        /* @keyframes neuralPulse {
            0%, 100% { 
                opacity: 0;
                transform: scale(0.5);
            }
            50% { 
                opacity: 1;
                transform: scale(1.2);
            }
        } */

        .holographic-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 10s linear infinite;
            opacity: 0.3;
        } */

        /* @keyframes gridMove {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(-10px, -10px) rotate(1deg); }
            50% { transform: translate(-20px, 0) rotate(0deg); }
            75% { transform: translate(-10px, 10px) rotate(-1deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        } */

        .energy-orbs {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, 
                rgba(255, 255, 255, 0.39), 
                rgba(8, 126, 14, 0.342), 
                rgba(0, 0, 0, 0.151), 
                transparent
            );
            filter: blur(1px);
            animation: orbFloat 6s ease-in-out infinite;
        }

        .orb:nth-child(1) {
            width: 150px;
            height: 150px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .orb:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .orb:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        .orb:nth-child(4) {
            width: 120px;
            height: 120px;
            top: 30%;
            right: 30%;
            animation-delay: 1s;
        }

        @keyframes orbFloat {
            0%, 100% { 
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }
            33% { 
                transform: translate(30px, -30px) scale(1.1);
                opacity: 0.8;
            }
            66% { 
                transform: translate(-20px, 20px) scale(0.9);
                opacity: 0.4;
            }
        }

        .content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 0 15px;
    padding-right: 1600px;
    padding-bottom: 300px;
}

.ultra-glass-card {
    background: rgba(255, 255, 255, 0.363);
    backdrop-filter: blur(20px) saturate(1.5);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px 30px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform: perspective(600px) rotateX(5deg) rotateY(2deg);
    animation: cardFloat 6s ease-in-out infinite;
    position: absolute;
    overflow: hidden;
    height: 350px;
    width: 600px;
}

.ultra-glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255, 255, 255, 0.082),
        transparent,
        rgba(10, 92, 54, 0.301),
        transparent,
        rgba(26, 125, 74, 0.15),
        transparent
    );
    animation: shimmer 4s linear infinite;
    pointer-events: none;
}

.mega-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(
        45deg,
        #ffffff,
        #0a5c36,
        #000000,
        #0a5c36,
        #ffffff
    );
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: megaGradient 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(10, 92, 54, 0.5);
    position: relative;
    letter-spacing: -1px;
    line-height: 1;
}

.cyber-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #0a5c36, #fff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 10s ease-in-out infinite;
}

.hologram-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.quantum-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.quantum-btn {
    padding: 12px 25px;
    border-radius: 40px;
    font-size: 0.9rem;
    min-width: 150px;
}

.quantum-primary {
    background: linear-gradient(45deg, #ffffff, #1a7d4a);
    box-shadow: 
        0 5px 15px rgba(10, 92, 54, 0.4),
        0 0 30px rgba(10, 92, 54, 0.4);
}

.quantum-secondary {
    background: rgba(255, 255, 255, 0.918);
    border: 1px solid rgba(10, 92, 54, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(10, 92, 54, 0.2);
}

/* Keep all the same keyframe animations */
@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes cardFloat {
    0%, 100% { 
        transform: perspective(600px) rotateX(5deg) rotateY(2deg) translateY(0px);
        box-shadow: 
            0 10px 30px rgba(255, 255, 255, 0.8),
            0 0 60px rgba(10, 92, 54, 0.4);
    }
    50% { 
        transform: perspective(600px) rotateX(5deg) rotateY(2deg) translateY(-10px);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.9),
            0 0 90px rgba(10, 92, 54, 0.5);
    }
}

@keyframes megaGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes textShine {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

@keyframes quantumPulse {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.03);
    }
}

        .quantum-btn:hover::before {
            left: 100%;
        }

        .plasma-effects {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .plasma-blob {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at center,
                rgba(10, 92, 54, 0.5),
                rgba(0, 0, 0, 0.4),
                transparent
            );
            filter: blur(40px);
            animation: plasmaMove 12s ease-in-out infinite;
        }

        .plasma-blob:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -10%;
            left: -10%;
            animation-delay: 0s;
        }

        .plasma-blob:nth-child(2) {
            width: 400px;
            height: 400px;
            bottom: -20%;
            right: -20%;
            animation-delay: 4s;
        }

        .plasma-blob:nth-child(3) {
            width: 250px;
            height: 250px;
            top: 50%;
            left: 50%;
            animation-delay: 8s;
        }

        @keyframes plasmaMove {
            0%, 100% { 
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }
            33% { 
                transform: translate(100px, -100px) scale(1.2);
                opacity: 0.8;
            }
            66% { 
                transform: translate(-50px, 100px) scale(0.8);
                opacity: 0.4;
            }
        }

        .lightning-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .lightning {
            position: absolute;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom,
                transparent,
                rgba(255, 255, 255, 0.8),
                rgba(26, 125, 74, 0.6),
                transparent
            );
            opacity: 0;
            animation: lightning 4s ease-in-out infinite;
            filter: drop-shadow(0 0 10px #1a7d4a);
        }

        @keyframes lightning {
            0%, 90%, 100% { opacity: 0; }
            5%, 10% { opacity: 1; }
        }

        .particle-explosion {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .explosion-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: radial-gradient(circle, #0a5c36, transparent);
            border-radius: 50%;
            animation: explode 8s linear infinite;
        }

        @keyframes explode {
            0% {
                transform: scale(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
                transform: scale(1) rotate(45deg);
            }
            100% {
                transform: scale(0) rotate(720deg) translate(200px);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .ultra-glass-card {
                padding: 50px 30px;
                margin: 20px;
                border-radius: 25px;
                transform: perspective(1000px) rotateX(5deg);
            }
            
            .quantum-buttons {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .quantum-btn {
                width: 90%;
                min-width: auto;
            }

            .cyber-subtitle {
                letter-spacing: 4px;
            }
        }
 /* Header End */
 :root {
            --cprimary-color: #1ebd40;
            --cprimary-dark: #1ebd40;
            --csecondary-color: #1ebd40;
            --accent-color: #1ebd40;
            --success-color: #059669;
            --error-color: #dc2626;
            --warning-color: #d97706;
            --text-primary:rgb(0, 0, 0);
            --text-secondary: #64748b;
            --text-muted: #94a3b8;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-accent: #f1f5f9;
            --border-color: #e2e8f0;
            --border-focus: #1ebd40;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
        }

        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--bg-secondary);
        } */

        .container-message {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Contact Section */
        .contact2-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
        }

        .contact2-wrapper {
            background: var(--bg-primary);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            overflow: hidden;
        }

        .contact2-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 700px;
        }

        /* Left Side - Content (Changed to white background) */
        .contact2-left {
            background: var(--bg-primary);
            color: var(--text-primary);
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-right: 1px solid var(--border-color);
        }

        .contact2-content {
            position: relative;
            z-index: 2;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-accent);
            color: var(--text-primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid var(--border-color);
            width: fit-content;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.025em;
            line-height: 1.2;
            color: var(--text-primary);
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .contact2-info {
            margin-bottom: 40px;
        }

        .contact2-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .contact2-item:last-child {
            border-bottom: none;
        }

        .contact2-icon {
            width: 45px;
            height: 45px;
            background: var(--bg-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cprimary-color);
            font-size: 18px;
            flex-shrink: 0;
        }

        .contact2-details h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .contact2-details p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .social-links h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-primary);
            padding: 10px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: var(--bg-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .social-icon:hover {
            background: var(--cprimary-color);
            color: white;
            transform: translateY(-2px);
        }

        /* Right Side - Form */
        .contact2-right {
            background: var(--bg-secondary);
            padding: 60px;
            display: flex;
            align-items: center;
        }

        .form-wrapper {
            width: 100%;
        }

        .form-header {
            margin-bottom: 32px;
        }

        .form-header h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .form-header p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: 0.025em;
        }

        .input-wrapper,
        .select-wrapper,
        .textarea-wrapper {
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 16px;
            transition: color 0.3s ease;
            z-index: 2;
        }

        .textarea-wrapper .input-icon {
            top: 20px;
            transform: none;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            background: var(--bg-primary);
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 14px 14px 14px 48px;
            font-size: 16px;
            font-weight: 400;
            color: var(--text-primary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--border-focus);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .focused .input-icon {
            color: var(--cprimary-color);
        }

        .form-textarea {
            resize: vertical;
            min-height: 100px;
            line-height: 1.6;
        }

        .select-wrapper {
            position: relative;
        }

        .form-select {
            appearance: none;
            cursor: pointer;
            padding-right: 48px;
        }

        .select-arrow {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
            transition: transform 0.3s ease;
        }

        .form-select:focus + .select-arrow {
            transform: translateY(-50%) rotate(180deg);
        }

        .form-actions {
            margin-top: 32px;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--cprimary-color) 0%, var(--cprimary-dark) 100%);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: var(--radius-md);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-md);
            width: 100%;
            justify-content: center;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .submit-btn.loading .btn-icon {
            animation: spin 1s linear infinite;
        }

        /* Navigator Section (Kept the same as original) */

        .container-map {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 10px;
        }

        .navigator-section {
            padding: 60px 0;
            background: var(--bg-primary);
        }

        .navigator-wrapper {
            background: var(--bg-primary);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            overflow: hidden;
        }

        .navigator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }

        /* Left Side - Image */
        .navigator-left {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
        }

        .office-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--cprimary-color);
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            width: fit-content;
        }

        .office-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 32px;
            color: var(--text-primary);
            letter-spacing: -0.025em;
        }

        .office-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 32px;
            box-shadow: var(--shadow-lg);
        }

        .office-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.8), rgba(6, 182, 212, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .office-image:hover .image-overlay {
            opacity: 1;
        }

        .office-image:hover img {
            transform: scale(1.05);
        }

        .overlay-content {
            text-align: center;
            color: white;
        }

        .overlay-content i {
            font-size: 3rem;
            margin-bottom: 12px;
        }

        .overlay-content span {
            font-size: 1.25rem;
            font-weight: 600;
        }

        .office-details {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-secondary);
            font-size: 15px;
        }

        .detail-item i {
            color: var(--cprimary-color);
            width: 18px;
        }

        /* Right Side - Map */
        .navigator-right {
            background: var(--bg-primary);
            display: flex;
            flex-direction: column;
        }

        .map-header {
            padding: 40px 60px 20px;
            text-align: center;
        }

        .map-header h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .map-header p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        .map-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 aspect ratio (height/width) */
            height: 0;
            overflow: hidden;
        }

        .map-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .map-actions {
            padding: 20px 60px 40px;
            text-align: center;
        }

        .directions-btn {
            background: var(--cprimary-color);
            color: white;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .directions-btn:hover {
            background: var(--cprimary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Alert Styles */
        .result {
            margin-top: 24px;
        }

        .alert {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            border-radius: var(--radius-md);
            font-weight: 500;
            animation: slideIn 0.3s ease-out;
        }

        .alert-success {
            background: rgba(5, 150, 105, 0.1);
            color: var(--success-color);
            border: 1px solid rgba(5, 150, 105, 0.2);
        }

        .alert-error {
            background: rgba(220, 38, 38, 0.1);
            color: var(--error-color);
            border: 1px solid rgba(220, 38, 38, 0.2);
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact2-grid,
            .navigator-grid {
                grid-template-columns: 1fr;
            }
            
            .contact2-left,
            .contact2-right,
            .navigator-left {
                padding: 40px;
            }
            
            .map-header {
                padding: 30px 40px 15px;
            }
            
            .map-actions {
                padding: 15px 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .contact2-section,
            .navigator-section {
                padding: 60px 0;
            }
            
            .contact2-left,
            .contact2-right,
            .navigator-left {
                padding: 30px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .office-title {
                font-size: 1.5rem;
            }
            
            .map-header {
                padding: 20px 30px 10px;
            }
            
            .map-actions {
                padding: 10px 30px 20px;
            }
        }