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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fffe;
}

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

/* Three Dots Menu */
.menu-dots {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 40px;
    height: 40px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.menu-dots div {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    margin: 1px 0;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #059669, #22c55e);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
    right: 0;
}

.side-menu-content {
    padding: 60px 20px 20px;
    height: 100%;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 15px;
    left: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1002;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    color: white;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-item .icon {
    margin-right: 15px;
    font-size: 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #059669, #22c55e);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}


.logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    margin-right: 10px;
    border-radius: 8px; /* optional, for rounded corners */
    background: white;  /* optional, for contrast */
    box-shadow: 0 2px 8px rgba(0,0,0,0.07); /* optional, for subtle shadow */
}


.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.logo-text p {
    font-size: 0.8rem;
    opacity: 0.9;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.8;
}

/* Services Dropdown */
.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.services-dropdown.show {
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.dropdown-content a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #f0fdf4;
    color: #059669;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23059669" opacity="0.05"><polygon points="1000,100 1000,0 0,100"/></svg>') no-repeat;
    background-size: cover;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #22c55e;
    color: white;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-secondary:hover {
    background: #22c55e;
    color: white;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.location-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.location-btn .icon {
    font-size: 1.1em;
}

/* Most Used Services */
.most-used-services {
    padding: 4rem 0;
    background: white;
}

.most-used-services h3 {
    text-align: center;
    font-size: 2rem;
    color: #059669;
    margin-bottom: 3rem;
}

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

.service-card {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.3);
}

.service-card h4 {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}



/* Detailed Services Section */
.services-section {
    padding: 4rem 0;
    background: white;
}

.services-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #059669;
    margin-bottom: 3rem;
}

/* Service Categories Navigation */
.service-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    border-color: #22c55e;
    background: #22c55e;
    color: white;
}

/* Service Category Containers */
.service-category {
    display: none;
}

.service-category.active {
    display: block;
}

.service-category h4 {
    font-size: 1.5rem;
    color: #059669;
    margin-bottom: 2rem;
    text-align: center;
}

/* Services List */
.services-list {
    display: grid;
    gap: 1rem;
}

.service-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.service-header h5 {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.service-code {
    background: #f0fdf4;
    color: #059669;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.service-item p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.service-meta span {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.duration {
    background: #eff6ff;
    color: #1d4ed8;
}

.type {
    background: #f0f9ff;
    color: #0284c7;
}

.category {
    background: #f5f5f5;
    color: #525252;
}

.price {
    background: #fef3c7;
    color: #d97706;
    font-weight: 600;
}

.apply-btn {
    background: #22c55e;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-left: auto;
}

.apply-btn:hover {
    background: #16a34a;
}

/* Featured Blog Section */
.featured-blog {
    padding: 4rem 0;
    background: #f8fffe;
}

.featured-blog .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-blog h3 {
    font-size: 2rem;
    color: #059669;
    margin-bottom: 1rem;
}

.featured-blog p {
    color: #666;
    margin-bottom: 2rem;
}

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

.featured-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
}

.featured-post-image {
    height: 150px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.featured-post-content {
    padding: 1.5rem;
}

.featured-post-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.featured-post-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.featured-post-meta {
    font-size: 0.8rem;
    color: #999;
}

/* Banner Carousel Section */
.banner-carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s ease-in-out;
    will-change: opacity;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(34, 197, 94, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-content {
    color: white;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.banner-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner-content p {
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.banner-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.indicator.active {
    background: #22c55e;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Banner Container Wrapper */
.featured-blog {
    padding: 4rem 0;
    background: #f8fffe;
}

.banner-section {
    padding: 2rem 0;
    background: #f8fffe;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-carousel {
        height: 350px;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .banner-content {
        padding: 0 1rem;
    }
    
    .banner-content h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .banner-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
        border-width: 1px;
    }
}

@media (max-width: 480px) {
    .banner-carousel {
        height: 300px;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .banner-overlay {
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(34, 197, 94, 0.1));
    }
    
    .banner-content h3 {
        font-size: 1.5rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    }
    
    .banner-content p {
        font-size: 0.9rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        opacity: 1;
    }
    
    .banner-content {
        padding: 0 0.5rem;
    }
    
    .banner-indicators {
        gap: 8px;
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    background: #f9fafb;
}

.partners h3 {
    text-align: center;
    font-size: 2rem;
    color: #059669;
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.partner-logo {
    background: white;
    padding: 18px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    min-width: 90px;
}

.partner-logo img {
    max-width: 100px;
    max-height: 120px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    display: block;
}


.partner-logo:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .header {
        padding: 0.8rem 0;
    }
    
    .logo-icon {
        font-size: 1.6rem;
        margin-right: 8px;
    }
    
    .logo-img {
        height: 32px;
        width: 32px;
        margin-right: 8px;
    }
    .logo-text h1 {
        font-size: 1.2rem;
    }
    .logo-text p {
        font-size: 0.95rem;
    }



    
    .nav {
        display: none;
    }
    
    .hero {
        padding: 2.5rem 0 2rem 0;
    }
    
    .hero-content h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        flex: 1;
        max-width: 120px;
        white-space: nowrap;
    }
    
    .location-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 0 1rem;
    }
    
    .most-used-services {
        padding: 3rem 0;
    }
    
    .most-used-services h3 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 12px 8px;
        min-height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
    }
    
    .service-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .service-card h4 {
        font-size: 0.75rem;
        line-height: 1.2;
        margin: 0;
        font-weight: 600;
    }
    
    .service-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .service-header h5 {
        font-size: 1rem;
    }
    
    .service-meta {
        gap: 8px;
    }

.partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .partner-logo {
        padding: 40px 12px;
        min-height: 180px;
        min-width: 120px;
    }
    .partner-logo img {
        max-width: 70%;
        max-height: 70%;
        width: 70%;
        height: auto;
        min-width: 80px;
        min-height: 80px;
    }



    
    .mailing-form {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .footer-logo {
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .logo-text {
        padding: 18px 30px;
        border-radius: 18px;
        margin: 0 auto;
    }
    
    .footer-logo h4 {
        font-size: 1.5rem;
    }
    
    .footer-logo p {
        font-size: 1rem;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-social {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        padding: 15px;
    }


    .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
    
 .modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
    
    .featured-posts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .featured-post-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 1.8rem 0 1.5rem 0;
    }
    
    .hero-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
        padding: 0 0.5rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        gap: 0.4rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 90px;
    }
    
    .location-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin: 0 0.5rem;
    }
    
    .most-used-services {
        padding: 2rem 0 3rem 0;
    }
    
    .most-used-services h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .partners,
    .mailing-list,
    .contact-form {
        padding: 2rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 5px;
    }
    
    .service-card {
        padding: 10px 6px;
        min-height: 90px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(34, 197, 94, 0.2);
    }
    
    .service-icon {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .service-card h4 {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .service-categories {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
.partner-logo {
    font-size: 1.4rem;
    font-weight: 600;
    min-height: 200px;
    padding: 50px 15px;
}
    .partner-logo img {
        max-width: 70%;
        max-height: 70%;
        width: 70%;
        height: auto;
        min-width: 110px;
        min-height: 110px;
    }

    .logo-img {
        height: 28px;
        width: 28px;
        margin-right: 6px;
    }
    .logo-text h1 {
        font-size: 1.1rem;
        /* Optional: */
        text-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }
    .logo-text p {
        font-size: 0.7rem;
        /* Optional: */
        text-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }
    
    .footer-content {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .logo-text {
        padding: 20px 35px;
        border-radius: 20px;
        margin: 0 auto;
        max-width: fit-content;
    }
    
    .footer-logo h4 {
        font-size: 1.8rem;
        font-weight: 700;
    }
    
    .footer-logo p {
        font-size: 1.1rem;
        opacity: 1;
    }
    
    .footer-info {
        align-items: center;
        width: 100%;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        font-size: 0.85rem;
        margin: 6px 0;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #22c55e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: #dcfce7;
    color: #15803d;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    border-left: 4px solid #22c55e;
}

/* Error Message */
.error-message {
    background: #fef2f2;
    color: #dc2626;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    border-left: 4px solid #ef4444;
}

/* Blog Section - Full Screen Layout */
.blog-section {
    padding: 2rem 0;
    background: white;
    width: 100%;
}

.blog-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #059669;
    margin-bottom: 2rem;
}

.blog-posts {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.blog-post {
    background: white;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0 0 3rem 0;
    width: 100%;
    box-shadow: none;
    transition: none;
}

.blog-post:hover {
    border-color: transparent;
    box-shadow: none;
}

.blog-post h4 {
    color: #059669;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    width: 100%;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
}

.blog-content {
    line-height: 1.8;
    color: #333;
    width: 100%;
    font-size: 1.1rem;
}

.blog-content * {
    color: inherit !important;
}

.blog-content h1,
.blog-content h2, 
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #059669 !important;
}

.blog-content p,
.blog-content div,
.blog-content span,
.blog-content li {
    color: #333 !important;
}

.blog-content p {
    margin-bottom: 1.5rem;
    width: 100%;
}

.blog-images {
    margin: 1.5rem 0;
    width: 100%;
}

.blog-images img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    margin: 0.5rem 0;
    width: 100%;
}

/* Mobile Blog Layout - Full Screen Articles */
@media (max-width: 768px) {
    .blog-section {
        padding: 1rem 0;
    }
    
    .blog-section .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .blog-posts {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .blog-post {
        max-width: 100% !important;
        margin: 0 0 2rem 0 !important;
        padding: 1rem !important;
        width: 100% !important;
        box-sizing: border-box;
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: white;
    }
    
    .blog-post h4 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .blog-meta {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }
    
    .blog-content {
        font-size: 1rem;
        line-height: 1.6;
        width: 100%;
    }
    
    .blog-content p {
        margin-bottom: 1rem;
    }
    
    .blog-images img {
        margin: 1rem 0;
        border-radius: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 0.5rem 0;
    }
    
    .blog-post {
        padding: 0.8rem !important;
        margin: 0 0 1.5rem 0 !important;
    }
    
    .blog-post h4 {
        font-size: 1.3rem;
    }
    
    .blog-content {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .blog-meta {
        font-size: 0.8rem;
    }
}

/* Enhanced Blog Styles */
.blog-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h3 {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}

.blog-preview-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    color: #059669;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.blog-author, .blog-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    background: linear-gradient(135deg, #059669, #22c55e);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Single Blog Post Styles */
.single-blog-post {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.full-blog-post {
    background: white;
    border-radius: 16px;
    padding: 1em;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    width: 100%;
    box-sizing: border-box;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f3f4f6;
}

.blog-post-title {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
    color: #6b7280;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.blog-post-content * {
    color: inherit !important;
}

.blog-post-content h1,
.blog-post-content h2, 
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    color: #059669 !important;
}

.blog-post-content p,
.blog-post-content div,
.blog-post-content span,
.blog-post-content li {
    color: #374151 !important;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3 {
    color: #059669;
    margin: 2rem 0 1rem 0;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f3f4f6;
    text-align: center;
}

.blog-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Loading and Error States */
.loading-animation {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
    font-size: 1.1rem;
}

.loading-animation::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #22c55e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header {
        padding: 0.8rem 0;
    }

    .logo-icon {
        font-size: 1.6rem;
        margin-right: 8px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .logo-text p {
        font-size: 0.75rem;
    }

    .partner-logo {
        font-size: 1.1rem;
        font-weight: 600;
    }


}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 1.8rem 0 1.5rem 0;
    }
    
    .hero-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
        padding: 0 0.5rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        gap: 0.4rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 90px;
    }
    
    .location-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin: 0 0.5rem;
    }
    
    .most-used-services {
        padding: 2rem 0 3rem 0;
    }
    
    .most-used-services h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .partners,
    .mailing-list,
    .contact-form {
        padding: 2rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 5px;
    }
    
    .service-card {
        padding: 10px 6px;
        min-height: 90px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(34, 197, 94, 0.2);
    }
    
    .service-icon {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .service-card h4 {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .service-categories {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
.partner-logo {
        padding: 8px;
        min-height: 40px;
    }
    .partner-logo img {
        max-width: 50px;
        max-height: 24px;
    }

    .logo-img {
        height: 28px;
        width: 28px;
        margin-right: 6px;
    }
    .logo-text h1 {
        font-size: 1.1rem;
        /* Optional: */
        text-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }
    .logo-text p {
        font-size: 0.7rem;
        /* Optional: */
        text-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }

    .partner-logo {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    /* Blog Section Optimizations for Smallest Devices */
    .blog-section {
        padding: 1.5rem 0;
    }
    
    .blog-header h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .blog-header p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Remove all container constraints for blog section */
    .blog-section .container {
        max-width: 100% !important;
        padding: 0 0.5rem !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .blog-card {
        margin: 0;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        max-width: 100%;
    }
    
    .blog-preview-image {
        height: 180px;
        width: 100%;
    }
    
    .blog-card-content {
        padding: 1rem;
        width: 100%;
    }
    
    .blog-card-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .blog-card-meta {
        gap: 0.8rem;
        font-size: 0.85rem;
    }
    
    .blog-excerpt {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .read-more-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Single Blog Post Full Width */
    .single-blog-post {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .full-blog-post {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        border: none;
        max-width: 100% !important;
    }
    
    .blog-post-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .blog-post-content {
        font-size: 1rem;
        line-height: 1.6;
        width: 100%;
    }
    
    .blog-post-content img {
        margin: 1.5rem 0;
        border-radius: 8px;
        width: 100%;
    }
    
    .blog-actions {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .blog-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Blog Posts Container */
    .blog-posts {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .blog-post {
        max-width: 100% !important;
        margin: 0 0 1.5rem 0 !important;
        padding: 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box;
        border-radius: 0;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #22c55e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: #dcfce7;
    color: #15803d;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    border-left: 4px solid #22c55e;
}

/* Error Message */
.error-message {
    background: #fef2f2;
    color: #dc2626;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    border-left: 4px solid #ef4444;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: white;
}

.blog-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #059669;
    margin-bottom: 3rem;
}

.blog-posts {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.blog-post:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
}

.blog-post h4 {
    color: #059669;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.blog-content {
    line-height: 1.8;
    color: #333;
}

.blog-content * {
    color: inherit !important;
}

.blog-content h1,
.blog-content h2, 
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #059669 !important;
}

.blog-content p,
.blog-content div,
.blog-content span,
.blog-content li {
    color: #333 !important;
}

.blog-content p {
    margin-bottom: 1rem;
}

.blog-images {
    margin: 1rem 0;
}

.blog-images img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0.5rem 0;
}

/* Enhanced Blog Styles */
.blog-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h3 {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}

.blog-preview-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    color: #059669;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.blog-author, .blog-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    background: linear-gradient(135deg, #059669, #22c55e);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Single Blog Post Styles */
.single-blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.full-blog-post {
    background: white;
    border-radius: 16px;
    padding: 1em;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f3f4f6;
}

.blog-post-title {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
    color: #6b7280;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

/* Mobile Responsive Blog Post Styles - No Padding/Margin */
@media (max-width: 768px) {
    .full-blog-post {
        padding: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
    
    .blog-post-header {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .blog-post-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.25rem;
        font-size: 0.8rem;
    }
    
    .blog-post-content {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 1rem;
    }
    
    .blog-post-footer {
        margin-top: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .full-blog-post {
        padding: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
    
    .blog-post-header {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .blog-post-title {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.2rem;
        font-size: 0.7rem;
    }
    
    .blog-post-content {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .blog-post-footer {
        margin-top: 0.5rem;
        padding: 0.5rem;
    }
}

.blog-post-content * {
    color: inherit !important;
}

.blog-post-content h1,
.blog-post-content h2, 
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    color: #059669 !important;
}

.blog-post-content p,
.blog-post-content div,
.blog-post-content span,
.blog-post-content li {
    color: #374151 !important;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3 {
    color: #059669;
    margin: 2rem 0 1rem 0;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f3f4f6;
    text-align: center;
}

.blog-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Loading and Error States */
.loading-animation {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
    font-size: 1.1rem;
}

.loading-animation::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #22c55e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-section {
        padding: 1rem 0;
    }
    
    .blog-header h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .blog-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .blog-card {
        margin: 0;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        max-width: 100%;
    }
    
    .blog-preview-image {
        height: 180px;
        width: 100%;
    }
    
    .blog-card-content {
        padding: 1rem;
        width: 100%;
    }
    
    .blog-card-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .blog-card-meta {
        gap: 0.8rem;
        font-size: 0.85rem;
    }
    
    .blog-excerpt {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .read-more-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Single Blog Post Full Width */
    .single-blog-post {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .full-blog-post {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        border: none;
        max-width: 100% !important;
    }
    
    .blog-post-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .blog-post-content {
        font-size: 1rem;
        line-height: 1.6;
        width: 100%;
    }
    
    .blog-post-content img {
        margin: 1.5rem 0;
        border-radius: 8px;
        width: 100%;
    }
    
    .blog-actions {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .blog-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Blog Posts Container */
    .blog-posts {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .blog-post {
        max-width: 100% !important;
        margin: 0 0 1.5rem 0 !important;
        padding: 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 1.8rem 0 1.5rem 0;
    }
    
    .hero-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
        padding: 0 0.5rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        gap: 0.4rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 90px;
    }
    
    .location-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin: 0 0.5rem;
    }
    
    .most-used-services {
        padding: 2rem 0 3rem 0;
    }
    
    .most-used-services h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .partners,
    .mailing-list,
    .contact-form {
        padding: 2rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 5px;
    }
    
    .service-card {
        padding: 10px 6px;
        min-height: 90px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(34, 197, 94, 0.2);
    }
    
    .service-icon {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .service-card h4 {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .service-categories {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
.partner-logo {
        padding: 8px;
        min-height: 40px;
    }
    .partner-logo img {
        max-width: 50px;
        max-height: 24px;
    }

    .logo-img {
        height: 28px;
        width: 28px;
        margin-right: 6px;
    }
    .logo-text h1 {
        font-size: 1.1rem;
        /* Optional: */
        text-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }
    .logo-text p {
        font-size: 0.7rem;
        /* Optional: */
        text-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }

    .partner-logo {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    /* Mobile blog post padding optimization */
    .full-blog-post {
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: 8px;
    }
    
    .blog-post-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .blog-post-content {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .blog-post-meta {
        font-size: 0.8rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #22c55e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: #dcfce7;
    color: #15803d;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    border-left: 4px solid #22c55e;
}

/* Error Message */
.error-message {
    background: #fef2f2;
    color: #dc2626;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    border-left: 4px solid #ef4444;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: white;
}

.blog-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #059669;
    margin-bottom: 3rem;
}

.blog-posts {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.blog-post:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
}

.blog-post h4 {
    color: #059669;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.blog-content {
    line-height: 1.8;
    color: #333;
}

.blog-content * {
    color: inherit !important;
}

.blog-content h1,
.blog-content h2, 
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #059669 !important;
}

.blog-content p,
.blog-content div,
.blog-content span,
.blog-content li {
    color: #333 !important;
}

.blog-content p {
    margin-bottom: 1rem;
}

.blog-images {
    margin: 1rem 0;
}

.blog-images img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0.5rem 0;
}

/* Enhanced Blog Styles */
.blog-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h3 {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}

.blog-preview-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    color: #059669;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.blog-author, .blog-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    background: linear-gradient(135deg, #059669, #22c55e);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Single Blog Post Styles */
.single-blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.full-blog-post {
    background: white;
    border-radius: 16px;
    padding: 1em;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f3f4f6;
}

.blog-post-title {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
    color: #6b7280;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.blog-post-content * {
    color: inherit !important;
}

.blog-post-content h1,
.blog-post-content h2, 
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    color: #059669 !important;
}

.blog-post-content p,
.blog-post-content div,
.blog-post-content span,
.blog-post-content li {
    color: #374151 !important;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3 {
    color: #059669;
    margin: 2rem 0 1rem 0;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f3f4f6;
    text-align: center;
}

.blog-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Loading and Error States */
.loading-animation {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
    font-size: 1.1rem;
}

.loading-animation::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #22c55e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-section {
        padding: 2rem 0;
    }
    
    .blog-header h3 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card-content {
        padding: 1rem;
    }
    
    .full-blog-post {
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: 12px;
    }
    
    .blog-post-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .blog-actions {
        flex-direction: column;
    }

    .logo-icon {
        font-size: 1.6rem;
        margin-right: 8px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .logo-text p {
        font-size: 0.75rem;
    }

    .partner-logo {
        font-size: 1.1rem;
        font-weight: 600;
    }


}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 1.8rem 0 1.5rem 0;
    }
    
    .hero-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
        padding: 0 0.5rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        gap: 0.4rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 90px;
    }
    
    .location-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin: 0 0.5rem;
    }
    
    .most-used-services {
        padding: 2rem 0 3rem 0;
    }
    
    .most-used-services h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .partners,
    .mailing-list,
    .contact-form {
        padding: 2rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 5px;
    }
    
    .service-card {
        padding: 10px 6px;
        min-height: 90px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(34, 197, 94, 0.2);
    }
    
    .service-icon {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .service-card h4 {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .service-categories {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
.partner-logo {
        padding: 8px;
        min-height: 40px;
    }
    .partner-logo img {
        max-width: 50px;
        max-height: 24px;
    }

    .logo-img {
        height: 28px;
        width: 28px;
        margin-right: 6px;
    }
    .logo-text h1 {
        font-size: 1.1rem;
        /* Optional: */
        text-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }
    .logo-text p {
        font-size: 0.7rem;
        /* Optional: */
        text-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }

    .partner-logo {
        font-size: 1.2rem;
        font-weight: 700;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #22c55e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: #dcfce7;
    color: #15803d;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    border-left: 4px solid #22c55e;
}

/* Error Message */
.error-message {
    background: #fef2f2;
    color: #dc2626;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    border-left: 4px solid #ef4444;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: white;
}

.blog-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #059669;
    margin-bottom: 3rem;
}

.blog-posts {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.blog-post:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
}

.blog-post h4 {
    color: #059669;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.blog-content {
    line-height: 1.8;
    color: #333;
}

.blog-content * {
    color: inherit !important;
}

.blog-content h1,
.blog-content h2, 
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #059669 !important;
}

.blog-content p,
.blog-content div,
.blog-content span,
.blog-content li {
    color: #333 !important;
}

.blog-content p {
    margin-bottom: 1rem;
}

.blog-images {
    margin: 1rem 0;
}

.blog-images img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0.5rem 0;
}

/* Enhanced Blog Styles */
.blog-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h3 {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}

.blog-preview-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    color: #059669;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.blog-author, .blog-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    background: linear-gradient(135deg, #059669, #22c55e);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Single Blog Post Styles */
.single-blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.full-blog-post {
    background: white;
    border-radius: 16px;
    padding: 1em;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}


.blog-post-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

/* Contact Form */
.contact-form {
    padding: 4rem 0;
    background: white;
}

.contact-form h3 {
    text-align: center;
    font-size: 2rem;
    color: #059669;
    margin-bottom: 3rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
}

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

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #16a34a;
}

/* Mobile Contact Form Styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 3rem 0;
    }
    
    .contact-form h3 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 2rem 0;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-container {
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: 8px;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
        border-radius: 6px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
    
    .submit-btn {
        padding: 12px;
        border-radius: 6px;
    }
}

/* Mailing List */
.mailing-list {
    padding: 4rem 0;
    background: linear-gradient(135deg, #059669, #22c55e);
    color: white;
    text-align: center;
}

.mailing-list h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mailing-list p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.mailing-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.mailing-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.mailing-form button {
    padding: 12px 24px;
    background: white;
    color: #22c55e;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mailing-form button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.logo-text {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(5, 150, 105, 0.15));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 15px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.footer-logo h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #d1d5db;
    font-size: 0.9rem;
    margin: 0;
}

.footer-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-contact {
    flex: 1;
}

.footer-contact p {
    color: #d1d5db;
    margin: 8px 0;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 25px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin: 0 auto;
    width: fit-content;
}

.social-icon {
    color: #22c55e;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.social-icon:hover {
    color: white;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 2001;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 2002;
}

.close:hover,
.close:focus {
    color: #22c55e;
}

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

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* About Us Section */
.about-us {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #059669, #22c55e);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0;
}

.about-us-detailed {
    padding: 4rem 0;
    background: white;
}

.about-us-detailed .about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-detailed .about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.about-us-detailed .about-text h2 {
    font-size: 2.2rem;
    color: #059669;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-us-detailed .about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.about-us-detailed .owner-highlight {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid #22c55e;
}

.about-us-detailed .owner-info h3 {
    font-size: 1.8rem;
    color: #059669;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-us-detailed .owner-title {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-us-detailed .owner-quote {
    font-style: italic;
    color: #374151;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid #22c55e;
}

.about-us-detailed .about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.about-us-detailed .feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.about-us-detailed .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}

.about-us-detailed .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-us-detailed .feature-card h4 {
    font-size: 1.3rem;
    color: #059669;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-us-detailed .feature-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Technology Partnership Section for About Page */
.about-us-detailed .tech-partnership {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-top: 3rem;
}

.about-us-detailed .partnership-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-us-detailed .partnership-header h2 {
    font-size: 2.2rem;
    color: #059669;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-us-detailed .partnership-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.about-us-detailed .labinitial-info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.about-us-detailed .labinitial-logo {
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #bbf7d0;
}

.about-us-detailed .tech-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about-us-detailed .labinitial-logo h3 {
    font-size: 2rem;
    color: #059669;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-us-detailed .tech-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.about-us-detailed .labinitial-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.about-us-detailed .labinitial-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.about-us-detailed .tech-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #374151;
}

.about-us-detailed .feature-badge {
    font-size: 1.2rem;
}

.about-us-detailed .seo-text {
    background: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: #0369a1;
    font-size: 1rem;
    line-height: 1.6;
    margin: 2rem 0;
}

.about-us-detailed .visit-labinitial {
    text-align: center;
    margin-top: 2rem;
}

/* Mobile Responsive About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .about-us-detailed {
        padding: 3rem 0;
    }
    
    .about-us-detailed .about-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .about-us-detailed .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-us-detailed .owner-highlight {
        padding: 1.5rem;
    }
    
    .about-us-detailed .owner-info h3 {
        font-size: 1.5rem;
    }
    
    .about-us-detailed .about-features {
        gap: 1rem;
    }
    
    .about-us-detailed .feature-card {
        padding: 1.25rem;
    }
    
    .about-us-detailed .tech-partnership {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .about-us-detailed .partnership-header h2 {
        font-size: 1.8rem;
    }
    
    .about-us-detailed .labinitial-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-us-detailed .labinitial-logo {
        padding: 1.5rem;
    }
    
    .about-us-detailed .tech-icon {
        font-size: 3rem;
    }
    
    .about-us-detailed .labinitial-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .about-us-detailed .labinitial-details p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 2rem 0;
    }
    
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .about-us-detailed {
        padding: 2rem 0;
    }
    
    .about-us-detailed .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-us-detailed .about-text p {
        font-size: 1rem;
    }
    
    .about-us-detailed .owner-highlight {
        padding: 1.25rem;
    }
    
    .about-us-detailed .owner-info h3 {
        font-size: 1.3rem;
    }
    
    .about-us-detailed .owner-quote {
        font-size: 1rem;
        padding-left: 0.75rem;
    }
    
    .about-us-detailed .tech-partnership {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .about-us-detailed .partnership-header h2 {
        font-size: 1.5rem;
    }
    
    .about-us-detailed .labinitial-logo {
        padding: 1.25rem;
    }
    
    .about-us-detailed .tech-icon {
        font-size: 2.5rem;
    }
    
    .about-us-detailed .labinitial-logo h3 {
        font-size: 1.5rem;
    }
    
    .about-us-detailed .seo-text {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h3 {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.about-text h4 {
    font-size: 1.8rem;
    color: #059669;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.owner-highlight {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid #22c55e;
}

.owner-info h5 {
    font-size: 1.5rem;
    color: #059669;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.owner-title {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.owner-quote {
    font-style: italic;
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid #22c55e;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-size: 1.2rem;
    color: #059669;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Technology Partnership Section */
.tech-partnership {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.partnership-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partnership-header h4 {
    font-size: 2rem;
    color: #059669;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.partnership-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.labinitial-info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.labinitial-logo {
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #bbf7d0;
}

.tech-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.labinitial-logo h5 {
    font-size: 1.8rem;
    color: #059669;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tech-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.labinitial-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.labinitial-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #374151;
}

.feature-badge {
    font-size: 1.2rem;
}

.seo-text {
    background: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: #0369a1;
    font-size: 1rem;
    line-height: 1.6;
    margin: 2rem 0;
}

.visit-labinitial {
    text-align: center;
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    color: #059669;
    border: 2px solid #059669;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #059669;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.external-icon {
    font-size: 0.9rem;
}

/* Mobile Responsive About Us */
@media (max-width: 768px) {
    .about-us {
        padding: 3rem 0;
    }
    
    .about-header h3 {
        font-size: 2rem;
    }
    
    .about-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .about-text h4 {
        font-size: 1.5rem;
    }
    
    .owner-highlight {
        padding: 1.5rem;
    }
    
    .owner-info h5 {
        font-size: 1.3rem;
    }
    
    .about-features {
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .tech-partnership {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .partnership-header h4 {
        font-size: 1.5rem;
    }
    
    .labinitial-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .labinitial-logo {
        padding: 1.5rem;
    }
    
    .tech-icon {
        font-size: 3rem;
    }
    
    .labinitial-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .labinitial-details p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 2rem 0;
    }
    
    .about-header h3 {
        font-size: 1.8rem;
    }
    
    .about-header p {
        font-size: 1rem;
    }
    
    .about-text h4 {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .owner-highlight {
        padding: 1.25rem;
    }
    
    .owner-info h5 {
        font-size: 1.2rem;
    }
    
    .owner-quote {
        font-size: 1rem;
        padding-left: 0.75rem;
    }
    
    .tech-partnership {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .partnership-header h4 {
        font-size: 1.3rem;
    }
    
    .labinitial-logo {
        padding: 1.25rem;
    }
    
    .tech-icon {
        font-size: 2.5rem;
    }
    
    .labinitial-logo h5 {
        font-size: 1.5rem;
    }
    
    .seo-text {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
