/*
*******************************************
*******************************************

** - Default CSS
** - Navbar Area CSS
** - Side Navbar Area CSS
** - Whatsapp shortcut Area CSS
** - Main Content Area CSS
** - Home Header Area CSS

** - Bottom Navigation CSS

*******************************************
*******************************************
*/

/*================================================
Default CSS
=================================================*/

:root {
    --red: #e60000;
    --red-dark: #b30000;
    --red-light: #ff1a1a;
    --charcoal: #2f3542;
    --charcoal2: #1e2530;
    --gray: #f4f5f7;
    --mid-gray: #8d9db6;
    --white: #ffffff;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
}

body {
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

:focus {
    outline: 0 !important;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    display: none;
}

::placeholder {
    color: #000 !important;
    opacity: 1;
}

:root {
    scroll-padding-top: 80px;
}

.form-control {
    outline: none !important;
    border-radius: 0;
}

.form-control:focus {
    box-shadow: none !important;
}

#hero,
#about,
#products,
#brands,
#export,
#why,
section[id] {
    scroll-margin-top: 100px;
    scroll-padding-top: 100px;
}

:root {
    scroll-padding-top: 80px; 
}

/*================================================
Header Top Area CSS
=================================================*/

.header-top {
    background-color: #2F3540;
    padding: 3px 0;
    text-align: center;
}

.header-top .contact-info a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    align-items: center;
}

.header-top .contact-info a i {
    color: #E31313;
    margin-right: 10px;
    margin-top: -5px;
    font-size: 15px;
}

.dubai-icon img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 989px) {
    .header-top .contact-info a {
        margin: 2px 5px;
    }
}

