﻿/* =========================
   Root / Theme Variables
========================= */
:root {
    --bg: #f7f9fc;
    --bg-soft: #eef3f9;
    --surface: #ffffff;
    --surface-2: #f3f7fc;
    --text: #0f172a;
    --text-muted: #64748b;
    --heading: #0b1220;
    --border: rgba(15, 23, 42, 0.08);
    --primary: #0ea5e9;
    --primary-2: #0284c7;
    --accent: #22c55e;
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 18px 50px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 24px 70px rgba(2, 132, 199, 0.18);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --transition: all .3s ease;
}

html[data-theme="dark"] {
    --bg: #07111f;
    --bg-soft: #0b1728;
    --surface: #0f1b2e;
    --surface-2: #132238;
    --text: #e5edf7;
    --text-muted: #9fb0c5;
    --heading: #ffffff;
    --border: rgba(255,255,255,0.08);
    --primary: #38bdf8;
    --primary-2: #0ea5e9;
    --accent: #22c55e;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.28);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 70px rgba(14, 165, 233, 0.12);
}

/* =========================
   Base
========================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Vazirmatn", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 80px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.max-text {
    max-width: 720px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.10);
    color: var(--primary-2);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 14px;
    line-height: 1.35;
}

.section-text {
    color: var(--text-muted);
    font-size: 1rem;
}

.btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 12px 24px;
    transition: var(--transition);
}

.btn-brand {
    background: linear-gradient(135deg, #226a0a, var(--primary-2));
    color: #fff;
    border: none;
    box-shadow: var(--shadow-lg);
}

    .btn-brand:hover {
        color: #fff;
        transform: translateY(-2px);
        filter: brightness(1.03);
    }

.btn-outline-light,
.btn-outline-secondary {
    border-radius: 14px;
}

.form-control {
    border-radius: 14px;
    min-height: 52px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    padding: 12px 16px;
    box-shadow: none !important;
}

    .form-control::placeholder {
        color: var(--text-muted);
    }

    .form-control:focus {
        border-color: var(--primary);
        background: var(--surface);
        color: var(--text);
    }

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

code {
    direction: ltr;
    display: inline-block;
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary-2);
    padding: 2px 8px;
    border-radius: 8px;
}

/* =========================
   Loader
========================= */
.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(7, 17, 31, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}

    .page-loader.hide {
        opacity: 0;
        visibility: hidden;
    }

.loader-inner {
    text-align: center;
    color: #fff;
}

.loader-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,.15);
    border-top-color: var(--primary);
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================
   Floating Buttons
