/*
Theme Name: OceanWP Child
Theme URI:  http://example.com/oceanwp-child
Description: Child theme for OceanWP
Author:      Your Name
Author URI:  http://example.com
Template:    oceanwp
Version:     1.0.0
*/

/* Your child CSS starts here */

.header-contact {
    background: #667eea;
    border-radius: 30px;
	    margin-left: 10px !important;
}
.header-contact  a{
	color: #fff !important;
}
.gradient-bg .elementor-icon{
	    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    padding: 20px;
    border-radius: 15px;
}
div#core-service-column:hover .elementor-icon {
    transform: scale(1.2); 
    transition: transform 0.3s ease; 
}
#core-main .elementor-container.elementor-column-gap-default{
	column-gap:30px;
}
span.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===========================
   NexIndia Contact Form Style
   =========================== */

.nxt-contact-section {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 0 20px;
}

.nxt-contact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.nxt-contact-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 30px;
}

/* Card container */
.nxt-contact-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
  text-align: left;
}

/* Layout */
.nxt-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}

.nxt-form-group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

.nxt-form-group.full-width {
  flex-basis: 100%;
}

/* Labels */
.nxt-form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

/* Inputs & Select */
.nxt-input,
.nxt-input-select,
.nxt-textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #e5e7eb;
  padding: 12px 16px;
  font-size: 14px;
  background-color: #f9fafb;
  transition: all 0.2s ease;
  font-family: inherit;
}

.nxt-textarea {
/*   min-height: 140px;
  resize: vertical; */
}

/* Placeholder */
.nxt-input::placeholder,
.nxt-input-select::placeholder,
.nxt-textarea::placeholder {
  color: #9ca3af;
}

/* Focus state similar to your homepage glow */
.nxt-input:focus,
.nxt-input-select:focus,
.nxt-textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.4),
              0 18px 35px rgba(79, 70, 229, 0.15);
  background-color: #ffffff;
}

/* Select styling */
.nxt-input-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9ca3af 50%),
                    linear-gradient(135deg, #9ca3af 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* Submit button – gradient like hero CTA */
.nxt-form-footer {
  margin-top: 10px;
  text-align: left;
}

.nxt-btn-primary,
.nxt-btn-primary.wpcf7-submit {
  border: none;
  cursor: pointer;
  padding: 12px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-image: linear-gradient(135deg, #6b70d7, #7450aa);
  box-shadow: 0 16px 30px rgba(88, 80, 236, 0.47);
  text-transform: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.nxt-btn-primary:hover,
.nxt-btn-primary.wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(88, 80, 236, 0.55);
  opacity: 0.95;
}

.nxt-btn-primary:active,
.nxt-btn-primary.wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(88, 80, 236, 0.4);
}

/* CF7 validation + response messages to match theme */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  background: #fee2e2;
  color: #b91c1c;
  margin-top: 16px;
  font-size: 13px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  background: #dcfce7;
  color: #166534;
  margin-top: 16px;
  font-size: 13px;
}

/* Error tip below fields */
.wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 4px;
  color: #b91c1c;
}
.nxt-form-group p {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nxt-contact-card {
    padding: 24px 20px;
  }

  .nxt-contact-title {
    font-size: 26px;
  }

  .nxt-form-footer {
    text-align: center;
  }

  .nxt-btn-primary,
  .nxt-btn-primary.wpcf7-submit {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


