/* ================================
   GENERAL STYLES & VARIABLES
   ================================ */
:root {
    --primary-color: #2563eb;
    --secondary-color: #0891b2;
    --success-color: #16a34a;
    --danger-color: #dc2626;
    --light-bg: #f8fafc;
    --dark-text: #1e293b;
    --light-text: #64748b;
    --border-color: #e2e8f0;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   NAVIGATION HEADER
   ================================ */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.btn-appointment {
    background-color: var(--danger-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.btn-appointment:hover {
    background-color: #b91c1c;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================================
   RESPONSIVE NAVIGATION
   ================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .logo {
        gap: 0.25rem;
        font-size: 0.95rem;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 45px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--primary-color);
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        align-items: flex-start;
        width: 100%;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu a {
        width: 100%;
        font-size: 0.95rem;
    }

    .btn-appointment {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-content {
        gap: 0.5rem;
    }

    .logo {
        font-size: 0.85rem;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    .mobile-menu-btn {
        font-size: 1.25rem;
    }
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #0e7490;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 392px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ================================
   SECTION TITLES
   ================================ */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    padding: 1.5rem 1rem;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-card p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ================================
   DOCTORS SECTION
   ================================ */
.doctors {
    padding: 80px 20px;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.doctor-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.doctor-image {
    overflow: hidden;
    height: 250px;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--dark-text);
    font-size: 1.25rem;
}

.specialization {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0 1.5rem;
}

.experience {
    color: var(--light-text);
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* ================================
   OUR REACH SECTION
   ================================ */
.reach {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ecf0f1 100%);
}

.reach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.reach-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

.reach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.reach-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reach-text {
    font-size: 1.1rem;
    color: var(--light-text);
    font-weight: 500;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
    padding: 3rem 1rem;
    background-color: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--light-text);
    font-size: 0.95rem;
}

.about-list i {
    color: var(--success-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* ================================
   APPOINTMENT SECTION
   ================================ */
.appointment {
    padding: 3rem 1rem;
}

.appointment-form {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row .form-group.full {
    grid-column: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.appointment-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    padding: 3rem 1rem;
    background-color: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--light-text);
    font-size: 0.9rem;
}


.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.service-icon img {
  max-width: 100%;
  height: auto;
  display: block;
}





/* ================================
   FOOTER
   ================================ */
.footer {
    background-color: var(--dark-text);
    color: white;
    padding: 2rem 1rem 1rem;
}


.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--primary-color);
}

.footer-section .social-links {
    display: flex;
    gap: 1rem;
    padding: 0;
}

.footer-section .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        min-height: 300px;
        padding: 40px 1rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    /* Sections */
    .services,
    .doctors,
    .about,
    .appointment,
    .contact,
    .reach {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    /* Our Reach Section */
    .reach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .reach-number {
        font-size: 2.5rem;
    }

    .reach-text {
        font-size: 1rem;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    /* Services and Doctors Grid */
    .services-grid,
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact Items */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 1.35rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    /* Section Title */
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }

    /* Our Reach Section */
    .reach-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .reach-card {
        padding: 2rem 1.25rem;
    }

    .reach-number {
        font-size: 2rem;
    }

    .reach-text {
        font-size: 0.95rem;
    }

    /* Services Section */
    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    /* About Section */
    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-list li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.85rem;
    }

    /* Doctor Cards */
    .doctor-image {
        height: 150px;
    }

    .doctor-card h3 {
        font-size: 1rem;
    }

    /* Contact */
    .contact-item {
        gap: 1rem;
        padding: 1.25rem;
    }

    .contact-item i {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section ul a {
        font-size: 0.85rem;
    }

    /* Form */
    .appointment-form {
        padding: 1.25rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    /* Our Reach Section */
    .reach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

}

@media (min-width: 1025px) {
    /* Our Reach Section */
    .reach-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
    }

    .reach-number {
        font-size: 3.5rem;
    }

    .reach-text {
        font-size: 1.15rem;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .doctors-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
}
img.w-full.h-96.object-cover {
    height: 96vh;
}

@media (min-width: 1024px) {
    .lg\:py-24 {
        padding-top: 0rem;
        padding-bottom: 0rem;
    }
}
/* ---------------------------
   General Body
--------------------------- */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9fafb; /* Light background for body */
}

/* ---------------------------
   Hero Section
--------------------------- */
.hero {
    position: relative;
    width: 100%;
    height: 28rem;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-text p {
    margin-top: 0.8rem;
    color: #f3f4f6;
    font-size: 1rem;
}

/* ---------------------------
   About Section
--------------------------- */
.about-section {
    max-width: 72rem;
    margin: 0 auto;
    padding: 3rem 1rem;
    text-align: center;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 1rem;
}

.about-section p {
    color: #4b5563;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ---------------------------
   Services Section
--------------------------- */
.services-section {
    background-color: #ffffff;
    padding: 3rem 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

.services-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1e40af;
    text-align: center;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: #f3f4f6;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* ---------------------------
   CTA Section
--------------------------- */
.cta-section {
    background-color: #1e40af;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #dbeafe;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-cta {
    display: inline-block;
    background-color: #fff;
    color: #1e40af;
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
    background-color: #f3f4f6;
    transform: translateY(-3px);
}

section#appointment {
    padding-bottom: 0px !important;
}
.hero {
    position: relative;
    width: 100%;
    height: 41rem;
    overflow: hidden;
}
.hero-text p {
    margin-top: 0.8rem;
    color: #1a76d4;
    font-size: 1rem;
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #0a8fb6;
}
.hero-img {
    width: 100%;
    height: 225%;
    object-fit: cover;
    padding-top: 138px;
}
.service-icon img {
    max-width: 100%;
    height: 14vh;
    display: block;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4.5rem;
}
@media (min-width: 1024px) {
    .lg\:py-24 {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
}

/* Services Section */
.services {
  padding: 80px 20px;
  background: #f8fafc;
}

.services .container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0891b2;
}

/* Grid Fix */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card Fix */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

/* Image Container Fix */
.service-icon {
  width: 100%;
  height: 180px; /* 👈 SAME HEIGHT FOR ALL */
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Text Fix */
.service-card h3 {
  margin: 18px 15px 10px;
  font-size: 18px;
  font-weight: 600;
  color: #0891b2;
  cursor: pointer;
}

.service-card p {
  font-size: 14px;
  padding: 0 18px 22px;
  line-height: 1.6;
  color: #555;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(8,145,178,0.25);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* ✅ responsive width */
  gap: 30px;
}
.service-card {
  max-width: 300px;
  margin: auto;
}
/* Global */
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f3f6fb;
}

/* Top navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: #0078d7;
  color: #fff;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 4px;
}

.navbar-title {
  font-weight: 600;
  font-size: 20px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.navbar-links a {
  color: #fff;
  text-decoration: none;
}

.navbar-links a:hover {
  text-decoration: underline;
}

/* Book Appointment button */
.btn-primary {
  padding: 8px 18px;
  border-radius: 4px;
  border: none;
  background: #ff3b30;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary:hover {
  background: #e53329;
}

/* Page container */
.page {
  max-width: 1180px;
  margin: 24px auto 40px;
  padding: 0 16px;
}

/* Grid of cards */
.speciality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Individual card */
.speciality-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border: 1px solid #e3e7f1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.speciality-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #0078d7;
}

/* Icon inside card */
.speciality-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e6f1ff;
  color: #0078d7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

/* Title and text */
.speciality-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.speciality-text {
  font-size: 13px;
  line-height: 1.5;
  color: #6a7180;
}

/* Responsive */
@media (max-width: 992px) {
  .speciality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 0 16px;
  }

  .navbar-links {
    display: none; /* simple mobile behavior */
  }

  .speciality-grid {
    grid-template-columns: 1fr;
  }
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #6c757d;
}

/* Blue link */
.footer-link {
    color: #ffffff;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Mobile friendly */
@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}
.gap-10 {
    gap: 0;
}
form.bg-white.rounded-2xl.shadow-xl.p-7.space-y-6 {
    background: #9acef7;
}