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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #45b65a;
    color: white;
}

.btn-primary:hover {
    background-color: #23479b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #45b65a;
    border: 2px solid #45b65a;
}

.btn-secondary:hover {
    background-color: #45b65a;
    color: white;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #45b65a;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #45b65a;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #e0feec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #45b65a;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-link {
    color: #45b65a;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-link:hover {
    text-decoration: underline;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #45b65a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #f8fafc;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #45b65a;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #45b65a 0%, #45b65a 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-banner .btn-primary {
    background-color: white;
    color: #45b65a;
}

.cta-banner .btn-primary:hover {
    background-color: #f1f5f9;
}

/* Latest Blogs */
.latest-blogs {
    padding: 80px 0;
}

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

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

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    background-color: #e0f2fe;
    color: #45b65a;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
}

.blog-content h3 {
    color: #333;
    margin-bottom: 0.75rem;
}

.blog-link {
    color: #45b65a;
    text-decoration: none;
    font-weight: 500;
}

.blog-link:hover {
    text-decoration: underline;
}

/* Newsletter */

.newsletter {
    padding: 60px 0;
    background-color: #1e293b;
    color: white;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-text h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255,255,255,0.8);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 200px;

}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #45b65a;
}

.footer-logo i {
    margin-right: 0.5rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #45b65a;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: #45b65a;
    text-decoration: none;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #45b65a 0%, #45b65a 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

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

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* About Page Styles */

.mission-values {
    padding: 80px 0;
}

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

.content-item h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #45b65a;
    font-weight: bold;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.team-member {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-title {
    color: #45b65a;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-credentials {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.member-credentials span {
    background-color: #e0f2fe;
    color: #45b65a;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Credentials */
.credentials {
    padding: 80px 0;
}

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

.credential-item {
    text-align: center;
    padding: 2rem;
}

.credential-icon {
    width: 80px;
    height: 80px;
    background-color: #45b65a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.credential-icon i {
    font-size: 2rem;
    color: white;
}

/* Office Locations */
.office-locations {
    padding: 80px 0;
    background-color: #fff;
}

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

.location-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.location-item h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.location-details p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.location-details i {
    color: #45b65a;
    width: 16px;
}

/* Services Page */
.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background-color: #f8fafc;
}

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

.service-icon-large {
    width: 100px;
    height: 100px;
    background-color: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: #45b65a;
}

.service-benefits h3 {
    margin-bottom: 1rem;
    color: #333;
}

.service-benefits ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #45b65a;
    font-weight: bold;
}

.service-process {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.process-steps {
    list-style: none;
}

.process-steps li {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 2rem;
}

.process-steps li:last-child {
    border-bottom: none;
}

.process-steps li:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 1rem;
    background-color: #45b65a;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.process-steps {
    counter-reset: step-counter;
}

/* FAQ Page */


/* FAQ Container */
.faq-body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #ffffff; /* Light background */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to the top */
    min-height: 100vh;
}
.faq-container {
    max-width: 1200px;
    width: 100%;
    background-color: var(--background-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Soft shadow */
    padding: 30px;
    margin-top: 30px; /* Space from top */
}

/* Header Styling */
.faq-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.faq-header h1 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-header p {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-color-light);
}

.faq-header p strong {
    color: var(--text-color-dark);
}

/* FAQ Item Styling */
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden; /* Important for max-height transition */
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Slight lift for active item */
    border-color: var(--primary-color); /* Highlight active item */
}

/* FAQ Question Button */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--text-color-dark);
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--hover-background);
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: var(--background-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px 8px 0 0;
}


/* FAQ Icon (Chevron) */
.faq-icon {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-color-dark); /* Color for the chevron */
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.faq-item.active .faq-question .faq-icon::before,
.faq-item.active .faq-question .faq-icon::after {
    background-color: var(--background-light); /* White color for icon when active */
}

.faq-icon::before {
    transform: translate(-50%, -50%) rotate(45deg) translateX(3px); /* Right arrow */
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg) translateX(-3px); /* Right arrow */
}


/* Active state for icon */
.faq-item.active .faq-icon {
    transform: rotate(90deg); /* Rotate to point down or up */
}

