/* ========================================
   1. GLOBAL STYLES & VARIABLES
   ======================================== */
:root {
    --primary-color: #7dc244;
    --secondary-color: #5a9232;
    --accent-color: #98d45c;
    --hero-bg: #bfe29f;
    --hero-text: #0862af;
    --hero-text-light: #34495e;
    --hero-button: #98d45c;
    --hero-button-hover: #5a9232;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --light-bg: #f9f9f9;
    --gradient-start: #7dc244;
    --gradient-end: #5a9232;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #bfe29f;
    min-height: 100vh;
}

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

/* ========================================
   2. HEADER & NAVIGATION
   ======================================== */
.header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 3px 0;
    width: 100%;
    position: relative;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Logo base styles - REDUCED HEIGHT FOR MOBILE */
.logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

/* Desktop: Increase logo height */
@media (min-width: 993px) {
    .logo img {
        height: 100px;
    }
}
/* Responsive logo height reduction */
@media screen and (max-width: 992px) {
    .logo img {
        height: 50px;
    }
}

@media screen and (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}

@media screen and (max-width: 576px) {
    .logo img {
        height: 38px;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        height: 32px;
    }
}

@media screen and (max-width: 380px) {
    .logo img {
        height: 28px;
    }
}

.company-name h1 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.tagline {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    font-style: italic;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 50px;
    transition: background 0.3s;
}

.info-item:hover {
    background: rgba(255,255,255,0.2);
}

.info-item i {
    font-size: 16px;
}

.info-label {
    display: block;
    font-size: 9px;
    opacity: 0.8;
    line-height: 1.2;
}

.info-value {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

/* Main Navigation - Desktop */
.main-nav {
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 5px 15px;
    margin: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Push the last item (Place Order button) to the right */
.nav-menu li:last-child {
    margin-left: auto;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s;
    font-size: 15px;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--white);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    list-style: none;
    z-index: 1000;
    padding: 5px 0;
}

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

.dropdown-menu a {
    color: var(--text-dark) !important;
    padding: 8px 15px !important;
    display: block;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color) !important;
}

/* Desktop Place Order Button */
.place-order-btn {
    background: #ffc107;
    color: #2c3e50 !important;
    padding: 6px 18px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    font-size: 14px !important;
}

.place-order-btn:hover {
    background: #ffca2c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3) !important;
}

.place-order-btn i {
    margin-right: 5px;
    font-size: 14px;
}

/* ========================================
   3. MOBILE NAVIGATION STYLES
   ======================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    border: none;
    font-size: 16px;
    color: white;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 5px;
    margin: 5px 0;
    align-items: center;
    gap: 8px;
}

.mobile-menu-toggle i {
    font-size: 16px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Menu Panel */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #bfe29f;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 2px 0 15px rgba(0,0,0,0.2);
}

.mobile-menu.active {
    display: block;
    left: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #7dc244;
}

.mobile-menu-header h3 {
    color: #2c3e50;
    font-size: 20px;
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #2c3e50;
    cursor: pointer;
    line-height: 1;
}

/* Mobile Menu Links */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 5px;
}

.mobile-menu a {
    color: #2c3e50;
    text-decoration: none;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: #7dc244;
    color: white;
}

/* Mobile Place Order Button - Top Right */
.mobile-order-btn {
    display: none;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1001;
    background: #ffc107;
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    border: none;
}

.mobile-order-btn i {
    font-size: 14px;
    margin-right: 5px;
}

.mobile-order-btn:hover {
    background: #ffca2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* ========================================
   4. HERO SLIDER STYLES
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-top: 0;
}

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

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 70px;
}

.slide-content {
    text-align: center;
    margin-bottom: 20px;
}

.slide-content .btn {
    display: inline-block;
    padding: 12px 35px;
    background: #7dc244;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 2px solid white;
}

.slide-content .btn:hover {
    background: #5a9232;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.5);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

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

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: #7dc244;
    transform: scale(1.2);
    border-color: white;
}

/* ========================================
   5. HERO SECTION (Original)
   ======================================== */