========================= */
.floating-btn {
    position: fixed;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

    .floating-btn:hover {
        transform: translateY(-4px);
    }

.whatsapp-btn {
    left: 20px;
    bottom: 20px;
    background: #25D366;
    color: #fff;
}

.backtotop-btn {
    right: 20px;
    bottom: 20px;
    background: var(--primary);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

    .backtotop-btn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* =========================
   Header / Navbar
========================= */
.main-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

    .main-header .navbar {
        padding: 18px 0;
        transition: var(--transition);
    }

    .main-header.scrolled {
        background: rgba(255,255,255,0.78);
        backdrop-filter: blur(16px);
        box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    }

html[data-theme="dark"] .main-header.scrolled {
    background: rgba(7, 17, 31, 0.82);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
    font-weight: 800;
    color: #fff;
    font-size: 1.05rem;
}

.main-header.scrolled .navbar-brand {
    color: var(--heading);
}

.navbar .nav-link {
    color: #fff;
    font-weight: 600;
    margin: 0 6px;
    position: relative;
}

.main-header.scrolled .navbar .nav-link {
    color: var(--text);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary);
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.main-header.scrolled .navbar-toggler-icon {
    filter: none;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

    .theme-toggle:hover {
        transform: rotate(8deg);
    }

.main-header.scrolled .theme-toggle {
    color: var(--heading);
    border-color: var(--border);
}

/* =========================
   Hero
========================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(120deg, rgba(7,17,31,.86), rgba(2,132,199,.62)), url('assets/images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(56,189,248,.18), transparent 30%), radial-gradient(circle at 80% 30%, rgba(34,197,94,.14), transparent 26%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 18px;
}

    .hero-title span {
        display: block;
        color: #bfeaff;
    }

.hero-text {
    max-width: 640px;
    color: rgba(255,255,255,.9);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-stats {
    margin-top: 28px;
}

.stat-card {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
}

    .stat-card h3 {
        margin: 0 0 6px;
        font-size: 1.9rem;
        font-weight: 800;
        color: #fff;
    }

    .stat-card p {
        margin: 0;
        color: rgba(255,255,255,.82);
        font-size: .95rem;
    }

.hero-visual {
    position: relative;
    min-height: 460px;
}

.glass-card {
    position: absolute;
    display: flex;
    gap: 14px;
    align-items: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 18px 20px;
    color: #fff;
    box-shadow: var(--shadow-md);
}

    .glass-card i {
        font-size: 1.8rem;
        color: #c6f1ff;
    }

    .glass-card h6 {
        margin: 0 0 4px;
        font-weight: 800;
    }

    .glass-card p {
        margin: 0;
        color: rgba(255,255,255,.82);
        font-size: .92rem;
    }

.card-1 {
    top: 60px;
    right: 10px;
    animation: floatY 5s ease-in-out infinite;
}

.card-2 {
    top: 200px;
    left: 10px;
    animation: floatY 6s ease-in-out infinite;
}

.card-3 {
    bottom: 40px;
    right: 50px;
    animation: floatY 5.5s ease-in-out infinite;
}

@keyframes floatY {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* =========================
   About
========================= */
.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.feature-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

    .feature-box i {
        color: var(--accent);
        font-size: 1.15rem;
    }

/* =========================
   Services
========================= */
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px 24px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
    }

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14,165,233,.15), rgba(2,132,199,.22));
    color: var(--primary-2);
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 12px;
}

.service-card p {
    margin: 0;
    color: var(--text-muted);
}

/* =========================
   Projects
========================= */
.project-card {
    background: var(--surface);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
}

    .project-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: var(--transition);
    }

    .project-card:hover img {
        transform: scale(1.05);
    }

.project-content {
    padding: 22px;
}

    .project-content span {
        display: inline-block;
        color: var(--primary-2);
        font-weight: 700;
        margin-bottom: 8px;
        font-size: .92rem;
    }

    .project-content h5 {
        font-weight: 800;
        color: var(--heading);
        margin-bottom: 10px;
    }

    .project-content p {
        margin: 0;
        color: var(--text-muted);
    }

.swiper-pagination-bullet {
    background: var(--primary);
    opacity: .4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 22px;
    border-radius: 999px;
}

/* =========================
   Brands
========================= */
.clients-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.brand-logo-box {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: var(--transition);
}

    .brand-logo-box:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-sm);
    }

.brand-img {
    max-height: 44px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .9;
    transition: var(--transition);
}

.brand-logo-box:hover .brand-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =========================
   Articles
========================= */
.article-card {
    background: var(--surface);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}

    .article-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .article-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.article-content {
    padding: 22px;
}

    .article-content h5 {
        font-weight: 800;
        color: var(--heading);
        margin-bottom: 10px;
    }

    .article-content p {
        color: var(--text-muted);
        margin-bottom: 14px;
    }

.read-more {
    color: var(--primary-2);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* =========================
   Contact
========================= */
.contact-card,
.contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

    .contact-card h3,
    .contact-form-card h3 {
        font-weight: 800;
        color: var(--heading);
    }

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

    .contact-item:last-child {
        border-bottom: none;
    }

    .contact-item i {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: rgba(14,165,233,.12);
        color: var(--primary-2);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .contact-item a,
    .contact-item span {
        color: var(--text);
        font-weight: 600;
    }

.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    /* color: var(--heading); */
    color: #0284c7 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .social-link:hover {
        background: var(--primary);
        color: #493f3f;
        transform: translateY(-3px);
    }

/* Map */
.map-box iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 16px;
}

