/* ========================================
   TABLE OF CONTENTS
   ========================================
   1. Global Styles
   2. Header Section
   3. Hero Slider Section
   4. About Section
   5. Products Section
   6. What We Offer Section
   7. FAQ Section
   8. Blog Section
   9. Responsive Utilities / contact page section 
   10. Testimonials Section
   11. Footer Section
   ======================================== */

/* ==========================================
   1. GLOBAL STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color: #240553;
    --secondary-color: #ffdf00;
    /* --primary-color: #4B4A7F;
    --secondary-color: #B8963F; */
    /* --secondary-color: #E6BE64; */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* ==========================================
   2. HEADER SECTION
   ========================================== */
header {
    background: white;
    padding: 0.6rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 60px;
    object-fit: cover;
    /* height: 200px; */
}

@media(max-width: 768px) {
    .logo {
        width: 40px;
    }
}

/* .logo:hover {
    transform: scale(1.05);
} */

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: -0.3rem;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

nav a.active{
    color: var(--secondary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background:  var(--secondary-color);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--secondary-color);
}

nav a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
}

.dropdown .dropbtn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.dropdown:hover .dropbtn {
    color: var(--secondary-color);
}

.dropdown:hover .dropbtn::after {
    width: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    left: 0;
    margin-top: 3px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-content a::after {
    background: none;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: var(--secondary-color);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
}

.icon-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--primary-color);
    /* border-color: var(--primary-color); */
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px #f7d993; */
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 12px var(--primary-color);
}

.cta-button a{
    color: #fff;
    text-decoration: none;
}

/* ==========================================
   2.5 HAMBURGER MENU & MOBILE SIDEBAR
   ========================================== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    margin-left: auto;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 8px 0 1px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    width: 65%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 2px solid #e8eef5;
    display: flex;
    justify-content: flex-end;
    background: #fff;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    padding-left:10px;
    align-items: start;
    flex: 1;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    /* padding: 0.85rem 1.2rem; */
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
}

.sidebar-link::before {
    display: none;
}

.sidebar-link span {
    position: relative;
}

.sidebar-link i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.sidebar-link i::after {
    display: none;
}

.sidebar-link:hover {
    color: var(--primary-color);
}

.sidebar-link:hover i {
    color: var(--primary-color);
}

.sidebar-link:hover span::after {
    width: 100%;
}

.sidebar-dropdown {
    position: relative;
}

.sidebar-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-dropdown-toggle .bi-caret-down {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.dropdown-toggle::after{
    display: none;
}

.sidebar-dropdown.active .sidebar-dropdown-toggle .bi-caret-down {
    transform: rotate(180deg);
}

.sidebar-dropdown-content {
    display: none;
    background-color: transparent;
    border-left: none;
}

.sidebar-dropdown.active .sidebar-dropdown-content {
    display: flex;
    flex-direction: column;
}

.sidebar-dropdown-content .sidebar-link {
    padding-left: 3.5rem;
    font-size: 0.95rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    color: var(--primary-color);
    font-weight: 400;
    gap: 0;
}

.sidebar-dropdown-content .sidebar-link i {
    display: none;
}

.sidebar-dropdown-content .sidebar-link:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.sidebar-contact {
    width: 100%;
    padding: 1.2rem;
    border-top: 2px solid #e8eef5;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.sidebar-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}

.sidebar-contact-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    /* box-shadow: 0 8px 16px var(--primary-color); */
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

@media (min-width: 1201px) {
    .mobile-sidebar,
    .sidebar-overlay {
        display: none !important;
    }
}


/* ==========================================
   3. HERO SLIDER SECTION
   ========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    opacity: 0;
    transition: opacity 600ms ease, transform 1200ms ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.1) 70%, rgba(0,0,0,0) 100%);
}

.hero-inner {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 640px;
}

.hero-heading {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.8rem;
}

.hero-inner .hero-cta {
    padding: 0.9rem 1.6rem;
    border-radius: 30px;
    font-weight: 700;
    color: #fff;
    background-color: var(--primary-color);
    /* box-shadow: 0 10px 25px var(--primary-color); */
    transition: all .3s ease; 
}
.hero-inner .hero-cta:hover {
    color: #fff;
    background-color: var(--primary-color);
    /* box-shadow: 0 10px 25px var(--primary-color); */
    transform: translateY(-5px);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    /* box-shadow: 0 10px 25px var(--primary-color); */
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.hero-nav:hover{
    box-shadow: 0 5px 25px var(--primary-color);
}

.hero-prev { 
    left: 1.5rem; 
}

.hero-next { 
    right: 1.5rem; 
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 1.8rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
}

.hero-dots .dot.active {
    background: var(--primary-color);
    width: 26px;
    border-radius: 8px;
}

/* ==========================================
   4. ABOUT SECTION
   ========================================== */
.about-section {
    padding: 90px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    padding-right: 20px;
}

.about-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-heading {
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-heading .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.about-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 193, 7, 0.2);
    z-index: -1;
}

.about-text {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    text-align: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-color: var(--primary-color);

}

.stat-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 4px 10px var(--primary-color);
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-num::after {
    content: '+';
    font-size: 1.5rem;
}

.stat-txt {
    font-size: 0.875rem;
    color: #7f8c8d;
    font-weight: 600;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    /* box-shadow: 0 5px 20px var(--primary-color); */
}

.about-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px var(--primary-color);
    color: white;
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

.about-right {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

.about-image-container::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

.about-image-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 {
    top: 40px;
    left: 0px;
    color: var(--primary-color);
    animation-delay: 0s;
}

.card-1 i {
    color: var(--primary-color);
}

.card-2 {
    top: 50%;
    right: 0px;
    color: var(--secondary-color);
    animation-delay: 1s;
}

.card-2 i {
    color: var(--secondary-color);
}

.card-3 {
    bottom: 50px;
    left: 20px;
    color: var(--primary-color);
    animation-delay: 2s;
}

.card-3 i {
    color: var(--primary-color);
}

/* ==========================================
   5. PRODUCTS SECTION
   ========================================== */
.products-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.product-filter-btn {
    padding: 10px 18px;
    border: 1px solid var(--primary-color);
    background: #ffffff;
    color: var(--primary-color);
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-filter-btn:hover {
    background: #e6f0fb;
}

.product-filter-btn.active {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 8px 20px var(--primary-color);
}

.products-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.products-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.products-subtitle {
    font-size: 1.0625rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.products-carousel {
    position: relative;
    padding: 0 60px;
}

.products-track-container {
    overflow: hidden;
    width: 100%;
}

.products-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 2rem;
}

.product-card {
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.popular {
    background: var(--primary-color);
}

.product-content {
    padding: 30px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.9375rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.product-features span {
    font-size: 0.8125rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-features i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.product-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--primary-color);
}

.product-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-color);
    color: white;
}

.products-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--secondary-color);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-nav:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px var(--secondary-color);
}

