/* Custom Colors */
:root {
  --primary-color: #019cdc;
  --primary-dark: #019cdc;
  --primary-light: #5fcfff;
  --secondary-color: #00d4ff;
  --accent-color: #00a8cc;
  --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e4ecf7 100%);
  --text-dark: #1e293b;
  --text-light: #64748b;
}

body {
  font-family: 'Poppins', sans-serif;
}
iframe{width: 100%;}

.text-primary { color: var(--primary-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-gradient-primary { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%); }
.border-primary { border-color: var(--primary-color); }
.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Card styles */
.card {
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button styles */
.btn-primary {
  background: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 12px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(1, 156, 220, 0.3);
}

.btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 12px;
}

.btn-secondary:hover {
  background: rgba(1, 156, 220, 0.1);
  transform: translateY(-2px);
}

/* Feature card */
.feature-card {
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Section backgrounds */
.section-bg {
  background: var(--bg-gradient);
}

/* Icon styles */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 156, 220, 0.1);
  color: var(--primary-color);
}

/* Decorative elements */
.decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  z-index: 0;
}

.decoration-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: -150px;
  right: -150px;
}

.decoration-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  bottom: -100px;
  left: -100px;
}

/* Form styles */
.form-input {
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(1, 156, 220, 0.1);
}

/* Success message */
.success-message {
  display: none;
  background-color: #10b981;
  color: white;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
  text-align: center;
}

/* Zoho Form Styling */
.wf-parent {
  font-family: 'Poppins', sans-serif !important;
  background-color: white !important;
  border-radius: 16px;
  padding: 8px;
}

.wf-wrapper {
  border-radius: 12px;
}

.wf-form-component {
  font-family: 'Poppins', sans-serif !important;
  position: relative;
  font-size: 15px;
}

.wf-header {
  display: none;
}

.wf-form-wrapper {
  padding: 10px;
}

.wf-row {
  margin-bottom: 20px;
}

.wf-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

.wf-field-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.wf-field-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(1, 156, 220, 0.1);
}

.wf-field-mandatory .wf-label::after {
  content: " *";
  color: #ef4444;
}

.wf-btn {
  background-color: var(--primary-color) !important;
  color: white !important;
  border: 1px solid var(--primary-color) !important;
  width: 100% !important;
  padding: 14px 20px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif !important;
  text-transform: none !important;
}

.wf-btn:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(1, 156, 220, 0.3);
}

.wf-field-error-active {
  border-color: #ef4444;
}

.wf-field-error {
  color: #ef4444;
  font-size: 14px;
  margin-top: 6px;
  display: block;
}

.wform-btn-wrap {
  margin-top: 10px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wf-form-component {
    font-size: 14px;
  }
  
  .wf-field-input {
    padding: 10px 14px;
    font-size: 15px;
  }
  
  .wf-btn {
    padding: 12px 16px !important;
    font-size: 15px !important;
  }
}