* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #0f5132;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-bottom: 1px solid #e5e5e5;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #0f5132;
}

/* ===== NAV ===== */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a,
.dropbtn {
    text-decoration: none;
    color: #0f5132;
    font-size: 15px;
    cursor: pointer;
}

.nav a.active {
    font-weight: bold;
    border-bottom: 2px solid #0f5132;
}



/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 80px 60px;
}

.hero-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 17px;
    line-height: 1.6;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

/* ===== ABOUT ===== */
.about {
    padding: 80px 60px;
    text-align: center;
}

.about h2 {
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: #f6faf8;
    padding: 50px 40px 30px;
    margin-top: 50px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.footer h4 {
    margin-bottom: 8px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.socials a {
    color: #0f5132;
    font-size: 18px;
}

.copyright {
    text-align: center;
    font-size: 14px;
}



/* ===== FOOD PAGE HERO REDESIGN ===== */
.food-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 50px;
    padding: 80px 60px;
    background: white;
}

.food-hero-text h1 {
    font-size: 42px;
    color: var(--green);
    margin-bottom: 20px;
}

.food-hero-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.food-hero-text h3 {
    color: var(--green);
    margin-bottom: 15px;
}

.food-hero-text ul {
    padding-left: 20px;
}

.food-hero-text li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.food-hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}



/* ===== WHATSAPP ORDER SECTION (COMPACT) ===== */
.whatsapp-order {
    background: #f7fff9;
    padding: 50px 15px; /* reduced from 80px 20px */
    display: flex;
    justify-content: center;
}

.whatsapp-box {
    max-width: 500px; /* reduced from 600px */
    background: white;
    padding: 30px; /* reduced from 50px */
    text-align: center;
    border-radius: 12px; /* slightly smaller radius */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* slightly smaller shadow */
}

.whatsapp-box h2 {
    color: var(--green);
    font-size: 26px; /* reduced from 32px */
    margin-bottom: 12px; /* reduced spacing */
}

.whatsapp-box p {
    color: #555;
    font-size: 16px; /* reduced from 18px */
    line-height: 1.5; /* slightly tighter */
    margin-bottom: 20px; /* reduced spacing */
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 25px; /* smaller button */
    font-size: 16px; /* reduced from 18px */
    border-radius: 25px; /* slightly smaller radius */
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px); /* less movement */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.small-note {
    margin-top: 10px; /* reduced spacing */
    font-size: 12px; /* smaller note */
    color: #777;
}





/* ===== PRODUCT GALLERY HORIZONTAL SCROLL ===== */
.food-gallery-wrapper {
    position: relative;
    overflow: hidden; /* hide overflow for gradient */
    margin-top: 30px;
}

.full-width-gallery {
    width: 100vw;          /* full viewport width */
    margin-left: calc(-50vw + 50%); /* compensate for parent padding */
    position: relative;
    overflow: hidden;
}

.food-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.food-gallery::-webkit-scrollbar {
    height: 6px;
}

.food-gallery::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
}

.food-item {
    flex: 0 0 180px; /* fixed width for scroll */
    text-align: center;
}

.food-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

/* ===== SWIPE HINT ARROW ===== */
.swipe-hint {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: rgba(0,0,0,0.2);
    pointer-events: none; /* allow scroll */
    animation: bounce 1.5s infinite;
    padding-left: 10px;
    display: none; /* hidden by default, only show on mobile */
}

@keyframes bounce {
    0%, 50%, 100% { transform: translateY(-50%) translateX(0); }
    25% { transform: translateY(-50%) translateX(5px); }
    75% { transform: translateY(-50%) translateX(5px); }
}

/* ===== GRADIENT FADE ON RIGHT ===== */
.food-gallery-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to left, rgba(247, 255, 249, 1), rgba(247, 255, 249, 0));
    pointer-events: none;
}

/* ===== SHOW SWIPE HINT ONLY ON MOBILE ===== */
@media (max-width: 768px) {
    .swipe-hint {
        display: block;
    }
}


/* ===== CAREER SECTION ===== */
.career {
    padding: 80px 60px;
    background: #f7fff9;
    text-align: center;
}

.career h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f5132;
}

.career p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.career-note {
    margin-top: 30px;
    padding: 20px;
    background: #ffffff;
    border-left: 4px solid #0f5132;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    color: #333;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


/* ===== FOOD SIZE & PRICE LIST ===== */
.food-sizes {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

.food-sizes li {
     display: flex;
    justify-content: center; /* center like Android */
    gap: 16px;               /* spacing between size & price */
    padding: 4px 0;
    border-bottom: 1px dashed #e5e5e5;
}

.food-sizes li:last-child {
    border-bottom: none;
}


/* ===== FOOD PRODUCT PRICE STYLES ===== */
.food-name {
    font-weight: 600;
    font-size: 15px;
    color: #0f5132;
    margin-bottom: 4px;
}

.food-price {
    font-size: 14px;
    color: #555;
}

.price-note {
    margin-top: 20px;
    font-size: 13px;
    color: #777;
    text-align: center;
}



.content-box.full-width {
    text-align: center;
}


.food-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* key */
}


/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: 80px 60px;
    background: #f6faf8;
    text-align: center;
}