.products-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.products-nav-left {
    left: 0;
}

.products-nav-right {
    right: 0;
}

.products-nav.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* Product Category Cards */
.product-category-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 60px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.category-icon {
    width: 80px;
    height: 80px;
    /* background: #f7d993; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #fff;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.5px;
}

.category-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 35px;
}

.category-features {
    width: 100%;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: #fff;
}

.feature-item i {
    color: #fff;
    /* color: var(--primary-color); */
    font-size: 1.2rem;
    flex-shrink: 0;
}

.category-btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    /* color: var(--primary-color); */
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid #fff;
    /* border: 2px solid var(--primary-color); */
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-btn-outline:hover {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
}

/* Remove old styles */
.category-header,
.category-products,
.category-footer,
.product-item,
.product-item-image,
.product-item-content,
.product-item-name,
.product-item-desc,
.product-item-features,
.category-btn {
    display: none;
}

/* ==========================================
   GRAIN & RICE HERO SECTION
   ========================================== */
.grain-hero-section {
    position: relative;
    min-height: 520px;
    background: url('../images/hero-image/hero4.png') center/cover no-repeat;
}

.grain-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.35) 100%);
}

.grain-hero-inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.grain-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.grain-hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 650px;
}

.grain-hero-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.grain-hero-btn:hover {
    background: #ffffff;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .grain-hero-inner {
        min-height: 420px;
        padding: 0 1.25rem;
    }
}

/* ==========================================
   GRAIN & RICE PRODUCTS SECTION
   ========================================== */
.grain-products-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.grain-products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 30px;
}

.grain-products-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.grain-products-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.grain-products-subtitle {
    font-size: 1.05rem;
    color: #777;
    max-width: 600px;
    line-height: 1.6;
    padding-left: 20px;
}

.see-all-btn {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid #999;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-top: 5px;
}

.see-all-btn:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.grain-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.grain-product-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.grain-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.grain-product-image {
    width: 100%;
    height: 250px;
    /* max-height: 250px; */
    /* object-fit: contain; */
    flex: 1;
    overflow: hidden;
    background: #e9e9e9;
}

/* ==========================================
   PROCESS FLOW SECTION (Pre Cleaners & De-Stoners)
   ========================================== */
.process-flow-section {
    background: #f7f7f7;
    padding: 70px 0;
}

.process-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.process-title {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 18px;
}

.process-subtitle {
    color: #666;
    line-height: 1.8;
    margin-bottom: 6px;
}

.process-track {
    /* display: grid;
    grid-template-columns: 140px 1fr 140px;
    align-items: center;
    gap: 10px; */
    width: 100%;
}

.process-side { text-align: center; }
.process-side img { max-width: 120px; height: auto; }
.process-side .side-label { display: block; font-weight: 700; color:#444; margin-bottom: 10px; }

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* background: #fff; */
    border-radius: 8px;
    /* box-shadow: 0 6px 20px rgba(0,0,0,0.08); */
    overflow: hidden;
    gap: 15px;
}

.process-step {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 8px;
    border-left: 1px solid #e1e1e1;
    min-height: 380px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 10px;
    overflow: hidden;
}
.process-step:first-child { border-left: none; }
/* .process-step:hover { background: #fafafa; } */

.step-label {
    /* writing-mode: vertical-rl;
    transform: rotate(180deg); */
    text-align: end;
    font-weight: 600;
    color: #fff;
    letter-spacing: .3px;
}

.step-dot {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #444;
    font-weight: 700;
    border: 2px solid #e5e5e5;
}

/* Modal */
.process-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.process-modal.open { display: flex; }

