﻿:root {
    --primary-red: #dd1f25;
    --dark-bg: #0b0b0b;
    --glass-white: rgba(255, 255, 255, 0.1);
}

/* ===== HERO BASE ===== */
.hero-modern {
    background: radial-gradient(circle at 70% 30%, #300a0b 0%, #0f0f0f 70%);
}

/* Content animation */
.hero-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: .8s ease;
}

.carousel-item.active .hero-left {
    opacity: 1;
    transform: translateX(0);
}

/* Button */
.hero-btn {
    transition: .3s ease;
    letter-spacing: 1px;
}

    .hero-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(220,53,69,.5);
    }

/* Image */
.hero-img {
    max-width: 550px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,.5));
    animation: floatImage 6s ease-in-out infinite;
}

/* Indicators */
.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
}

.carousel-indicators .active {
    width: 35px !important;
    border-radius: 20px;
}

/* Floating animation */
@keyframes floatImage {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

/* Mobile */
@media (max-width: 991px) {
    .hero-img {
        max-width: 280px;
    }
}



/*CLIENTS section */
/* Add this to your existing clients-section CSS */

.clients-section {
    background: #0b0b0b;
}

/* Header */
.section-header h2 {
    letter-spacing: 3px;
    position: relative;
}

    .section-header h2::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        margin: 12px auto 0;
        border-radius: 2px;
        background: linear-gradient(90deg, transparent, #dd1f25, transparent);
    }

.section-header p {
    max-width: 600px;
    font-size: 1.05rem;
}

/* Wrapper fade */
.logo-wrapper {
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

/* Slider */
.logo-slider {
    width: max-content;
    gap: 40px;
    animation: scrollLogos 40s linear infinite;
}

/* Cards */
.client-logo-card {
    width: 180px;
    height: 100px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255,255,255,.03);
    transition: .3s ease;
}

    .client-logo-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        opacity: .7;
        filter: grayscale(.25) brightness(.9);
        transition: .3s ease;
    }

    .client-logo-card:hover img {
        opacity: 1;
        filter: grayscale(0) brightness(1);
        transform: scale(1.1);
    }

/* Infinite animation */
@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/*What we are section */


.fluid-about-section {
    background: #080808;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

/* Gradient Text for 'ARE' */
.text-gradient {
    background: linear-gradient(to right, #fff, var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fluid-video-container {
    position: relative;
}

.video-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: #000;
}

.fluid-video {
    width: 100%;
    height: 350px;
    object-fit: contain;
    display: block;
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    .video-overlay:hover {
        background: rgba(0,0,0,0.1);
    }

.overlay-text {
    color: white;
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.play-pulse {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 0 0 rgba(221, 31, 37, 0.6);
    animation: pulse 2s infinite;
}

/* Fluid Animated Background Elements */
.blob-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: var(--primary-red);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

/* Content Styling */
.fluid-badge {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.lead-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align:start
}

.fluid-list {
    padding: 0;
    list-style: none;
}

    .fluid-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        color: #fff;
        margin-bottom: 12px;
    }

.list-icon {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.modern-fluid-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-red);
    color: white;
    padding: 14px 35px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .modern-fluid-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(221, 31, 37, 0.3);
        color: #fff;
    }

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(221, 31, 37, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(221, 31, 37, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(221, 31, 37, 0);
    }
}

@media (max-width: 991px) {
    .fluid-video {
        height: 300px;
    }

    .about-content-wrapper {
        text-align: center;
    }

    .client-logo-card {
        width: 100px;
        height: 70px;
        padding: 10px;
        border-radius: 6px;
        transition:.8s ease;
    }
        .client-logo-card img {
            object-fit: contain;
            opacity: 1;
            filter: none;
            transition: .3s ease;
        }
}



/*oemproducts*/

.oem-modern-section {
    background: radial-gradient(circle at top right, rgba(221,31,37,.08), transparent 28%), #050505;
}

/* Heading */
.oem-heading {
    margin-bottom: 70px;
}

    .oem-heading span {
        color: #dd1f25;
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 14px;
    }

    .oem-heading h2 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        line-height: 1.1;
    }

/* Swiper */
.oemModernSwiper {
    overflow: visible !important;
    padding: 30px 0 80px;
}

    .oemModernSwiper .swiper-slide {
        transform: scale(.82);
        opacity: .45;
        transition: .5s ease;
    }

    .oemModernSwiper .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
        z-index: 5;
    }

