

/* start contact form */

.appointment {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

/* Section Title Styling */
.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.section-title img {
    display: block;
    margin: 10px auto;
}

/* Form Styling */
.form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
}

textarea.form-control {
    height: 120px;
    resize: none;
}

/* Button Styling */
.button {
    text-align: left;
}

.btn-primary {
    background: #ff6600;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e65c00;
}

/* Appointment Image Styling */
.appointment-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .appointment {
        padding: 40px 20px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .form {
        padding: 20px;
    }
    
    .btn-primary {
        width: 100%;
    }
}

/* End contact form */

/* Active list item */
li.active a {
	color: #2563eb; /* Tailwind's blue-600 */
	font-weight: 600;
	border-bottom: 2px solid #2563eb;
	padding-bottom: 4px;
  }
  
  /* Default state */
  li a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s, border-bottom 0.3s;
	padding-bottom: 4px;
  }
  
  /* Hover effect */
  li a:hover {
	color: #2563eb; /* Blue-600 */
	border-bottom: 2px solid #2563eb;
  }
  
