.appointment-header {
                    background-color: rgb(255, 255, 255) !important;
                    color: rgb(33, 37, 41) !important;
                }
                .appointment-background{
                    background-color:undefined !important;
                    color:undefined !important;
                }
            
:root {
  --primary-blue: #008cff;
  --dark-blue: #0066cc;
  --light-blue: #e6f4ff;
  --accent-orange: #ff6b35;
  --dark-text: #1a1a1a;
  --gray-text: #4a4a4a;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background-color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue) !important;
  letter-spacing: -0.5px;
}

.nav-link {
  color: var(--dark-text) !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 15px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-blue) !important;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 140, 255, 0.3);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0066cc 0%, #008cff 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.95;
}

.search-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  margin-top: 40px;
}

.search-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--dark-text);
}

.form-control-custom {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-control-custom:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 140, 255, 0.1);
}

/* Services Grid */
.services-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.section-title {
  font-size: 2rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-text);
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.service-card p {
  color: var(--gray-text);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Features */
.features-section {
  padding: 80px 0;
  background: white;
}

.feature-box {
  text-align: center;
  padding: 30px 20px;
}

.feature-number {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  font-weight: 800;
}

.feature-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.feature-box p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0066cc 0%, #008cff 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.95;
}

.btn-white {
  background: white;
  color: var(--primary-blue);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.3);
  color: var(--primary-blue);
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark-text);
}

.testimonial-rating {
  color: #ffc107;
}

.testimonial-text {
  color: var(--gray-text);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
}

.footer-section h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid #333;
  color: #999;
}

@media (max-width: 768px) {
  .hero-content h1;
}

[data-ep-id="ep_div_6"] {
  padding: 20px !important;
  align-items: center !important;
}

[data-ep-id="ep_div_7"] {
  width: 499.985px !important;
  height: 361.656px !important;
  display: inline !important;
  visibility: hidden !important;
}

[data-ep-id="ep_section_2"] {
  outline: none !important;
}

[data-ep-id="ep_section_4"] {
  width: 100% !important;
  padding: 8px 0px !important;
}

[data-ep-id="ep_div_83"] {
  min-height: 240px !important;
  min-width: 240px !important;
  height: 50vh !important;
  position: relative !important;
  float: left !important;
  transform: rotate(0deg) !important;
  font-family: Roboto, sans-serif !important;
}

[data-ep-id="ep_p_19"] {
  color: #999 !important;
  margin-top: 15px !important;
}

[data-ep-id="ep_p_20"] {
  color: #999 !important;
}

[data-ep-id="ep_p_21"] {
  color: #999 !important;
}

[data-ep-id="ep_p_22"] {
  color: #999 !important;
}

[data-ep-id="ep_div_91"] {
  position: absolute !important;
  border: 2px solid rgb(189, 175, 169) !important;
  pointer-events: none !important;
  z-index: 999998 !important;
  display: none !important;
  top: 155.838px !important;
  left: 0px !important;
  width: 1798.49px !important;
  height: 955.464px !important;
}

[data-ep-id="ep_button_9"] {
  float: right !important;
}

[data-ep-id="ep_button_10"] {
  float: right !important;
}