/* Product Card */
.modern-product-card {
    max-width: 900px;
    min-height: 430px;
    gap: 40px;
    padding: 45px;
    overflow: hidden;
    background: #111111;
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    transition: .45s ease;
}

    /* Shine Effect */
    .modern-product-card::after {
        content: "";
        position: absolute;
        top: -120%;
        left: -40%;
        width: 35%;
        height: 300%;
        pointer-events: none;
        transform: rotate(25deg);
        transition: .9s ease;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.12), transparent );
    }

    .modern-product-card:hover::after {
        left: 140%;
    }

    .modern-product-card:hover {
        transform: translateY(-8px);
        border-color: rgba(221,31,37,.4);
        box-shadow: 0 18px 45px rgba(0,0,0,.35), 0 0 25px rgba(221,31,37,.12);
    }

.oemModernSwiper .swiper-slide-active .modern-product-card {
    border-color: rgba(221,31,37,.35);
    box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 35px rgba(221,31,37,.15);
}

/* Content */
.product-info {
    flex: 1;
    z-index: 2;
}

.product-category {
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 700;
}

.product-info h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.product-info p {
    color: rgba(255,255,255,.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Button */
.product-btn {
    padding: 14px 28px;
    background: #dd1f25;
    color: #fff;
    font-weight: 600;
    transition: .3s ease;
}

    .product-btn:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(221,31,37,.35);
    }

/* Image */
.product-image {
    flex: 1;
    z-index: 2;
}

    .product-image img {
        max-width: 320px;
        max-height: 320px;
        object-fit: contain;
        filter: drop-shadow(0 15px 30px rgba(0,0,0,.4));
        transition: .5s ease;
    }

.oemModernSwiper .swiper-slide-active .product-image img {
    transform: translateY(-10px) scale(1.04);
}

/* Navigation */
.modern-nav {
    width: 54px !important;
    height: 54px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    transition: .3s ease;
}

    .modern-nav::after {
        font-size: 18px !important;
        color: #fff;
    }

    .modern-nav:hover {
        background: #dd1f25;
    }

/* Pagination */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: rgba(255,255,255,.35);
}

.swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    background: #dd1f25;
}

/* Responsive */
@media (max-width: 1200px) {
    .modern-product-card {
        padding: 35px;
    }
}

@media (max-width: 991px) {

    .oemModernSwiper .swiper-slide,
    .oemModernSwiper .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }

    .modern-product-card {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 35px 25px;
    }

    .product-image img {
        max-width: 250px;
    }

    .modern-nav {
        display: none !important;
    }
}

@media (max-width: 576px) {

    .oem-modern-section {
        padding: 80px 0 !important;
    }

    .oem-heading {
        margin-bottom: 50px;
    }

    .modern-product-card {
        border-radius: 24px;
    }

    .product-info h3 {
        font-size: 28px;
    }
}

/*LegacySection*/


.modern-timeline-section {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(221,31,37,0.08), transparent 30%), linear-gradient( to bottom, #050505, #0b0b0b );
    overflow: hidden;
}


.timeline-header {
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

    .timeline-header span {
        display: inline-block;
        color: #dd1f25;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 18px;
        font-weight: 700;
    }

    .timeline-header h2 {
        color: #fff;
        font-size: clamp(2.8rem, 5vw, 5rem);
        font-weight: 900;
        line-height: 1.1;
        margin: 0;
    }

.timeline-scroll-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 50px 0 20px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #dd1f25 transparent;
}

    /* Chrome Scrollbar */

    .timeline-scroll-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .timeline-scroll-wrapper::-webkit-scrollbar-track {
        background: transparent;
    }

    .timeline-scroll-wrapper::-webkit-scrollbar-thumb {
        background: #dd1f25;
        border-radius: 50px;
    }


.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 3000px;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient( 90deg, rgba(255,255,255,0.04), #dd1f25, rgba(255,255,255,0.04) );
    z-index: 1;
}


.timeline-track {
    display: flex;
    align-items: center;
    gap: 110px;
    width: max-content;
    position: relative;
    z-index: 2;
    padding-inline: 80px;
}


.timeline-card-wrapper {
    position: relative;
    width: 340px;
    flex-shrink: 0;
    scroll-snap-align: center;
}

    /* Alternate Layout */

    .timeline-card-wrapper:nth-child(odd) {
        padding-top: 110px;
    }

    .timeline-card-wrapper:nth-child(even) {
        padding-bottom: 110px;
    }