/* =========================
   Footer
========================= */
.main-footer {
    /* background: #32463d; */
    background: #363535c7;
    color: #cfcfcf;
    padding: 60px 0 30px;
}

.footer-brand .brand-logo {
    color: #fff;
}

.main-footer a {
    color: #e6e6e6;
}

    .main-footer a:hover {
        color: #fff;
    }

.footer-title {
    color: #fff;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-text {
    color: #bdbdbd;
    line-height: 1.9;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-hr {
    border-color: rgba(255,255,255,.12);
}

/* =========================
   Brand Logo in Header/Footer
========================= */
.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    /* background: linear-gradient(135deg, var(--primary), var(--primary-2)); */
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

/* =========================
   Reveal Animation
========================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* =========================
   Bootstrap Navbar Mobile Fix
========================= */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 18px;
        margin-top: 14px;
        box-shadow: var(--shadow-md);
    }

    .navbar .nav-link {
        color: var(--text) !important;
        padding: 10px 0;
        margin: 0;
    }

        .navbar .nav-link::after {
            display: none;
        }

    .navbar-brand {
        color: #fff;
    }

    .main-header.scrolled .navbar-brand {
        color: var(--heading);
    }
}

/* =========================
   Responsive
========================= */
@media (max-width: 1199.98px) {
    .hero-visual {
        min-height: 380px;
    }

    .card-1,
    .card-2,
    .card-3 {
        transform: scale(.95);
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }

    .section-padding-sm {
        padding: 70px 0;
    }

    .hero-section {
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .stat-card {
        padding: 16px;
    }

    .contact-card,
    .contact-form-card {
        padding: 24px;
    }
}

@media (max-width: 767.98px) {
    .main-header .navbar {
        padding: 14px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: .98rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .project-card img,
    .article-card img {
        height: 220px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .whatsapp-btn {
        left: 14px;
        bottom: 14px;
    }

    .backtotop-btn {
        right: 14px;
        bottom: 14px;
    }

    .brand-img {
        max-height: 36px;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-padding-sm {
        padding: 60px 0;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .contact-card,
    .contact-form-card,
    .service-card,
    .article-card,
    .project-card {
        border-radius: 18px;
    }

    .glass-card {
        position: static;
        margin-bottom: 14px;
    }

    .hero-visual {
        min-height: auto;
        display: grid;
        gap: 12px;
    }
}

/* Hero Slider */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.58) 35%, rgba(0, 0, 0, 0.32) 100% );
    z-index: 2;
}

.hero-slide .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 720px;
    color: #fff;
    padding: 40px 0;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #fff;
}

    .hero-title span {
        display: block;
        margin-top: 12px;
        font-size: clamp(1rem, 2vw, 1.6rem);
        font-weight: 400;
        color: rgba(255, 255, 255, 0.92);
        line-height: 1.8;
    }

.hero-text {
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Swiper navigation */
.hero-swiper-next,
.hero-swiper-prev {
    color: #fff;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .hero-swiper-next::after,
    .hero-swiper-prev::after {
        font-size: 18px;
        font-weight: 700;
    }

    .hero-swiper-next:hover,
    .hero-swiper-prev:hover {
        background: rgba(255, 255, 255, 0.22);
    }

/* Pagination */
.hero-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 24px;
    border-radius: 999px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .heroSwiper,
    .hero-slide {
        height: 85vh;
        min-height: 680px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-overlay {
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.45) 100% );
    }
}

@media (max-width: 767.98px) {
    .heroSwiper,
    .hero-slide {
        height: 78vh;
        min-height: 600px;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-title {
        line-height: 1.5;
    }

        .hero-title span {
            line-height: 1.9;
        }

    .hero-text {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

        .hero-actions .btn {
            width: 100%;
            max-width: 260px;
        }

    .hero-swiper-next,
    .hero-swiper-prev {
        width: 40px;
        height: 40px;
    }

        .hero-swiper-next::after,
        .hero-swiper-prev::after {
            font-size: 15px;
        }
}

@media (max-width: 575.98px) {
    .heroSwiper,
    .hero-slide {
        height: 75vh;
        min-height: 540px;
    }

    .hero-swiper-next,
    .hero-swiper-prev {
        display: none;
    }

    .hero-title {
        font-size: 1.9rem;
    }

        .hero-title span {
            font-size: 1rem;
        }
}
/* Products Section - Dark Industrial */
.products-section {
    position: relative;
    background: #363535c7;
    color: #cfcfcf;
    /* background: linear-gradient(rgba(8, 15, 26, 0.95), rgba(10, 18, 30, 0.96)); */
    /* background:
    linear-gradient(rgba(8, 15, 26, 0.88), rgba(10, 18, 30, 0.92)),
    url("../images/industrial-bg.jpg"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

    .products-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(176, 42, 55, 0.16), transparent 30%), radial-gradient(circle at bottom left, rgba(25, 118, 210, 0.12), transparent 28%);
        pointer-events: none;
    }

    .products-section .container {
        position: relative;
        z-index: 2;
    }

    .products-section .section-title h2 {
        color: #ffffff;
        font-size: 2.3rem;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .products-section .section-title p {
        color: rgba(255, 255, 255, 0.72);
        font-size: 1rem;
        margin-bottom: 0;
    }

/* Product Card */
.product-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 34px 24px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

    .product-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle, rgba(176, 42, 55, 0.22), transparent 70%);
        opacity: 0.8;
        pointer-events: none;
    }

    .product-card:hover {
        transform: translateY(-10px);
        border-color: rgba(176, 42, 55, 0.35);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
    }

/* Product Image Centered */
.product-img {
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    text-align: center;
}

    .product-img img {
        max-width: 150px;
        max-height: 130px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        transition: transform 0.35s ease;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
    }

.product-card:hover .product-img img {
    transform: scale(1.07);
}

/* Title */
.product-title {
    font-size: 1.12rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.8;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Action */
.product-action {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b02a37, #8f1f2b);
    color: #fff;
    padding: 12px 26px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 190px;
    box-shadow: 0 8px 20px rgba(176, 42, 55, 0.28);
}

    .product-btn:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(176, 42, 55, 0.36);
    }

/* Responsive */
@media (max-width: 991.98px) {
    .products-section .section-title h2 {
        font-size: 2rem;
    }

    .product-card {
        padding: 30px 20px 22px;
    }

    .product-img {
        min-height: 150px;
    }

        .product-img img {
            max-width: 135px;
            max-height: 115px;
        }
}

@media (max-width: 767.98px) {
    .products-section .section-title h2 {
        font-size: 1.8rem;
    }

    .products-section .section-title p {
        font-size: 0.95rem;
    }

    .product-card {
        border-radius: 18px;
        padding: 26px 18px 20px;
    }

    .product-img {
        min-height: 135px;
        margin-bottom: 20px;
    }

        .product-img img {
            max-width: 120px;
            max-height: 100px;
        }

    .product-title {
        font-size: 1rem;
        min-height: 52px;
        margin-bottom: 20px;
    }

    .product-btn {
        min-width: 160px;
        padding: 11px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .product-card {
        padding: 24px 16px 18px;
    }

    .product-img {
        min-height: 120px;
    }

        .product-img img {
            max-width: 110px;
            max-height: 90px;
        }

    .product-btn {
        width: 100%;
        min-width: auto;
    }
}

.product-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient( 120deg, transparent 40%, rgba(255, 255, 255, 0.08), transparent 60% );
    transform: rotate(25deg);
    transition: 0.8s;
}

.product-card:hover::after {
    left: 100%;
    transition: 0.8s;
}
/* Hover */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }


/* Hover Product */
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 9999;
}

    .product-modal.active {
        opacity: 1;
        visibility: visible;
    }

