* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
	font-weight: bold;
}

/* Header */
header {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 8%;
    background: white;
    border-bottom: 5px solid #FFD700;
}


/* Logo container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Make logo bigger */
.logo-img {
    height: 150px;   /* Increase this if needed */
    width: auto;
}

/* Clinic name */
.clinic-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.clinic-name span {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
	color: #333;
	font-size: 25px;
}

.line1 {
    font-size: 20px;
    font-weight: 750; 
    letter-spacing: 1px;
	/*color: #25CB16; */
}

.line2 {
    font-size: 20px;
    font-weight: 750;
    /*color: #25CB16; /* green accent like your logo */
    letter-spacing: 2px;
	margin-left: 45px;
}
nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    color: #18870E;
}

.btn {
    padding: 10px 20px;
    background: #F7CC03;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #E8D758;
}

/* Hero */
.hero {
	border-bottom: 5px solid #F7CC03;
    height: 90vh;
    background: linear-gradient(#18870E);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Schedule Appointment Button */
.schedule-btn {
    display: inline-block;
    background-color: #F7CC03;   /* Green */
    color: #333;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.schedule-btn:hover {
    background-color: #E8D758;   /* Yellow */
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
	animation: pulse 2s infinite;
}


/* Services */
.services {
	border-bottom: 5px solid #F7CC03;
    padding: 80px 10%;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.card {
    flex: 1;
    padding: 30px;
    background: #f4f4f4;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    background: #F4F3A6;
}

/* About */
.about {
	border-bottom: 5px solid #F7CC03;
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}

.about h2 {
    margin-bottom: 20px;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background: #18870E;
    color: white;
}

/* Responsive */
@media(max-width: 900px) {
    .service-cards {
        flex-direction: column;
    }

    header {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}

/* Contact Page */

.contact-header {
    background: #18870E; /* dark green */
}

.contact-header nav a {
    color: white;
}

.contact-header .clinic-name span {
    color: white;
}

.contact-header .btn {
    background: #f2c200; /* yellow */
    color: #000;
}

.contact-header .btn:hover {
    background: #ffd633;
}

.contact-header nav a {
    color: white;
}

.contact-header nav a:hover {
    color: #F7CC03;  /* yellow hover only on contact page */
}

.contact-section {
    padding: 80px 10%;
    text-align: center;
	border-bottom: 5px solid #FFD700; 
}

.contact-section h1 {
    margin-bottom: 50px;
    font-size: 36px;
}

/* The Container: Keep side-by-side */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
    width: 100%;
}

.contact-info, .contact-form {
    flex: 1; 
   
}

.notice {
	color: red;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;            
    box-sizing: border-box;  
    font-family: inherit;
    margin-bottom: 15px;    
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.contact-form button {
    padding: 12px;
    background: #1db954;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.contact-form button:hover {
    background: #0f6f3c;
}

@media(max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-section {
        padding: 40px 5%;
    }
}