@media (max-width: 768px) {
    .header-top .contact-info a {
        margin: 2px 5px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .header-top .contact-info a {
        margin: 2px 3px;
        font-size: 0.6rem;
    }

    .header-top .contact-info a i {
        margin-right: 0px;
        font-size: 12px;
    }

    .dubai-icon img {
        width: 46px;
    }
}

/*================================================
Navbar Area CSS
=================================================*/

#Navbar {
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 999;
    /*background-color: rgb(247, 218, 165);*/
    background-color: rgb(241, 244, 247);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.website-name {
    display: flex;
    align-items: center;
}

.website-name .logo-img img {
    width: 70px;
    height: 50px;
}

.website-name .logo-text h1 {
    color: #000;
    font-size: 23px;
    margin: 0 0 0 12px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.website-name .logo-text h2 {
    color: #000;
    font-size: 15.5px;
    margin: 0 0 0 12px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.navbar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-menu ul {
    display: flex;
    padding-top: 23px;
    column-gap: 30px;
}

.navbar-item {
    display: flex;
    align-items: center;
}

.navbar-menu ul a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    position: relative;
    padding: 0 10px;
    font-weight: 600;
    font-family: 'Georgia', serif;
}

.navbar-menu ul a:after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #dd4747, #ff9292, #A60E0E);
    height: 4px;
    width: 0;
    left: 0;
    bottom: -5px;
    transition: width 0.4s ease-in-out;
    border-radius: 50px;
    box-shadow: 0 0 5px #ffa41b88;
}

.navbar-menu ul a:hover:after {
    width: 100%;
}

.navbar-menu ul a li {
    list-style: none;
    display: flex;
    align-items: center;
}

.navbar-menu ul a .fa-chevron-down {
    margin-left: 5px;
    font-size: 12px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/*
.navbar-search input {
    width: 400px;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.navbar-search input:focus {
    border-color: #E31313;
    box-shadow: 0 0 5px rgba(255, 111, 60, 0.4);
}

*/

.navbar-search {
    position: relative;
    display: inline-block;
}

.navbar-search input {
    width: 400px;
    padding: 10px 40px 10px 20px;
    /* right side space for icon */

    background: rgba(199, 197, 197, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(138, 136, 136, 0.3);
    border-radius: 8px;

    font-size: 14px;
    color: #000;
    outline: none;
    transition: 0.3s ease;
}

.navbar-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.navbar-search input:focus {
    border-color: #E31313;
}

/* Search Icon */
.navbar-search i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #E31313;
    pointer-events: none;
}

.media-service {
    display: none;
    text-decoration: none;
}

.media-service-icon {
    background-color: #E31313 !important;
    color: #fff;
    padding: 15px;
    font-size: 14px;
    border-radius: 50%;
}

.navbar-cart {
    position: relative;
    font-size: 22px;
    color: #000;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #ff6f3c;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 1px 6px;
    border-radius: 50%;
}

.navbar-menu-toggle {
    display: none;
    font-size: 30px;
    font-weight: 900;
    color: #000;
}

@media screen and (max-width: 1520px) {
    .navbar-right .navbar-search {
        display: none;
    }

    .media-service {
        display: flex;
    }
}

@media screen and (max-width: 1158px) {
    .navbar-menu-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
    }

    .media-service {
        display: none;
    }
}

@media screen and (max-width: 576px) {

    .website-name .logo-img img {
        width: 50px;
        height: 40px;
    }

    .website-name .logo-text h1 {
        font-size: 18px !important;
    }

    .website-name .logo-text h2 {
        font-size: 12px !important;
    }

}

@media screen and (max-width: 360px) {
    .website-name .logo-text h1 {
        font-size: 20px;
    }
}

/*================================================
Side Navbar Area CSS
=================================================*/

.side-navbar {
    position: fixed;
    width: 70%;
    height: 100%;
    top: 0;
    left: -100%;
    padding: 20px;
    transition: 2s;
    border-radius: 5px;
    z-index: 9999;
    background-color: rgb(241, 244, 247);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow-y: scroll;
}

.side-navbar-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-navbar-logo {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #2F3540 50%, #E31313 50%) 1;
}

.side-navbar-logo img {
    width: 100%;
    height: 100px;
}

.cross-symbol {
    color: #E31313;
    font-size: 20px;
    cursor: pointer;
}

.side-navbar-link {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.side-navbar-link a {
    color: #333;
    text-decoration: none;
}

.side-navbar-link a:hover {
    color: #E31313;
}

.side-navbar-bottom-img {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.side-navbar-bottom-img img {
    width: 150px;
    position: absolute;
    bottom: 30px;
    left: 30px;
}

/*================================================
Whatsapp shortcut Area CSS
=================================================*/

.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 999;
    cursor: pointer;
    animation: zoomPulse 2s infinite;
}

.whatsapp-icon img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0px 0px 5px rgb(3, 247, 3));
    border-radius: 50%;
    object-fit: contain;
}

@keyframes zoomPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}


@media (max-width: 480px) {
    .whatsapp-icon img {
        width: 40px;
        height: 40px;
    }
}

/*================================================
Main Content Area CSS
=================================================*/

/* white
background-color: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(10px); */

/* black 
style="background-color: rgba(0, 0, 0, 0.6);" */

/*
.main-content {
    background-image: url(../img/common-img/body-img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}*/

/*================================================
    Home Header Area CSS
=================================================*/
/*
#hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--charcoal2);
    background-image: url(../img/header-img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
} */

#hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
        url(../img/header-img.jpg);

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    #hero {
        min-height: 100vh;
    }
}

/* Animated gradient canvas background */
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Decorative geometric overlays */
.hero-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-geo::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.18) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: pulsate 6s ease-in-out infinite alternate;
}

.hero-geo::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.12) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: pulsate 8s ease-in-out infinite alternate-reverse;
}

