/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow: auto;
}

body {
    overflow-x: hidden;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #00A693;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header.light h2 {
    color: #fff;
}

.underline {
    height: 3px;
    width: 70px;
    background: #439d43;
    margin: 0 auto;
    position: relative;
}

.underline:after {
    content: '';
    position: absolute;
    height: 3px;
    width: 35px;
    background: #ffc107;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

section {
    padding: 80px 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: translateX(0);
        opacity: 0.7;
    }

    50% {
        transform: translateX(650px);
        opacity: 1;
    }

    100% {
        transform: translateX(650px);
        opacity: 0;
    }
}



@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

/* Alert Bar */

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}

.alert-bar {
    background-color: #00A693;
    color: white;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.alert-bar p {
    display: inline-block;
    animation: marquee 30s linear infinite;
    padding-left: 30%;
}

.alert-bar i {
    margin-right: 10px;
}

.itr-filling-date {
    color: #ffc107;
    font-weight: bold;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    cursor: pointer;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.logo span {
    color: #00A693;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    width: 700px;
}

.nav-links li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00A693;
    transition: width 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #00A693;
}

.nav-links li a:hover:after,
.nav-links li a.active:after {
    width: 100%;
}

.contact-number {
    font-weight: bold;
    font-size: 16px;
}

.contact-number a {
    text-decoration: none;
}

.contact-number a i {
    margin-right: 6px;
}

.contact-btn {
    background: #00A693;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(30, 115, 190, 0.2);
}

.contact-btn:hover {
    background: #00A693;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(30, 115, 190, 0.3);
}

.contact-btn:after {
    display: none;
}



.burger {
    display: none;
    cursor: pointer;
}

.vertical-dots {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.vertical-dots span {
    width: 4px;
    height: 4px;
    background-color: black;
    border-radius: 50%;
}

.vertical-dots:focus {
    outline: none;
}

/* Banner Section */
.banner {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(242, 252, 226, 0.9) 100%), url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 160px 0px 60px 0px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

.banner-text {
    flex: 1;
    padding-right: 50px;
}

.banner-text h2 {
    font-size: 44px;
    font-weight: 700;
    color: #00A693;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
}

.pointer {
    font-size: 44px;
    color: #00A693;
    margin-top: 20px;
    animation: pulse 10s ease-in-out 1 forwards;
}

.consultation-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff4d4d, #d60000);
    color: white;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 0 0 0 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.form-container {
    position: relative;
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 450px;
}

.form-container h3 {
    font-size: 24px;
    color: #00A693;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #00A693;
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #00A693;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #00A693;
}



/* What We Do Section */
.what-we-do {
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 36px;
    color: #00A693;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
}

/* Our Services Section */
.our-services {
    background: #00A693;
    color: white;
}

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
    width: calc(25% - 30px);
    min-width: 250px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .service-icon {
    font-size: 36px;
    color: #ffc107;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-service {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ffc107;
    color: #333;
    border-radius: 50px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    justify-content: center;
    align-self: center;
    width: 200px;
}

.btn-service:hover {
    background-color: #ffca2c;
    transform: scale(1.05);
}

/* Pricing Section */
.pricing {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.pricing-tabs {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tab-header {
    display: flex;
    overflow-x: auto;
    background-color: #f1f1f1;
}

.tab-btn {
    padding: 15px 20px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.tab-btn.active {
    background-color: #00A693;
    color: white;
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.tab-pane h3 {
    font-size: 24px;
    color: #00A693;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.tab-pane h3 span {
    font-size: 18px;
    color: #00A693;
    padding: 5px 10px;
    background-color: rgba(26, 93, 26, 0.1);
    border-radius: 5px;
    margin-left: 2px;
}

.price-list {
    margin-bottom: 30px;
}

.price-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 600;
    color: #00A693;
}

.price-note {
    margin-bottom: 20px;
    color: #666;
}

.btn-request {
    display: inline-block;
    padding: 12px 25px;
    background-color: #00A693;
    color: white;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-request:hover {
    background-color: #00A693;
}

.mt-4 {
    margin-top: 20px;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #00A693;
    color: white;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 40px;
    color: #ffc107;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.9);
}

/* Benefits Section */
.benefits {
    background-color: #f9f9f9;
}

.benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 30px;
    color: #00A693;
    background-color: rgba(26, 93, 26, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 20px;
    color: #00A693;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #666;
}

/* Testimonials Section */
.testimonials {
    background: #00A693;
    color: white;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    height: auto;
    min-height: 300px;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 20px;
    transition: transform 0.5s ease;
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.quote-icon {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.client-info {
    margin-bottom: 15px;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.client-info p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

.rating {
    color: #ffc107;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.prev-btn,
.next-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A693;
    margin: 0 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 999;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: #f5f5f5;
    transform: scale(1.1);
}

/* FAQ Section */
.faq {
    background-color: #f5f5f5;
    padding-left: 20px;
    padding-right: 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.faq-toggle {
    color: #00A693;
    font-size: 16px;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: #666;
}

/* ======= Contact ======= */
.contact {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    gap: 50px;
    margin:0 auto;
    max-width: 1200px;
    padding: 0px 20px;
}

.contact-info,
.contact-form {
    flex: 1;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00A693;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fff;
    font-size: 20px;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color-dark);
}

.contact-text p {
    color: var(--text-color-light);
    line-height: 1.6;
}

.contact-social {
    margin-top: 30px;
}

.contact-social h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--animation-timing);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form form {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--animation-timing);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #222;
    color: white;
    padding-top: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #00A693;
}

.footer-col p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color:#00A693;
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: #00A693;
    transform: translateY(-5px);
    color: #fff;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #00A693;
}

.footer-links li,
.contact-info li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: baseline;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    margin-right: 10px;
    color: #00A693;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Back to Top Button & WhatsApp Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #00A693;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #00A693;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.success-message.visible {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background-color: white;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 0.5s;
}

.success-content i {
    font-size: 60px;
    color: #00A693;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.success-content p {
    color: #666;
    margin-bottom: 20px;
}

.success-content button {
    padding: 10px 25px;
    background-color: #00A693;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.success-content button:hover {
    background-color: #00A693;
}

/* Responsive Styles */

@media screen and (max-width: 1200px) {
    @keyframes pulse {
        0% {
            transform: translateX(0);
            opacity: 0.7;
        }

        50% {
            transform: translateX(500px);
            opacity: 1;
        }

        100% {
            transform: translateX(500px);
            opacity: 0;
        }
    }
}

@media screen and (max-width: 1200px) {
    @keyframes pulse {
        0% {
            transform: translateX(0);
            opacity: 0.7;
        }

        50% {
            transform: translateX(400px);
            opacity: 1;
        }

        100% {
            transform: translateX(400px);
            opacity: 0;
        }
    }
}

@media screen and (max-width: 1024px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .pointer {
        display: none;
    }


    .service-card {
        width: calc(50% - 30px);
    }

    .nav-links {
        width: 600px;
    }

    .contact-container {
        flex-direction: column;
        /* text-align: center; */
        align-items: center;
        /* justify-content: center; */
    }

    .social-icons{
        justify-content:center;
    }

    .contact-social h3{
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    body.nav-open {
        overflow: hidden;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 80px;
        height: calc(100vh - 80px);
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 40px 0;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 20px 0;
    }

    .burger {
        display: block;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .service-card {
        width: 100%;
        min-width: 100%;
    }

    .feature-box {
        padding: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 10px;
    }

    .footer-bottom-links a {
        margin: 5px;
    }
}

@media screen and (max-width: 576px) {
    .contact-btn {
        font-size: 12px;
    }

    .logo h1 {
        font-size: 25px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .banner-text h2 {
        font-size: 32px;
    }

    .nav-links {
        width: 70%;
    }

    .tab-pane h3 {
        font-size: 20px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .benefit-item {
        flex-direction: column;
    }

    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .tab-header {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1 0 50%;
        text-align: center;
    }
}

@media screen and (max-width:320px) {
    .contact-btn {
        font-size: 9px;
    }
}

@media screen and (max-width:300px) {
    .contact-btn {
        font-size: 8px;
    }
}