
    :root {
        --primary: #173A61;
        --secondary: #FEBA69;
        --accent: #133050;
        --text: #2D2F39;
        --orange: #FE8713;
        --light-bg: #FDF5EA;
        --white: #FFFFFF;
        --gray-bg: #F9F9F9;
    }
/* این خط رو بالای همه چیز در style.css بگذار تا هیچ چیزی جا نماند */



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

    html { scroll-behavior: smooth; }

    body {
        font-family: 'Vazirmatn', Tahoma, sans-serif;
        line-height: 1.7;
        color: var(--text);
        background: #fff;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }

    /* ==================== HEADER ==================== */
    header {
        background: var(--white);
        box-shadow: 0 4px 20px rgba(23,58,97,0.08);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-inner {
        max-width: 1350px;
        margin: auto;
        padding: 18px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 24px;
        font-weight: 800;
        color: var(--primary);
    }

    .logo img { height: 56px; }

    nav ul {
        display: flex;
        gap: 36px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-weight: 600;
        color: var(--primary);
        position: relative;
        transition: color 0.3s;
    }

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

    nav a.active::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--secondary);
        border-radius: 2px;
    }

    .login-btn {
        background: var(--primary);
        color: #fff;
        padding: 10px 24px;
        border-radius: 12px;
        font-weight: 600;
        transition: all .3s;
    }

    .login-btn:hover { opacity: 0.9; }

    /* ==================== HERO ==================== */
    .hero {
        background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
        text-align: center;
        padding: 100px 20px 80px;
    }

    .hero h1 {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .hero .hero-subtitle,
    .hero p {
        max-width: 900px;
        margin: 0 auto 30px;
        font-size: 1.25rem;
        color: #444;
    }

    .orange-text { color: var(--orange); }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .btn {
        padding: 14px 32px;
        border-radius: 14px;
        font-weight: 700;
        transition: all .3s;
        display: inline-block;
    }

    .btn-primary {
        background: var(--primary);
        color: #fff;
    }

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

    .btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(23,58,97,0.25);
    }

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

    /* ==================== HORIZONTAL FILTERS ==================== */
    .filters {
        background: var(--white);
        padding: 18px 0;
        text-align: center;
        position: sticky;
        top: 88px;
        z-index: 999;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        overflow-x: auto;
        white-space: nowrap;
    }

    .filters button {
        background: none;
        border: 2px solid var(--primary);
        color: var(--primary);
        padding: 10px 24px;
        margin: 0 8px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all .3s;
        min-width: 140px;
    }

    .filters button.active,
    .filters button:hover {
        background: var(--primary);
        color: #fff;
    }

    /* ==================== VERTICAL MENU ==================== */
    .vertical-menu-section {
        max-width: 1350px;
        margin: 60px auto;
        padding: 0 20px;
        display: flex;
        gap: 40px;
    }

    .vertical-menu {
        width: 260px;
        position: sticky;
        top: 120px;
        align-self: flex-start;
    }

    .vertical-menu a {
        display: block;
        padding: 14px 20px;
        border-radius: 12px;
        border: 2px solid var(--primary);
        background: #fff;
        color: var(--primary);
        font-weight: 600;
        text-align: center;
        margin-bottom: 12px;
        transition: .3s;
    }

    .vertical-menu a.active,
    .vertical-menu a:hover {
        background: var(--primary);
        color: #fff;
    }

    .menu-content { flex: 1; }

    .menu-section h2 {
        font-size: 2.3rem;
        color: var(--primary);
        margin-bottom: 40px;
		  margin-top: 140px;
        text-align: center;
    }

    /* ==================== PRODUCT & SERVICE CARDS ==================== */
	.filters,
.filters button {
    font-family: 'Vazirmatn', Tahoma, sans-serif !important;
}
    .products-grid,
    .cards,
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
        padding: 20px 0;
    }

    /* Product Card (Shop) */
    .product-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(23,58,97,0.09);
        transition: all .4s;
    }

    .product-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(23,58,97,0.15);
    }

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

    .product-card h3 {
        padding: 28px 24px 12px;
        font-size: 1.45rem;
        color: var(--primary);
        font-weight: 700;
    }

    .price {
        padding: 0 24px;
        font-size: 32px;
        font-weight: 800;
        color: var(--orange);
    }

    .price:empty::before {
        content: "تماس بگیرید";
        color: var(--secondary);
        font-size: 20px;
        font-weight: 600;
    }