.hero {
    background: url('../images/hero-bg.png') -20px center/cover no-repeat;
    color: var(--hero-text);
    padding: 50px 0;
    text-align: center;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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 100 100" opacity="0.05"><path d="M0 0 L100 100 M100 0 L0 100" stroke="%23333" stroke-width="1"/></svg>');
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .btn {
    background: var(--hero-button) !important;
    color: var(--white) !important;
    padding: 15px 40px !important;
    font-size: 18px !important;
    border-radius: 50px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    transition: all 0.3s !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    border: none !important;
    cursor: pointer !important;
    position: absolute !important;
    bottom: 0px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    z-index: 10 !important;
}

.hero .btn:hover {
    background: var(--hero-button-hover) !important;
    transform: translateX(-50%) translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
}

/* ========================================
   6. FEATURES SECTION
   ======================================== */
.features {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(125, 194, 68, 0.2);
}

.feature-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3,
.feature-card h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* ========================================
   7. PRODUCTS SECTION
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Compact Product Card (for category pages) */
.product-card.compact {
    padding: 15px;
}

.product-card.compact .product-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.product-card.compact .product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-card.compact .product-info {
    padding: 10px;
}

.product-card.compact h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.product-card.compact ul {
    margin-left: 15px;
    line-height: 1.4;
    font-size: 13px;
    margin-top: 5px;
}

/* ========================================
   8. BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ========================================
   9. SPECIFICATION TABLES
   ======================================== */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: var(--white);
}

.specs-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    font-weight: 500;
}