.modal-content {
    background: #0f1a2b;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    color: #fff;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

/* =========================
   Brands Section
========================= */
.brands-section .clients-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 30px 20px;
    overflow: hidden;
}

.brand-logo-box {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.35s ease;
}

    .brand-logo-box:hover {
        transform: translateY(-6px);
        border-color: rgba(212, 175, 55, 0.35);
        box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    }

.brand-img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.1);
    opacity: 0.8;
    transition: all 0.35s ease;
}

.brand-logo-box:hover .brand-img {
    filter: grayscale(0%) brightness(1.05);
    opacity: 1;
}

.brandsSwiper {
    padding-bottom: 40px;
}

    .brandsSwiper .swiper-pagination-bullet {
        background: rgba(255,255,255,0.4);
        opacity: 1;
    }

    .brandsSwiper .swiper-pagination-bullet-active {
        background: var(--color-accent);
    }
/* =========================
   Services Section
========================= */
.services-section .service-card {
    position: relative;
    height: 100%;
    padding: 36px 28px 28px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    /* خط نوری بالا */
    .services-section .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 12%;
        width: 76%;
        height: 1px;
        background: linear-gradient( 90deg, transparent, rgba(212, 175, 55, 0.0), rgba(212, 175, 55, 0.75), rgba(212, 175, 55, 0.0), transparent );
        opacity: 0.8;
    }

    /* افکت sweep */
    .services-section .service-card::after {
        content: "";
        position: absolute;
        top: -120%;
        left: -40%;
        width: 70%;
        height: 300%;
        background: linear-gradient( 120deg, transparent 0%, rgba(255,255,255,0.05) 35%, rgba(255,255,255,0.12) 50%, transparent 65% );
        transform: rotate(18deg);
        transition: all 0.7s ease;
        pointer-events: none;
    }

    .services-section .service-card:hover::after {
        left: 115%;
    }

    /* Hover کارت */
    .services-section .service-card:hover {
        transform: translateY(-12px);
        border-color: rgba(212, 175, 55, 0.28);
        box-shadow: 0 20px 45px rgba(0,0,0,0.28), 0 0 0 1px rgba(212, 175, 55, 0.05), 0 0 30px rgba(212, 175, 55, 0.08);
    }

