/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #2d6a4f;
}

a {
    text-decoration: none;
    color: #2d6a4f;
}

ul {
    list-style-type: none;
}

/* Header */
header {
    background-color: #2d6a4f;
    color: white;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav .logo h1 {
    font-size: 1.8rem;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-size: 1rem;
    padding: 5px 10px;
}

/* Section Styles */
.section {
    padding: 40px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #2d6a4f;
}

.service {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service h3 {
    font-size: 1.5rem;
    color: #2d6a4f;
}

ul {
    text-align: left;
    padding-left: 40px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #2d6a4f;
}

form input, form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {

    background-color: #2d6a4f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #1b4d38
}

/* Footer */

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .section {
        padding: 20px;
    }

    form input, form textarea {
        max-width: 100%;
    }
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
}

.navbar-logo {
    width: 60px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.2;
}

.navbar-brand-subtext {
    font-size: 0.7rem;
    color: #4b5563;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-bg);
    padding: 6rem 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background: white;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%232563eb" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-text {
    padding: 2rem 0;
}

.about-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--light-bg);
    padding: 6rem 0;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Mission and Vision Section */
.mission-vision {
    padding: 5rem 0;
    background-color: white;
}

.mission-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mission-statement {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #000000;
    font-family: 'Georgia', serif;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    letter-spacing: 0.02em;
}

.mission-statement::before,
.mission-statement::after {
    content: '"';
    font-size: 2.5rem;
    color: #000000;
    opacity: 0.4;
    position: absolute;
    font-family: 'Georgia', serif;
}

.mission-statement::before {
    top: -20px;
    left: -10px;
}

.mission-statement::after {
    bottom: -40px;
    right: -10px;
}

/* Coaching Info Styles */
.coaching-info {
    margin-top: 3rem;
    text-align: left;
}

.coaching-title {
    color: #000000;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.03em;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0.5rem;
}

.coaching-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #222222;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.coaching-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.coaching-list li {
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
    color: #222222;
    font-family: 'Arial', sans-serif;
}

.coaching-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coaching-area {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.coaching-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.coaching-area h5 {
    color: #000000;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.02em;
    border-left: 3px solid #000000;
    padding-left: 0.75rem;
}

.coaching-area ul {
    list-style: none;
    padding-left: 0;
}

.coaching-area li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: #222222;
    font-family: 'Arial', sans-serif;
}

.coaching-area li:before {
    content: '•';
    color: #000000;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.coaching-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.coaching-cta p {
    font-size: 1.3rem;
    font-style: italic;
    color: #000000;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .coaching-areas {
        grid-template-columns: 1fr;
    }
    
    .coaching-title {
        font-size: 1.2rem;
    }
    
    .coaching-text {
        font-size: 1rem;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact-wrapper {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

/* Contact Information Styles */
.contact-info-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
}

.contact-details h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6b7280;
    margin: 0;
}

/* Appointment Form Styles */
.appointment-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.appointment-form h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

.appointment-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 500;
}

