/*
Theme Name: ISarva Theme
Theme URI: https://isarvait.com
Description: ISarva Theme is simple theme mainly used in Elementor based theme
Version: 1.0
*/

* {
  margin:0px;
  padding:0px;
}

body {
  margin: 0;
  box-sizing: border-box;

	}
.elementor-button-icon svg {
    height: 13px;
    width: 13px;
}
.phone-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #02759B;
}

/* ===== Contact Form Box ===== */
/* ===== Contact Form Box ===== */
.contact {
  max-width: 100%;
  background: #02759b;
  padding: 50px 50px 20px 50px;
  border-radius: 0px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
}

/* ===== Headings ===== */
.contact-subtitle {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #0066ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.contact-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 35px;
}

/* ===== Name + Email Row ===== */
.contact-row p{
  display: flex;
  gap: 20px;
 
}

.contact-row input[type="text"],
.contact-row input[type="email"] {
  flex: 1;
  width:100%;
  padding: 14px 18px;
  font-size: 15px;
  font-family: 'Archivo';
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-row input:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
  outline: none;
}

/* ===== Subject Field ===== */
.contact-subject input[type="text"] {
  width: 100%;
  margin-top: 20px;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-subject input:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
  outline: none;
}

/* ===== Message Box ===== */
.contact-text-area textarea {
  width: 100%;
  margin-top: 20px;
  padding: 14px 18px;
  font-size: 15px;
  font-family:archivo;
  border: 1px solid #ddd;
  border-radius: 6px;
  resize: none;
  height: 160px;
  background: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-text-area textarea:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
  outline: none;
}

/* ===== Submit Button ===== */
.contact-submit {
  margin-top: 25px;
}

.contact-submit input[type="submit"] {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-radius: 6px;
  background: #00b0ec;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: archivo;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-submit input[type="submit"]:hover {
  background: #58d5ff;
  transform: translateY(-1px);
}

/* ===== Placeholder Styling ===== */
.contact input::placeholder,
.contact textarea::placeholder {
  color: #aaa;
  font-weight: 400;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .contact {
    padding: 30px;
  }
  .contact-row {
    flex-direction: column;
  }
  .contact-title {
    font-size: 24px;
  }
}