.timeline-dot {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #dd1f25;
    z-index: 5;
    box-shadow: 0 0 0 10px rgba(221,31,37,0.12), 0 0 35px rgba(221,31,37,0.45);
}

.timeline-card {
    position: relative;
    padding: 28px;
    overflow: hidden;
    background: linear-gradient( 145deg, rgba(255,255,255,1), rgba(255,255,255,0.7) );
    border: 1px solid rgba(255,5,5,0.8);
    backdrop-filter: blur(18px);
    transition: all 0.45s ease;
}

    /* Hover */

    .timeline-card:hover {
        transform: translateY(-10px);
        border-color: rgba(221,31,37,0.35);
        box-shadow: 0 18px 45px rgba(0,0,0,0.35), 0 0 25px rgba(221,31,37,0.15);
    }

    /* =========================================================
   SHINE EFFECT
========================================================= */

    .timeline-card::after {
        content: "";
        position: absolute;
        top: -120%;
        left: -40%;
        width: 35%;
        height: 300%;
        background: linear-gradient( 120deg, transparent, rgba(255,0,0,0.12), transparent );
        transform: rotate(25deg);
        transition: 0.9s ease;
        pointer-events: none;
    }

    .timeline-card:hover::after {
        left: 140%;
    }


.timeline-year {
    font-size: 38px;
    font-weight: 900;
    color: #dd1f25;
    margin-bottom: 25px;
    line-height: 1;
}

.timeline-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(221,31,37,0.12);
    margin-bottom: 25px;
    border: 1px solid rgba(221,31,37,0.15);
}

    .timeline-icon i {
        color: rgb(221,208,0);
        font-size: 22px;
    }


.timeline-card p {
    color: rgba(0,0,0,0.72);
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

@media(max-width: 991px) {

    .timeline-track {
        gap: 70px;
        padding-inline: 30px;
    }

    .timeline-card-wrapper {
        width: 280px;
    }

        .timeline-card-wrapper:nth-child(odd),
        .timeline-card-wrapper:nth-child(even) {
            padding-top: 160px;
            padding-bottom: 160px;
        }

    .timeline-card {
        padding: 30px;
    }

    .timeline-year {
        font-size: 40px;
    }
}

@media(max-width: 768px) {

    .modern-timeline-section {
        padding: 90px 0;
    }

    .timeline-header {
        margin-bottom: 60px;
    }

        .timeline-header h2 {
            font-size: 2.5rem;
        }

    .timeline-track {
        gap: 40px;
    }

    .timeline-card-wrapper {
        width: 240px;
    }

        .timeline-card-wrapper:nth-child(odd),
        .timeline-card-wrapper:nth-child(even) {
            padding-top: 130px;
            padding-bottom: 130px;
        }

    .timeline-card {
        padding: 25px;
    }

    .timeline-year {
        font-size: 34px;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
    }

        .timeline-icon i {
            font-size: 24px;
        }

    .timeline-card p {
        font-size: 14px;
    }
}

.timeline-scroll-wrapper {
    scroll-behavior: smooth;
    cursor: grab;
}

    .timeline-scroll-wrapper:active {
        cursor: grabbing;
    }


/*    why choose us*/


/* =========================================================
   PREMIUM VERTICAL USP SHOWCASE
========================================================= */

.usp-section {
    position: relative;
    padding: 2rem 0;
    background: radial-gradient(circle at top right, rgba(221,31,37,0.08), transparent 25%), linear-gradient( to bottom, #050505, #0b0b0b );
    overflow: hidden;
    min-height:100vh;
}

/* =========================================================
   HEADER
========================================================= */

.usp-header {
    text-align: center;
    margin-bottom: 45px;
}

.usp-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(221,31,37,0.12);
    border: 1px solid rgba(221,31,37,0.2);
    color: #dd1f25;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.usp-header h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

    .usp-header h2 span {
        color: #dd1f25;
    }

/* =========================================================
   MAIN WRAPPER
========================================================= */

.usp-carousel-wrapper {
    position: relative;
    height: 75vh;
    min-height: 430px;
    overflow: hidden;
    mask-image: linear-gradient( to bottom, transparent, black 12%, black 88%, transparent );
    -webkit-mask-image: linear-gradient( to bottom, transparent, black 12%, black 88%, transparent );
}

/* =========================================================
   TRACK
========================================================= */

.usp-carousel-track {
    display: flex;
    flex-direction: column;
    gap: 22px;
    will-change: transform;
}

/* =========================================================
   CARD
========================================================= */

.usp-card {
    position: relative;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 28px;
    min-height: 240px;
    padding: 22px;
    background: linear-gradient( 145deg, rgba(255,255,255,1), rgba(255,255,255,0.7) );
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    backdrop-filter: blur(14px);
    transition: all 0.4s ease;
}

    /* =========================================================
   PREMIUM HOVER
========================================================= */

    .usp-card:hover {
        transform: translateY(-6px);
        border-color: rgba(221,31,37,0.35);
        box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 25px rgba(221,31,37,0.12);
    }

/* =========================================================
   SHINE EFFECT
========================================================= */



/* =========================================================
   IMAGE
========================================================= */

.usp-image {
    position: relative;
    height: 190px;
    overflow: hidden;
}

    .usp-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

.usp-card:hover .usp-image img {
    transform: scale(1.08);
}

.usp-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,0.4), transparent );
    z-index: 1;
}


