 /* Converted Tailwind CSS with adjustments */
 :root {
    /* Color variables */
    --border: #e5e7eb;
    --input: #f3f4f6;
    --ring: #3b82f6;
    --background: #ffffff;
    --foreground: #111827;
    --primary: #2563eb;
    --primary-foreground: #f9fafb;
    --secondary: #4b5563;
    --secondary-foreground: #f9fafb;
    --destructive: #dc2626;
    --destructive-foreground: #f9fafb;
    --muted: #f3f4f6;
    --muted-foreground: #6b7280;
    --accent: #9333ea;
    --accent-foreground: #f9fafb;
    --popover: #ffffff;
    --popover-foreground: #111827;
    --card: #ffffff;
    --card-foreground: #111827;

    /* Border radius variables */
    --radius: 0.5rem;
    --radius-lg: var(--radius);
    --radius-md: calc(var(--radius) - 2px);
    --radius-sm: calc(var(--radius) - 4px);
    
    /* Font variables */
    --font-montserrat: 'Montserrat', sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-open-sans), sans-serif;
    line-height: 1.6;
}
h1{
    text-align: center;
}

/* Container styles */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1400px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-montserrat);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--primary-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./assests/bg\ new.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    margin: 0.5rem;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #1d4ed8;
}

.directconct {
    margin-top: 2rem;
}

/* Services Section */
.services-section {
    padding: 4rem 2rem;
    text-align: center;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.services {
    background-color: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.services ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.services li {
    margin-bottom: 0.5rem;
}

/* Facilities Section */
.page-section {
    padding: 4rem 2rem;
}

.facility-list, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.facility-item, .gallery-grid img {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.facility-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.facility-item h5, .facility-item p {
    padding: 0.5rem 1rem;
}

/* Consultancy Section */
#consultancy {
    text-align: center;
}

/* About Section */
#about {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.contact-form textarea {
    min-height: 150px;
}

/* Map */
.map {
    width: 100%;
    height: 400px;
    margin: 2rem 0;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--primary-foreground);
    text-decoration: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icons a {
    color: var(--primary-foreground);
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.25rem;
    }

    .directconct {
        display: flex;
        flex-direction: column;
    }
}

/* ------------------ */
.testimonial-section {
    padding: 50px 20px;
}

.testimonial-section h1 {
    text-align: center;
    font-size: 24px;
    color: #222;
}

.testimonial-section p {
    text-align: center;
    color: #555;
}

.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: auto;
    position: relative;
}

.testimonial-container {
    width: 100%;
    max-width: 600px;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    min-height: 150px;
    transition: opacity 0.5s ease-in-out;
}

.quote {
    font-size: 30px;
    color: #5ab9ea;
    margin: 0;
}

#testimonial-text {
    font-style: italic;
    color: #333;
}

.author {
    text-align: right;
    font-weight: bold;
    color: #222;
}

.nav-btn {
    background: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 0 10px;
}

.nav-btn:hover {
    background: #5ab9ea;
    color: white;
}

.dots-container {
    margin-top: 15px;
    text-align: center;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #5ab9ea;
}



/* ----------------- */


.testimonial-dts {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 15px;
}


.cta-btn {
    margin-top: 30px;
}

#gallery {
    text-align: center;
    display: flex;
    justify-items: center;
    flex-direction: column;
}


.gallery-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;   
}

.gallery-grid img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#about {
    text-align: center;
}
#contact{
    text-align: center;
}

#consultancy div {
    gap: 50px;
}
.services-doctor  img {
    height: 200px;
    width: 100px;
    border-radius: 70px;
    overflow: hidden;
}
.services-doctor {
    margin-left: 15px;
    margin-right: 15px;
}