
        /* Color: */
        :root {
            --light-green: #A8D5BA;
            --white: #FFFFFF;
            --dark-green: #2E7D32;
            --text-color: #333;
            --light-gray: #f5f5f5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: var(--text-color);
            line-height: 1.6;
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--dark-green);
        }

        .logo i {
            margin-right: 10px;
            color: var(--dark-green);
        }

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

        nav ul li {
            position: relative;
            margin: 0 15px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 0;
            display: block;
        }

        nav ul li a:hover {
            color: var(--dark-green);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        nav ul li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li {
            margin: 0;
            padding: 10px 15px;
        }

        .dropdown li a {
            padding: 5px 0;
        }

        .cta-button {
            background-color: var(--dark-green);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #1b5e20;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Bg Color*/
        .bg-white{
            background-color: var(--white);
        }
         .bg-green{
            background-color: var(--light-green);
        }
        .bg-gray{
            background-color: var(--light-gray);
        }
        /* Hero Section */
        .hero {
           

            height: 80vh;
            
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .btn {
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-primary {
            background-color: var(--dark-green);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #1b5e20;
            transform: translateY(-3px);
        }

        .btn-secondary {
            background-color: var(--white);
            color: var(--dark-green);
            border: 2px solid var(--dark-green);
        }

        .btn-secondary:hover {
            background-color: var(--dark-green);
            color: var(--white);
        }

        /* Section Styles */
        section {
            padding: 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--dark-green);
            font-size: 2.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--dark-green);
        }

        /* Introduction Section */
        .intro {
            background-color: var(--light-gray);
        }

        .intro-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }

        .intro-item {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 20px;
        }

        .intro-item i {
            font-size: 3rem;
            color: var(--dark-green);
            margin-bottom: 15px;
        }

        .intro-item h3 {
            margin-bottom: 10px;
            color: var(--dark-green);
        }

        /* Services Section */
        .services{
            background-color: var(--light-gray);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-card-content {
            padding: 20px;
        }

        .service-card h3 {
            color: var(--dark-green);
            margin-bottom: 10px;
        }

        .service-card p {
            margin-bottom: 15px;
        }

        /* Why Choose Us */
        

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

        .feature {
            text-align: center;
            padding: 20px;
        }

        .feature i {
            font-size: 3rem;
            color: var(--dark-green);
            margin-bottom: 15px;
        }

        .feature h3 {
            color: var(--dark-green);
            margin-bottom: 10px;
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--light-gray);
        }

        .testimonial-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonial {
            display: none;
            text-align: center;
            padding: 20px;
        }

        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .testimonial img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin-bottom: 20px;
            object-fit: cover;
        }

        .testimonial p {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .testimonial h4 {
            color: var(--dark-green);
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .testimonial-dot.active {
            background-color: var(--dark-green);
        }

        /* Blog Section */
        
        .blog-grid {
            
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-card-content {
            padding: 20px;
        }

        .blog-card h3 {
            color: var(--dark-green);
            margin-bottom: 10px;
        }

        .blog-card p {
            margin-bottom: 15px;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* Appointment CTA */
        .appointment-cta {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                        url('https://images.unsplash.com/photo-1532938911079-1b06ac7ceec7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            color: var(--white);
            text-align: center;
            padding: 80px 5% ;
            
        }

        .appointment-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .appointment-cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }

        /* Footer */
        .footer {
            max-width: 1400px;
            background-color: var(--dark-green);
            color: var(--white);
            padding: 60px 5% 20px;
        }

        .footer-container {
            
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--light-green);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--light-green);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: background-color 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--light-green);
        }

        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 4px 0 0 4px;
        }

        .newsletter-form button {
            background-color: var(--light-green);
            color: var(--dark-green);
            border: none;
            padding: 10px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .newsletter-form button:hover {
            background-color: #8cc69a;
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .header-container {
                padding: 15px 3%;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            section {
                padding: 60px 3%;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 70vh;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        /* -----------About Page------------*/
        
        /* About Banner */
        .about-banner {
            background: linear-gradient(rgba(46, 125, 50, 0.7), rgba(46, 125, 50, 0.7)), 
                        url('https://images.unsplash.com/photo-1532938911079-1b06ac7ceec7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            height: 50vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .about-banner h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .about-banner p {
            font-size: 1.2rem;
            max-width: 700px;
        }

        /* Section Styles */
        section {
            padding: 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--dark-green);
            font-size: 2.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--dark-green);
        }

        /* Who We Are Section */
        

        .who-we-are-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .who-we-are-text {
            flex: 1;
            min-width: 300px;
        }

        .who-we-are-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .who-we-are-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .who-we-are-text h3 {
            color: var(--dark-green);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .who-we-are-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .values {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .value-item {
            background-color: var(--white);
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            flex: 1;
            min-width: 200px;
        }

        .value-item i {
            font-size: 1.5rem;
            color: var(--dark-green);
            margin-right: 15px;
        }

        .value-item h4 {
            color: var(--dark-green);
        }

        /* Meet the Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .team-member {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            text-align: center;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .team-member img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .team-member-content {
            padding: 25px 20px;
        }

        .team-member h3 {
            color: var(--dark-green);
            margin-bottom: 5px;
            font-size: 1.5rem;
        }

        .team-member .position {
            color: var(--light-green);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .team-member p {
            margin-bottom: 20px;
        }

        .team-member .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .team-member .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: var(--light-gray);
            border-radius: 50%;
            color: var(--dark-green);
            transition: background-color 0.3s;
        }

        .team-member .social-links a:hover {
            background-color: var(--light-green);
        }

        /* Our Approach Section */
        .our-approach {
            background-color: var(--light-gray);
        }

        .approach-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }

        .approach-step {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .approach-step:not(:last-child)::after {
            content: '\f054';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--dark-green);
            font-size: 1.5rem;
        }

        .approach-step .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: var(--dark-green);
            color: var(--white);
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .approach-step h3 {
            color: var(--dark-green);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* Facility Tour Section */
        .facility-tour {
            text-align: center;
        }

        .facility-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .facility-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 250px;
        }

        .facility-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .facility-item:hover img {
            transform: scale(1.05);
        }

        .facility-item .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: var(--white);
            padding: 20px;
            text-align: left;
        }

        .facility-item .overlay h3 {
            margin-bottom: 5px;
        }

        .virtual-tour {
            margin-top: 40px;
            padding: 30px;
            background-color: var(--light-gray);
            border-radius: 10px;
        }

        .virtual-tour h3 {
            color: var(--dark-green);
            margin-bottom: 20px;
        }

        .virtual-tour p {
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-primary {
            background-color: var(--dark-green);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #1b5e20;
        }

        

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-banner h1 {
                font-size: 2.8rem;
            }
            
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .header-container {
                padding: 15px 3%;
            }
        }

        @media (max-width: 768px) {
            .about-banner h1 {
                font-size: 2.2rem;
            }
            
            .about-banner {
                height: 40vh;
            }
            
            section {
                padding: 60px 3%;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .approach-step:not(:last-child)::after {
                content: none;
            }
        }

        @media (max-width: 576px) {
            .about-banner h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
    /* Health Insurance page */
    /* Packages Section */
.packages {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--light-gray);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 3px solid var(--secondary-color);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.2);
}

.package-card h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.package-card .price {
    font-size: 1.2em;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
}

.package-card .price span {
    font-size: 2.2em;
    color: var(--primary-dark);
    font-weight: 700;
}

.package-card ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1; /* Allows list to take available space */
}

.package-card ul li {
    margin-bottom: 10px;
    font-size: 1.0em;
    color: #444;
    position: relative;
    padding-left: 25px;
}

.package-card ul li:before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.select-plan-btn {
    width: 100%;
    background-color: var(--light-green);
    color: var(--text-light);
    padding: 12px 0;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-plan-btn:hover {
    background-color:var(--dark-green); /* Darker green */
    transform: translateY(-2px);
}

.select-plan-btn.featured-btn {
    background-color: var(--light-green);
}

.select-plan-btn.featured-btn:hover {
    background-color: var(--dark-green);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.feature-item h3 {
    font-size: 1.5em;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 0.95em;
    color: #666;
}

/* Pop Form*/

/* Hidden Utility Class */
.hidden {
    display: none !important; /* Ensures element is completely hidden */
}

/* Overlay Styling */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Darker semi-transparent background */
    z-index: 999; /* Below the pop-up but above everything else */
}

/* Pop-up Container Styling */
.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centering trick */
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    z-index: 1000; /* Above the overlay */
    max-width: 550px; /* Max width for larger screens */
    width: 90%; /* Responsive width */
    max-height: 90vh; /* Max height for overflow on smaller screens */
    overflow-y: auto; /* Enable scrolling if content exceeds max-height */
    box-sizing: border-box; /* Include padding in width/height */
    animation: fadeIn 0.3s ease-out; /* Simple fade-in animation */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.popup-content h2 {
    text-align: center;
    color: #28a745;
    margin-top: 0;
    margin-bottom: 28px;
    font-size: 1.8em;
}

/* Close Button Styling */
.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.2em;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s ease;
}

.close-button:hover {
    color: #333;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea {
    width: calc(100% - 24px); /* Account for padding */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #28a745;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

.form-group textarea {
    resize: vertical; /* Allow only vertical resizing */
    min-height: 80px;
}

/* Submit Button Styling */
.submit-button {
    width: 100%;
    padding: 14px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.15em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.submit-button:hover {
    background-color: #218838;
    transform: translateY(-1px);
}

/* Success Message Styling */
.success-message {
    text-align: center;
    padding: 25px;
    border: 1px solid #d4edda;
    background-color: #e6ffe6; /* Lighter green background */
    border-radius: 8px;
    color: #155724;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-message h3 {
    margin-top: 0;
    color: #155724;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.success-message p {
    margin-bottom: 25px;
    line-height: 1.6;
}

#closeSuccessBtn {
    padding: 10px 25px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

#closeSuccessBtn:hover {
    background-color: #5a6268;
}

/* Appointment*/

.appointment-body {
    
    margin: 0;
    padding: 20px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to top */
    min-height: 100vh;
}

.appointment-container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    margin-top: 30px; /* Add some space from the top */
}



form {
    margin-top: 20px;
}

fieldset {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    background-color: #fcfcfc;
}

legend {
    font-weight: bold;
    color: #34495e;
    padding: 0 10px;
    border-bottom: none; /* Remove default legend border */
    font-size: 1.1em;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
    width: calc(100% - 22px); /* Account for padding and border */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #28a745;
    outline: none;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.3);
}

.form-group select {
    background-color: #fff;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Checkbox specific styling */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2); /* Make checkbox slightly larger */
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    height: 20px;
    width: 20px;
    flex-shrink: 0; /* Prevent it from shrinking */
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: #28a745;
    border-color: #28a745;
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    line-height: 1; /* Ensure checkmark is centered */
}

.checkbox-group label {
    margin-bottom: 0; /* Remove bottom margin for labels next to checkboxes */
    cursor: pointer;
}

small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85em;
}