/* باکس آیکن */
.service-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}

.services-section .service-icon {
    position: relative;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-accent);
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), rgba(255,255,255,0.03)), linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 25px rgba(0,0,0,0.22), 0 0 0 8px rgba(212, 175, 55, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}

    /* حلقه نور پشت آیکن */
    .services-section .service-icon::before {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
        z-index: -1;
        opacity: 0.8;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

.services-section .service-card:hover .service-icon {
    transform: scale(1.08) rotate(4deg);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 34px rgba(0,0,0,0.28), 0 0 0 10px rgba(212, 175, 55, 0.05), 0 0 20px rgba(212, 175, 55, 0.12);
}

    .services-section .service-card:hover .service-icon::before {
        transform: scale(1.08);
        opacity: 1;
    }

.services-section .service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--color-white);
    font-weight: 700;
}

.services-section .service-card p {
    color: rgba(255,255,255,0.78);
    line-height: 1.9;
    margin-bottom: 0;
    flex-grow: 1;
}

/* فوتر کارت */
.service-card-footer {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

/* اگر product-btn قبلا تعریف شده، این فقط کمی بهبودش می‌دهد */
.services-section .product-btn {
    min-width: 132px;
    border-radius: 999px;
    padding: 10px 22px;
    transition: all 0.35s ease;
}

    .services-section .product-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(212, 175, 55, 0.18);
    }

/* Responsive */
@media (max-width: 767.98px) {
    .services-section .service-card {
        padding: 30px 22px 24px;
        border-radius: 20px;
    }

    .services-section .service-icon {
        width: 82px;
        height: 82px;
        font-size: 1.75rem;
    }

    .services-section .service-card h4 {
        font-size: 1.15rem;
    }
}
/* =========================
   Hero Fixed Content Slider
========================= */
.hero-slider-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

    .hero-slider-section .heroSwiper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .hero-slider-section .swiper-wrapper,
    .hero-slider-section .swiper-slide {
        width: 100%;
        height: 100%;
    }

