        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            animation: gradientBG 15s ease infinite;
            background-size: 400% 400%;
        }
        
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .container {
            display: flex;
            max-width: 1200px;
            width: 100%;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            animation: slideUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(50px);
        }
        
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .form-container {
            flex: 1;
            padding: 60px;
            background: white;
        }
        
        .image-container {
            flex: 1;
            background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            color: black;
            text-align: center;
        }
        

        
        .contact-header h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 10px;
            animation: fadeIn 1s ease 0.7s forwards;
            opacity: 0;
        }
        
        .contact-header p {
            color: #7f8c8d;
            margin-bottom: 40px;
            animation: fadeIn 1s ease 0.9s forwards;
            opacity: 0;
        }
        
        .form-group {
            margin-bottom: 25px;
            animation: fadeIn 1s ease forwards;
            opacity: 0;
        }
        
        .form-group:nth-child(1) { animation-delay: 1.1s; }
        .form-group:nth-child(2) { animation-delay: 1.2s; }
        .form-group:nth-child(3) { animation-delay: 1.3s; }
        .form-group:nth-child(4) { animation-delay: 1.4s; }
        
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 16px;
        }
        
        .input-icon {
            position: relative;
        }
        
        .input-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #3498db;
        }
        
        input, textarea {
            width: 100%;
            padding: 15px 15px 15px 50px;
            border: 2px solid #e0e7ff;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        textarea {
            height: 150px;
            resize: vertical;
            padding-left: 20px;
        }
        
        input:focus, textarea:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        
        .send-contact {
            background: #3498db;
            background: linear-gradient(to right, #3498db, #2c3e50);
            color: white;
            border: none;
            padding: 16px 30px;
            font-size: 18px;
            border-radius: 10px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
            margin-top: 10px;
            animation: fadeIn 1s ease 1.5s forwards;
            opacity: 0;
        }
        
        .send-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.6);
        }
        
        .send-contact:active {
            transform: translateY(1px);
        }
        
        .contact-info {
            margin-top: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            animation: fadeIn 1s ease forwards;
            opacity: 0;
        }
        
        .contact-item:nth-child(1) { animation-delay: 1.6s; }
        .contact-item:nth-child(2) { animation-delay: 1.7s; }
        .contact-item:nth-child(3) { animation-delay: 1.8s; }
        
        .contact-item i {
            font-size: 24px;
            color: #3498db;
            margin-right: 15px;
            width: 50px;
            height: 50px;
            background: rgba(52, 152, 219, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .contact-text h4 {
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .contact-text p {
            color: #7f8c8d;
        }
        
        .image-container h2 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .image-container p {
            font-size: 20px;
            max-width: 500px;
            line-height: 1.6;
            margin-bottom: 30px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        
        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
        
        .social-icons a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.3);
        }
        
        #status-message {
            margin-top: 25px;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            display: none;
            animation: popIn 0.5s ease forwards;
        }
        
        @keyframes popIn {
            0% { transform: scale(0.8); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        
        
        @media (max-width: 900px) {
            .container {
                flex-direction: column;
            }
            
            .image-container {
                padding: 60px 30px;
            }
            
            .form-container {
                padding: 40px;
            }
        }
        
        @media (max-width: 480px) {
            .form-container, .image-container {
                padding: 30px 20px;
            }
            
            .contact-header h2 {
                font-size: 28px;
            }
        }

        .call-button {
    position: fixed;
    top: 40%;
    right: 20px;
    background-color: #28a745; 
    color: white;
    padding: 15px 18px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: background-color 0.3s ease;
  }

  .call-button:hover {
    background-color: #218838; 
  }
  
  .mobile-space{
display: none;
  }
  @media (max-width: 900px) {
            .mobile-space{
                display:block;
            }
        }