button[type="submit"], #newAppointmentBtn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 25px;
}

button[type="submit"]:hover, #newAppointmentBtn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

button[type="submit"]:active, #newAppointmentBtn:active {
    background-color: #1e7e34;
    transform: translateY(0);
}

button[type="submit"]:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Confirmation Message Styling */
#confirmation-message {
    background-color: #e6ffe6;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

#confirmation-message h2 {
    color: #28a745;
    text-align: center;
    margin-bottom: 20px;
}

#confirmation-message p {
    text-align: left;
    margin-bottom: 15px;
}

#confirmation-message ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

#confirmation-message ul li {
    margin-bottom: 10px;
    padding-left: 0;
    font-size: 1.05em;
}

#confirmation-message ul li strong {
    color: #2c3e50;
    min-width: 120px;
    display: inline-block;
}

/* Utility Class */
.hidden {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        margin-top: 10px;
        padding: 20px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="date"],
    .form-group input[type="time"],
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 15px;
    }

    button[type="submit"], #newAppointmentBtn {
        padding: 12px;
        font-size: 16px;
    }

    #confirmation-message {
        padding: 20px;
    }
}

/*Blog*/

.blog-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    
    padding: 20px;
    max-width: 1400px;
    
}

.blog-container {
    max-width: 900px;
    margin: 20px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}



