* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

body {
    background-color: #ffffff;
    color: #2e3e2e;
    line-height: 1.5;
}

/* container & spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* header / navigation */
.navbar {
    background: linear-gradient(to top, #103b12, #3b9640);
    /* deep green */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px;
    /* reduced height */
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 24px;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
}

.nav-logo {
    height: 120px;
    width: auto;
    max-width: 240px;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    /* soft green */
    font-weight: 300;
    font-size: 1.1rem;
    transition: 0.2s;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    border-bottom-color: #81c784;
    color: #e8f5e9;
}

.nav-links a.active {
    border-bottom-color: #81c784;
    color: #e8f5e9;
}

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(to top, #103b12, #3b9640);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.dropdown-menu a:hover {
    background-color: rgba(129, 199, 132, 0.2);
}

/* mobile menu button (hidden on desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #81c784;
    color: #81c784;
    font-size: 1.8rem;
    padding: 4px 14px;
    border-radius: 8px;
    cursor: pointer;
}

/* hero section with background image */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* prevent white edges during slide change */
}

/* ----- SLIDER CONTAINER (background layer) ----- */
.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* behind hero content */
}

.slider-bg .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    /* hidden by default */
    transition: opacity 1.2s ease-in-out;
    /* smooth crossfade */
    will-change: opacity;
}

.slider-bg .slide.active {
    opacity: 1;
    /* visible slide */
    z-index: 1;
}

/* soft overlay to improve text readability */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* dark transparent overlay */
    z-index: 1;
    pointer-events: none;
    /* allows clicks to pass through */
}

.animate-entry {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
}

.animate-entry.reveal {
    animation: entryFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes entryFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ----- HERO CONTENT (above background + overlay) ----- */
.hero-content {
    position: relative;
    z-index: 10;
    /* on top of overlay & slider */
    max-width: 900px;
    padding: 1.5rem 2rem;
    background: rgba(10, 20, 30, 0.3);
    /* subtle extra depth */
    backdrop-filter: blur(2px);
    /* soft blur effect */
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 1rem;
    animation: floatGlow 3s infinite alternate ease-in-out;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 10vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-btn {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background: #66bb6a;
    border: none;
    border-radius: 60px;
    text-decoration: none;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn:hover {
    background: #388e3c;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 25px 30px -8px black;
    border-color: white;
}

/* small indicator dots (optional, but nice) */
.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 0.8rem;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: 0.2s;
    backdrop-filter: blur(2px);
}

.indicator.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 15px white;
}

.btn {
    background: #66bb6a;
    /* lighter green for buttons */
    color: white;
    padding: 14px 36px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn i {
    margin-right: 8px;
}

.btn:hover {
    background: #388e3c;
    /* keep same hover color */
    transform: scale(1.04);
}

/* Button group for contact form */
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background: #25d366;
    /* WhatsApp green */
}

.btn-whatsapp:hover {
    background: #20ba5a;
    /* darker WhatsApp green */
}

/* Automatic image sliders */
.slider-section {
    padding: 40px 0;
    background: #f6f8f5;
}

.slider,
.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: none;
    box-shadow: 0 24px 32px -8px #4caf5080;
    touch-action: pan-y;
}

.slide {
    opacity: 0;
    position: absolute;
    inset: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    transform: translateY(-50%);
    pointer-events: auto;
    /* ensure buttons receive clicks */
}

.slider-btn {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    padding: 0.7rem 0.85rem;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.1rem;
    pointer-events: auto;
    transition: background 0.2s;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.gallery-actions {
    text-align: center;
    margin-top: 2rem;
}

/* section headings */
.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin: 32px 0 32px;
    color: #2e3e2e;
    position: relative;
}

.section-heading:after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: #81c784;
    margin: 16px auto 0;
    border-radius: 4px;
}

/* cards row */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: white;
    border-radius: 28px;
    padding: 32px 20px 28px;
    text-align: center;
    box-shadow: 0 12px 24px -8px rgba(46, 70, 30, 0.2);
    transition: all 0.25s;
    border: 1px solid #c8e6c9;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 32px -8px #4caf5080;
}

.service-card i {
    font-size: 3.3rem;
    color: #388e3c;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2e3e2e;
}

.service-card p {
    color: #2e3e2e;
}

/* image gallery (responsive) */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0 60px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 16px 24px -4px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border: none;
    /* soft green border */
}

.gallery-item:hover {
    transform: scale(1.01);
    border-color: #81c784;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

/* Swatches */
.swatches {
    display: grid;
    grid-template-columns: repeat(6, minmax(100px, 1fr));
    gap: 8px;
    margin: 20px 0 30px;
    justify-content: center;
    align-items: start;
}

@media (max-width: 1200px) {
    .swatches {
        grid-template-columns: repeat(4, minmax(100px, 1fr));
        gap: 8px;
        margin: 20px 0 30px;
    }
}

@media (max-width: 800px) {
    .swatches {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
        gap: 6px;
        margin: 16px 0 24px;
    }
}

.swatches-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-align: center;
    padding: 10px;
    border: 1px solid #c8e6c9;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.swatches-items:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(46, 70, 30, 0.2);
    border-color: #81c784;
}