.specs-table td,
.specs-table th {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.specs-table tr:nth-child(even) {
    background: var(--light-bg);
}

.specs-table tr:hover {
    background: rgba(125, 194, 68, 0.05);
}

/* ========================================
   10. PAGE HEADER
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Page Header - Reduced Height */
body .about .page-header {
    padding: 5px 0 !important;
    min-height: 50px !important;
    height: auto !important;
    max-height: 80px !important;
}

body .about .page-header h1 {
    font-size: 24px !important;
    margin: 5px 0 0 0 !important;
    padding: 0 !important;
}

body .about .page-header p {
    font-size: 14px !important;
    margin: 0 0 5px 0 !important;
    padding: 0 !important;
}

/* ========================================
   11. FOOTER
   ======================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer a:hover {
    color: var(--white);
    padding-left: 5px;
}

.cert-badge {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 20px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* ========================================
   12. FORMS & ALERTS
   ======================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(125, 194, 68, 0.1);
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Badges */
.badge {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Stats */
.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

/* ========================================
   13. LOGIN PAGE STYLES
   ======================================== */
.login-container {
    max-width: 450px;
    margin: 40px auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, #7dc244, #5a9232);
    color: white;
    padding: 30px;
    text-align: center;
}

.login-header h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.login-header p {
    opacity: 0.9;
    font-size: 14px;
}

.login-form {
    padding: 40px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.login-form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: #7dc244;
    box-shadow: 0 0 0 3px rgba(125, 194, 68, 0.1);
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: #7dc244;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.btn-login:hover {
    background: #5a9232;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 194, 68, 0.3);
}

.btn-register {
    width: 100%;
    padding: 14px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-register:hover {
    background: #1a2632;
    transform: translateY(-2px);
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box {
    background: #e8f4fd;
    color: #004085;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box i {
    color: #7dc244;
    font-size: 18px;
}

.staff-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.staff-link a {
    color: #7dc244;
    text-decoration: none;
    font-size: 14px;
}

.staff-link a:hover {
    text-decoration: underline;
}

.demo-credentials {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 13px;
}

.demo-credentials code {
    background: #e9ecef;
    padding: 3px 6px;
    border-radius: 4px;
    color: #2c3e50;
}

/* ========================================
   14. MANUFACTURING & QUALITY PAGES
   ======================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.process-step {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.quality-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.quality-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ========================================
   15. FIXED CONTACT ICONS - MAIN WEBSITE
   ======================================== */
.fixed-contact-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* WhatsApp icon */
.contact-icon.whatsapp {
    background: #25D366;
}

/* Email icon */
.contact-icon.email {
    background: var(--primary-color, #7dc244);
}

.contact-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(125, 194, 68, 0.4);
}

.contact-icon.email {
    animation: gentlePulse 3s infinite;
}

@keyframes gentlePulse {
    0% {
        box-shadow: 0 4px 15px rgba(125, 194, 68, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(125, 194, 68, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(125, 194, 68, 0.3);
    }
}

.contact-icon.email:hover {
    animation: none;
}

.contact-icon::before {
    content: attr(title);
    position: absolute;
    right: 70px;
    background: #2c3e50;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.contact-icon::after {
    content: '';
    position: absolute;
    right: 60px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #2c3e50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-icon:hover::before,
.contact-icon:hover::after {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

.contact-icon:hover::after {
    right: 74px;
}

/* ========================================
   16. ANIMATIONS & UTILITIES
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.spinner {
    border: 3px solid var(--light-bg);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* ========================================
   17. MOBILE RESPONSIVE - HIDE GREEN NAV BAR
   ======================================== */
@media screen and (max-width: 992px) {
    /* Hide the green navigation bar completely on mobile */
    .main-nav {
        display: none !important;
    }
    
    /* Show mobile menu button */
    .mobile-menu-toggle {
        display: inline-flex !important;
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 5px;
        font-size: 16px;
        align-items: center;
        gap: 8px;
        margin: 5px 0;
        cursor: pointer;
    }
    
    .mobile-menu-toggle i {
        font-size: 16px;
    }
    
    /* Show mobile order button */
    .mobile-order-btn {
        display: flex !important;
        background: #ffc107;
        color: #2c3e50;
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 1001;
        padding: 8px 16px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        align-items: center;
        gap: 6px;
    }
    
    /* Hide desktop elements */
    .contact-info {
        display: none;
    }
    
    .place-order-btn {
        display: none !important;
    }
    
    /* Adjust header layout */
    .header-top {
        padding-right: 120px;
        position: relative;
    }
    
    .logo {
        margin: 0 auto 0 0;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 2px 0;
    }
    
    .header-top {
        padding: 5px 0;
        padding-right: 110px;
    }
    
    .mobile-order-btn {
        top: 8px;
        right: 8px;
        padding: 6px 14px;
        font-size: 13px;
    }
    
    .mobile-menu-toggle {
        padding: 6px 12px;
        font-size: 15px;
    }
}

@media screen and (max-width: 576px) {
    .header-top {
        padding-right: 100px;
    }
    
    .mobile-order-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
    
    .mobile-menu-toggle {
        padding: 5px 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .header-top {
        padding-right: 90px;
    }
    
    .mobile-order-btn {
        padding: 4px 10px;
        font-size: 11px;
        top: 6px;
        right: 6px;
    }
    
    .mobile-menu-toggle {
        padding: 4px 8px;
        font-size: 13px;
    }
}

/* ========================================
   18. RESPONSIVE DESIGN (continued)
   ======================================== */
@media (max-width: 1024px) {
    .contact-info {
        gap: 15px;
    }
    
    .info-item {
        padding: 5px 10px;
    }
    
    .info-value {
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    .hero .btn {
        bottom: 25px !important;
        padding: 14px 35px !important;
        font-size: 17px !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0;
    }
    
    .hero .container {
        min-height: 250px;
    }
    
    .hero .btn {
        bottom: 20px !important;
        padding: 12px 30px !important;
        font-size: 16px !important;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .slide-image {
        padding-bottom: 50px;
    }
    
    .slide-content {
        margin-bottom: 20px;
    }
    
    .slide-content .btn {
        padding: 10px 25px;
        font-size: 15px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .prev-arrow {
        left: 15px;
    }
    
    .next-arrow {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .specs-table {
        font-size: 14px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 8px 5px;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .fixed-contact-icons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .contact-icon::before {
        font-size: 12px;
        padding: 6px 12px;
        right: 60px;
    }
    
    .contact-icon:hover::before,
    .contact-icon:hover::after {
        right: 70px;
    }
    
    .contact-icon:hover::after {
        right: 64px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 230px;
    }
    
    .slide-image {
        padding-bottom: 30px;
    }
    
    .slide-content {
        margin-bottom: 10px;
    }
    
    .slide-content .btn {
        padding: 6px 18px;
        font-size: 13px;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .slider-dots {
        bottom: 12px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0;
    }
    
    .hero .container {
        min-height: 200px;
    }
    
    .hero .btn {
        bottom: 15px !important;
        padding: 10px 25px !important;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero-slider {
        height: 200px;
    }
    
    .slide-image {
        padding-bottom: 25px;
    }
    
    .slide-content .btn {
        padding: 5px 14px;
        font-size: 11px;
    }
    
    .login-form { 
        padding: 30px 20px; 
    }
    
    .contact-icon::before,
    .contact-icon::after {
        display: none;
    }
}

@media (min-height: 1200px) {
    .fixed-contact-icons {
        bottom: 50px;
    }
}

/* ========================================
   19. PRINT STYLES
   ======================================== */
@media print {
    .header, 
    .footer, 
    .btn,
    .hero .btn,
    .mobile-menu-btn,
    .mobile-menu-toggle,
    .mobile-order-btn,
    .slider-arrow,
    .slider-dots,
    .fixed-contact-icons {
        display: none !important;
    }
    
    .hero,
    .hero-slider {
        background: none !important;
        color: black !important;
        padding: 20px 0 !important;
    }
    
    .hero h2,
    .hero p,
    .slide-content h1,
    .slide-content p {
        color: black !important;
    }
}
/* ========================================
   20. PRODUCT CARD MOBILE FIXES
   ======================================== */

/* Fix for product cards on mobile */
@media screen and (max-width: 768px) {
    .product-card.compact {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 10px;
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .product-card.compact .product-image {
        width: 100px;
        height: 100px;
        min-width: 100px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .product-card.compact .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .product-card.compact .product-info {
        padding: 5px 0;
        flex: 1;
    }
    
    .product-card.compact .product-info h3 {
        font-size: 16px;
        margin-bottom: 5px;
        white-space: nowrap;
    }
    
    .product-card.compact .product-info ul {
        display: flex;
        flex-wrap: wrap;
        gap: 5px 8px;
        margin: 0;
        columns: auto;
    }
    
    .product-card.compact .product-info ul li {
        font-size: 11px;
        background: var(--light-bg);
        padding: 2px 8px;
        border-radius: 12px;
        list-style: none;
        margin: 0;
        white-space: nowrap;
    }
    
    /* Remove default list styling */
    .product-card.compact .product-info ul {
        margin-left: 0;
    }
    
    .product-card.compact .product-info ul li::before {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .product-card.compact {
        padding: 8px;
        gap: 12px;
    }
    
    .product-card.compact .product-image {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
    
    .product-card.compact .product-info h3 {
        font-size: 15px;
    }
    
    .product-card.compact .product-info ul li {
        font-size: 10px;
        padding: 2px 6px;
    }
}

@media screen and (max-width: 480px) {
    .product-card.compact {
        padding: 6px;
        gap: 10px;
    }
    
    .product-card.compact .product-image {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
    
    .product-card.compact .product-info h3 {
        font-size: 14px;
    }
    
    .product-card.compact .product-info ul {
        gap: 4px;
    }
    
    .product-card.compact .product-info ul li {
        font-size: 9px;
        padding: 2px 5px;
    }
}

/* Alternative: If you prefer stacked cards instead of horizontal */
.product-card.compact.alternative-mobile {
    display: block;
}

@media screen and (max-width: 768px) {
    .product-card.compact.alternative-mobile .product-image {
        width: 100%;
        height: 150px;
        margin-bottom: 10px;
    }
    
    .product-card.compact.alternative-mobile .product-info ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}
/* ========================================
   21. MAIN PRODUCT IMAGE MOBILE SPACE FIX
   ======================================== */
@media screen and (max-width: 768px) {
    .main-product-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-bottom: 0 !important;
    }
    
    .main-product-image-container {
        line-height: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .main-product-image-container img {
        display: block !important;
        width: 100%;
    }
} 
/* ========================================
   22. PRODUCT DETAILS MOBILE FIX
   ======================================== */
@media screen and (max-width: 768px) {
    .product-details-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .product-image-container {
        line-height: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .product-image-container img {
        display: block !important;
        width: 100%;
    }
}