.why-choose h2 {
    font-size: 32px;
    color: #0f5132;
    margin-bottom: 20px;
}

.why-choose p {
    font-size: 16px;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.why-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card h4 {
    color: #0f5132;
    font-size: 18px;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}


/* ===== FOOD GRID CARDS ===== */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center; /* centers each card */
    margin-top: 30px;
}

/* ===== FOOD CARD ===== */
.food-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.food-card:hover {
    transform: translateY(-5px);
}

.food-card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
     
}

.food-name {
    font-size: 16px;
    font-weight: 600;
    color: #0f5132;
    margin-bottom: 10px;
}

/* ===== FOOD SIZES ===== */
.food-sizes {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    font-size: 14px;
    color: #555;
    text-align: center;
}

.food-sizes li {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 4px 0;
    border-bottom: 1px dashed #e5e5e5;
}

.food-sizes li:last-child {
    border-bottom: none;
}


/* ===== QUICK ORDER BUTTON ===== */
.food-order-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: #25D366;
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ===== PRICE NOTE ===== */
.price-note {
    margin-top: 20px;
    font-size: 13px;
    color: #777;
    text-align: center;
}






/* ===== TECH HERO ===== */
.tech-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    padding: 80px 60px;
    align-items: center;
}

.tech-hero-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.tech-hero-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.tech-hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ===== TECH SERVICES ===== */
.tech-services {
    padding: 80px 60px;
    background: #f6faf8;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.tech-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== APP SHOWCASE ===== */
.app-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 170px;
    padding: 80px 60px;
    align-items: center;
}

.app-image img {
    max-height: 320px;
    width: auto;
}

.playstore-link img {
    height: 55px;
    margin-top: 20px;
}

/* ===== POS SECTION ===== */
.pos-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    padding: 80px 60px;
    background: #f6faf8;
    align-items: center;
}

.pos-image img {
    max-height: 350px;
    width: auto;
}

/* ===== TECH CTA ===== */
.tech-cta {
    padding: 70px 40px;
    text-align: center;
}

.tech-btn {
    background: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.tech-section h2 {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .tech-section h2 {
        margin-bottom: 25px;
    }
}

/* shared light green background */
.light-bg {
    background: #f6faf8;
}

/* tech section layout */
.tech-section {
    padding: 80px 60px;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

/* text */
.tech-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0f5132;
}

.tech-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* POS image styling */
.pos-image img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

/* ===== SOCIALS VERTICAL LAYOUT ===== */
.socials-vertical {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-handle {
    font-size: 16px;
    font-weight: 600;
    color: #0f5132;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: #0f5132;
    font-size: 18px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
    color: #25D366;
    transform: translateY(-2px);
}


/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {

    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border: 1px solid #ddd;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    z-index: 9999;
}

.dropdown-content a {
    display: block;
    padding: 14px 18px;
    color: var(--dark);
    text-decoration: none;
    cursor: pointer;
}

.dropdown-content a:hover {
    background: #f2f7f4;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content:hover {
    display: block;
}



/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #f6faf8;
    padding: 80px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-subtext {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #555;
}

.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0f5132;
}

.contact-form button {
    background: #0f5132;
    color: white;
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #0b3d26;
}








/* ===== FLOATING CONTACT ===== */
.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #0f5132;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
}

.floating-contact i {
    font-size: 20px;
}

.floating-contact span {
    font-size: 10px;
    margin-top: 2px;
}




/* ===== FLOATING CONTACT WRAPPER ===== */



/* ===== FORCE FLOATING CONTACT LAYOUT ===== */
.floating-contact-wrapper {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    z-index: 9999 !important;
}

.floating-label {
    position: static !important;   /* THIS FIXES THE OVERLAP */
    font-size: 14px;
    font-weight: 700;
    color: #0f5132;
    text-align: center;
    line-height: 1;
}

.floating-contact {
    position: static !important;   /* VERY IMPORTANT */
    width: 56px;
    height: 56px;
    background: #0f5132;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.floating-contact i {
    color: #ffffff;
    font-size: 20px;
}




.floating-contact {
    animation: bounce 1.5s infinite;
}