.blog-post .post-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-post p {
    margin-bottom: 1em;
}

.blog-post h2 {
    font-size: 1.8em;
    color: #1b5e20;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-post ol {
    margin-left: 25px;
    margin-bottom: 20px;
    list-style-type: decimal;
}

.blog-post ol li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.blog-post ol li strong {
    color: #2E7D32;
}

.comments-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.comments-section h2 {
    font-size: 2em;
    color: #1b5e20;
    margin-bottom: 25px;
}

.comment-form .form-group {
    margin-bottom: 15px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.comment-form input[type="text"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form textarea:focus {
    border-color: #1b5e20;
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.25);
}

.comment-form button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #1b5e20;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.comment-form button:hover {
    background-color: #2E7D32;
    transform: translateY(-2px);
}

.comments-list {
    margin-top: 30px;
}

.comment-item {
    background-color: #ecf3fe; /* Light blue background for comments */
    border: 1px solid #d4e3fc;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.comment-item strong {
    color: #2E7D32;
    font-size: 1.1em;
}

.comment-item .comment-date {
    display: block;
    font-size: 0.85em;
    color: #777;
    margin-top: 5px;
    margin-bottom: 10px;
}

.comment-item p {
    margin-top: 10px;
    word-wrap: break-word; /* Ensures long comments wrap */
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        margin: 10px auto;
        padding: 20px;
    }

    header h1 {
        font-size: 2em;
    }

    .blog-post h2, .comments-section h2 {
        font-size: 1.5em;
    }

    .comment-form button {
        font-size: 1em;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 15px;
    }
    .blog-post ol {
        margin-left: 15px;
    }
}
/* subscribe and unsub*/