/* FAQ Answer Content */
.faq-answer {
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: var(--background-light); /* Background for answer */
    padding: 0 25px; /* Initial padding, adjust when active */
    color: var(--text-color-light);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Sufficiently large to show content, adjust if needed */
    padding: 15px 25px 20px; /* Padding when active */
    border-radius: 0 0 8px 8px;
    background-color: #fdfdfd; /* Slightly different background for the answer, if desired */
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    .faq-container {
        padding: 20px;
        margin-top: 15px;
    }

    .faq-header h1 {
        font-size: 2em;
    }

    .faq-header p {
        font-size: 1em;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 10px 20px 15px;
    }
}





/* Contact Page */
/* Main Container */
.contact-container {
    max-width: 1170px;
    margin: 30px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-container h2 {
    color: #45b65a;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.tab-button {
    background-color: #f0f0f0;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1.05em;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin: 0 2px;
}

.tab-button:hover {
    background-color: #e0e0e0;
    color: #45b65a;
}

.tab-button.active {
    background-color: #45b65a;
    color: #fff;
    border-bottom: 2px solid #45b65a; /* Active indicator */
    transform: translateY(2px); /* Slight lift */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* Tab Content (Forms) */
.tab-pane {
    display: none; /* Hidden by default */
    padding: 25px 0;
}

.tab-pane.active {
    display: block; /* Shown when active */
}

.tab-pane h3 {
    color: #45b65a;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8em;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Include padding in width */
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
    border-color: #45b65a;
    box-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
    outline: none;
}

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

.form-group small {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
}

/* Primary Button */
.primary-button {
    background-color: #45b65a;
    color: #fff;
    padding: 14px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: block; /* Make button full width */
    width: fit-content;
    margin: 25px auto 0 auto; /* Center the button */
}

.primary-button:hover {
    background-color: #23479b; /* Darker shade of brand color */
    transform: translateY(-2px);
}

.primary-button:active {
    transform: translateY(0);
}

/* Confirmation Message */
.confirmation-message {
    display: none; /* Hidden by default */
    padding: 40px;
    text-align: center;
    background-color: #e6f7ff; /* Light blue background */
    color: #23479b; /* Darker blue text */
    border: 1px solid #a8d5f3; /* Blue border */
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.confirmation-message h3 {
    color: #45b65a;
    margin-bottom: 15px;
    font-size: 2.2em;
}

.confirmation-message p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

#backToForms {
    margin-top: 30px;
    padding: 12px 20px;
    font-size: 1em;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2em;
    }
    .header-content p {
        font-size: 1em;
    }
    .container {
        margin: 20px;
        padding: 20px;
    }
    .tab-buttons {
        flex-wrap: wrap;
    }
    .tab-button {
        width: calc(50% - 4px); /* Two buttons per row */
        margin-bottom: 5px;
        font-size: 0.9em;
        padding: 12px 15px;
    }
    .tab-button:last-child {
        margin-right: 0;
    }
    .tab-pane h3 {
        font-size: 1.5em;
    }
    .primary-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tab-button {
        width: 100%; /* One button per row */
        margin-bottom: 8px;
        border-radius: 5px;
    }
    .tab-button.active {
        transform: none;
    }
    .tab-buttons {
        border-bottom: none;
    }
}

/* Blog Page */
.blog-header {
    padding: 40px 0;
    background-color: #f8fafc;
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-box {
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    padding: 10px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    width: 300px;
}

.search-box button {
    padding: 10px 20px;
    background-color: #45b65a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background-color: #f1f5f9;
    color: #64748b;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #45b65a;
    color: white;
}

.blog-list {
    padding: 40px 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: auto;
        width: 100%;
    }
    
    .contact-grid,
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .blog-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        justify-content: center;
    }
    
    .search-box input {
        width: 100%;
        max-width: 300px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .service-card,
    .team-member,
    .blog-card {
        margin-bottom: 1rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}
/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        transition: left 0.3s ease;
        z-index: 999;
        padding: 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Notification Styles */
.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Error Styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Scroll Header */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Cookie Consent */
.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .newsletter,
    .cta-banner,
    .mobile-menu-toggle,
    .notification {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        color: #333 !important;
    }
    
    .btn {
        border: 2px solid #333 !important;
        background: none !important;
        color: #333 !important;
    }
}

/* Full Services*/

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.services-section h3 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-card i {
    font-size: 50px;
    color: #43b65b;
    margin-bottom: 25px;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* Call to Action */
.call-to-action {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.call-to-action h3 {
    font-size: 38px;
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 20px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p, .services-section p, .call-to-action p {
        font-size: 18px;
    }

    .services-section h3, .call-to-action h3 {
        font-size: 30px;
    }

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

@media (max-width: 480px) {
    .logo h1 {
        font-size: 24px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero {
        padding: 80px 15px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .services-section h3, .call-to-action h3 {
        font-size: 24px;
    }

    .service-card h4 {
        font-size: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/*Newsletter*/
/* Main Container */
.newsletter-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Section Styling */
.newsletter-section,
.unsubscribe-section {
    margin-bottom: 2rem;
    text-align: center;
}

.newsletter-section h2 {
    color: #45b65a; /* Primary color */
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1em;
}

/* Form Card (for subscription form) */
.form-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto 1.5rem auto; /* Centered */
    text-align: left;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"] {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.form-group input[type="checkbox"] {
    margin-right: 8px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-group label {
    margin-bottom: 0; /* Override default label margin */
    font-weight: normal;
    font-size: 0.95em;
    color: #333;
}


/* Buttons */
.btn {
    background-color: #45b65a; /* Primary color */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none; /* For link-styled buttons */
    display: inline-block; /* For proper padding */
}

.btn:hover {
    background-color: #23479b; /* Darker primary color on hover */
}

.btn-secondary {
    background-color: #6c757d;
}

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

/* Unsubscribe Link */
#unsubscribeLink {
    color: #45b65a; /* Primary color */
    text-decoration: none;
    font-weight: bold;
}

#unsubscribeLink:hover {
    text-decoration: underline;
}

/* Confirmation Messages */
.confirmation-message {
    padding: 15px;
    margin-top: 1.5rem;
    border-radius: 5px;
    background-color: #e6f7ff; /* Light blue for info/success */
    color: #23479b;
    border: 1px solid #b3d9ff;
    font-weight: bold;
    text-align: center;
}

.confirmation-message.hidden {
    display: none;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-overlay.hidden {
    display: none;
}

.popup-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 90%;
    text-align: left;
    position: relative;
}

.popup-content h3 {
    color: #45b65a; /* Primary color */
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
}

.popup-content p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-content .form-group input {
    width: calc(100% - 20px);
}

.popup-content .form-actions {
    display: flex;
    justify-content: space-around; /* Distribute buttons */
    gap: 1rem; /* Space between buttons */
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .header h1 {
        font-size: 2em;
    }
    .container {
        margin: 1rem;
        padding: 1rem;
    }
    .form-card {
        padding: 1.5rem;
    }
    .popup-content {
        padding: 1.5rem;
    }
    .popup-content .form-actions {
        flex-direction: column; /* Stack buttons on small screens */
    }
    .btn {
        width: 100%; /* Make buttons full width in popup on small screens */
        margin-bottom: 0.5rem;
    }
}
/*Individual Bols*/

/* Main Blog Content */
.blog-page {
    padding: 40px 0;
}

.blog-post {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.blog-title {
    color: #45b65a; /* Specified color for the title */
    font-size: 2.8em;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.author-date {
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.blog-content h3 {
    color: #45b65a;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 1em;
    font-size: 1.1em;
}

/* Comment Section */
.comment-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comment-section h3 {
    color: #333;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

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

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

.form-group input[type="text"],
.form-group textarea {
    width: calc(100% - 20px); /* Account for padding */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    transition: border-color 0.2s ease-in-out;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    border-color: #45b65a;
    outline: none;
    box-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
}

.comment-section button {
    background-color: #45b65a;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-section button:hover {
    background-color: #23479b;
}

/* Comment Message Styling */
.alert-message {
    margin-top: 25px;
    padding: 15px;
    border-radius: 5px;
    background-color: #e6f7ff; /* Light blue background */
    color: #45b65a; /* Brand color text */
    border: 1px solid #91d5ff; /* Slightly darker blue border */
    font-weight: bold;
    text-align: center;
}

.alert-message.hidden {
    display: none;
}