.floating-contact {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-contact {
    transform: scale(1.1);
}







/* ===== CONTACT POPUP (CLEAN & FIXED) ===== */
.contact-popup {
    position: fixed;
    bottom: 110px;
    right: 25px;
    width: 320px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    display: none; /* JS controls this */
    z-index: 10000;
}

/* Header */
.popup-header {
    background: #0f5132;
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 14px 14px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h4 {
    font-size: 15px;
    margin: 0;
}

.close-btn {
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

/* Form */
#contactForm {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#contactForm input,
#contactForm textarea {
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    outline: none;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #0f5132;
}

#contactForm button {
    background: #0f5132;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

/* Status text */
#formStatus {
    padding: 0 15px 12px;
    font-size: 13px;
    text-align: center;
}


/* ===============================
   GLOBAL FIXES
================================ */

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===============================
   HEADER & NAVIGATION
================================ */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

/* ===============================
   DROPDOWN (DESKTOP + MOBILE)
================================ */

.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
}

/* dropdown menu */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
    z-index: 2000;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: #f5f5f5;
}

/* Desktop hover */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* Mobile click */
.dropdown.active .dropdown-content {
    display: block;
}

/* ===============================
   HERO SECTION
================================ */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 17px;
    margin-top: 15px;
}

/* ===============================
   WHY CHOOSE GRID
================================ */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===============================
   MOBILE RESPONSIVE FIXES
================================ */

@media (max-width: 768px) {

    /* Header */
    .header {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 20px;
    }

    .hero-text p {
        font-size: 15px;
    }

    /* Why Choose */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Dropdown full width on mobile */
    .dropdown-content {
        position: static;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
    }
}



/* ===============================
   MOBILE HAMBURGER MENU
   =============================== */
.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* Small devices */
@media (max-width: 768px) {

    body {
        font-size: 14px; /* slightly reduced */
    }

    .header {
        position: relative;
    }

    .hamburger {
        display: block;
    }

    .nav {
        position: absolute;
        top: 60px;
        right: 20px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
        width: 200px;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        display: none;
        z-index: 1000;
    }

    .nav.active {
        display: flex;
    }

    .nav a,
    .dropbtn {
        font-size: 14px;
    }

    /* Dropdown inside mobile menu */
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        width: 100%;
        margin-top: 6px;
        border-radius: 6px;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
}





/* ===== FOOD GRID (FINAL & STABLE) ===== */
.food-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Tablet */
@media (max-width: 1024px) {
    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .food-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER CONTACT – FORCE HORIZONTAL EVEN ON SMALL SCREENS ===== */
@media (max-width: 600px) {
    .footer-top {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Phone | Email | Address */
        gap: 10px;
        text-align: center;
        align-items: start;
    }

    .footer-top h4 {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .footer-top p {
        font-size: 10px;
        line-height: 1.4;
    }
}



/* =========================================
   TECH PAGE – MOBILE LAYOUT (FINAL & CLEAN)
   ========================================= */
@media (max-width: 600px) {

  /* FORCE SINGLE COLUMN GRID (NOT FLEX) */
  .tech-hero,
  .app-showcase,
  .pos-section {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 25px;
    padding: 40px 20px;
    text-align: center;
  }

  /* IMAGE FIRST */
  .tech-hero-image,
  .app-image,
  .pos-image {
    order: -1;
  }

  /* IMAGE SIZE */
  .tech-hero-image img,
  .app-image img,
  .pos-image img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: auto;
  }

  /* TEXT READABILITY */
  .tech-hero-text p,
  .app-text p,
  .pos-text p {
    font-size: 15px;
    line-height: 1.7;
  }

  .tech-hero-text h1 {
    font-size: 24px;
  }

  .app-text h2,
  .pos-text h2 {
    font-size: 20px;
  }
}

/* Ensure header & floating contact are always clickable */
.header {
    position: relative;
    z-index: 1000;
}

.floating-contact-wrapper {
    position: fixed;
    z-index: 2000;
}




/* ===== BLOG HERO ===== */

.blog-hero{
    position:relative;
    background:url("images/harvest-bean.png") center/cover no-repeat;
    height:350px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.blog-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.blog-hero-text{
    position:relative;
    max-width:700px;
}

.blog-hero h1{
    font-size:40px;
    margin-bottom:10px;
}

.blog-hero p{
    font-size:18px;
}



/* ===== BLOG LIST ===== */

.blog-list{
    padding:60px 10%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
}



/* ===== BLOG CARD ===== */

.blog-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.blog-card:hover{
    transform:translateY(-6px);
}

.blog-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.blog-content{
    padding:20px;
}

.blog-content h2{
    margin-bottom:10px;
}

.blog-content p{
    color:#2e7d32;
    margin-bottom:15px;
}



/* ===== BUTTON ===== */

.blog-btn{
    display:inline-block;
    padding:10px 18px;
    background:#2e7d32;
    color:white;
    text-decoration:none;
    border-radius:6px;
    font-weight:500;
}

.blog-btn:hover{
    background:#1b5e20;
}