.hero-slide {
    position: relative;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(5, 10, 18, 0.78) 0%, rgba(5, 10, 18, 0.58) 35%, rgba(5, 10, 18, 0.35) 60%, rgba(5, 10, 18, 0.45) 100% );
    pointer-events: none;
}

.hero-content-wrap {
    position: relative;
    z-index: 3;
}

.hero-content {
    color: #fff;
    max-width: 700px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 4.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

    .hero-title span {
        display: block;
        font-size: clamp(1rem, 1.8vw, 1.45rem);
        font-weight: 400;
        color: rgba(255,255,255,0.88);
        margin-top: 12px;
    }

.hero-text {
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(255,255,255,0.82);
    margin-bottom: 28px;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* کنترل‌های اسلایدر */
.hero-swiper-next,
.hero-swiper-prev {
    color: #fff;
    z-index: 4;
}

.hero-swiper-pagination {
    z-index: 4 !important;
}

    .hero-swiper-pagination .swiper-pagination-bullet {
        background: rgba(255,255,255,0.5);
        opacity: 1;
    }

    .hero-swiper-pagination .swiper-pagination-bullet-active {
        background: var(--color-accent);
    }

/* موبایل */
@media (max-width: 991.98px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-overlay {
        background: linear-gradient( 180deg, rgba(5, 10, 18, 0.72) 0%, rgba(5, 10, 18, 0.58) 40%, rgba(5, 10, 18, 0.68) 100% );
    }

    .hero-swiper-next,
    .hero-swiper-prev {
        display: none;
    }
}

/*Article Index*/

.section-space {
    padding: 90px 0;
}

.articles-hero {
    padding: 120px 0 70px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef4f9 100%);
    border-bottom: 1px solid #e9ecef;
}

.articles-hero__badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.articles-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2d3d;
    margin-bottom: 18px;
    line-height: 1.6;
}

.articles-hero__text {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 2;
    max-width: 760px;
    margin-bottom: 0;
}

.articles-breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: #0d6efd;
}

.featured-article__wrapper {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.featured-article__image {
    min-height: 100%;
    background: #f8f9fa;
    overflow: hidden;
}

.featured-article__img {
    min-height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article:hover .featured-article__img {
    transform: scale(1.04);
}

.featured-article__content {
    height: 100%;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-article__tag {
    display: inline-block;
    align-self: flex-start;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(25, 135, 84, 0.10);
    color: #198754;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
}

    .featured-article__meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

.featured-article__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.8;
    margin-bottom: 18px;
}

    .featured-article__title a {
        color: #212529;
        text-decoration: none;
        transition: color 0.25s ease;
    }

        .featured-article__title a:hover {
            color: #0d6efd;
        }

.featured-article__summary {
    color: #6c757d;
    line-height: 2.1;
    font-size: 1rem;
    margin-bottom: 28px;
}

.featured-article__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
}

    .featured-article__link:hover {
        color: #0a58ca;
        gap: 12px;
    }

.articles-section-head__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2d3d;
}

.article-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    background: #fff;
}

    .article-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08) !important;
    }

.article-card__image {
    display: block;
    overflow: hidden;
    background: #f8f9fa;
}

.article-card__img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-card__img {
    transform: scale(1.06);
}

.article-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #6c757d;
    font-size: 14px;
}

    .article-card__meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

.article-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.9;
    margin-bottom: 14px;
}

    .article-card__title a {
        color: #212529;
        text-decoration: none;
        transition: color 0.25s ease;
    }

        .article-card__title a:hover {
            color: #0d6efd;
        }

.article-card__summary {
    color: #6c757d;
    line-height: 2;
    margin-bottom: 0;
}

.article-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

    .article-card__link:hover {
        color: #0a58ca;
        gap: 12px;
    }