@keyframes pulsate {
    from {
        transform: scale(1);
        opacity: 0.8;
    }

    to {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Red diagonal slash accent */
.hero-slash {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    background: transparent;
    pointer-events: none;
}

/* Grid overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-tagline {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2rem, 7vw, 3rem);
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.6s forwards;
}

.hero-tagline .accent {
    color: var(--red);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto 38px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.9s forwards;
}

.hero-cta-wrap {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 1s ease 1.1s forwards;
}

.btn-hero-primary {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(230, 0, 0, 0.4);
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(230, 0, 0, 0.5);
    color: var(--white);
}

.btn-hero-outline {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    padding: 14px 36px;
    border-radius: 3px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    text-decoration: none;
}

.btn-hero-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    color: var(--white);
}

/* Stats strip */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 32px;
    /*border-top: 1px solid rgba(255, 255, 255, 0.1);*/
    opacity: 0;
    animation: fadeSlideUp 1s ease 1.3s forwards;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--red);
    line-height: 1;
    text-shadow: 0.5px 0.5px 1px #000;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin-top: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    animation: fadeIn 1s ease 1.8s forwards;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.scroll-dot {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--red);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(14px);
        opacity: 0;
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* =============================================
       SECTION SHARED STYLES
============================================= */

section {
    padding: 60px 0;
}

.section-eyebrow {
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: clamp(1rem, 4.5vw, 1.5rem);
    }
}

.section-title .accent {
    color: var(--red);
}

.section-body {
    font-size: 1.05rem;
    color: #5a6375;
    line-height: 1.8;
    max-width: 560px;
}

.red-rule {
    width: 56px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 24px;
}

/* =============================================
       ABOUT SECTION
============================================= */

#about {
    background: var(--white);
}

.about-visual {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.about-img-bg {
    width: 100%;
    height: 500px;
    aspect-ratio: 4/3;
    background:
        url(../img/aboutus-img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-overlay-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--red);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(230, 0, 0, 0.35);
}

.about-overlay-badge .num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1;
}

.about-overlay-badge .lbl {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #eef0f4;
}

.about-feature:last-child {
    border-bottom: none;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(230, 0, 0, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--red);
    transition: background 0.2s, color 0.2s;
}

.about-feature:hover .about-feature-icon {
    background: var(--red);
    color: var(--white);
}

.about-feature-text h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.about-feature-text p {
    font-size: 0.9rem;
    color: #7a8497;
    margin: 0;
    line-height: 1.5;
}

/* =============================================
       PRODUCTS SECTION
============================================= */

#products {
    background: var(--gray);
}

.product-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.35s;
    height: 100%;
    cursor: default;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.product-card:hover .product-icon-wrap {
    background: var(--red);
}

.product-card:hover .product-icon-wrap i {
    color: var(--white);
}

.product-card-header {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-header::before {
    content: '';
    position: absolute;
    inset: 0;
}

/* Card accent colors */
.prod-accessories .product-card-header {
    background: linear-gradient(135deg, #1e2530, #2f3542);
}

.prod-laptops .product-card-header {
    background: linear-gradient(135deg, #2a1a1a, #3d2020);
}

.prod-desktops .product-card-header {
    background: linear-gradient(135deg, #1a1a2a, #20203d);
}

.prod-printers .product-card-header {
    background: linear-gradient(135deg, #1a2a1a, #203d20);
}

.product-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    position: relative;
    z-index: 1;
}

.product-icon-wrap i {
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
}

.prod-accessories .product-icon-wrap i {
    color: #a0b4cc;
}

.prod-laptops .product-icon-wrap i {
    color: #ffaaaa;
}

.prod-desktops .product-icon-wrap i {
    color: #aab4ff;
}

.prod-printers .product-icon-wrap i {
    color: #aaffaa;
}

/* Diagonal corner accent */
.product-card-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 48px 48px;
    border-color: transparent transparent var(--white) transparent;
}

.product-card-body {
    padding: 24px;
}

.product-card-body h4 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.product-card-body p {
    font-size: 0.9rem;
    color: #7a8497;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gray);
    color: var(--charcoal);
    border-radius: 2px;
    padding: 4px 10px;
    transition: background 0.2s, color 0.2s;
}

.product-card:hover .product-tag {
    background: rgba(230, 0, 0, 0.08);
    color: var(--red);
}

/* =============================================
       BRANDS SECTION
============================================= */

#brands {
    background: var(--white);
    padding: 70px 0;
}

.brands-title {
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 48px;
}

.brands-track-wrap {
    overflow: hidden;
    position: relative;
}

.brands-track-wrap::before,
.brands-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.brands-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.brands-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: brandScroll 18s linear infinite;
    width: max-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    flex-shrink: 0;
}

.brand-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 64px;
    border: 1px solid #e8eaf0;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    cursor: default;
}