.subsribe-body {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f4f4f4;
            margin: 0;
            padding: 20px;
            box-sizing: border-box;
        }

        .subsribe-container {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 450px;
        }

       

        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        label {
            margin-bottom: 5px;
            color: #555;
            font-weight: bold;
        }

        input[type="text"],
        input[type="email"],
        input[type="date"] {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            width: calc(100% - 24px); /* Account for padding */
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
        }

        input[type="checkbox"] {
            width: auto;
            transform: scale(1.2); /* Make checkbox slightly larger */
        }

        button {
            background-color: #007bff;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 17px;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: #0056b3;
        }

        .unsubscribe-section {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .unsubscribe-section p {
            color: #666;
            margin-bottom: 15px;
        }

        #unsubscribeLink {
            background-color: #dc3545;
            color: white;
            padding: 10px 15px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 16px;
            transition: background-color 0.3s ease;
            display: inline-block; /* Make it behave like a button */
        }

        #unsubscribeLink:hover {
            background-color: #c82333;
        }

        /* Modal (Unsubscribe Popup) Styling */
        .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
            justify-content: center; /* Center horizontally */
            align-items: center; /* Center vertically */
        }

        .modal-content {
            background-color: #fefefe;
            margin: auto;
            padding: 30px;
            border: 1px solid #888;
            border-radius: 8px;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            position: relative;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .close-button {
            color: #aaa;
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close-button:hover,
        .close-button:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

        /* Confirmation Message Styling */
        #confirmationMessage {
            display: none; /* Hidden by default */
            padding: 15px;
            margin-top: 20px;
            border-radius: 5px;
            font-weight: bold;
            text-align: center;
            opacity: 0; /* for fade in/out */
            transition: opacity 0.5s ease;
        }

        #confirmationMessage.show {
            opacity: 1;
        }

        #confirmationMessage.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        #confirmationMessage.unsubscribe-success {
            background-color: #ffeeba; /* Yellowish for warning/cancellation */
            color: #856404;
            border: 1px solid #ffeeba;
        }

        #confirmationMessage.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