.swatches-items img {
    width: 100%;
    max-width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: none;
    box-shadow: 0 16px 24px -4px rgba(0, 0, 0, 0.2);
}

.swatches-items p {
    margin: 0;
    color: #2e3e2e;
    font-size: 0.95rem;
}

.catalogue-brand {
    color: #2e3e2e;
    margin-top: 8px;
    text-align: center;
}

.catalogue-brand h3 {
    text-decoration: underline;
}

.badge {
    display: inline-block;
    margin: 10px 0 30px;
    padding: 6px 14px;
    background: #dff3e3;
    color: #2f6b3c;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Catalogue section */
.catalogue-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

/* modal overlay for fullscreen view */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
    transition: opacity 0.2s ease;
}

.image-modal.hidden {
    display: none;
    opacity: 0;
}

.modal-content {
    max-width: 95%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.modal-caption {
    margin-top: 1rem;
    color: #f5f5f5;
    font-size: 1rem;
    text-align: center;
    max-width: 95%;
    word-break: break-word;
}

.modal-close {
    position: fixed;
    top: 22px;
    right: 22px;
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 10000;
    user-select: none;
}

.modal-close:hover {
    color: #f0f0f0;
}

/* Gallery Pagination */
.gallery-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    padding: 20px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.pagination-btn:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.pagination-counter {
    font-size: 1rem;
    font-weight: 600;
    color: #2e3e2e;
    white-space: nowrap;
}

.gallery-item.hidden {
    display: none;
}

/* about / quote area */
.about-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.about-text {
    flex: 1 1 280px;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2e3e2e;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.2rem;
    color: #2e3e2e;
    margin-bottom: 30px;
}

.about-image {
    flex: 1 1 300px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 30px -10px rgba(46, 124, 50, 0.4);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.contact-section {
    background-color: #2e3e2e;
    color: whitesmoke;
    padding-top: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.email {
    text-decoration: none;
    color: #eee;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #1b5e20;
    color: #e8f5e9;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #e5c5a0;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}


/* RESPONSIVE DESIGN */
@media screen and (max-width: 850px) {
    .navbar {
        height: auto;
    }

    .nav-container {
        padding: 16px 24px;
        height: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 24px 0 12px;
        background: #035407;
        margin-top: 16px;
        border-radius: 40px;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: inline-block;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-pagination {
        flex-wrap: wrap;
        gap: 12px;
    }

    .pagination-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Added css */
/* Plans & Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    background-color: #2e7d32;
    color: white;
    padding: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 300;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    padding: 2rem;
    list-style: none;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-footer {
    padding: 0 2rem 2rem;
}

@media screen and (max-width: 520px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-pagination {
        gap: 8px;
    }

    .pagination-btn {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .pagination-counter {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 28px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .contact-form {
        padding: 28px 20px;
    }
}

/* Tools Horizontal Scroll Layout */
.tools-horizontal-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.tools-horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.tools-horizontal-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.tools-horizontal-scroll::-webkit-scrollbar-thumb {
    background: #2e7d32;
    border-radius: 4px;
}

.tools-horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: #1b5e20;
}

.tool-item {
    flex: 0 0 280px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tool-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.tool-content {
    padding: 1rem;
}

.tool-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2e3e2e;
}

.tool-price {
    font-size: 1.2rem;
    font-weight: 100;
    /* color: #2e7d32; */
    margin-bottom: 0.75rem;
}

.tool-btn {
    display: inline-block;
    background-color: #2e7d32;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.tool-btn:hover {
    background-color: #1b5e20;
    color: white;
}

@media screen and (max-width: 768px) {
    .tool-item {
        flex: 0 0 240px;
    }

    .tool-content {
        padding: 0.75rem;
    }

    .tool-content h4 {
        font-size: 1rem;
    }

    .tool-price {
        font-size: 1.1rem;
    }
}

/* Downloads Section */
#downloads {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.download-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.download-icon {
    font-size: 3.5rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.download-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2e3e2e;
    margin-bottom: 0.5rem;
}

.download-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.download-btn {
    display: inline-block;
    background-color: #2e7d32;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 2px solid #2e7d32;
}

.download-btn:hover {
    background-color: #1b5e20;
    border-color: #1b5e20;
    color: white;
}

.download-btn i {
    margin-right: 0.5rem;
}

@media screen and (max-width: 768px) {
    #downloads {
        padding: 2rem 0;
    }

    .downloads-grid {
        gap: 1.5rem;
    }

    .download-card {
        padding: 1.5rem;
    }

    .download-icon {
        font-size: 3rem;
    }

    .download-card h3 {
        font-size: 1.3rem;
    }
}