* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #15803d;
    --primary-dark: #166534;
    --primary-light: #86efac;
    --secondary: #92400e;
    --accent: #16a34a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--gray-700);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    /*max-width: 1280px;*/
    width:90%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

    .nav-container ul{
        margin-bottom:0px;
    }
    .nav-brand {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--gray-900);
    }

.nav-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s;
}

    .nav-link:hover {
        color: var(--primary);
    }

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.25rem;
}

    .menu-toggle span {
        width: 1.5rem;
        height: 0.25rem;
        background: var(--gray-700);
        transition: all 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(0.5rem, 0.5rem);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(0.5rem, -0.5rem);
    }

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 4rem;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        border-top: 1px solid var(--gray-200);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

        .nav-menu.active {
            max-height: 500px;
            padding:0px;
        }

        .nav-menu li {
            border-bottom: 1px solid var(--gray-200);
        }

    .nav-link {
        display: block;
        padding: 1rem;
    }
}

/* Hero Section */
.hero {
    margin-top: 4rem;
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #dcfce7 0%, #fef3c7 100%);
    padding: 2rem 0;
}

    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: #dcfce7;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    width: fit-content;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 15px rgba(21, 128, 61, 0.2);
}
.btn-second {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}
    .btn-second:hover {
        background: var(--white);
        color: #111827 !important;
        border: 2px solid var(--primary);
    }

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 20px 25px rgba(21, 128, 61, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .btn-secondary:hover {
        background: #f0fdf4;
        
    }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}
.our-pro {
    font-size: 3rem;
    font-weight: bold;
    color: black;
    margin-bottom: 1rem;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}
.our-service {
    font-size: 3rem;
    font-weight: bold;
    color:black;
    
    margin-bottom: 1rem;
}

.hero-image {
    position: relative;
}

    .hero-image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(134, 239, 172, 0.3) 0%, rgba(253, 230, 138, 0.3) 100%);
        border-radius: 1.5rem;
        filter: blur(3rem);
        z-index: -1;
    }

    .hero-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 1.5rem;
        box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    }

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-image img {
        height: 300px;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        font-size: 3rem;
        font-weight: bold;
        color: var(--gray-900);
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.125rem;
        color: var(--gray-600);
        max-width: 48rem;
        margin: 0 auto;
    }

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #fef3c7 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: box-shadow 0.3s;
}

    .value-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}
.btn-custom
{
    background-color:#38b667;
}
.btn-custom:hover {
    background-color: #3b8b59;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Products Section */
.categoriy {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #f9fafb 100%);
}

.categoriy-grid {
    gap: 1rem;
 
}

.categoriy-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

    .categoriy-card:hover {
        box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    }

.categoriy-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .categoriy-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.categoriy-card:hover .categoriy-image img {
    transform: scale(1.1);
}

.categoriy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

    .categoriy-overlay h3 {
        color: var(--white);
        font-size: 1.5rem;
    }

.categoriy-content {
    padding: 1.5rem;
}

    .categoriy-content p {
        color: var(--gray-600);
        margin-bottom: 1rem;
    }

.categoriy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .categoriy-tags span {
        background: #dcfce7;
        color: var(--primary);
        padding: 0.25rem 0.75rem;
        border-radius: 2rem;
        font-size: 0.85rem;
        font-weight: 500;
    }

.services-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

    .services-section h3 {
        text-align: center;
        font-size: 1.875rem;
        color: var(--gray-900);
        margin-bottom: 2rem;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.bg-infoo {
    background: linear-gradient(135deg, #f0fdf4 0%, #fef3c7 100%);
    cursor:pointer;
}

.service-box {
    text-align: center;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-box h4 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-box p {
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.875rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.info-block {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-block h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-block p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.business-hours {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

    .business-hours h4 {
        color: var(--white);
        margin-bottom: 1rem;
    }

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

    .hours-item:last-child {
        border-bottom: none;
    }

.hours-time {
    font-weight: 600;
}

.contact-form-wrapper h3 {
    font-size: 1.875rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-form {
    background: linear-gradient(135deg, #f0fdf4 0%, #fef3c7 100%);
    padding: 2rem;
    border-radius: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--gray-700);
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid var(--gray-200);
        border-radius: 0.5rem;
        font-size: 1rem;
        transition: border-color 0.3s, box-shadow 0.3s;
        font-family: inherit;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
        }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form button {
    width: 100%;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
}

    .form-message.success {
        background: #d1fae5;
        color: #065f46;
        border: 1px solid #6ee7b7;
    }

    .form-message.error {
        background: #fee2e2;
        color: #991b1b;
        border: 1px solid #fca5a5;
    }

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-form{
        padding:0px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */

.footer {
    background: linear-gradient(135deg, #26237e 0%, #07144e 100%);

    color: #ffffff;
    padding: 50px 0 20px;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: #52b788;
    }

/* Brand Section */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

    .footer-brand img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid #52b788;
    }

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b7e4c7;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Section Headers */
.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #b7e4c7;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s;
        font-size: 0.9rem;
    }

        .footer-links a:hover {
            color: #95d5b2;
        }

/* Products List */
.products-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .products-list li {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

/* Map Section */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #52b788;
    height: 200px;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0 0;
    margin-top: 40px;
    text-align: center;
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-heading {
        margin-top: 25px;
    }
}
.products-section {
    padding: 80px 0;
}

    .products-section h2 {
        color: var(--primary-color);
        font-weight: bold;
        text-align: center;
        margin-bottom: 50px;
    }

.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .product-card img {
        height: 250px;
        object-fit: cover;
        width: 100%;
    }

    .product-card .card-body {
        padding: 20px;
    }

    .product-card .card-title {
        color: var(--primary-color);
        font-weight: bold;
        font-size: 1.3rem;
    }

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color:forestgreen;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.w-10
{
    width:50px;
}
.fixed-icon
{
    width:100px;
    /*top:90%;*/
    z-index:22222;
    position:fixed;
    top:84%;
    right:10px;
    font-size:50px;
    display:flex;
    justify-content:end;
    align-items:center;
    
    /*color:green;*/
    /*background-color:green;*/
}