:root {
  --primary: #007bff;
  --secondary: #00bfff;
}

body {
  font-family: "Inter", "Poppins", sans-serif;
  overflow-x: hidden;
}
div {
  font-family: "Inter", "Poppins", sans-serif;
  font-size: 15px;
}
/* Top bar */
.top-bar {
  background-color: #f1f5f9;
}

/* Blue main header */
.main-header {
  background-color: #035e58;
}

.main-header a {
  color: white;
}

/* Hero section */
.hero-bg {
  background: url("https://images.unsplash.com/photo-1588774067816-34a8d2f7e5b2?q=80&w=1200&auto=format&fit=crop")
    center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
}

/* Section heading */
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
}

/* Glass cards */
.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
}

.main-top {
  background-color: #0c193e;
}

/* Testimonials slider */
.testimonial-card {
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

#about {
  margin-top: 80px;
}

@media (min-width: 1024px) {
  .container-max {
    max-width: 1100px;
  }
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 12s linear infinite;
}
.scroll-smooth {
  scroll-behavior: smooth;
}

.overflow-x-auto::-webkit-scrollbar {
  display: none;
}
@keyframes animateSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animate-animateSpin {
  animation: animateSpin 20s linear infinite;
}
@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}
#faq {
  overflow: hidden;
}
section {
  overflow: hidden;
}
.highlight {
  margin-bottom: 30px !important;
}
/* Form Wrapper */
.cf7-form {
  position: relative;
  overflow: hidden;
}

/* Gradient circles */
.cf7-form .circle {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 3s infinite;
}
.cf7-form .circle-1 {
  top: -60px;
  left: -60px;
  background: linear-gradient(
    135deg,
    rgba(3, 94, 88, 0.3),
    rgba(12, 25, 62, 0.3)
  );
}
.cf7-form .circle-2 {
  bottom: -60px;
  right: -60px;
  background: linear-gradient(
    135deg,
    rgba(12, 25, 62, 0.3),
    rgba(3, 94, 88, 0.3)
  );
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Fields */
.cf7-form .field {
  position: relative;
}

.cf7-form input,
.cf7-form select {
  width: 100%;
  padding: 14px 4px;
  border: none;
  border-bottom: 2px solid #d1d5db;
  background: transparent;
  outline: none;
  font-size: 16px;
}

.cf7-form input:focus,
.cf7-form select:focus {
  border-color: #035e58;
}

/* Floating Label */
.cf7-form label {
  position: absolute;
  left: 4px;
  top: 14px;
  color: #6b7280;
  font-size: 16px;
  pointer-events: none;
  transition: 0.3s ease;
}

.cf7-form input:focus + label,
.cf7-form input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 13px;
  color: #035e58;
}

/* Submit Button */
.cf7-submit {
  margin-top: 32px;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(to right, #63c3d1, #0c193e) !important;
  cursor: pointer;
  transition: 0.3s;
  color: white;
}

.cf7-submit:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Wrapper */
.cf7-simple-form {
  width: 100%;
}

/* Field wrapper */
.cf7-simple-form .cf7-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
}

@media (min-width: 640px) {
  .cf7-simple-form .cf7-field label {
    font-size: 16px;
  }
}

/* Inputs & textarea */
.cf7-simple-form input,
.cf7-simple-form textarea {
  width: 100%;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  color: #1f2937;
  outline: none;
  transition: 0.2s ease;
}

@media (min-width: 640px) {
  .cf7-simple-form input,
  .cf7-simple-form textarea {
    padding: 12px 20px;
    font-size: 16px;
  }
}

/* Focus ring */
.cf7-simple-form input:focus,
.cf7-simple-form textarea:focus {
  border-color: #63c3d1;
  box-shadow: 0 0 0 2px rgba(99, 195, 209, 0.4);
}

/* Submit button */
.cf7-simple-btn {
  width: 100%;
  background: #63c3d1;
  color: #fff;
  font-weight: 600;
  padding: 10px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

@media (min-width: 640px) {
  .cf7-simple-btn {
    padding: 12px;
    font-size: 16px;
  }
}

/* CF7 error text */
.wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 4px;
}
.wpcf7-form br {
  display: none;
}
/* Wrapper */
.cf7-appointment-form {
  width: 100%;
}

/* Labels */
.cf7-appointment-form .cf7-field label { display: block; font-size: 14px; font-weight: 500; color: #757575; } /* Inputs, Select, Textarea */ .cf7-appointment-form input, .cf7-appointment-form select, .cf7-appointment-form textarea { margin-top: 8px; width: 100%; padding: 12px; border-radius: 12px; border: 1px solid #d1d5db; font-size: 15px; outline: none; background: #fff; transition: 0.25s ease; } /* Focus state */ .cf7-appointment-form input:focus, .cf7-appointment-form select:focus, .cf7-appointment-form textarea:focus { border-color: #63c3d1; box-shadow: 0 0 0 2px rgba(99, 195, 209, 0.45); } /* Textarea height */ .wpcf7-form-control.wpcf7-textarea { min-height: 90px; height: 90px; resize: none; } /* Submit Button */ .cf7-appointment-btn { width: 100%; background: #63c3d1 !important; color: #fff; font-weight: 600; padding: 14px; border-radius: 12px; border: none; font-size: 16px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); } .cf7-appointment-btn:hover { background: #024c48; } /* Error messages */ .wpcf7-not-valid-tip { font-size: 12px; margin-top: 4px; } /* Success message */ .wpcf7-response-output { border-radius: 10px; font-size: 14px; } .wpcf7-select option { color: #757575; }
.wpcf7-form-control-wrap{
	color:#757575
}
.wpcf7 form.sent .wpcf7-response-output{
	color:green !important
		
}
.wpcf7 form.invalid .wpcf7-response-output{
	color:red !important
}
.doctor-card img{
	object-position:top
}