* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1E293B;
    background: #F8FAFC;
}

/* Navigation */
nav {
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(123, 79, 168, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img{
    margin-right: 120px;
    transform: scale(1.4);
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1E293B;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #7B4FA8;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #7B4FA8;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    /* width: 100%; */
    max-width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

/* Gradient overlay (your original colors) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43,95,214,0.85) 0%, rgba(123,79,168,0.85) 50%, rgba(199,75,173,0.85) 100%);
    z-index: -2;
}

/* Soft light effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
    z-index: -1;
}

/* Content */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero .credentials {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.2rem;
}

.hero .reassurance {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.cta-button {
    display: inline-block;
    background: #F97316;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #EA580C;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.45);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2B5FD6 0%, #7B4FA8 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    color: #7B4FA8;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    color: #2B5FD6;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.8;
}

/* Cards */
.card {
    background: #fff;
    border: 2px solid #E8EFFA;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.card:hover {
    border-color: #C74BAD;
    box-shadow: 0 12px 30px rgba(199, 75, 173, 0.18);
    transform: translateY(-5px);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

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

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

/* Service Cards */
.service-card {
    background: #fff;
    border: 2px solid #F3EEFF;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #C74BAD;
    box-shadow: 0 12px 30px rgba(123, 79, 168, 0.18);
    transform: translateY(-5px);
}

.service-card h3 {
    color: #2B5FD6;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Testimonial Cards */
.testimonial-card {
    background: linear-gradient(135deg, #E8EFFA 0%, #F3EEFF 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #C74BAD;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(199, 75, 173, 0.15);
}

.testimonial-text {
    font-style: italic;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #7B4FA8;
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(123, 79, 168, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #C74BAD;
    box-shadow: 0 12px 30px rgba(199, 75, 173, 0.2);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #E8EFFA, #F3EEFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-card h3 {
    color: #2B5FD6;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.blog-meta {
    color: #7B4FA8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.read-more {
    color: #C74BAD;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #A03989;
}

/* Lists */
.styled-list {
    list-style: none;
    margin: 2rem 0;
}

.styled-list li {
    padding: 0.8rem 0;
    color: #475569;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.styled-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7B4FA8;
    font-weight: bold;
    font-size: 1.2rem;
}

/* FAQ */
.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #F3EEFF;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #C74BAD;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: #7B4FA8;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: linear-gradient(135deg, #F3EEFF 0%, #FFE8F5 100%);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #475569;
    line-height: 1.7;
    display: none;
}

/* Contact Form */
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #E8EFFA;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #7B4FA8;
    box-shadow: 0 0 0 3px rgba(123, 79, 168, 0.1);
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #E8EFFA 0%, #F3EEFF 100%);
    border-left: 4px solid #7B4FA8;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.info-box h4 {
    color: #7B4FA8;
    margin-bottom: 0.5rem;
}

.warning-box {
    background: #FFF5F5;
    border-left: 4px solid #D64545;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.warning-box h4 {
    color: #D64545;
    margin-bottom: 0.5rem;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #7B4FA8;
    min-width: 30px;
}

/* Sticky Appointment Button */
.sticky-appointment {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #C74BAD 0%, #F97316 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.45);
    z-index: 99;
    transition: all 0.3s;
}

.sticky-appointment:hover {
    background: linear-gradient(135deg, #A03989 0%, #EA580C 100%);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(199, 75, 173, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: #fff;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #CBD5E1;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #C74BAD;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #94A3B8;
}

/* Image Placeholder */
.image-placeholder {
    background: linear-gradient(135deg, #F3EEFF, #FFE8F5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-radius: 15px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E8EFFA;
}

th {
    background: linear-gradient(135deg, #E8EFFA 0%, #F3EEFF 100%);
    color: #7B4FA8;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 1rem 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1, .page-header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 1rem;
    }

    .sticky-appointment {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