.form-control {
    padding: 0.8rem 1rem;
    border: 1px solid blue;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.submit-button i {
    font-size: 1.2rem;
}

/* Map Container Styles */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Styles for Contact Section */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .contact-section {
        padding: 4rem 0;
    }

    .appointment-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .navbar-logo {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        gap: 2rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .appointment-form h3 {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-info-container,
    .appointment-container {
        padding: 1.5rem;
    }

    .form-control {
        padding: 0.7rem 0.9rem;
    }

    .submit-button {
        padding: 0.8rem 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .navbar-logo {
        width: 45px;
    }
    
    .navbar-brand {
        gap: 0.5rem;
    }
}

/* Form Validation Styles */
.form-control:invalid {
    border-color: #e0f2fe; /* Very light blue color */
}

.form-control:invalid:focus {
    box-shadow: 0 0 0 3px rgba(224, 242, 254, 0.3); /* Very light blue shadow */
}

/* Loading State for Submit Button */
.submit-button.loading {
    position: relative;
    color: transparent;
}

.submit-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .about-grid {
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    /* Navbar */
    .navbar-brand-text {
        font-size: 1rem;
    }

    .navbar-logo {
        width: 50px;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero .cta-button {
        margin: 0 auto;
        display: block;
    }

    .hero img {
        margin-top: 3rem;
    }

    /* Services Section */
    .services {
        padding: 4rem 0;
    }

    .service-card {
        margin-bottom: 2rem;
    }

    /* Blog Section */
    .blog-card {
        margin-bottom: 2rem;
    }

    /* Contact Section */
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About Section */
    .about {
        padding: 6rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-text {
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Global */
    section {
        padding: 3rem 0 !important;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Services Section */
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    /* Testimonials Section */
    .testimonial-card {
        margin: 1rem 0;
    }

    /* Blog Section */
    .blog-image {
        height: 180px;
    }

    /* Contact Section */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .appointment-form {
        padding: 1.5rem;
    }

    .map-container {
        margin-top: 2rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1rem;
    }

    .social-links {
        margin-top: 1rem;
    }

    /* About Section */
    .about {
        padding: 4rem 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 0.8rem;
    }
}

@media (max-width: 576px) {
    /* Global */
    .container {
        padding: 0 1rem;
    }

    /* Navbar */
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand-subtext {
        display: none;
    }

    .navbar-logo {
        width: 40px;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Services Section */
    .service-card {
        padding: 1.2rem;
    }

    .service-icon {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    /* Testimonials Section */
    .testimonial-card {
        padding: 1.2rem;
    }

    .testimonial-image {
        width: 50px;
        height: 50px;
    }

    /* Blog Section */
    .blog-image {
        height: 160px;
    }

    .blog-content {
        padding: 1.2rem;
    }

    /* Why Choose Us Section */
    .feature-card {
        padding: 1.5rem;
    }

    .feature-number {
        font-size: 2.5rem;
    }

    /* Contact Section */
    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        font-size: 1.8rem;
    }

    /* Chat Widget */
    .chat-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .chat-button {
        width: 50px;
        height: 50px;
    }

    /* About Section */
    .about {
        padding: 3rem 0;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .feature-text h4 {
        font-size: 1rem;
    }
}

/* Fix for very small devices */
@media (max-width: 360px) {
    .navbar-brand-text {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .feature-number {
        font-size: 2rem;
    }
}

/* Fix for landscape mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .navbar {
        padding: 0.3rem 0;
    }
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-button {
    position: relative;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.chat-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.chat-button-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.chat-button i {
    font-size: 1.2rem;
}

.chat-text {
    display: inline-block;
}

.chat-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50px;
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive styles for chat widget */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .chat-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .chat-text {
        display: none;
    }

    .chat-button-content {
        gap: 0;
    }
}

@media (max-width: 576px) {
    .chat-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .chat-button {
        padding: 0.7rem;
        border-radius: 50%;
    }

    .chat-button i {
        font-size: 1.1rem;
    }
}

/* Footer Credit Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.credit-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credit-text {
    color: #000;
    font-size: 0.9rem;
}

.credit-text i {
    color: #ff4d4d;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.credit-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
}

.credit-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.credit-link:hover {
    color: #000;
}

.credit-link:hover::after {
    width: 100%;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive styles for credit section */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .credit-section {
        justify-content: center;
    }
}

/* Appointment Form Styles */
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0f2fe; /* Very light, sleek blue border */
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #bae6fd; /* Light blue on focus */
    box-shadow: 0 0 0 3px rgba(224, 242, 254, 0.5);
}

.appointment-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    color: #1f2937;
}

.appointment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.appointment-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%232563eb' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* --- Begin: Custom styles for expanded Services section --- */
.service-category-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
    border-left: 6px solid var(--primary-color);
}
.service-category-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}
.service-category-card h4 {
    color: var(--secondary-color);
    font-size: 1.15rem;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}
.service-category-card ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.service-category-card ul li {
    margin-bottom: 0.5rem;
    color: #222;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .service-category-card {
        padding: 1.2rem 0.7rem;
    }
    .service-category-card h3 {
        font-size: 1.15rem;
    }
    .service-category-card h4 {
        font-size: 1rem;
    }
}
/* --- End: Custom styles for expanded Services section --- */