/* Custom styles to complement Tailwind */


/* Mobile Menu */
/* Ensure proper stacking */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for modal */
#appointmentModal {
    transition: opacity 0.3s ease;
}

/* Tab content animation */
.tab-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom button hover effect */
.btn-hover-effect {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Service card hover effect */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Testimonial card styling */
.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 60px;
    color: rgba(13, 148, 136, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Form input focus style */
.input-focus:focus {
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
    border-color: #0d9488;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
    
}

#mobile-menu.show {
    max-height: 500px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}

/* Print styles */
@media print {
    nav, footer, .no-print {
        display: none !important;
    }
    
    body {
        padding: 20px;
        color: #000;
        background: #fff;
    }
    
    .print-content {
        width: 100%;
    }
}


/* Add this to your styles.css */
.text-red {
  color: #ef4444; /* Tailwind's red-500 */
}

.bg-red {
  background-color: #ef4444;
}

.hover\:text-red:hover {
  color: #ef4444;
}

.border-red {
  border-color: #ef4444;
}

.focus\:ring-red:focus {
  --tw-ring-color: #ef4444;
}


 .service-card {
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        .sub-service {
            position: relative;
            padding-left: 1.75rem;
        }
        .sub-service::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.75rem;
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background-color: #0d9488;
        }
        .section-divider {
            width: 80px;
            height: 3px;
            background-color: #0d9488;
            margin: 1.5rem auto;
        }
.hero-section {
  position: relative;
  width: 100%;
  height: 75vh;
  background-image: url('../assets/images/services-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .hero-section {
    height: 50vh;
    background-position: top;
  }
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}


        