
body { margin:0; font-family:Arial; background:#f4f8f4; }
header {
    background: #2f4f4f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;  /* Center header content */
    padding: 15px 40px;
    position: relative;
}
.logo { width:80px; }
nav a { color:white; margin:0 10px; text-decoration:none; font-weight:bold; }
.hero { padding:60px; background:#4b8f79; color:white; text-align:center; }
.section { padding:20px;font-family: Arial, sans-serif; }
.gallery { display:flex; gap:10px; padding:20px; }
.gallery img { width:32%; border-radius:10px; }
.contact-form { display:flex; flex-direction:column; max-width:400px; }
input, textarea { padding:10px; margin-bottom:10px; }
button { background:#2f4f4f; color:white; padding:10px; border:none; cursor:pointer; }

/* Active menu item highlight */
nav {
    display: flex;
    justify-content: center; /* Center the navigation links */
    gap: 10px;
    flex: 1;
    z-index: 10;
}
nav a.active {
    color: #7b00ff;           /* Golden/yellow for highlight */
    border-bottom: 2px solid #7b00ff; /* Optional underline */
    padding-bottom: 4px;
}

.language-box {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}
.language-box select {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 6px;
}

/* Align logo left */
header img.logo {
    display: block;
    margin-right: 10px;
    width: 120px;  /* Increased width */
    height: auto;  /* Keep aspect ratio intact */
}
/* Gallery image captions */
.gallery {
    display: flex;
    gap: 10px;
    padding: 20px;
}

.gallery-item {
    flex: 1;                 /* All items same width */
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 220px;           /* 🔴 Fixed height */
    object-fit: cover;       /* 🔴 Prevent stretching */
    border-radius: 10px;
}

.gallery-item h3 {
    margin: 10px 0 5px;
}

.gallery-item p {
     /*margin: 0 0 15px;
     line-height: 1.5;*/
    font-size: 14px;
    line-height: 1.5;
}


/* Services Grid captions */

.service-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(3, 87, 29, 0.15);
}
.service-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
}
.service-item h1 {
    margin-bottom: 10px;
    color: #007BFF;
}
.service-item h2 {
    margin-bottom: 10px;
    color: #007BFF;
}
.service-item h3 {
    margin-bottom: 10px;
    color: #007BFF;
}
.service-item p {
    font-size: 14px;
    line-height: 1.5;
}

.service-section {
      border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-section h2 {
  margin-bottom: 10px;
   color: #007BFF;
    text-align: center;   /* Centers all inline content */
}

.service-section h3 {
  margin-bottom: 10px;
   color: #007BFF;
}

.service-section h4 {
  margin-top: 20px;
}

.service-section p {
     /*margin: 0 0 15px;
     line-height: 1.5;*/
    font-size: 14px;
    line-height: 1.5;
}
.service-section ul {
  margin: 10px 0;
  padding-left: 20px;
   font-size: 14px;
  line-height: 1.5;
}
.package-section {
 border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.package-block {
  margin-top: 20px;
}
.package-section h2 {
  margin-bottom: 10px;
   color: #007BFF;
    text-align: center;   /* Centers all inline content */
}

.package-section h3 {
  margin-bottom: 10px;
   color: #007BFF;
}
.package-section p {
     /*margin: 0 0 15px;
     line-height: 1.5;*/
    font-size: 14px;
    line-height: 1.5;
}
.package-block ul {
  margin: 10px 0 15px 20px;
   font-size: 14px;
    line-height: 1.5;
}
.center-wrapper {
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
         /* full screen height */
}

.package-cancellation {
  max-width: 650px;
  padding: 5x;
  text-align: center;
}
.package-cancellation h2 {
     font-size: 20;
  margin-bottom: 5px;
   color: #007BFF;
}
.package-cancellation ul {
  text-align: left;
  display: inline-block;
    margin: 10px 0 15px 20px;
   font-size: 14px;
    line-height: 1.5;
}

.description {
  margin-top: 10px;
  font-style: italic;
}

.price-options {
  margin: 10px 0;
}
/* Two-column layout */
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    margin-bottom: 10px;
      color: #007BFF;
}

.about-text p {
   font-size: 14px;
    line-height: 1.5;
}

.about-image {
    flex: 1 1 400px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
}
.branding {
    display: flex;
    align-items: center;
    gap: 0;              /* no flex gap */
}

.branding .logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;      /* removes inline spacing */
    margin-right: -5px;  /* pull text closer if needed */
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
}

.branding .brand-name {
    font-size: 2.5rem;   /* Keep as is */
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.branding .brand-subtitle {
    font-size: 1.1rem;   /* Bigger than before, but smaller than 2.5rem */
    font-weight: 400;
    color: #fff;
    margin-top: 0px;
    letter-spacing: 0.3px;
}
.contact-form {
    max-width: 600px;        /* Increased width */
    width: 100%;
    margin: 80px auto;       /* More vertical spacing */
    padding: 40px;           /* More inner spacing */
    border: 1px solid #ddd;
    border-radius: 12px;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
}
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.contact-form textarea {
    min-height: 80px; 
    overflow: hidden;
    resize: none;
}
.contact-form button {
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    background-color: #2f4f4f;
    color: white;
    cursor: pointer;
}
.contact-form button:hover {
    background-color: #0056b3;
}
select option:disabled {
    background-color: #ccc;
    color: #666;
}
/* Clinic details styling */
.clinic-details {
    flex: 1 1 400px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
}
.clinic-details h3 {
    margin-bottom: 10px;
}
.clinic-details p {
    line-height: 1.5; /* compact spacing */
    margin: 0;
    margin-bottom: 14px;
}
.clinic-details .qr-code {
    margin-top: 30px; /* increased gap between details and QR */
    text-align: center;
}
.clinic-details .qr-code img {
    max-width: 150px;
    border-radius: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.service-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
}
.service-item h3 {
    margin-bottom: 10px;
    color: #007BFF;
}
.service-item p {
    font-size: 14px;
    line-height: 1.5;
   /* margin-bottom: 20px; */
    
}

.team-member {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #007BFF;
}
.team-member div {
    max-width: 800px;
}

/* ===== Cliinic details ===== */
.clinic-row {
    display: flex;
    align-items: center;   /* 🔴 vertical alignment */
    gap: 20px;
}

.qr-code {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.clinic-row p {
    margin: 0;
    line-height: 1.5;
    margin-bottom: 14px;
}

main, .content-wrapper {
    flex: 1; /* ensures footer stays at bottom */
}
.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0px;
}

.booking-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
       text-align: center;
}

.booking-content h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #007BFF;
}
.booking-content p {
 font-size: 14px;
    line-height: 1.5;
    
}

.booking-button {
    text-align: center;
    margin-top: 20px;
}

.primary-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #2f4f4f;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary-btn:hover {
    background: #1f3535;
}
/* Blog grid container */
.blog-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Individual blog post */
.blog-post {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-post h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.blog-post p {
    line-height: 1.5;
    color: #555;
    margin: 0;
    margin-bottom: 20px;
}

/* Optional hover effect */
.blog-post:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* ===== Footer (matches header) ===== */
footer {
    background-color: #2f4f4f;
    color: #ffffff;
    padding: 20px 20px;
    
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
     color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
}

.footer-content p {
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}
footer a.active {
   color: #007bff;           /* Golden/yellow for highlight */
    border-bottom: 2px solid #007bff; /* Optional underline */
    padding-bottom: 4px;
}