.usp-content {
    position: relative;
    z-index: 2;
}

/* BIG NUMBER */

.usp-number {
    position: absolute;
    top: -18px;
    right: 0;
    font-size: 56px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}

/* TITLE */

.usp-content h3 {
    color: #000;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

/* DESCRIPTION */

.usp-content p {
    color: rgba(0,0,0,0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 92%;
}

.usp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: #dd1f25;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.35s ease;
}

    .usp-btn:hover {
        background: #fff;
        color: #000;
        transform: translateY(-2px);
    }

    .usp-btn i {
        transition: transform 0.35s ease;
    }

    .usp-btn:hover i {
        transform: translateX(4px);
    }

.usp-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -120px;
    width: 250px;
    height: 250px;
    background: rgba(221,31,37,0.12);
    filter: blur(120px);
    transform: translateY(-50%);
}

.usp-section::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -120px;
    width: 250px;
    height: 250px;
    background: rgba(221,31,37,0.12);
    filter: blur(120px);
    transform: translateY(-50%);
}

@media(max-width: 991px) {

    .usp-carousel-wrapper {
        height: 58vh;
    }

    .usp-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .usp-image {
        height: 220px;
    }

    .usp-content p {
        max-width: 100%;
    }
}

@media(max-width: 768px) {

    .usp-section {
        padding: 60px 0;
    }

    .usp-carousel-wrapper {
        height: 62vh;
        min-height: 480px;
    }

    .usp-card {
        padding: 18px;
        border-radius: 24px;
    }

    .usp-image {
        height: 200px;
    }

    .usp-content h3 {
        font-size: 1.4rem;
    }

    .usp-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .usp-number {
        font-size: 42px;
    }
}


/*PremiumProducts*/

.premium-products-section {
    position: relative;
    background: #050505;
    padding: 60px 0;
    overflow: hidden;
}

.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding: 0 15px;
}

.premium-subtitle {
    color: #dd1f25;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.premium-title {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

/* NAVIGATION BUTTONS */

.premium-nav {
    display: flex;
    gap: 10px;
}

.premium-prev,
.premium-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

    .premium-prev:hover,
    .premium-next:hover {
        background: #dd1f25;
        border-color: #dd1f25;
        transform: translateY(-3px);
    }

/* CARD DESIGN */

.premium-product-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    isolation: isolate;
}

    /* NEW CORNER ROTATING SHINE */

    .premium-product-card::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        top: -140px;
        right: -140px;
        border-radius: 50%;
        background: linear-gradient( 135deg, transparent 35%, rgba(255,255,255,0.08) 45%, rgba(221,31,37,0.28) 60%, transparent 75% );
        transform: rotate(0deg);
        transition: all 0.8s ease;
        opacity: 0.7;
        pointer-events: none;
        z-index: 0;
    }

    /* INNER LIGHT */

    .premium-product-card::after {
        content: "";
        position: absolute;
        inset: 1px;
        background: radial-gradient(circle at top right, rgba(255,255,255,0.05), transparent 30%);
        z-index: -1;
    }

    .premium-product-card:hover {
        transform: translateY(-10px);
        border-color: rgba(221,31,37,0.4);
        box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    }

        /* ROTATING CORNER EFFECT ON HOVER */

        .premium-product-card:hover::before {
            transform: rotate(180deg) scale(4.25);
            top: -110px;
            right: -110px;
            opacity: 1;
        }

/* IMAGE */