/* Fixed – now shows your real text like "۱۴ روزه", "۷ روزه", "فوری" */
.time {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px 20px;
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
}

/* Only adds the timer icon – does NOT overwrite the text */
.time::before {
    content: "⏱";
    font-size: 18px;
}


    .buttons {
        padding: 0 24px 30px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .btn-detail { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
    .btn-order { background: var(--primary); color: #fff; }

    /* Service Card (Homepage & Services Page) */
    .service-card {
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 12px 35px rgba(0,0,0,0.08);
        padding: 42px 28px;
        text-align: center;
        transition: all .35s;
        height: 460px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 55px rgba(0,0,0,0.16);
    }

    .service-card img { height: 82px; margin-bottom: 28px; object-fit: contain; }
    .service-card h3 { font-size: 23px; color: var(--primary); margin-bottom: 22px; }
    .service-card ul { text-align: right; line-height: 2.4; font-size: 15.5px; color: #444; }
    .service-card a { margin-top: auto; font-weight: bold; color: var(--primary); }

    /* Simple Card (Menu pages) */
/* Simple Card (Menu pages) */
.card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    text-align: center;
    transition: .3s;

    /* optional: helps vertical alignment consistency */
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.card img {
    width: 140px;        /* same width for all */
    height: 140px;       /* same height for all */
    object-fit: contain; /* keep logo proportions */
    display: block;
    margin: 0 auto 20px; /* center horizontally */
}


    /* ==================== FAQ ACCORDION ==================== */
    .faq-item {
        background: #fff;
        border-radius: 12px;
        padding: 20px 24px;
        margin-bottom: 16px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        cursor: pointer;
        overflow: hidden;
        transition: .3s;
    }

    .faq-item:hover { background: #f7faff; }

    .faq-q {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-q::after {
        content: "+";
        font-size: 28px;
        font-weight: 900;
        color: var(--primary);
        transition: .3s;
        margin-right: 10px;
    }

    .faq-item.active .faq-q::after {
        content: "–";
        color: var(--secondary);
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height .45s ease, padding .3s ease;
        padding: 0 2px;
        color: #444;
        line-height: 1.9;
    }

    .faq-item.active .faq-a {
        max-height: 600px;
        padding-top: 18px;
    }

    /* ==================== CONTACT SECTION ==================== */
    .contact-section {
        max-width: 1100px;
        margin: 80px auto;
        padding: 0 20px;
        text-align: center;
    }

    .contact-section h1 { font-size: 2.5rem; color: var(--primary); margin-bottom: 30px; }

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

    .box {
        padding: 30px;
        background: var(--white);
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .box svg { width: 60px; height: 60px; fill: var(--primary); margin-bottom: 20px; }

    .social a {
        font-size: 2.5rem;
        margin: 0 15px;
        color: var(--primary);
        transition: .3s;
    }

    .social a:hover { transform: scale(1.2); }

    .map iframe {
        width: 100%;
        height: 450px;
        border: 0;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

  .customers-section {
        padding: 90px 20px;
        background: #fafafa;
        text-align: center;
    }
    .section-title {
        font-size: 28px;
        font-weight: 700;
        color: #222;
        margin-bottom: 50px;
    }
    .customers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 35px 25px;
        max-width: 1200px;
        margin: 0 auto;
        align-items: center;
        justify-items: center;
    }
    .customers-grid figure {
        margin: 0;
        transition: transform .3s ease;
    }
    .customers-grid img {
        width: 100%;
        max-width: 160px;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.75;
        transition: all .4s ease;
    }
    .customers-grid figure:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.12);
    }
    .full-list-link { margin-top: 45px; }
    .view-all-btn {
        display: inline-block;
        padding: 12px 28px;
        background: #0041b7;
        color: #fff;
        border-radius: 50px;
        font-weight: 600;
    }
    .view-all-btn:hover { background: #0041b7; }

    /* ==================== INQUIRY SECTION – 100% FIXED ==================== */
    .inquiry-section {
        padding: 80px 20px;
        background: #f0f0f0;
        text-align: center;
    }
    .inquiry-content {
        max-width: 850px;
        margin: 0 auto;
        font-size: 16.5px;
        line-height: 2;
        color: #333;
    }
    .inquiry-content p { margin-bottom: 20px; }
    .inquiry-content strong { color: var(--primary); }
    .inquiry-link { margin-top: 35px; }
    .inquiry-btn {
        display: inline-block;
        padding: 14px 36px;
        background: #008f45;
        color: #fff;
        border-radius: 50px;
        font-size: 17px;
        font-weight: 700;
        transition: background .3s;
    }
    .inquiry-btn:hover { background: #008f45; }

    /* ==================== LINKEDIN SECTION – 100% FIXED ==================== */
    .linkedin-section {
        padding: 100px 20px;
        text-align: center;
        background: #fff;
    }
    .linkedin-section .container {
        max-width: 1350px;
        margin: auto;
    }
    .linkedin-section h2 {
        font-size: 2.4rem;
        color: var(--primary);
        margin-bottom: 16px;
        font-weight: 800;
    }
    .linkedin-section p {
        font-size: 17px;
        color: #555;
        max-width: 800px;
        margin: 0 auto 50px;
    }
    #linkedin-posts {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 30px;
        justify-items: center;
        margin-bottom: 50px;
    }
    .linkedin-link {
        display: inline-block;
        background: var(--primary);
        color: #fff;
        padding: 14px 40px;
        border-radius: 50px;
        font-size: 17px;
        font-weight: 700;
        transition: background .3s;
    }
    .linkedin-link:hover { background: #0f2a45; }
    /* ==================== FOOTER ==================== */
    footer {
        background: var(--accent);
        color: #c0d1e0;
        padding: 100px 20px 40px;
        margin-top: 120px;
    }

    .footer-container { max-width: 1350px; margin: auto; }

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

    .footer-grid h5 {
        color: var(--secondary);
        font-size: 20px;
        margin-bottom: 24px;
        font-weight: 700;
    }

    .footer-grid a,
    .footer-grid p { color: #b8d0e8; }

    .footer-grid a:hover { color: var(--secondary); }

    .social { gap: 20px; margin-top: 20px; }
    .social a { font-size: 22px; transition: .3s; }
    .social a:hover { color: var(--secondary); }

    .footer-bottom {
        text-align: center;
        padding-top: 40px;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 0.9rem;
        color: #8aa6c9;
    }

    /* ==================== RESPONSIVE ==================== */

	
    @media (max-width: 992px) {
        .vertical-menu-section { flex-direction: column; }
        .vertical-menu { position: static; width: 100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
        .service-card { flex: 0 0 calc(50% - 20px); max-width: calc(50% - 20px); height: auto; }
    }

    @media (max-width: 768px) {
        .header-inner { flex-direction: column; text-align: center; }
        nav ul { gap: 20px; }
        .hero { padding: 80px 20px 60px; }
        .hero h1 { font-size: 2.4rem; }
        .hero-buttons { flex-direction: column; align-items: center; }
        .filters button { min-width: 120px; font-size: 0.92rem; }
        .products-grid, .cards, .services-grid { grid-template-columns: 1fr; }
        .service-card { padding: 30px 20px; }
    }

    @media (max-width: 480px) {
        .hero h1 { font-size: 2rem; }
        .logo { font-size: 20px; }
        .logo img { height: 46px; }
    }

.section-description {
    margin: 10px 0 25px;
    color: #555;
    font-size: 24px;
    line-height: 1.8;
}

.partner-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.partner-logos img {
    height: 50px;
    opacity: 0.8;
}


.catalog-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 28px;
    padding: 14px 28px;

    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.3);

    transition: all 0.3s ease;
}

.catalog-download-btn i {
    font-size: 18px;
}

.catalog-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(21, 101, 192, 0.4);
    background: linear-gradient(135deg, #1976d2, #0d47a1);
}

.catalog-download-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.35);
}