.brand-logo-box:hover {
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(230, 0, 0, 0.12);
    transform: scale(1.06);
}

.brand-logo-box span {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    text-transform: uppercase;
    transition: color 0.3s;
}

.brand-logo-box:hover span {
    color: var(--red);
}

/* =============================================
       EXPORT SECTION
============================================= */

#export {
    background: var(--charcoal2);
}

#export .section-title {
    color: var(--white);
}

#export .section-body {
    color: rgba(255, 255, 255, 0.55);
}

#export .section-eyebrow {
    color: var(--red);
}

.export-region {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 32px 28px;
    height: 100%;
    transition: border-color 0.3s, background 0.3s;
}

.export-region:hover {
    border-color: var(--red);
    background: rgba(230, 0, 0, 0.06);
}

.export-region-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.region-icon {
    width: 48px;
    height: 48px;
    background: rgba(230, 0, 0, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.export-region-header h4 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

.export-region-header small {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid-gray);
}

.country-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.country-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s, padding-left 0.2s;
}

.country-list li:last-child {
    border-bottom: none;
}

.country-list li:hover {
    color: var(--white);
    padding-left: 6px;
}

.country-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.country-list li .flag {
    font-size: 1.1rem;
}

.export-divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(230, 0, 0, 0.4), transparent);
    align-self: stretch;
}

/* GCC strip */
.gcc-strip {
    background: rgba(230, 0, 0, 0.1);
    border: 1px solid rgba(230, 0, 0, 0.2);
    border-radius: 6px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gcc-strip .gcc-icon {
    font-size: 2.4rem;
}

.gcc-strip h5 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
}

.gcc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.gcc-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(230, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(230, 0, 0, 0.3);
    border-radius: 2px;
    padding: 5px 12px;
    transition: background 0.2s;
}

.gcc-tag:hover {
    background: var(--red);
    color: var(--white);
}

/* =============================================
       WHY CHOOSE US
============================================= */

#why {
    background: var(--gray);
}

.why-card {
    background: var(--white);
    border-radius: 6px;
    padding: 32px 28px;
    height: 100%;
    border-bottom: 3px solid transparent;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    border-bottom-color: var(--red);
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.why-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 3.5rem;
    color: rgba(230, 0, 0, 0.1);
    line-height: 1;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.why-card:hover .why-num {
    color: rgba(230, 0, 0, 0.2);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(230, 0, 0, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--red);
    margin-bottom: 18px;
    transition: background 0.3s, color 0.3s;
}

.why-card:hover .why-icon {
    background: var(--red);
    color: var(--white);
}

.why-card h5 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.92rem;
    color: #7a8497;
    line-height: 1.7;
    margin: 0;
}

/* =============================================
       FOOTER
       ============================================= */
footer {
    background: var(--charcoal2);
    padding: 60px 0 30px;
    border-top: 3px solid var(--red);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-brand img {
    width: 50px;
    height: 40px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.footer-bottom .red {
    color: var(--red);
}

/* =============================================
       UTILITIES
       ============================================= */
.text-red {
    color: var(--red);
}

.bg-red {
    background: var(--red);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .about-overlay-badge {
        bottom: 10px;
        right: 10px;
    }

    .export-divider {
        display: none;
    }

    section {
        padding: 50px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-stats {
        gap: 28px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    #navbar .nav-cta {
        margin-left: 0;
    }
}