.premium-image-wrap {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.premium-product-image {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
    transition: transform 0.4s ease;
}

.premium-product-card:hover .premium-product-image {
    transform: translateY(-6px) scale(1.03);
}

/* CONTENT */

.premium-content {
    position: relative;
    z-index: 2;
}

.premium-product-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.premium-product-description {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* BADGES */

.premium-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.premium-category {
    background: rgba(221,31,37,0.1);
    color: #ff4d52;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid rgba(221,31,37,0.2);
}

.premium-badge {
    background: rgba(255,255,255,0.05);
    color: #d9d9d9;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.08);
}

/* FOOTER */

.premium-footer {
    margin-top: auto;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.premium-btn {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .premium-btn i {
        transition: transform 0.3s ease;
    }

    .premium-btn:hover {
        color: #dd1f25;
    }

        .premium-btn:hover i {
            transform: translateX(4px);
        }

/* SWIPER */

.premiumProductsSwiper {
    overflow: visible !important;
    padding-bottom: 10px;
}

/* MOBILE */

@media (max-width: 768px) {

    .premium-products-section {
        padding: 45px 0;
    }

    .premium-header {
        margin-bottom: 30px;
    }

    .premium-product-card {
        min-height: 400px;
        padding: 18px;
    }

    .premium-image-wrap {
        height: 140px;
    }

    .premium-title {
        font-size: 1.5rem;
    }
}

/*video Play Section*/

.gt-video-section {
    background: #050505;
}

.gt-video-wrapper {
    min-height: 75vh;
    position: relative;
    overflow: hidden;
    /* PARALLAX BACKGROUND */
    background-image: url('/images/2-1920x800.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,5,5,1);
}

/* DARK OVERLAY */
.gt-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.75));
    z-index: 1;
}

/* CONTENT */
.gt-video-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 850px;
    padding: 60px 20px;
}

.gt-video-subtitle {
    display: inline-block;
    color: #dd1f25;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.gt-video-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.gt-video-text {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 45px;
}

.video-btn {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: visible;
    background: rgba(20,20,20,0.75);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
    z-index: 2;
}

    /* ROTATING BORDER */
    .video-btn::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 50%;
        padding: 2px;
        background: linear-gradient( 135deg, rgba(255,255,255,0.15), rgba(221,31,37,0.95), rgba(255,255,255,0.15) );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: borderRotate 5s linear infinite;
    }

@keyframes borderRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* RIPPLE EFFECT */
.ripple-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(221,31,37,0.45);
    top: 0;
    left: 0;
    animation: premiumRipple 3s linear infinite;
    z-index: -1;
}

    .ripple-wave:nth-child(2) {
        animation-delay: 1s;
    }

    .ripple-wave:nth-child(3) {
        animation-delay: 2s;
    }

@keyframes premiumRipple {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }

    70% {
        opacity: 0.2;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* PLAY ICON */
.play-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #dd1f25;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(221,31,37,0.45);
}

.play-text {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* HOVER */
.video-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 60px rgba(221,31,37,0.35);
}

    .video-btn:hover .play-icon {
        transform: scale(1.12);
        box-shadow: 0 15px 35px rgba(221,31,37,0.7);
    }

/* =========================================
       MOBILE
    ========================================= */

@media (max-width: 991px) {
    .gt-video-wrapper {
        min-height: 60vh;
        /* fixed background issue on mobile */
        background-attachment: scroll;
    }

    .gt-video-title {
        font-size: 2.3rem;
    }

    .video-btn {
        width: 110px;
        height: 110px;
    }

    .play-icon {
        width: 48px;
        height: 48px;
    }

    .play-text {
        font-size: 0.7rem;
    }
}

/*Testimonial section */

.testimonial-modern-section {
    background: #050505;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    background: url('/images/testimonial-bg.jpg') center/cover no-repeat;
    opacity: .18;
}

.testimonial-card {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
    padding: 32px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: .4s ease;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        border-color: rgba(221,31,37,.5);
        box-shadow: 0 20px 50px rgba(0,0,0,.45);
    }

.testimonial-review {
    color: rgba(255,255,255,.78);
    line-height: 1.9;
    font-size: .96rem;
}

.testimonial-prev,
.testimonial-next {
    width: 48px;
    height: 48px;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #dc3545;
    width: 26px;
    border-radius: 20px;
}

@@media(max-width:768px) {
    .testimonial-card {
        padding: 24px;
        min-height: auto;
    }

    .display-5 {
        font-size: 2rem;
    }
}