.process-modal-dialog {
    background: #fff;
    border-radius: 14px;
    width: min(1100px, 100%);
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.process-modal-close {
    position: absolute;
    top: 10px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.process-modal-body {
    height: auto;
    overflow: hidden;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 520px;
    height: 85vh;
}
.modal-illustration { display:flex; align-items:center; justify-content:center; height: 100%; }
.modal-illustration img { max-width: 90%; height: auto; }
.modal-details { padding: 30px 28px; overflow-y: auto; }
.modal-details h3 { color:var(--primary-color); font-weight:800; margin-bottom: 16px; }
.modal-details p { color:#444; line-height:1.8; }
.modal-details ul { margin: 10px 0 0 18px; }
.modal-details li { margin: 6px 0; }
.feature-list { margin-top: 8px; }

.spec-table-wrapper { width: 100%; overflow-x: auto; margin-top: 10px; }
.spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    font-size: 0.95rem;
}
.spec-table th,
.spec-table td {
    border: 1px solid #e0e0e0;
    padding: 10px 12px;
    color: #444;
}
.spec-table th {
    background: #f8f8f8;
    font-weight: 700;
    color: #555;
}
.spec-table tbody tr:nth-child(every) { background: #fff; }

.media-block { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.video-wrapper iframe { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.pdf-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pdf-link:hover { text-decoration: underline; }

/* Grain Feeder Specs */
.grain-spec-section {
    padding: 60px 0 80px;
    background: #fff;
}
.grain-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: flex-start;
}
.grain-spec-image img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: 0 auto;
}
.spec-heading {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 18px;
    font-size: 22px;
}
.grain-spec-table-wrap {
    width: 100%;
    overflow: hidden;
}
.grain-spec-table-wrap .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: #fff;
}
.spec-table thead {
    background: #f5f5f5;
    position: sticky;
    top: 0;
}
.spec-table th {
    border: 1px solid #ddd;
    padding: 14px 12px;
    font-weight: 700;
    color: #333;
    font-size: 14px;
    text-align: left;
}
.spec-table td {
    border: 1px solid #ddd;
    padding: 12px;
    color: #555;
    font-size: 14px;
}
.spec-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}
.spec-table tbody tr:hover {
    background: #f0f0f0;
}
.spec-table td:first-child {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
}

@media (max-width: 1024px) {
    .grain-spec-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .spec-table td, .spec-table th {
        padding: 12px 10px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .grain-spec-section {
        padding: 50px 0 60px;
    }
    .spec-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .grain-spec-table-wrap .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    .spec-table {
        min-width: 100%;
    }
    .spec-table td, .spec-table th {
        padding: 10px 8px;
        font-size: 12px;
    }
    .spec-table th {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .grain-spec-section {
        padding: 40px 0 50px;
    }
    .spec-heading {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .spec-table {
        min-width: 450px;
    }
    .spec-table td, .spec-table th {
        padding: 8px 6px;
        font-size: 11px;
    }
    .spec-table td:first-child {
        min-width: 70px;
    }
}

@media (max-width: 1024px) {
    .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .process-steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        overflow: visible;
    }

    .process-step {
        min-height: 250px;
        width: 100%;
    }

    .step-dot {
        bottom: 10px;
    }
}


/* rubber sheller and husk aspirator  */

.process-flow-section-rubber {
    background: #f7f7f7;
    padding: 70px 0;
}

.process-header-rubber {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.process-title-rubber {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 18px;
}

.process-subtitle-rubber {
    color: #666;
    line-height: 1.8;
    margin-bottom: 6px;
}

.process-track-rubber {
    /* display: grid;
    grid-template-columns: 140px 1fr 140px;
    align-items: center;
    gap: 10px; */
    width: 100%;
}

.process-side-rubber { text-align: center; }
.process-side-rubber img { max-width: 120px; height: auto; }
.process-side-rubber .side-label { display: block; font-weight: 700; color:#444; margin-bottom: 10px; }

.process-steps-rubber {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* background: #fff; */
    border-radius: 8px;
    gap: 20px;
    /* box-shadow: 0 6px 20px rgba(0,0,0,0.08); */
    overflow: hidden;
}

.process-step-rubber {
    position: relative;
    background: transparent;
    border: none;
    border-left: 1px solid #e1e1e1;
    min-height: 380px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 10px;
}
.process-step-rubber:first-child { border-left: none; }
/* .process-step-rubber:hover { background: #fafafa; } */

.step-label-rubber {
    /* writing-mode: vertical-rl;
    transform: rotate(180deg); */
    text-align: center;
    font-weight: 600;
    color: #fff;
    letter-spacing: .3px;
}

.step-dot-rubber {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #444;
    font-weight: 700;
    border: 2px solid #e5e5e5;
}

/* Modal */
.process-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.process-modal.open { display: flex; }

.process-modal-dialog {
    background: #fff;
    border-radius: 14px;
    width: min(1100px, 100%);
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.process-modal-close {
    position: absolute;
    top: 10px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.process-modal-body {
    height: auto;
    overflow: hidden;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 520px;
    height: 85vh;
}
.modal-illustration { display:flex; align-items:center; justify-content:center; height: 100%; }
.modal-illustration img { max-width: 90%; height: auto; }
.modal-details { padding: 30px 28px; overflow-y: auto; }
.modal-details h3 { color:var(--primary-color); font-weight:800; margin-bottom: 16px; }
.modal-details p { color:#444; line-height:1.8; }
.modal-details ul { margin: 10px 0 0 18px; }
.modal-details li { margin: 6px 0; }
.feature-list { margin-top: 8px; }

.spec-table-wrapper { width: 100%; overflow-x: auto; margin-top: 10px; }
.spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    font-size: 0.95rem;
}
.spec-table th,
.spec-table td {
    border: 1px solid #e0e0e0;
    padding: 10px 12px;
    color: #444;
}
.spec-table th {
    background: #f8f8f8;
    font-weight: 700;
    color: #555;
}
.spec-table tbody tr:nth-child(every) { background: #fff; }

.media-block { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.video-wrapper iframe { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.pdf-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pdf-link:hover { text-decoration: underline; }

/* Responsive */
/* Tablet - 2 Cards */
@media (max-width: 992px) {
    .process-track-rubber {
        grid-template-columns: 1fr;
    }

    .process-steps-rubber {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .process-step-rubber {
        min-height: 340px;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .modal-details {
        max-height: 60vh;
    }
}

/* Mobile - 1 Card */
@media (max-width: 768px) {
    .process-steps-rubber {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        overflow: visible;
    }

    .process-step-rubber {
        min-height: 280px;
        width: 100%;
    }

    .step-dot-rubber {
        bottom: 10px;
    }
}
/* paddy separators  */

.process-flow-section-separators {
    background: #f7f7f7;
    padding: 70px 0;
}

.process-header-separators {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.process-title-separators {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 18px;
}

.process-subtitle-separators {
    color: #666;
    line-height: 1.8;
    margin-bottom: 6px;
}

.process-track-separators {
    /* display: grid;
    grid-template-columns: 140px 1fr 140px;
    align-items: center;
    gap: 10px; */
    width: 100%;
}

.process-side-separators { text-align: center; }
.process-side-separators img { max-width: 120px; height: auto; }
.process-side-separators .side-label-separators { display: block; font-weight: 700; color:#444; margin-bottom: 10px; }

.process-steps-separators {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* background: #fff; */
    border-radius: 8px;
    gap: 20px;
    /* box-shadow: 0 6px 20px rgba(0,0,0,0.08); */
    overflow: hidden;
}

.process-step-separators {
    position: relative;
    background: transparent;
    border: none;
    border-left: 1px solid #e1e1e1;
    min-height: 380px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 10px;
}
.process-step-separators:first-child { border-left: none; }
/* .process-step-separators:hover { background: #fafafa; } */

.step-label-separators {
    /* writing-mode: vertical-rl;
    transform: rotate(180deg); */
    text-align: center;
    font-weight: 600;
    color: #333;
    letter-spacing: .3px;
}

.step-dot-separators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #444;
    font-weight: 700;
    border: 2px solid #e5e5e5;
}

/* Modal */
.process-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.process-modal.open { display: flex; }

.process-modal-dialog {
    background: #fff;
    border-radius: 14px;
    width: min(1100px, 100%);
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.process-modal-close {
    position: absolute;
    top: 10px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.process-modal-body {
    height: auto;
    overflow: hidden;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 520px;
    height: 85vh;
}
.modal-illustration { display:flex; align-items:center; justify-content:center; height: 100%; }
.modal-illustration img { max-width: 90%; height: auto; }
.modal-details { padding: 30px 28px; overflow-y: auto; }
.modal-details h3 { color:var(--primary-color); font-weight:800; margin-bottom: 16px; }
.modal-details p { color:#444; line-height:1.8; }
.modal-details ul { margin: 10px 0 0 18px; }
.modal-details li { margin: 6px 0; }
.feature-list { margin-top: 8px; }

.spec-table-wrapper { width: 100%; overflow-x: auto; margin-top: 10px; }
.spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    font-size: 0.95rem;
}
.spec-table th,
.spec-table td {
    border: 1px solid #e0e0e0;
    padding: 10px 12px;
    color: #444;
}
.spec-table th {
    background: #f8f8f8;
    font-weight: 700;
    color: #555;
}
.spec-table tbody tr:nth-child(every) { background: #fff; }

.media-block { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.video-wrapper iframe { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.pdf-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pdf-link:hover { text-decoration: underline; }

/* Responsive */
/* Tablet - 2 Cards */
@media (max-width: 992px) {
    .process-track-separators {
        grid-template-columns: 1fr;
    }

    .process-steps-separators {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .process-step-separators {
        min-height: 340px;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .modal-details {
        max-height: 60vh;
    }
}

/* Mobile - 1 Card */
@media (max-width: 768px) {
    .process-steps-separators {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        overflow: visible;
    }

    .process-step-separators {
        min-height: 280px;
        width: 100%;
    }

    .step-dot-separators {
        bottom: 10px;
    }
}
/* polishing  */

.process-flow-section-polishing {
    background: #f7f7f7;
    padding: 70px 0;
}

.process-header-polishing {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.process-title-polishing {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 18px;
}

.process-subtitle-polishing {
    color: #666;
    line-height: 1.8;
    margin-bottom: 6px;
}

.process-track-polishing {
    /* display: grid;
    grid-template-columns: 140px 1fr 140px;
    align-items: center;
    gap: 10px; */
    width: 100%;
}

.process-side-polishing { text-align: center; }
.process-side-polishing img { max-width: 120px; height: auto; }
.process-side-polishing .side-label-polishing { display: block; font-weight: 700; color:#444; margin-bottom: 10px; }
.process-steps-polishing {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* background: #fff; */
    border-radius: 8px;
    gap: 20px;
    /* box-shadow: 0 6px 20px rgba(0,0,0,0.08); */
    overflow: hidden;
}

.process-step-polishing {
    position: relative;
    background: transparent;
    border: none;
    border-left: 1px solid #e1e1e1;
    min-height: 400px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 10px;
}
.process-step-polishing:first-child { border-left: none; }
/* .process-step-polishing:hover { background: #fafafa; } */

.step-label-polishing {
    /* writing-mode: vertical-rl;
    transform: rotate(180deg); */
    text-align: center;
    font-weight: 600;
    color: #333;
    letter-spacing: .3px;
}

.step-dot-polishing {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #444;
    font-weight: 700;
    border: 2px solid #e5e5e5;
}

/* Modal */
.process-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.process-modal.open { display: flex; }

.process-modal-dialog {
    background: #fff;
    border-radius: 14px;
    width: min(1100px, 100%);
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.process-modal-close {
    position: absolute;
    top: 10px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.process-modal-body {
    height: auto;
    overflow: hidden;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 520px;
    height: 85vh;
}
.modal-illustration { display:flex; align-items:center; justify-content:center; height: 100%; }
.modal-illustration img { max-width: 90%; height: auto; }
.modal-details { padding: 30px 28px; overflow-y: auto; }
.modal-details h3 { color:var(--primary-color); font-weight:800; margin-bottom: 16px; }
.modal-details p { color:#444; line-height:1.8; }
.modal-details ul { margin: 10px 0 0 18px; }
.modal-details li { margin: 6px 0; }
.feature-list { margin-top: 8px; }

.spec-table-wrapper { width: 100%; overflow-x: auto; margin-top: 10px; }
.spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    font-size: 0.95rem;
}
.spec-table th,
.spec-table td {
    border: 1px solid #e0e0e0;
    padding: 10px 12px;
    color: #444;
}
.spec-table th {
    background: #f8f8f8;
    font-weight: 700;
    color: #555;
}
.spec-table tbody tr:nth-child(every) { background: #fff; }

.media-block { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.video-wrapper iframe { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.pdf-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pdf-link:hover { text-decoration: underline; }

/* Responsive */
/* Tablet - 2 Cards */
@media (max-width: 992px) {
    .process-track-polishing {
        grid-template-columns: 1fr;
    }

    .process-steps-polishing {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .process-step-polishing {
        min-height: 400px;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .modal-details {
        max-height: 60vh;
    }
}

/* Mobile - 1 Card */
@media (max-width: 768px) {
    .process-steps-polishing {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        overflow: visible;
    }

    .process-step-polishing {
        min-height: 400px;
        width: 100%;
    }

    .step-dot-polishing {
        bottom: 10px;
    }
}

/* grader  */

.process-flow-section-grader {
    background: #f7f7f7;
    padding: 70px 0;
}

.process-header-grader {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.process-title-grader {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 18px;
}

.process-subtitle-grader {
    color: #666;
    line-height: 1.8;
    margin-bottom: 6px;
}

.process-track-grader {
    /* display: grid;
    grid-template-columns: 140px 1fr 140px;
    align-items: center;
    gap: 10px; */
    width: 100%;
}

.process-side-grader { text-align: center; }
.process-side-grader img { max-width: 120px; height: auto; }
.process-side-grader .side-label-grader { display: block; font-weight: 700; color:#444; margin-bottom: 10px; }
.process-steps-grader {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* background: #fff; */
    border-radius: 8px;
    gap: 20px;
    /* box-shadow: 0 6px 20px rgba(0,0,0,0.08); */
    overflow: hidden;
}

.process-step-grader {
    position: relative;
    background: transparent;
    border: none;
    border-left: 1px solid #e1e1e1;
    min-height: 400px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 10px;
}
.process-step-grader:first-child { border-left: none; }
/* .process-step-grader:hover { background: #fafafa; } */

.step-label-grader {
    /* writing-mode: vertical-rl;
    transform: rotate(180deg); */
    text-align: center;
    font-weight: 600;
    color: #333;
    letter-spacing: .3px;
}

.step-dot-grader {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #444;
    font-weight: 700;
    border: 2px solid #e5e5e5;
}

/* Modal */
.process-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.process-modal.open { display: flex; }

.process-modal-dialog {
    background: #fff;
    border-radius: 14px;
    width: min(1100px, 100%);
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.process-modal-close {
    position: absolute;
    top: 10px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.process-modal-body {
    height: auto;
    overflow: hidden;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 520px;
    height: 85vh;
}
.modal-illustration { display:flex; align-items:center; justify-content:center; height: 100%; }
.modal-illustration img { max-width: 90%; height: auto; }
.modal-details { padding: 30px 28px; overflow-y: auto; }
.modal-details h3 { color:var(--primary-color); font-weight:800; margin-bottom: 16px; }
.modal-details p { color:#444; line-height:1.8; }
.modal-details ul { margin: 10px 0 0 18px; }
.modal-details li { margin: 6px 0; }
.feature-list { margin-top: 8px; }

.spec-table-wrapper { width: 100%; overflow-x: auto; margin-top: 10px; }
.spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    font-size: 0.95rem;
}
.spec-table th,
.spec-table td {
    border: 1px solid #e0e0e0;
    padding: 10px 12px;
    color: #444;
}
.spec-table th {
    background: #f8f8f8;
    font-weight: 700;
    color: #555;
}
.spec-table tbody tr:nth-child(every) { background: #fff; }

.media-block { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.video-wrapper iframe { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.pdf-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pdf-link:hover { text-decoration: underline; }

/* Responsive */
/* Tablet - 2 Cards */
@media (max-width: 992px) {
    .process-track-grader {
        grid-template-columns: 1fr;
    }

    .process-steps-grader {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .process-step-grader {
        min-height: 400px;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .modal-details {
        max-height: 60vh;
    }
}

/* Mobile - 1 Card */
@media (max-width: 768px) {
    .process-steps-grader {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        overflow: visible;
    }

    .process-step-grader {
        min-height: 400px;
        width: 100%;
    }

    .step-dot-grader {
        bottom: 10px;
    }
}
.grain-product-image img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.grain-product-card:hover .grain-product-image img {
    transform: scale(1.1);
}

.grain-product-title {
    background: var(--primary-color);
    padding: 25px 20px;
    text-align: center;
}

.grain-product-title h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .grain-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .grain-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grain-products-header {
        flex-direction: column;
    }

    .see-all-btn {
        align-self: flex-start;
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .grain-products-section {
        padding: 60px 0;
    }

    .grain-products-title {
        font-size: 2rem;
    }

    .grain-products-subtitle {
        font-size: 0.95rem;
    }

    .grain-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grain-product-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .grain-products-title {
        font-size: 1.75rem;
    }

    .grain-product-title h3 {
        font-size: 0.9rem;
    }
}

/* ==========================================
   5.1 CLIENTS SECTION
   ========================================== */
.clients-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.clients-header {
    text-align: center;
    margin-bottom: 40px;
}

.clients-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.clients-title {
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.clients-subtitle {
    font-size: 1rem;
    color: #6c7a8c;
    max-width: 640px;
    margin: 0 auto;
}

.clients-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 28px;
}

.clients-marquee::before,
.clients-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #f8fbff 0%, rgba(248, 251, 255, 0) 100%);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #f8fbff 0%, rgba(248, 251, 255, 0) 100%);
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: clients-scroll 28s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 260px;
    height: 160px;
    /* background: #ffffff; */
    border-radius: 16px;
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); */
    padding: 18px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* filter: grayscale(1); */
    opacity: 0.9;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.client-logo:hover img {
    /* filter: grayscale(0); */
    opacity: 1;
    transform: scale(1.08);
}

@keyframes clients-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 992px) {
    .client-logo {
        flex-basis: 220px;
        height: 140px;
    }

    .clients-track {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .clients-section {
        padding: 60px 0;
    }

    .client-logo {
        flex-basis: 180px;
        height: 120px;
        padding: 14px 18px;
    }

    .clients-marquee::before,
    .clients-marquee::after {
        width: 60px;
    }
}

/* ==========================================
   5.2 CHAIRMAN MESSAGE SECTION
   ========================================== */
.chairman-section {
    /* padding: 80px 0; */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.chairman-image-wrapper {
    position: relative;
    text-align: center;
}

.chairman-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.chairman-title-card {
    background: var(--primary-color);
    color: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--primary-color);
    max-width: 450px;
    margin: 0 auto;
}

.chairman-title-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.chairman-title-card p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
    color: white;
}

.chairman-message {
    padding: 20px 0 0 30px;
}

.chairman-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.chairman-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin: 0;
}

@media (max-width: 992px) {
    .chairman-message {
        padding: 30px 0 0 0;
        text-align: center;
    }

    .chairman-text {
        text-align: center;
    }

    .chairman-section {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .chairman-heading {
        font-size: 1.5rem;
    }

    .chairman-text {
        font-size: 1rem;
    }

    .chairman-title-card h3 {
        font-size: 1.25rem;
    }

    .chairman-title-card p {
        font-size: 0.9rem;
    }
}

/* ==========================================
   6. WHAT WE OFFER SECTION
   ========================================== */
.offer-section {
    padding: 60px 0;
    background: #fff;
}

.offer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offer-header {
    text-align: center;
    margin-bottom: 60px;
}

.offer-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.offer-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.offer-subtitle {
    font-size: 1.0625rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.offer-card {
    /* background: white; */
    background: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.offer-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 5px 20px var(--primary-color);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-icon {
    transform: rotateY(360deg);
}

.offer-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.offer-desc {
    font-size: 0.9375rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.offer-list li {
    font-size: 0.875rem;
    color: #555;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-list i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* ==========================================
   7. FAQ SECTION
   ========================================== */
.faq-section {
    padding: 30px 0;
    /* background: linear-gradient(135deg, #f0f8f6 0%, #ffffff 100%); */
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.faq-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.0625rem;
    color: #7f8c8d;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.faq-image-wrapper img {
    width: 100%;
    /* height: 100%; */
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border: 2px solid #e8f5f2;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 0.875rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   8. BLOG SECTION
   ========================================== */
.blog-section {
    padding: 40px 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.blog-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.blog-subtitle {
    font-size: 1.0625rem;
    color: #7f8c8d;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.8125rem;
    color: #7f8c8d;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.blog-title-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.9375rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-color);
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
}

.blog-view-all {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.0625rem;
    /* box-shadow: 0 10px 30px #f7d993; */
    transition: all 0.3s ease;
}

.blog-view-all:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--primary-color);
    color: white;
}

/* ==========================================
   9. RESPONSIVE UTILITIES
   ========================================== */
    @media (min-width: 1201px) {
        .mobile-sidebar{
            display:none;
        }
        .sidebar-overlay{
            display: none;
        }
    }
   @media (max-width: 1200px) {
    /* Header */
    .hamburger-menu {
        display: flex;
    }

    nav {
        display: none;
    }

    .header-right {
        gap: 0.8rem;
    }

    /* .contact-icons {
        display: none;
    } */

    .cta-button {
        display: none;
    }
    .product-card {
        min-width: calc(50% - 15px);
    }
}

/* Tablet & Small Desktop (max-width: 968px) */
@media (max-width: 968px) {
    /* Header */
    .hamburger-menu {
        display: flex;
    }

    nav {
        display: none;
    }

    .header-right {
        gap: 0.8rem;
    }

    .contact-icons {
        display: none;
    }

    .cta-button {
        display: none;
    }
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-left {
        padding-right: 0;
        text-align: center;
    }

    .about-stats {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-image-container img {
        height: 450px;
    }

    .floating-card {
        font-size: 0.875rem;
        padding: 12px 20px;
    }

    /* Offer Section */
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ Section */
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image-wrapper {
        max-height: 400px;
    }

    /* Blog Section */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
    /* Header */
    .hamburger-menu {
        display: flex;
    }

    nav {
        display: none;
    }

    .header-right {
        gap: 0.8rem;
    }

    .contact-icons {
        display: none;
    }

    .cta-button {
        display: none;
    }

    /* Hero Slider */
    .hero-inner { 
        left: 6%; 
        max-width: 90%; 
    }

    .hero-prev { 
        left: 0.8rem; 
    }

    .hero-next { 
        right: 0.8rem; 
    }

    .hero-nav {
        display: none;
    }

    /* Products Section */
    .products-section {
        padding: 60px 0;
    }

    .products-carousel {
        padding: 0 50px;
    }

    .product-card {
        min-width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .products-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* FAQ Section */
    .faq-section {
        padding: 30px 0;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.9375rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
}

/* Mobile (max-width: 640px) */
@media (max-width: 640px) {
    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-image-container img {
        height: 400px;
    }

    .floating-card {
        position: static;
        margin: 10px auto;
        display: inline-flex;
    }

    .about-right {
        display: none;
    }

    /* Offer Section */
    .offer-section {
        padding: 60px 0;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-card {
        padding: 30px 20px;
    }

    /* FAQ Section */
    .faq-image-wrapper {
        display: none;
    }

    /* Blog Section */
    .blog-section {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .products-carousel {
        padding: 0 40px;
    }

    .product-content {
        padding: 20px;
    }

    .products-nav {
        width: 35px;
        height: 35px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* Large Desktop (min-width: 1200px) */
@media (max-width: 1200px) {
    .product-card {
        /* min-width: calc(50% - 15px); */
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Force single column on small screens */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-width: 100%;
    }

    /* Product Category Cards Responsive */
    .product-category-card {
        padding: 40px 30px;
    }

    .category-title {
        font-size: 1.25rem;
    }

    .category-description {
        font-size: 0.95rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .product-category-card {
        padding: 50px 40px;
    }
}

/* ==========================================
   9. CONTACT SECTION
   ========================================== */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 !important;
}

.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.contact-info-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-wrapper h3 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.8rem;
}

.contact-info-item h5 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-item p {
    color: #666;
    line-height: 1.6;
}

.contact-info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.contact-info-item .text-primary {
    color: var(--primary-color) !important;
}

.social-links h5 {
    color: #1a1a1a;
    font-weight: 600;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--primary-color);
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.8rem;
}

.contact-form .form-label {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(247, 217, 147, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-send-msg {
    background: var(--primary-color);
    border: none;
    color: #fff;
    border-radius: 8px;
    padding: 12px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-send-msg:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-color);
}

/* Map Section */
.map-section {
    margin-top: 0;
}

.map-container {
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    border: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0 !important;
    }
    
    .contact-info-wrapper,
    .contact-form-wrapper {
        margin-bottom: 2rem;
    }
    
    .contact-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 40px 0 !important;
    }
    
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-section .section-title {
        font-size: 1.75rem;
    }
    
    .map-container iframe {
        height: 300px !important;
    }
}

/* ==========================================
  10. TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 !important;
}

.testimonials-badge {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.testimonials-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    color: #d4e3f7;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.testimonial-content .highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Testimonials */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 0 !important;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 40px 0 !important;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 400px;
    background: url('/assets/images/about/about1.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* ==========================================
   11. FOOTER SECTION
   ========================================== */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    /* padding: 4rem 0 0 0; */
    /* margin-top: 2rem; */
}

.footer-container{
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Column Styling */
.footer-col {
    animation: fadeInUp 0.8s ease-out;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.footer-tagline {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    /* margin-left: 30px; */
    /* display: inline-block; */
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

.footer-links a:hover:before {
    opacity: 1;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--secondary-color);
}

/* Contact Info */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 0.3rem;
    min-width: 20px;
}

.contact-item p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
    line-height: 1.5;
}

.contact-item p strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
}
.contact-item p a{
    color: #ccc;
    text-decoration: none;
}
.contact-item p a:hover{
    color: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom-content p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

.copyright a{
        color: var(--secondary-color);
        text-decoration: none;
        font-weight: 600;
    }

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
    }

    .footer-section {
        /* padding-top: 3rem; */
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-title::after {
        display: none;
    }

    .footer-links a:before {
        display: none;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .contact-item {
        gap: 0.8rem;
    }

    .contact-item i {
        font-size: 1rem;
    }
}
/* ==========================================
   12. GALLERY SECTION
   ========================================== */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.gallery-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gallery-subtitle {
    font-size: 1.0625rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    color: var(--primary-color);
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-zoom:hover {
    transform: scale(1.15);
    background: #f0f0f0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item.hidden {
    display: none;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-filter {
        gap: 10px;
        margin-bottom: 40px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.875rem;
    }

    .gallery-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-header {
        margin-bottom: 40px;
    }

    .gallery-title {
        font-size: 1.75rem;
    }

    .gallery-filter {
        margin-bottom: 30px;
    }

    .gallery-image {
        height: 200px;
    }

    .gallery-zoom {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}



/* About Intro Section */
.about-intro {
    padding: 50px 0;
    background: #f8f9fa;
}

.about-intro .container {
    max-width: 1200px;
}

.about-intro .row {
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.about-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
    object-fit: cover;
    min-height: 400px;
}

.about-image-wrapper:hover .about-main-img {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 30px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-experience-badge h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.about-experience-badge p {
    font-size: 1rem;
    margin: 10px 0 0 0;
    opacity: 0.95;
    font-weight: 500;
}

.about-intro .about-content {
    padding-left: 50px;
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.section-label {
    display: inline-block;
    
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content .lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 500;
}

.about-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 0;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.highlight-item span {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 20px 0;
    background: white;
}

.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    border-left: 5px solid var(--primary-color);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mv-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Core Values Section */
.core-values {
    padding: 50px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Statistics Section */
.stats-section {
    position: relative;
    padding: 50px 0;
    background: var(--primary-color);
    color: white;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-number::after {
    content: '+';
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 0;
    background: white;
}

.feature-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
    margin-bottom: 30px;
    border: 2px solid transparent;
}

.feature-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    transition: bottom 0.3s;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary-color);
    margin: 0;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-content h2 {
        font-size: 2.3rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-main-img {
        min-height: 350px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-main-img {
        min-height: 300px;
    }
    
    .about-image-wrapper {
        margin-bottom: 20px;
    }
    
    .about-experience-badge {
        padding: 20px 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .about-experience-badge h3 {
        font-size: 2.5rem;
    }
    
    .about-experience-badge p {
        font-size: 0.85rem;
    }
    
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    /* .about-intro,
    .mission-vision,
    .core-values,
    .stats-section,
    .why-choose-us,
    .team-section,
    .cta-section {
        padding: 50px 0;
    } */
    
    .about-content h2,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }    
}

/* Conveyor Products Section */
.conveyor-products-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.conveyor-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.conveyor-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

/* Conveyor Detail + Nav */
.conveyor-detail-section {
    padding: 80px 0;
    background: #fff;
}
.conveyor-detail-copy {
    max-width: 900px;
}
.detail-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #222;
}
.detail-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 12px;
    color: #333;
}
.conveyor-detail-copy p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.product-link-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.product-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    text-decoration: none;
    color: #1f2d3d;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    background: #fff;
}
.product-link-card:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 8px 18px var(--primary-color);
}
.product-link-card i {
    font-size: 14px;
}

@media (max-width: 992px) {
    .conveyor-detail-section { padding: 60px 0; }
    .detail-title { font-size: 30px; }
}

@media (max-width: 768px) {
    .conveyor-detail-section { padding: 50px 0; }
    .detail-title { font-size: 26px; }
    .detail-subtitle { font-size: 18px; }
    .product-link-card { padding: 14px 16px; }
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #f0f0f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.conveyor-card:hover .card-image img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(229, 57, 53, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.conveyor-card:hover .card-overlay {
    opacity: 1;
}

.card-btn {
    background: #fff;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.card-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-features li {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features i {
    color: var(--primary-color);
    font-size: 16px;
}

.card-cta {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.card-cta:hover {
    color: var(--primary-color);
    gap: 12px;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .card-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .conveyor-products-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .conveyor-products-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .card-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .card-features {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .card-features li {
        font-size: 12px;
    }
}    

.pre-cleaner1{
    background: url('/assets/images/pre-cleaner/pre-cleaner-pr.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.pre-cleaner1:hover{
    transform: scale(1.05);
}
.pre-cleaner2{
    background: url('/assets/images/pre-cleaner/pre-cleaner-pr.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}


.pre-cleaner2:hover{
    transform: scale(1.05);
}
.pre-cleaner3{
    background: url('/assets/images/pre-cleaner/vibro.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.pre-cleaner3:hover{
    transform: scale(1.05);
}
.pre-cleaner4{
    background: url('/assets/images/pre-cleaner/destoner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.pre-cleaner4:hover{
    transform: scale(1.05);
}
.process-step{
    overflow: hidden;
    position: relative;
}

.pre-cleaner1,
.pre-cleaner2,
.pre-cleaner3,
.pre-cleaner4{
    transition: transform 0.4s ease;
}

.pre-cleaner1:hover,
.pre-cleaner2:hover,
.pre-cleaner3:hover,
.pre-cleaner4:hover{
    transform: scale(1.05);
}
.rubber1{
    background: url('/assets/images/rubber-shell/manual.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.rubber1:hover{
    transform: scale(1.05);
}
.rubber2{
    background: url('/assets/images/rubber-shell/pneumetic.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.rubber2:hover{
    transform: scale(1.05);
}
.rubber3{
    background: url('/assets/images/rubber-shell/vibro-pneumetic.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.rubber3:hover{
    transform: scale(1.05);
}
.rubber4{
    background: url('/assets/images/rubber-shell/standard-husk.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.rubber4:hover{
    transform: scale(1.05);
}
.rubber5{
    background: url('/assets/images/rubber-shell/husk-inbuilt-blower.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.rubber5:hover{
    transform: scale(1.05);
}
.process-step{
    overflow: hidden;
    position: relative;
}

.rubber1,
.rubber2,
.rubber3,
.rubber4,
.rubber5{
    transition: transform 0.4s ease;
}

.rubber1:hover,
.rubber2:hover,
.rubber3:hover,
.rubber4:hover,
.rubber5:hover{
    transform: scale(1.05);
}
.polishing1{
    background: url('/assets/images/polishing/standard.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.polishing1:hover{
    transform: scale(1.05);
}
.polishing2{
    background: url('/assets/images/polishing/rice-whitener.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.polishing2:hover{
    transform: scale(1.05);
}
.polishing3{
    background: url('/assets/images/polishing/mini-silky-polisher.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.polishing3:hover{
    transform: scale(1.05);
}
.polishing4{
    background: url('/assets/images/polishing/ultra-silky-polisher.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.polishing4:hover{
    transform: scale(1.05);
}
.polishing5{
    background: url('/assets/images/polishing/glaze-master.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.polishing5:hover{
    transform: scale(1.05);
}
.process-step{
    overflow: hidden;
    position: relative;
}

.polishing1,
.polishing2,
.polishing3,
.polishing4,
.polishing5{
    transition: transform 0.4s ease;
}

.polishing1:hover,
.polishing2:hover,
.polishing3:hover,
.polishing4:hover,
.polishing5:hover{
    transform: scale(1.05);
}
.seperator1{
    background: url('/assets/images/paddy-seperator/single-body.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.seperator1:hover{
    transform: scale(1.05);
}
.seperator2{
    background: url('/assets/images/paddy-seperator/double-body.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.seperator2:hover{
    transform: scale(1.05);
}
.seperator3{
    background: url('/assets/images/paddy-seperator/tray.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.seperator3:hover{
    transform: scale(1.05);
}

.process-step{
    overflow: hidden;
    position: relative;
}

.seperator1,
.seperator2,
.seperator3{
    transition: transform 0.4s ease;
}

.seperator1:hover,
.seperator2:hover,
.seperator3:hover{
    transform: scale(1.05);
}
.grader1{
    background: url('/assets/images/grader/length-grader.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.grader1:hover{
    transform: scale(1.05);
}
.grader2{
    background: url('/assets/images/grader/thick-grader.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.grader2:hover{
    transform: scale(1.05);
}
.grader3{
    background: url('/assets/images/grader/bran-seperator.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.grader3:hover{
    transform: scale(1.05);
}
.grader4{
    background: url('/assets/images/grader/nakku.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.grader4:hover{
    transform: scale(1.05);
}

.process-step{
    overflow: hidden;
    position: relative;
}

.grader1,
.grader2,
.grader3,
.grader4{
    transition: transform 0.4s ease;
}

.grader1:hover,
.grader2:hover,
.grader3:hover,
.grader4:hover{
    transform: scale(1.05);
}
.aspiration1{
    background: url('/assets/images/aspiration/blower.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.aspiration1:hover{
    transform: scale(1.05);
}
.aspiration2{
    background: url('/assets/images/aspiration/cyclone.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.aspiration2:hover{
    transform: scale(1.05);
}
.aspiration3{
    background: url('/assets/images/aspiration/ducting.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.aspiration3:hover{
    transform: scale(1.05);
}
.aspiration4{
    background: url('/assets/images/aspiration/rotary.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    overflow: hidden;

}

.aspiration4:hover{
    transform: scale(1.05);
}

.process-step{
    overflow: hidden;
    position: relative;
}

.aspiration1,
.aspiration2,
.aspiration3,
.aspiration4{
    transition: transform 0.4s ease;
}

.aspiration1:hover,
.aspiration2:hover,
.aspiration3:hover,
.aspiration4:hover{
    transform: scale(1.05);
}

/* Text at bottom with backdrop */
.step-label{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 15px;
    color: #fff;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.35);
    text-align: center;
    font-weight: 600;
}
.step-label-rubber{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 15px;
    color: #fff;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.35);
    text-align: center;
    font-weight: 600;
}
.step-label-separators{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 15px;
    color: #fff;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.35);
    text-align: center;
    font-weight: 600;
}
.step-label-polishing{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 15px;
    color: #fff;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.35);
    text-align: center;
    font-weight: 600;
}
.step-label-grader{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 15px;
    color: #fff;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.35);
    text-align: center;
    font-weight: 600;
}

/* ==========================================
   PRODUCT INQUIRY SECTION
   ========================================== */
.product-inquiry-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 60px;
}

.inquiry-label {
    display: inline-block;
    color: #0066cc;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.inquiry-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.inquiry-subtitle {
    font-size: 1.0625rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.inquiry-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Progress Steps */
.inquiry-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 80px;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.875rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.step.active .step-number,
.step.completed .step-number {
    background: linear-gradient(135deg, #0066a1 0%, #0066cc 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.step.active .step-label,
.step.completed .step-label {
    color: #0066cc;
    font-weight: 600;
}

.step.completed .step-number::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.step-line {
    height: 2px;
    background: #e9ecef;
    flex: 1;
    margin: 0 10px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.step.completed + .step-line {
    background: linear-gradient(90deg, #0066a1, #0066cc);
}

/* Form Container */
.inquiry-form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.inquiry-step-content {
    display: none;
}

.inquiry-step-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-heading {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Product Selection Cards */
.product-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.product-select-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.product-select-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

.product-select-card.selected {
    background: linear-gradient(135deg, #e6f0fb 0%, #f0f7ff 100%);
    border-color: #0066cc;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.product-select-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #0066a1 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.product-select-card h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-select-card p {
    font-size: 0.875rem;
    color: #7f8c8d;
    margin: 0;
}

.product-select-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #0066cc;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
}

.product-select-card.selected .product-select-check {
    display: flex;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Form Styling */
.inquiry-form {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9375rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 500;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Navigation Buttons */
.inquiry-nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.inquiry-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.inquiry-btn-next,
.inquiry-btn-submit {
    background: linear-gradient(135deg, #0066a1 0%, #0066cc 100%);
    color: white;
    margin-left: auto;
}

.inquiry-btn-next:hover,
.inquiry-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.inquiry-btn-prev {
    background: #e9ecef;
    color: #495057;
}

.inquiry-btn-prev:hover {
    background: #dee2e6;
}

.inquiry-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success Message */
.inquiry-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.inquiry-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.inquiry-success h3 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.inquiry-success p {
    font-size: 1.0625rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .product-inquiry-section {
        padding: 60px 0;
    }

    .inquiry-steps {
        padding: 0 10px;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .inquiry-form-container {
        padding: 25px 20px;
    }

    .product-selection-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .inquiry-nav-buttons {
        flex-direction: column;
    }

    .inquiry-btn-next,
    .inquiry-btn-submit {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .inquiry-btn-prev {
        width: 100%;
        justify-content: center;
    }
}

.product-category-card{
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.product-category-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* adjust opacity */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.product-category-card > *{
    position: relative;
    z-index: 2;
}

/* WhatsApp Floating Button */
.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:32px;
    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,0.25);
    transition:all .3s ease;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:#fff;
}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media (max-width:768px){
    .whatsapp-float{
        width:55px;
        height:55px;
        right:15px;
        bottom:15px;
        font-size:28px;
    }
}