/* Only target elements within the venom-hero section */
.venom-hero {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
    position: relative;
}

.venom-hero * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.venom-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    justify-content: space-between;
}

.venom-hero .hero-content {
    z-index: 2;
    position: relative;
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.venom-hero .hero-title {
    font-family: Arial, sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.venom-hero .hero-subtitle {
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.venom-hero .hero-cta {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.venom-hero .hero-cta:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.venom-hero .hero-cta:active {
    transform: translateY(0);
}

.venom-hero .hero-image-container {
    position: relative;
    height: 600px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    flex: 1;
    max-width: 50%;
}

.venom-hero .hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    transition: transform 0.15s ease-out;
    will-change: transform;
    position: relative;
    z-index: 2;
    background: transparent;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .venom-hero .hero-container {
        gap: 3rem;
    }
    
    .venom-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .venom-hero {
        min-height: auto;
        padding: 1rem;
    }

    .venom-hero .hero-container {
        flex-direction: column;
        gap: 0rem;
    }

    .venom-hero .hero-content {
        max-width: 100%;
        order: 1;
        align-items: center;
        text-align: center;
    }

    .venom-hero .hero-image-container {
        max-width: 100%;
        order: 2;
        height: 400px;
    }

    .venom-hero .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .venom-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .venom-hero .hero-image {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .venom-hero {
        padding: 1rem;
    }

    .venom-hero .hero-title {
        font-size: 2rem;
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }

    .venom-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .venom-hero .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .venom-hero .hero-image-container {
        height: 300px;
    }

    .venom-hero .hero-image {
        max-width: 280px;
    }
}

/* Animation for load */
@keyframes venom-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.venom-hero .hero-content > * {
    animation: venom-fadeInUp 0.8s ease-out forwards;
}

.venom-hero .hero-subtitle {
    animation-delay: 0.2s;
}

.venom-hero .hero-cta {
    animation-delay: 0.4s;
}

.venom-hero .hero-image {
    animation: venom-fadeInUp 0.8s ease-out 0.6s both;
}


.ticker-container {
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
    width: max-content;
}

.ticker-text {
    display: inline-block;
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-right: 100px;
    line-height: 60px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Perfect seamless scrolling animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ticker-container {
        height: 50px;
    }
    
    .ticker-text {
        font-size: 1.5rem;
        line-height: 50px;
        margin-right: 80px;
        letter-spacing: 2px;
    }
    
    .ticker-content {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .ticker-container {
        height: 40px;
    }
    
    .ticker-text {
        font-size: 1.2rem;
        line-height: 40px;
        margin-right: 60px;
        letter-spacing: 1px;
    }
    
    .ticker-content {
        animation-duration: 18s;
    }
}


.logo {
    padding-right: 20px;
}

.tp-category-area .row > div {
    flex: 0 0 25%;   /* عرض 25% يعني 4 عناصر في الصف */
    max-width: 25%;
}


@media (min-width: 992px) { /* من اول لابتوب وانت طالع */
  .tp-category-area .row > div {
      flex: 0 0 25%;
      max-width: 25%;
  }
}

.tp-category-main-box {
    width: 200px;
    height: 200px;
    margin: 0 auto; /* علشان يبقى الكارت متوسّط */
}

.tp-category-main-thumb {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
}
.tp-category-main-box {
    width: 200px;
    height: 200px;
    margin: 30px auto; /* 30px فوق وتحت - auto يمين وشمال */
  	border-radius: 8px;

}