.empty-articles {
    padding: 70px 30px;
    border-radius: 24px;
    background: #f8f9fa;
    border: 1px dashed #ced4da;
}

.empty-articles__icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    font-size: 2rem;
}

@@media (max-width: 991.98px) {
    .articles-hero {
        padding: 100px 0 60px;
    }

    .articles-hero__title {
        font-size: 2rem;
    }

    .featured-article__content {
        padding: 30px;
    }

    .featured-article__title {
        font-size: 1.6rem;
    }
}

@@media (max-width: 767.98px) {
    .section-space {
        padding: 70px 0;
    }

    .articles-hero__title {
        font-size: 1.7rem;
    }

    .featured-article__content {
        padding: 24px;
    }

    .featured-article__title {
        font-size: 1.35rem;
    }

    .article-card__img {
        height: 220px;
    }
}


/*Article Detail*/

.article-details-hero {
    padding: 120px 0 70px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef4f9 100%);
    border-bottom: 1px solid #e9ecef;
}

.article-details-breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: #0d6efd;
}

.article-details-hero__content {
    max-width: 100%;
}

.article-details-hero__badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(25, 135, 84, 0.10);
    color: #198754;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.article-details-hero__title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1f2d3d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-details-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 22px;
}

    .article-details-hero__meta span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

.article-details-hero__summary {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 2.1;
    margin-bottom: 0;
}

.article-details-hero__image-box {
    height: 100%;
    min-height: 280px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.article-details-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-details-hero__image-box--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.article-details-hero__placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.article-content-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.article-content-card__top {
    padding: 24px 30px;
    border-bottom: 1px solid #eef1f4;
    background: #fcfdff;
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

    .article-back-link:hover {
        color: #0a58ca;
        gap: 12px;
    }

.article-content-card__body {
    padding: 36px 30px;
}

.content-style {
    color: #343a40;
    line-height: 2.2;
    font-size: 1.03rem;
    text-align:justify
}

    .content-style h1,
    .content-style h2,
    .content-style h3,
    .content-style h4,
    .content-style h5,
    .content-style h6 {
        color: #1f2d3d;
        font-weight: 800;
        margin-top: 2rem;
        margin-bottom: 1rem;
        line-height: 1.8;
    }

    .content-style p {
        margin-bottom: 1.2rem;
        color: #495057;
    }

    .content-style img {
        max-width: 100%;
        height: auto;
        border-radius: 18px;
        margin: 1.5rem 0;
    }

    .content-style ul,
    .content-style ol {
        padding-right: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .content-style li {
        margin-bottom: 0.6rem;
    }

    .content-style a {
        color: #0d6efd;
        text-decoration: none;
    }

        .content-style a:hover {
            color: #0a58ca;
            text-decoration: underline;
        }

    .content-style blockquote {
        margin: 1.5rem 0;
        padding: 1rem 1.25rem;
        border-right: 4px solid #0d6efd;
        background: #f8fbff;
        border-radius: 14px;
        color: #495057;
    }

    .content-style table {
        width: 100%;
        margin: 1.5rem 0;
        border-collapse: collapse;
    }

        .content-style table th,
        .content-style table td {
            border: 1px solid #dee2e6;
            padding: 12px;
            text-align: right;
        }

        .content-style table th {
            background: #f8f9fa;
            font-weight: 700;
        }

.empty-article {
    padding: 80px 30px;
    border-radius: 24px;
    background: #f8f9fa;
    border: 1px dashed #ced4da;
}

.empty-article__icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    font-size: 2rem;
}

@@media (max-width: 991.98px) {
    .article-details-hero {
        padding: 100px 0 60px;
    }

    .article-details-hero__title {
        font-size: 2rem;
    }
}

@@media (max-width: 767.98px) {
    .section-space {
        padding: 70px 0;
    }

    .article-details-hero__title {
        font-size: 1.6rem;
    }

    .article-content-card__top,
    .article-content-card__body {
        padding: 22px 18px;
    }

    .article-details-hero__image-box {
        min-height: 220px;
    }
}