:root {
    --primary-color: #003b7e;
    --secondary-color: #f8f9fa;
    --primary-blue: #004488;
    --dark-blue: #003366;
    --gold: #d4af37;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --card-radius: 8px;
    --kingspan-blue: #0e2845;
    --topbar-light-blue: #0056b3;
     --text-white: #ffffff;
    --footer-divider: #1e5396;
}
@font-face {
    font-family: 'vazir';
    src: url('/assets/font/vazirmatn/Vazirmatn-Regular.woff2') format('woff2');
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: Vazir, Arial, sans-serif;
}
/* Creative Section Transition */
.section-transition {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none;

}

.wave-transition {
    width: 100%;
    height: auto;
    display: block;
}

/* سایه پایین */
.bottom-shadow {
    fill: rgba(0, 0, 0, 0.2);
    transform: translateY(3px);
}

/* شکل اصلی با بوردر */
.main-shape {
    fill: var(--primary-color);
    stroke: rgba(255, 255, 255, 0.2); /* بوردر سفید با شفافیت */
    stroke-width: 1px; /* ضخامت بوردر */
}



.panel-bottom-shadow {
    fill: rgba(0, 0, 0, 0.2);
    filter: blur(3px);
}

.panel-main {
    fill: var(--primary-color);
    filter: brightness(0.95);
}

.panel-highlight {
    fill: rgba(255, 255, 255, 0.1);
    filter: blur(1px);
}

/* افکت متالیک کلی */
.wave-transition {
    filter: 
        drop-shadow(0 -2px 3px rgba(255,255,255,0.1))
        drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

/* Alternative Transition Styles */
.diagonal-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
    background: linear-gradient(170deg, transparent 0%, transparent 49%, var(--primary-color) 50%, var(--primary-color) 100%);
    pointer-events: none;
}

