             .get {
                margin: 0;
                font-family: Arial, sans-serif;
                background:linear-gradient(120deg, #89d7fe, #ff6666);
                color: #333;
                perspective: 1200px; /* Added perspective for 3D effect */
                overflow-x: hidden; /* Prevent horizontal scrolling */
            }
    
            .cotainer {
                max-width: 1200px;
                margin: 0 auto;
                padding: 20px;
                transform-style: preserve-3d;
                animation: rotateIn 2s ease-out;
            }
    
            @keyframes rotateIn {
                from {
                    transform: rotateY(90deg);
                    opacity: 0;
                }
                to {
                    transform: rotateY(0);
                    opacity: 1;
                }
            }
    
            .get-in-touch {
                text-align: center;
                margin-bottom: 40px;
            }
    
            .get-in-touch h1 {
                font-size: 2.5rem;
                margin-bottom: 10px;
                color: #fff;
                text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
                animation: slideIn 1s ease-out; /* Animation for header */
            }
    
            @keyframes slideIn {
                from {
                    transform: translateX(-100%);
                    opacity: 0;
                }
                to {
                    transform: translateX(0);
                    opacity: 1;
                }
            }
    
            .get-in-touch p {
                font-size: 1.2rem;
                color: #f0f0f0;
                animation: fadeIn 2s ease-out;
            }
    
            @keyframes fadeIn {
                from {
                    opacity: 0;
                }
                to {
                    opacity: 1;
                }
            }
    
            .form-cotainer {
                display: flex;
                flex-direction: column;
                align-items: center;
                animation: fadeIn 1.5s ease-out;
            }
    
            form {
                width: 100%;
                max-width: 600px;
                background: #fff;
                padding: 20px;
                border-radius: 8px;
                box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
                animation: popUp 1s ease-in-out;
                transform: rotateY(0deg); /* 3D rotation */
            }
    
            @keyframes popUp {
                from {
                    transform: scale(0.8) rotateY(90deg);
                    opacity: 0;
                }
                to {
                    transform: scale(1) rotateY(0deg);
                    opacity: 1;
                }
            }
    
            form .form-group {
                margin-bottom: 15px;
            }
    
            form label {
                display: block;
                font-weight: bold;
                margin-bottom: 5px;
                color: #333;
            }
    
            form input, form textarea {
                width: 100%;
                padding: 10px;
                border: 1px solid #ccc;
                border-radius: 5px;
                font-size: 1rem;
            }
    
            form button {
                width: 100%;
                padding: 10px;
                background-color: #007bff;
                color: white;
                border: none;
                border-radius: 5px;
                font-size: 1rem;
                cursor: pointer;
                transition: transform 0.3s ease;
            }
    
            form button:hover {
                background-color: #0056b3;
                transform: scale(1.1);
            }
    
            /* Responsive Design */
            @media (min-width: 768px) {
                .form-container {
                    flex-direction: row;
                    justify-content: center;
                }
    
                form {
                    width: 70%;
                }
            }
    
            /* WhatsApp Button */
            .whatsapp-button {
                position: fixed;
                bottom: 20px;
                left: 20px;
                background-color: #25D366;
                border-radius: 50%;
                padding: 15px;
                box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
                cursor: pointer;
                z-index: 1000;
                animation: float 3s ease-in-out infinite; /* Floating animation */
            }
    
            @keyframes float {
                0% {
                    transform: translateY(0);
                }
                50% {
                    transform: translateY(-10px);
                }
                100% {
                    transform: translateY(0);
                }
            }
    
            .whatsapp-button img {
                width: 40px;
                height: 40px;
            }
    
            /* Instagram Button */
            .instagram-button {
                position: fixed;
                bottom: 20px;
                right: 20px;
                background-color: #E1306C;
                border-radius: 50%;
                padding: 15px;
                box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
                cursor: pointer;
                z-index: 1000;
            }
    
            .instagram-button img {
                width: 40px;
                height: 40px;
            }
    
            /* Ensure the buttons are properly aligned on small screens */
            @media (max-width: 768px) {
                .whatsapp-button {
                    left: 10px;
                    bottom: 10px;
                }
    
                .instagram-button {
                    right: 10px;
                    bottom: 10px;
                }
            }   