/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfcfd;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Typography */
h1, h2, h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #3182ce;
    color: white;
}

.btn-primary:hover {
    background-color: #2b6cb0;
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #4a5568;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}

.btn-block {
    width: 100%;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px; /* Adjust based on your logo size */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
}

nav ul li a:hover {
    color: #3182ce;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ebf8ff 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: 1rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid #3182ce;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text ul {
    list-style: none;
    margin-top: 1rem;
}

.about-text ul li {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.appointment-form .form-group {
    margin-bottom: 1.25rem;
}

.appointment-form input, 
.appointment-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-info h3 {
    margin-top: 1.5rem;
}

.contact-info h3:first-child {
    margin-top: 0;
}

/* Footer */
footer {
    background-color: #1a365d;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    nav ul {
        margin-bottom: 1rem;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
}
.slider-container {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height to match your design */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out; /* Smooth fade effect */
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image proportions without stretching */
    border-radius: 0; /* Let the container handle the radius */
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #3182ce; /* Matches your primary theme blue */
    width: 20px; /* Slightly longer active pill shape */
    border-radius: 5px;
}
/* GPS Map Section Layout */
.map-embed-container {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-embed-container iframe {
    display: block;
}

.gps-action-box {
    margin: 1.5rem 0;
}

.gps-action-box .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    border: 1px solid #cbd5e0;
}




/* Enhanced Services Grid Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-top: 4px solid #3182ce;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left; /* Alignment changed to left for better list reading */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.1);
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 0.5rem;
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Custom styled bullets for clinical accuracy */
.service-list li::before {
    content: "•";
    position: absolute;
    left: 0.2rem;
    color: #3182ce; /* Vibrant blue bullet indicator */
    font-weight: bold;
    font-size: 1.2rem;
    top: -2px;
}