.curve-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23003b7e' d='M0,96L48,85.3C96,75,192,53,288,53.3C384,53,480,75,576,80C672,85,768,75,864,64C960,53,1056,43,1152,37.3C1248,32,1344,32,1392,32L1440,32L1440,100L1392,100C1344,100,1248,100,1152,100C1056,100,960,100,864,100C768,100,672,100,576,100C480,100,384,100,288,100C192,100,96,100,48,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}
/* Floating Particles Animation */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

        /* Navbar Styles */
      /* Navbar Styles */
      .navbar {
        background-color: transparent;
        padding: 20px 0; /* افزایش پدینگ برای فضای بیشتر */
        transition: all 0.4s ease;
        z-index: 1000;
    }
    
    .navbar.scrolled {
        background-color: var(--kingspan-blue);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 12px 0; /* کاهش اندازه هنگام اسکرول */
    }
    
    .navbar-brand {
        font-weight: 700;
        font-size: 1.7rem;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
        display: inline-block;
        transition: transform 0.3s ease;
    }
    
    .navbar-brand::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }
    .navbar-brand:hover {
        transform: translateY(-2px);
    }
    
    .navbar-brand:hover::after {
        transform: translateX(100%);
    }
    /* === افکت‌های منوی اصلی === */

    .navbar-nav {
        margin-left: auto;
        display: flex;
        gap: 8px;
        padding-right: 27px;
    }
    .nav-link {
        font-weight: 500;
        padding: 8px 16px !important;
        position: relative;
        transition: all 0.3s ease;
        color: rgba(255, 255, 255, 0.85) !important;
        border-radius: 6px;
        overflow: hidden;
        background-color: transparent;
    }
    
    .nav-link:hover {
        color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        background-color: rgba(255, 255, 255, 0.1);
    }
    

    
    /* افکت موج */
    .nav-link::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background-color: rgba(255, 255, 255, 0.3);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1) translate(-50%, -50%);
        transform-origin: 50% 50%;
    }
    
    .nav-link:hover::after {
        animation: ripple 1s ease-out;
    }
    
    @keyframes ripple {
        0% {
            transform: scale(0) translate(-50%, -50%);
            opacity: 0.5;
        }
        100% {
            transform: scale(20) translate(-50%, -50%);
            opacity: 0;
        }
    }
    .nav-search {
        position: relative;
        margin-right: 20px;
    }
    
    .nav-search .form-control {
        background-color: rgba(255, 255, 255, 0.15);
        border: none;
        color: white;
        padding: 8px 15px;
        padding-right: 35px;
        width: 180px;
        transition: all 0.3s ease;
    }
    
    .nav-search .form-control:focus {
        background-color: rgba(255, 255, 255, 0.25);
        box-shadow: none;
        width: 220px;
    }
    
    .nav-search .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .search-icon {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        pointer-events: none;
    }
    
    /* Custom Menu Toggle Button */
    .custom-toggler {
        border: none;
        background: transparent;
        padding: 0;
        cursor: pointer;
    }
    
    .menu-icon {
        width: 25px;
        height: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .menu-icon span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: white;
        transition: all 0.3s ease;
    }
    
    .custom-toggler:hover .menu-icon span {
        background-color: rgba(255, 255, 255, 0.8);
    }
    
    /* Hero Section */
    .hero-section {
        position: relative;
        height: 100vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Video Container - Important for mobile responsiveness */
    .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -2;
    }
    
    .hero-section video {
        position: absolute;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }
    
    /* Fallback background image for mobile */
    .mobile-fallback {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://mammutco-panel.com/wp-content/themes/SandwichPanel-Mammut/assets/img/hero-fallback.jpg');
        background-size: cover;
        background-position: center;
        z-index: -2;
    }
    
    .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }
    
    .hero-content {
        text-align: center;
        color: white;
        z-index: 1;
        max-width: 800px;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 30px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .search-bar {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 12px 25px;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 600px;
        margin: 0 auto 15px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    .search-bar input {
        background: transparent;
        border: none;
        color: white;
        font-size: 1.1rem;
        padding: 5px 10px;
        width: 100%;
    }
    
    .search-bar input:focus {
        outline: none;
    }
    
    .search-bar input::placeholder {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .search-bar i {
        color: white;
        font-size: 1.2rem;
        margin-right: 10px;
    }
    
    .suggested-keywords {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        margin-top: 10px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    
    /* اصلاح موقعیت فلش متحرک */
.scroll-down-arrow {
    position: absolute;
    bottom: 120px; /* افزایش فاصله از پایین برای جلوگیری از پوشیده شدن توسط موج */
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.8rem; /* اندازه بزرگتر برای دید بهتر */
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 10; /* افزایش z-index برای اطمینان از نمایش روی موج */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}


/* toggler */
.custom-toggler {
    border: none;
    padding: 0;
    background-color: transparent !important;
}
.custom-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
}


.menu-icon {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: 38px;
}

.menu-icon:hover {
    transform: translateX(5px);
}

.menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.menu-icon span:hover {
    background-color: #ddd;
}

/* custom-offcanvas */

/* ===== استایل اصلی Offcanvas ===== */
.custom-offcanvas {
    background: linear-gradient(135deg, var(--kingspan-blue, #003b7e) 0%, #002044 100%);
    color: #fff;
    width: 300px;
    max-width: 85vw;
    border: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

/* ===== هدر Offcanvas ===== */
.offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-brand {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-location {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: -2px;
}

/* دکمه بستن سفارشی */
.btn-close-custom {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-close-custom:hover {
    transform: rotate(90deg);
}

.btn-close-custom span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    top: 50%;
    left: 0;
    transition: background-color 0.3s;
}

.btn-close-custom:hover span {
    background-color: rgba(255, 255, 255, 0.7);
}

.btn-close-custom span:first-child {
    transform: translateY(-50%) rotate(45deg);
}

.btn-close-custom span:last-child {
    transform: translateY(-50%) rotate(-45deg);
}

/* ===== جستجو در Offcanvas ===== */
.offcanvas-search {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.offcanvas-search-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 40px 10px 15px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.offcanvas-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.offcanvas-search-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.offcanvas-search-icon {
    position: absolute;
    right: 15px;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.offcanvas-search-input:focus + .offcanvas-search-icon {
    transform: scale(1.1);
}

/* ===== بدنه اصلی Offcanvas ===== */
.offcanvas-body {
    padding: 0;
    overflow-y: auto;
}

.offcanvas-nav {
    padding: 10px 0;
}

.offcanvas-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    position: relative;
    transition: background-color 0.3s ease;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.menu-icon {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.menu-arrow {
    margin-left: auto;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

/* افکت‌های هاور */
.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.menu-item:hover .menu-icon {
    color: #fff;
    transform: translateX(3px);
}

.menu-item:hover .menu-arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* آیتم فعال */
.menu-item.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-item.active .menu-link {
    font-weight: 500;
}

.menu-item.active .menu-icon {
    color: #fff;
}

.menu-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.5));
}

/* ===== فوتر Offcanvas ===== */
.offcanvas-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.language-selector {
    display: flex;
    justify-content: center;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 15px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.language-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* ===== انیمیشن‌های ورود و خروج ===== */
.offcanvas.showing,
.offcanvas.show {
    animation: slideIn 0.3s forwards;
}

.offcanvas.hiding {
    animation: slideOut 0.3s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* ===== افکت ریپل برای آیتم‌های منو ===== */
.menu-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.menu-link:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0) translate(-50%, -50%);
        opacity: 0.5;
    }
    100% {
        transform: scale(20) translate(-50%, -50%);
        opacity: 0;
    }
}

/* ===== افکت‌های اضافی برای جذابیت بیشتر ===== */
/* افکت درخشش برای آیتم فعال */
.menu-item.active .menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* افکت تغییر رنگ پس‌زمینه */
.menu-item {
    position: relative;
    z-index: 1;
}

.menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: -1;
    transition: width 0.3s ease;
}

.menu-item:hover::after {
    width: 100%;
}

/* افکت پالس برای آیکون‌ها */
.menu-item:hover .menu-icon {
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    0% { transform: translateX(3px) scale(1); }
    100% { transform: translateX(3px) scale(1.1); }
}
/* slider */
.gallery-container {
    background-color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.gallery-title {
    color: white;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
}

.gallery-carousel {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-items {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    perspective: 1000px;
    gap: 20px;
}

.gallery-item {
    height: 320px;
    width: 30%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.gallery-item.active {
    height: 360px;
    width: 35%;
    z-index: 10;
    transform: scale(1.05);
    box-shadow: 0 19px 38px rgba(0,0,0,0.3), 0 15px 12px rgba(0,0,0,0.22);
}

.gallery-item:not(.active) {
    filter: brightness(0.8);
    transform: scale(0.9);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.5) 60%, transparent);
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-item.active .item-caption {
    padding-bottom: 70px;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.gallery-indicator.active {
    width: 24px;
    border-radius: 6px;
    background-color: white;
}

.learn-more-btn-container {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-item.active .learn-more-btn-container {
    opacity: 1;
    visibility: visible;
}

.learn-more-btn {
    padding: 10px 30px;
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.4);
}

/* business-card */
.section-title {
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    color: #000;
}

.businesses-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 15px;
}

.business-panels {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.business-panel {
    width: 100%;
    max-width: 320px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.business-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.panel-content {
    padding: 37px 20px;
    text-align: center;
}

.panel-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #222;
}
/* Featured Products */

.featured-products-section {
    padding: 60px 15px;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 2.5rem;
    color: #333;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.products-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    gap: 0;
}

.product-col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-badge {
    background-color: #c9a86e; /* Gold/bronze color */
    color: white;
    text-align: center;
    padding: 8px 0;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.product-image-wrapper {
    background-color: #f5f5f5;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.view-icon-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: -30px;
    padding-right: 10px;
    margin-bottom: 10px;
}

.view-icon {
    color: #888;
    font-size: 1.2rem;
    background-color: rgba(255, 255, 255, 0.7);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-card:hover .view-icon {
    background-color: white;
    color: #333;
    transform: scale(1.1);
}

.product-info {
    padding: 15px 15px;
}

.product-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #c9a86e;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}
/*magazine-wrapper */
.better-buildings-section {
    
    background-color: #ffffff;
    overflow: hidden;
}

.better-buildings-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.better-buildings-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.better-buildings-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111;
    line-height: 1.2;
}

.better-buildings-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.better-buildings-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #111;
    color: #111;
    background: transparent;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.better-buildings-btn:hover {
    background-color: #111;
    color: #fff;
}

.better-buildings-magazine {
    display: flex;
    justify-content: flex-end;
}

.magazine-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}



.magazine-image {
    width: 95%;
    height: auto;
    transform: rotate(5deg);
    
    transition: transform 0.5s ease;
    z-index: 2;
}
.magazine-image:hover {
    transform: rotate(3deg) scale(1.02);
}

/* planet-passionate */

.planet-passionate-section {

    font-family: 'Poppins', sans-serif;
}

.planet-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.planet-image-wrapper {
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.planet-image {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.planet-image:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.planet-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.planet-subtitle {
    color: #b3a369; /* Gold/bronze color */
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.planet-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.planet-description {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.planet-buttons {
    display: flex;
    flex-direction: column; /* Buttons stacked vertically */
    gap: 15px;
    width: 100%;
    max-width: 280px;
}

.planet-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border: 1px solid #111;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #111;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%; /* Full width buttons */
}

.planet-btn:hover {
    background-color: #111;
    color: #fff;
}


/* discover-section */
  /* Discover More Section */
  .discover-section {
    background-color: var(--primary-blue);
    padding: 60px 0 80px;
    overflow: hidden;
    position: relative;
}
.discover-section::before {
    content: "";
    position: absolute;
    top: -2px; /* کمی بالاتر برای اطمینان از عدم وجود فاصله */
    left: 0;
    width: 100%;
    height: 50px; /* ارتفاع موج */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='white' opacity='1'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
.discover-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
        position: relative;
    z-index: 2; /* مطمئن شوید محتوا بالاتر از موج نمایش داده می‌شود */
}

.discover-heading {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.discover-cards {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.discover-cards::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.discover-card {
    flex: 0 0 auto;
    width: 300px;
    border-radius: var(--card-radius);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 400px;
}

.discover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-image-container {
    height: 65%;
    overflow: hidden;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 20px;
    height: 35%;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-type {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}

.card-read-time {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Navigation Controls */
.discover-navigation {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.discover-arrows {
    display: flex;
    gap: 15px;
}

.discover-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: var(--white);
}

.discover-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.discover-progress {
    flex-grow: 1;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 20px;
    position: relative;
}

.discover-progress-bar {
    position: absolute;
    height: 100%;
    background-color: var(--gold);
    width: 30%;
    transition: width 0.3s ease;
}

/* footer */
.footer {
    background: linear-gradient(180deg, var(--kingspan-blue) 0%, #002044 100%);
    color: var(--text-white);
    padding: 80px 0 30px;


}
/* جداکننده موج اصلی */

.footer-container {
  
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
    position: relative;
    padding-bottom: 15px;
}
.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
    border-radius: 3px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}
.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(255,255,255,0.7);
    transition: width 0.3s ease;
}
.footer-column ul li a:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}
.footer-column ul li a:hover::after {
    width: 100%;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.2) 20%, 
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0.2) 80%,
        transparent 100%);
    margin: 30px 0 40px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-brand-text {
    font-size: 1rem;
    font-weight: 600;
}

.footer-brand-location {
    font-size: 0.9rem;
    font-weight: 400;
    margin-left: 5px;
    opacity: 0.9;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.9;
}

.country-selector {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* اصلاح دکمه انتخاب کشور */
.country-btn {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px; /* کاهش گردی گوشه‌ها */
    padding: 8px 16px; /* کاهش پدینگ */
    font-size: 0.85rem; /* کاهش اندازه فونت */
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px; /* کاهش فاصله بین آیکون و متن */
    cursor: pointer;
    transition: all 0.3s ease;
    height: 27%;
    justify-content: center;
}

.country-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}


/* کوچک‌تر کردن آیکون */
.globe-icon {
    font-size: 0.9rem;
    transition: transform 0.5s ease;
}

.country-btn:hover .globe-icon {
    transform: rotate(360deg);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .gallery-carousel {
        height: 350px;
    }
    
    .gallery-items {
        gap: 10px;
    }
    
    /* Show only the active item on mobile */
    .gallery-item {
        display: none;
        height: 280px;
    }
    
    .gallery-item.active {
        display: flex;
        width: 85%;
        height: 320px;
        transform: scale(1);
    }
    
    .item-caption {
        font-size: 1.2rem;
        padding: 15px 10px;
    }
    
    .gallery-item.active .item-caption {
        padding-bottom: 60px;
    }
    
    .learn-more-btn {
        padding: 8px 25px;
        font-size: 0.85rem;
    }
    
    /* Add mobile navigation arrows */
    .mobile-nav-btn1 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        color: var(--primary-color);
        font-size: 1.2rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
    }
    
    .mobile-nav-btn1.prev {
        left: 10px;
    }
    
    .mobile-nav-btn1.next {
        right: 10px;
    }
    
    /* Adjust indicators for mobile */
    .gallery-nav {
        margin-top: 0.5rem;
        gap: 8px;
    }
    
    .gallery-indicator {
        width: 8px;
        height: 8px;
    }
    
    .gallery-indicator.active {
        width: 16px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-carousel {
        height: 280px;
    }
    
    .gallery-item.active {
        width: 90%;
        height: 250px;
    }
    
    .item-caption {
        font-size: 1rem;
        padding: 12px 8px;
    }
    
    .gallery-item.active .item-caption {
        padding-bottom: 50px;
    }
    
    .learn-more-btn {
        padding: 6px 20px;
        font-size: 0.8rem;
    }
    
    .mobile-nav-btn1 {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Animation classes */
@keyframes slideFromRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideFromLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.slide-from-right {
    animation: slideFromRight 0.5s forwards;
}

.slide-from-left {
    animation: slideFromLeft 0.5s forwards;
}

/* business-card */

@media (max-width: 991px) {
    .business-panels {
        flex-direction: column;
        align-items: center;
    }
    
    .business-panel {
        max-width: 450px;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .businesses-container {
        padding: 2rem 15px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .business-panel {
        max-width: 100%;
    }
}

/* Featured Products */
@media (max-width: 991px) {
    .product-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .product-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .products-container {
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 15px; /* Space for scrollbar */
    }
    
    .products-row {
        flex-wrap: nowrap;
        margin: 0;
        width: max-content;
        padding: 0 15px;
    }
    
    .product-col {
        flex: 0 0 280px;
        max-width: 280px;
        padding: 0 10px;
        margin-bottom: 0;
    }
    
    .product-image-wrapper {
        height: 220px;
    }
    
    /* Custom scrollbar for mobile */
    .products-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .products-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .products-container::-webkit-scrollbar-thumb {
        background: #c9a86e;
        border-radius: 10px;
    }
    
    .products-container::-webkit-scrollbar-thumb:hover {
        background: #b08d5a;
    }
}

 /*magazine-wrapper */ 
 @media (max-width: 991px) {
    .better-buildings-content {
        margin-bottom: 3rem;
    }
    
    .better-buildings-title {
        font-size: 2.2rem;
    }
    
    .better-buildings-magazine {
        justify-content: center;
    }
    
    .magazine-wrapper {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .better-buildings-section {
        padding: 50px 0;
    }
    
    .better-buildings-title {
        font-size: 1.8rem;
    }
    
    .magazine-wrapper {
        height: 350px;
    }
    
    .magazine-image {
        transform: rotate(3deg);
    }
}
/* planet-passionate */
  
@media (max-width: 991px) {
    .planet-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .planet-passionate-section {
        padding: 40px 0;
    }
    
    .planet-content-col {
        align-items: center;
        text-align: center;
    }
    
    .planet-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .planet-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .planet-buttons {
        max-width: 250px;
    }
}

/* discover-section */

@media (max-width: 1199px) {
    .discover-card {
        width: 280px;
    }
}

@media (max-width: 991px) {
    .discover-heading {
        font-size: 2rem;
    }
    
    .discover-card {
        width: 260px;
        height: 380px;
    }
}

@media (max-width: 767px) {
    .discover-section {
        padding: 40px 0 60px;
    }
    
    .discover-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .discover-card {
        width: 240px;
        height: 360px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .discover-cards {
        gap: 15px;
    }
    
    .discover-card {
        width: 220px;
        height: 340px;
    }
    
    .card-content {
        padding: 15px;
    }
}
/* footer */
@media (max-width: 991px) {
    .footer-links {
        gap: 30px;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .country-selector {
        width: 100%;
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .country-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* hedear */
@media (max-width: 991px) {
    .nav-search .form-control {
        width: 150px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .navbar-nav {
        margin-top: 15px;
    }
    
    .nav-search {
        margin-right: 15px;
        margin-left: auto;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .search-bar {
        padding: 10px 20px;
    }
    
    /* Better video handling for mobile */
    .hero-section video {
        width: auto;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        max-width: none;
    }
}

/* For very small devices, use a different approach */
@media (max-width: 480px) {
    .video-container {
        display: none;
    }
    
    .mobile-fallback {
        display: block;
    }
    .hero-content{
        display: none;
    }
   
}
@media (max-width: 991px) {
    /* تنظیم موقعیت navbar در حالت موبایل */
    .navbar {
        position: relative !important; /* حذف حالت fixed-top در موبایل */
        background-color: var(--kingspan-blue) !important; /* اطمینان از رنگ پس‌زمینه */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* اضافه کردن فاصله بالای هیرو برای جلوگیری از همپوشانی */
    .hero-section, 
    .main-content, 
    main, 
    section:first-of-type {
        margin-top: 0 !important; /* حذف margin احتمالی که برای fixed navbar اضافه شده */
        padding-top: 0 !important;
    }
    
    /* تنظیم ارتفاع navbar در موبایل */
    .navbar {
        padding: 10px 0;
    }
    
    /* اطمینان از عدم همپوشانی با محتوای اصلی */
    body {
        padding-top: 0 !important; /* حذف padding احتمالی که برای fixed navbar اضافه شده */
    }
    .section-transition {
   
        bottom: -74px;
 
    
    }
}


/* ==== بهینه‌سازی منو در حالت موبایل ==== */
/* تنظیمات منوی موبایل برای حرکت با اسکرول */
@media (max-width: 991px) {
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        transition: transform 0.4s ease;
    }
    
    /* کلاس برای مخفی کردن منو */
    .navbar.navbar-hidden {
        transform: translateY(-100%);
    }
    
    /* کلاس برای نمایش منو */
    .navbar.navbar-visible {
        transform: translateY(0);
    }
    
    /* اضافه کردن فاصله بالای صفحه برای جلوگیری از همپوشانی با محتوا */
    body {
        padding-top: 60px; /* باید با ارتفاع navbar همخوانی داشته باشد */
    }
}
/* مخفی کردن سرچ باکس در منوی موبایل */
@media (max-width: 991px) {
    /* مخفی کردن سرچ در هدر اصلی */
    .navbar .nav-search {
        display: none !important;
    }
    
    /* بهبود فاصله‌گذاری در منوی موبایل بعد از حذف سرچ */
    .navbar-actions {
        justify-content: flex-end;
    }
    
    /* افزایش فضا برای لوگو */
    .navbar-brand {
        flex-grow: 1;
    }
    
    /* تنظیم مجدد فاصله‌ها */
    .navbar-content {
        padding: 10px 0;
    }
    
    /* اضافه کردن سرچ به داخل آفکنوس منو */
    .offcanvas-search {
        display: block !important;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .section-transition {
      
        bottom: -1px;
      
    
    }
}


/* حذف افکت در موبایل */
/* غیرفعال کردن انتخابی انیمیشن‌های AOS در موبایل */
@media (max-width: 767px) {
    .no-mobile-aos[data-aos] {
      opacity: 1 !important;
      transform: translate(0) scale(1) !important;
      transition: none !important;
    }
  }