• +91-9899624859
  • D-14/190, Sector-7. Rohini, Opp. Metro Pillar No. 415, Delhi - 110085

Video Gallery

color: white; border: none; padding: 25px 18px; border-radius: 12px 0 0 12px; font-size: 15px; font-weight: 700; cursor: pointer; box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3); transition: all 0.3s ease; z-index: 1000; display: flex; flex-direction: column; align-items: center; gap: 10px; } .appointment-btn:hover { transform: translateY(-50%) translateX(-5px); box-shadow: -8px 0 25px rgba(0, 0, 0, 0.4); } .btn-icon { font-size: 24px; margin-bottom: 5px; } .btn-text { writing-mode: vertical-rl; text-orientation: mixed; letter-spacing: 1px; font-size: 14px; } .sidebar { position: fixed; left: -400px; top: 0; width: 400px; height: 100vh; background: white; box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3); transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); z-index: 2000; display: flex; flex-direction: column; } .sidebar.open { left: 0; } .sidebar-header { background: #0473B9; color: white; padding: 25px; display: flex; justify-content: space-between; align-items: center; } .sidebar-header h2 { font-size: 24px; font-weight: 600; } .close-btn { background: rgba(255, 255, 255, 0.2); border: none; color: white; width: 35px; height: 35px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; font-size: 20px; } .close-btn:hover { background: rgba(255, 255, 255, 0.3); transform: rotate(90deg); } .sidebar-content { padding: 30px; flex: 1; overflow-y: auto; } .form-group { margin-bottom: 25px; } .form-group label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #333; margin-bottom: 8px; } .form-group label svg { width: 18px; height: 18px; color: #667eea; } .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 15px; transition: all 0.3s; font-family: inherit; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: #667eea; box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); } .form-group textarea { resize: vertical; min-height: 120px; } .submit-btn { width: 100%; background: #0473B9; color: white; border: none; padding: 15px; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; } .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4); } .submit-btn:active { transform: translateY(0); } .success-message { background: #10b981; color: white; padding: 15px; border-radius: 10px; text-align: center; margin-bottom: 20px; display: none; animation: slideDown 0.3s ease; } .success-message.show { display: block; } @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } .overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 1500; } .overlay.show { opacity: 1; visibility: visible; } @media (max-width: 480px) { .sidebar { width: 100%; left: -100%; } }