
        /* =========================================
   PREMIUM HOMEPAGE ENHANCEMENT
   Riyadh Digitals — Enhanced UI/UX Layer
   Colors preserved: #231f20 (charcoal), #eb1e24 (red)
   ========================================= */

/* =========================================
   GLOBAL ENHANCEMENTS
   ========================================= */
:root {
    --primary-color: #231f20;
    --secondary-color: #eb1e24;
    --gradient-secondary: linear-gradient(135deg, #eb1e24 0%, #8b1014 100%);
    --gradient-primary: linear-gradient(135deg, #231f20 0%, #4a4244 100%);
    --shadow-premium: 0 20px 50px rgba(35, 31, 32, 0.08);
    --text-dark: #222;
    --text-light: #666;
    --glass: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.12);
    --red-glow: 0 0 40px rgba(235,30,36,0.25);
    --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--secondary-color); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }

/* =========================================
   ULTIMATE BANNER / HERO — HYPER-PREMIUM UI
   ========================================= */

/* --- 1. Main Container & Environment --- */
.banner_sec {
    position: relative;
    overflow: hidden;
    perspective: 1500px;
    background-color: #0a0a0a; /* Fallback for deep contrast */
}

.banner_sec::after { display: none; }
.banner_sec .carousel-item { position: relative; }

/* Cinematic Gradient Overlay + Vignette */
.banner_sec .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(115deg, rgba(20,18,18,0.92) 0%, rgba(25,22,22,0.6) 40%, rgba(10,10,10,0.2) 100%),
        radial-gradient(circle at 50% 50%, transparent 20%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

/* Live "Data Stream" Particle Background */
.banner_sec .carousel-item::after {
    content: '';
    position: absolute;
    inset: -50%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.15), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(235,30,36,0.15), transparent),
        radial-gradient(1.5px 1.5px at 50px 160px, rgba(255,255,255,0.1), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(235,30,36,0.05), transparent);
    background-size: 150px 150px;
    z-index: 1;
    pointer-events: none;
    animation: digitalDrift 60s linear infinite;
    opacity: 0.6;
}

@keyframes digitalDrift {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-500px) rotate(5deg); }
}

.banner_sec .container {
    position: relative;
    z-index: 2;
}

/* --- 2. Hyper-Glassmorphism Text Card --- */
.banner_text {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%) !important;
    backdrop-filter: blur(28px) saturate(220%);
    -webkit-backdrop-filter: blur(28px) saturate(220%);
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 24px !important;
    padding: 3.5rem !important;
    box-shadow: 
        -15px 15px 40px rgba(0,0,0,0.5),
        inset 1px 1px 0 rgba(255,255,255,0.15),
        inset -1px -1px 0 rgba(235,30,36,0.1) !important;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: hyperCardIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Subtle Glow Edge */
.banner_text::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: linear-gradient(to bottom, transparent, var(--secondary-color, #eb1e24), transparent);
    box-shadow: 0 0 20px var(--secondary-color, #eb1e24);
}

/* Holographic Light Sweep */
.banner_text::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 40%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
    transform: skewX(-25deg);
    animation: glassShine 7s infinite cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

@keyframes glassShine {
    0%, 60% { left: -100%; }
    100% { left: 200%; }
}

@keyframes hyperCardIn {
    from { opacity: 0; transform: translateY(40px) scale(0.95) rotateX(15deg); }
    to   { opacity: 1; transform: translateY(0) scale(1) rotateX(0); }
}

/* Animated Span Tag */
.banner_text span {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: fadeFloat 1s ease both 0.3s;
}

.banner_text span::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--secondary-color, #eb1e24);
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(235,30,36,0.6);
    animation: pulseDot 1.5s infinite alternate;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(235,30,36,0.3); }
    50% { box-shadow: 0 0 0 6px rgba(235,30,36,0.1); }
}

/* --- 3. Cylinder "Slot Machine" Sliding Words --- */
.banner_text h1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.sliding-words-wrapper {
    display: inline-flex;
    overflow: hidden;
    height: 1.2em; 
    position: relative;
    vertical-align: bottom;
    padding-left: 8px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.sliding-words-list {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: slideWords 10s infinite cubic-bezier(0.75, 0, 0.25, 1);
}

.sliding-words-list li {
    display: block;
    height: 1.2em;
    color: var(--secondary-color, #eb1e24);
    font-weight: 800;
    filter: drop-shadow(0 0 12px rgba(235,30,36,0.5));
}

@keyframes slideWords {
    0%, 15%  { transform: translateY(0); }
    20%, 35% { transform: translateY(-1.2em); }
    40%, 55% { transform: translateY(-2.4em); }
    60%, 75% { transform: translateY(-3.6em); }
    80%, 95% { transform: translateY(-4.8em); }
    100%     { transform: translateY(0); }
}

/* --- 4. Magnetic & Fluid CTA Buttons --- */
.banner_cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2.5rem;
}

.banner_cta a {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 50px; /* Premium pill shape */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

/* Hover Light Sweep */
.banner_cta a::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
    z-index: -1;
}

/* Magnetic Levitation Hover */
.banner_cta a:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 15px 25px rgba(0, 0, 0, 0.4), 
        0 0 20px rgba(235, 30, 36, 0.3);
}
.banner_cta a:hover::after { left: 150%; }

/* --- 5. Stationary High-Resolution 4K Image --- */
.banner_sec .col-lg-5 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glowing Aura Pulse Background */
.banner_sec .col-lg-5::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(235,30,36,0.15) 0%, transparent 65%);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 0;
    animation: energyPulse 6s infinite alternate ease-in-out;
}

.banner_sec .col-lg-5 img {
    position: relative;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast; 
    image-rendering: crisp-edges;               
    transform: translateZ(0);                   
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5)) drop-shadow(0 0 15px rgba(235,30,36,0.1));
    backface-visibility: hidden;
}

@keyframes energyPulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* --- 6. Cinematic Scroll / Swipe Down Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    opacity: 0.7;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
    filter: drop-shadow(0 10px 15px rgba(235, 30, 36, 0.4));
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    margin-bottom: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--secondary-color, #eb1e24);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
    box-shadow: 0 0 10px rgba(235, 30, 36, 0.8);
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrows span {
    display: block;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    margin: -3px;
    animation: scrollArrows 2s infinite;
}

.arrows span:nth-child(2) { animation-delay: -0.2s; }
.arrows span:nth-child(3) { animation-delay: -0.4s; }

@keyframes scrollWheel {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0) scaleY(1); }
    50%  { opacity: 1; transform: translateX(-50%) translateY(10px) scaleY(1.5); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px) scaleY(1); }
}

@keyframes scrollArrows {
    0%   { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50%  { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}
/* =========================================
   STICKY MARQUEE — NEON EDGE
   ========================================= */
.sticky_menu {
    background: var(--primary-color) !important;
    border-bottom: none !important;
    border-top: none !important;
    position: relative;
    overflow: hidden;
}

.sticky_menu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.sticky_menu::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.sticky_menu a {
    color: rgba(255,255,255,0.75) !important;
    font-size: 11px !important;
    letter-spacing: 3px !important;
    transition: all 0.3s ease !important;
    position: relative;
}

.sticky_menu a:hover {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 20px rgba(235,30,36,0.5);
}

.sticky_menu .separator {
    color: rgba(235,30,36,0.5) !important;
}

/* =========================================
   SERVICES TAB — PREMIUM REDESIGN
   ========================================= */
.services_tab_section {
    background: #fff;
    padding: 100px 0 !important;
    position: relative;
}

.services_tab_section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(235,30,36,0.04) 0%, transparent 65%);
    pointer-events: none;
}

/* Section heading upgrade */
.services_tab_section .commn_head {
    margin-bottom: 50px;
    position: relative;
}

/* Tab bar — floating pill style */
.features-top {
    background: #f8f8f8;
    border-radius: 16px !important;
    border-bottom: none !important;
    padding: 6px 130px 6px 6px !important;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
    max-width: 100% !important;
}

.menu_tab {
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    transition: all 0.3s var(--ease-bounce) !important;
    color: #888 !important;
    white-space: nowrap;
}

.gallery-thumbs .swiper-slide-thumb-active .menu_tab,
.menu_tab:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-bottom: none !important;
    box-shadow: 0 6px 20px rgba(35,31,32,0.2) !important;
    transform: translateY(-1px);
}

.gallery-thumbs .swiper-slide-thumb-active .menu_tab span,
.menu_tab:hover span {
    color: #fff !important;
}

/* Nav arrows — pill style */
.features-top .nav_arrow {
    bottom: 50% !important;
    transform: translateY(50%);
}

.features-top .nav_arrow i {
    width: 36px !important;
    height: 36px !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    transition: all 0.3s ease !important;
}

.features-top .nav_arrow i:hover {
    background: var(--secondary-color) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(235,30,36,0.35) !important;
    transform: scale(1.08);
}

/* Tab slide content */
.gallery-top .swiper-slide {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-top .swiper-slide-active {
    opacity: 1;
    transform: translateY(0);
}

/* Service text heading */
.services-tab-text h3 {
    font-size: 28px !important;
    font-weight: 800 !important;
    line-height: 1.2;
    position: relative;
    padding-left: 18px;
}

.services-tab-text h3::before {
    content: '';
    position: absolute;
    left: 0; top: 6px;
    width: 4px;
    height: 70%;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Tab inner links — card style */
.tab_inn_links {
    background: #f8f8f8;
    border-radius: 14px;
    padding: 12px 16px !important;
}

.tab_inn_links a {
    padding: 10px 12px !important;
    border-radius: 8px;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #444 !important;
    transition: all 0.25s ease !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tab_inn_links a:last-child { border-bottom: none; }

.tab_inn_links a:hover {
    background: #fff !important;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    padding-left: 18px !important;
}

.tab_inn_links a::before {
    color: var(--secondary-color) !important;
    transition: transform 0.3s ease !important;
}

/* =========================================
   VIDEO SECTION — CINEMATIC FRAME
   ========================================= */
.Watch-Our-Video {
    position: relative;
    overflow: hidden;
}

/* Video wrapper — premium frame */
.home_video > div {
    border-radius: 20px !important;
    overflow: hidden !important;
    position: relative !important;
    box-shadow: 
        0 30px 80px rgba(35,31,32,0.25),
        0 0 0 1px rgba(235,30,36,0.15),
        0 0 0 8px rgba(35,31,32,0.06) !important;
    transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s ease !important;
}

.home_video > div:hover {
    transform: scale(1.015);
    box-shadow: 
        0 40px 100px rgba(35,31,32,0.3),
        0 0 0 1px rgba(235,30,36,0.3),
        0 0 0 8px rgba(35,31,32,0.06) !important;
}

.home_video > div::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(35,31,32,0.05) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
    border-radius: 20px;
}

/* =========================================
   STATS / CLIENT FIRST — PREMIUM COUNTERS
   ========================================= */
/* =========================================
   STATS / CLIENT FIRST — PREMIUM COUNTERS
   ========================================= */
.client_first {
    position: relative;
    overflow: hidden;
    margin: 60px 20px !important;
    border-radius: 32px !important;
}

.client_first::before {
    content: '';
    position: absolute;
    top: -50%; left: -30%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
    pointer-events: none;
    animation: rotateGlow 25s linear infinite;
}

.clients-section-kicker {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.3) !important;
    background: rgba(255,255,255,0.1) !important;
}

/* Stats grid cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stats-grid > div {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-bounce) !important;
    position: relative;
    overflow: hidden;
}

.stats-grid > div:hover {
    transform: translateY(-6px) !important;
    background: rgba(255,255,255,0.1) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stats-grid .counter {
    font-size: 3.5rem !important;
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    display: block;
}

/* =========================================
   PROVEN RESULTS — SPLIT CARD UPGRADE
   ========================================= */
.proven_result {
    padding: 100px 0;
}

.proven_result .proven_text {
    padding: 40px !important;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.proven_result .proven_text::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-secondary);
}

.proven_result .proven_text h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

/* UPDATE: Removed border/shadow per request */
.proven_result .proven_image img {
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: transform 0.5s ease;
}

.proven_result .proven_image img:hover {
    transform: scale(1.02);
}

.proven_result .orng_cta,
.proven_result .blue_cta {
    margin-top: 0 !important;
}

/* =========================================
   WHY CHOOSE — DARK SECTION UPGRADE
   ========================================= */
.why-choose-sec-premium {
    position: relative;
    overflow: hidden;
    background: var(--primary-color) !important;
    isolation: isolate;
}

.why-choose-sec-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(235,30,36,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
    z-index: 0;
}

.why-choose-sec-premium .container { position: relative; z-index: 1; }

.premium-card {
    border-radius: 22px !important;
    padding: 36px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06) !important;
    transition: all 0.4s var(--ease-bounce) !important;
    position: relative;
    overflow: hidden;
}

.premium-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.premium-card:hover::after { transform: scaleX(1); }

.premium-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 70px rgba(35,31,32,0.15) !important;
}

.why-icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 28px rgba(235,30,36,0.4) !important;
    transition: all 0.4s var(--ease-bounce) !important;
}

.premium-card:hover .why-icon {
    transform: rotate(-8deg) scale(1.1);
}

.why-nav {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15) !important;
    box-shadow: none !important;
    width: 44px !important;
    height: 44px !important;
    transition: all 0.3s ease !important;
}

.why-nav:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.why-nav i { color: #fff !important; }

/* =========================================
   TRAFFIC / SOLUTIONS — CARD UPGRADE
   ========================================= */
.monthly-traffic-exact {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.monthly-traffic-exact::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse at top left, rgba(235,30,36,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.traffic-title {
    position: relative;
    padding-left: 0;
}

.traffic-card {
    border-radius: 20px !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06) !important;
    transition: all 0.4s var(--ease-bounce) !important;
    position: relative;
    overflow: hidden;
}

.traffic-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-secondary);
}

.traffic-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 60px rgba(35,31,32,0.12) !important;
    border-color: rgba(235,30,36,0.2) !important;
}

.card-icon {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, rgba(35,31,32,0.08) 0%, rgba(235,30,36,0.08) 100%) !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
}

.traffic-prev:hover, .traffic-next:hover {
    background: var(--secondary-color) !important;
    color: #fff !important;
    transform: scale(1.1);
}

.traffic-points .point .icon {
    background: linear-gradient(135deg, rgba(35,31,32,0.08), rgba(235,30,36,0.08)) !important;
    border-radius: 14px !important;
    transition: all 0.3s ease;
}

.traffic-points .point:hover .icon {
    background: var(--gradient-secondary) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(235,30,36,0.3);
    transform: scale(1.08);
}

/* =========================================
   PROCESS SECTION — TIMELINE UPGRADE
   ========================================= */
/* =========================================
   PROCESS SECTION — TIMELINE UPGRADE
   ========================================= */
.process-sec {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 60px 0 !important; 
}

.process-sec .commn_head { margin-bottom: 10px !important; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 15px; /* Reduced Spacing */
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    z-index: 0;
}

.process-item {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s var(--ease-bounce);
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(35,31,32,0.12);
}

.process-num {
    font-size: 64px !important;
    font-weight: 900 !important;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.process-icon {
    width: 56px; height: 56px;
    background: rgba(35,31,32,0.06);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--primary-color);
    margin: 0 auto 20px; transition: all 0.4s var(--ease-bounce);
}

.process-item:hover .process-icon {
    background: var(--gradient-secondary); color: #fff;
    transform: rotate(-8deg) scale(1.1); box-shadow: 0 10px 25px rgba(235,30,36,0.35);
}

.process-content h4 { font-size: 17px; font-weight: 700; color: var(--primary-color); margin-bottom: 10px; }
.process-content p { font-size: 14px; color: #666; line-height: 1.6; }
/* =========================================
   INDUSTRIES — CARD HOVER UPGRADE
   ========================================= */
.industries_split {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f9f5 0%, #fff 100%);
}

.industries_split::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(235,30,36,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.industry-card {
    border-radius: 20px !important;
    overflow: hidden !important;
    position: relative !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08) !important;
    transition: all 0.45s var(--ease-bounce) !important;
    aspect-ratio: 4 / 3; /* UPDATED: Reduced Height */
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 30px 70px rgba(0,0,0,0.18) !important;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease !important;
}

.industry-card:hover img {
    transform: scale(1.1) !important;
}

.ind-content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important; right: 0 !important;
    padding: 24px !important;
    background: linear-gradient(to top, rgba(35,31,32,0.95) 0%, rgba(35,31,32,0.6) 60%, transparent 100%) !important;
    color: #fff !important;
    transition: all 0.4s ease !important;
}

.ind-content i {
    width: 38px;
    height: 38px;
    background: var(--gradient-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(235,30,36,0.4);
    transition: all 0.3s var(--ease-bounce);
}

.industry-card:hover .ind-content i {
    transform: scale(1.15) rotate(-8deg);
}

.ind-content h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    color: #fff !important;
}

.ind-content p {
    font-size: 12px !important;
    color: rgba(255,255,255,0.8) !important;
    margin: 0 !important;
    line-height: 1.4;
}

/* Header Action / Arrow Styling */
.swiper-button-prev-ind,
.swiper-button-next-ind {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: var(--primary-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: all 0.3s var(--ease-bounce) !important;
    box-shadow: 0 8px 20px rgba(35,31,32,0.1);
}

.swiper-button-prev-ind i,
.swiper-button-next-ind i {
    color: #fff !important;
    font-size: 14px;
}

.swiper-button-prev-ind:hover,
.swiper-button-next-ind:hover {
    background: var(--gradient-secondary) !important;
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(235,30,36,0.3) !important;
}

/* =========================================
   BLOG SECTION — EDITORIAL CARD UPGRADE
   ========================================= */
.Explore-Search {
    position: relative;
    padding-top: 40px;
}

.blog-card {
    border-radius: 18px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
    background: #fff !important;
    transition: all 0.4s var(--ease-bounce) !important;
    overflow: hidden !important;
}

.blog-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 65px rgba(0,0,0,0.25) !important;
}

.blog-img {
    height: 230px !important;
    overflow: hidden;
    position: relative;
}

.blog-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(35,31,32,0.3) 100%);
    pointer-events: none;
}

.blog-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
}

.blog-title a { color: var(--primary-color) !important; }
.blog-title a:hover { color: var(--secondary-color) !important; }

.date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Blog nav upgrade */
.blog-nav i {
    background: rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(10px);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    transition: all 0.3s var(--ease-bounce) !important;
}

.blog-nav i:hover {
    background: var(--gradient-secondary) !important;
    border-color: transparent !important;
    transform: scale(1.1);
}

/* =========================================
   FAQ SECTION — 2 COLUMN PREMIUM GRID
   ========================================= */
/* =========================================
   FAQ SECTION — 2 COLUMN PREMIUM GRID
   ========================================= */
/* =========================================
   FAQ SECTION — COMPLETELY UNIQUE CLASSES
   ========================================= */
.faq_section {
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

/* 1. The Main Wrapper */
.riyadh-faq-container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* 2. The Grid */
.riyadh-faq-list {
    list-style: none !important;
    padding: 0 !important; 
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important; 
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px 30px !important; 
    box-sizing: border-box !important;
    align-items: start !important;
}

/* 3. The Individual Cards */
.riyadh-faq-item {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    border-radius: 16px !important;
    border: none !important;
    border-left: 4px solid #eaeaea !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    transition: all 0.4s var(--ease-bounce, ease) !important;
    background: #fdfdfd !important;
    overflow: hidden !important;
}

.riyadh-faq-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.06) !important;
    transform: translateY(-2px);
}

.riyadh-faq-item.active {
    border-left-color: var(--secondary-color) !important;
    background: #ffffff !important;
    box-shadow: 0 15px 45px rgba(235,30,36,0.08) !important;
}

/* 4. The Clickable Header */
.riyadh-faq-header {
    width: 100% !important;
    padding: 24px !important;
    cursor: pointer !important; 
    margin: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important; 
    gap: 15px !important;
}

.riyadh-faq-left {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    max-width: 85%;
}

.riyadh-faq-num {
    color: #e5e5e5; 
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.3s;
    flex-shrink: 0;
}

.riyadh-faq-item.active .riyadh-faq-num { 
    color: var(--secondary-color); 
}

.riyadh-faq-question {
    font-size: 16px !important;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0;
    transition: all 0.3s ease;
}

.riyadh-faq-item.active .riyadh-faq-question { 
    color: var(--secondary-color); 
}

/* 5. The Toggle Button */
.riyadh-faq-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    background: rgba(35,31,32,0.05) !important;
    color: #888 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-bounce, ease) !important;
}

.riyadh-faq-icon i {
    font-size: 14px;
    transition: transform 0.4s ease;
}

.riyadh-faq-item.active .riyadh-faq-icon {
    background: var(--secondary-color) !important;
    color: #fff !important;
    box-shadow: 0 6px 15px rgba(235,30,36,0.3) !important;
}

.riyadh-faq-item.active .riyadh-faq-icon i {
    transform: rotate(180deg);
}

/* 6. The Answer Box */
.riyadh-faq-answer {
    padding: 0 24px 24px 68px !important; 
    font-size: 14.5px !important;
    color: #666; 
    line-height: 1.75 !important;
    max-height: 0; 
    opacity: 0; 
    overflow: hidden;
    transition: all 0.4s ease-in-out !important;
}

.riyadh-faq-item.active .riyadh-faq-answer {
    max-height: 500px; 
    opacity: 1;
}

/* =========================================
   7. MOBILE RESPONSIVENESS
   ========================================= */
@media(max-width: 991px) {
    .riyadh-faq-list { 
        grid-template-columns: 1fr !important; 
        gap: 16px !important; 
    }
    .riyadh-faq-answer { 
        padding-left: 24px !important; 
    }
    .riyadh-faq-left { 
        align-items: center; 
        max-width: 80%; 
    }
}
/* =========================================
   SECTION HEADINGS — GLOBAL UPGRADE
   ========================================= */
.commn_head h2 {
    font-size: 2.6rem !important;
    font-weight: 800 !important;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.commn_head span {
    font-size: 11px !important;
    letter-spacing: 3px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.commn_head span::before,
.commn_head span::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--secondary-color);
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.wow.fadeIn {
    animation-duration: 0.8s;
}

/* Section entrance — unified */
@keyframes sectionReveal {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   RESPONSIVE OVERRIDES
   ========================================= */
@media (max-width: 991px) {
    .stats-grid { grid-template-columns: 1fr !important; }
    .process-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .process-grid::before { display: none; }
    .commn_head h2 { font-size: 2rem !important; }
}

@media (max-width: 768px) {
    .banner_text { padding: 2rem !important; }
    .client_first { margin: 30px 10px !important; border-radius: 20px !important; }
    .process-grid { grid-template-columns: 1fr !important; }
    .ind-content { padding: 20px !important; }
    .features-top { border-radius: 10px !important; padding: 4px 52px 4px 4px !important; }
    .menu_tab { padding: 8px 16px !important; font-size: 13px !important; }
    .commn_head h2 { font-size: 1.7rem !important; }
    .traffic-title { font-size: 30px !important; }
}

@media (max-width: 576px) {
    .stats-grid { gap: 14px !important; }
    .process-item { padding: 28px 20px !important; }
    .proven_result .proven_text { padding: 24px !important; }
    .blog-card { border-radius: 14px !important; }
    .accordiyanbl .title { font-size: 15px !important; padding: 18px 20px !important; }
    .commn_head h2 { font-size: 1.5rem !important; }
}
/* =========================================
   UNIFIED TOP-RIGHT NAV ARROWS
   ========================================= */
.btn-nav-premium {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: all 0.3s var(--ease-bounce) !important;
    box-shadow: 0 8px 20px rgba(35,31,32,0.1);
    font-size: 14px;
}

.btn-nav-premium:hover {
    background: var(--gradient-secondary) !important;
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(235,30,36,0.3) !important;
}
/* =========================================
   SECTION HEADERS (General)
   ========================================= */
.commn_head {
    margin-bottom: 50px;
    position: relative;
}

/* Base title styling */
.commn_head h2 {
    font-size: 36px; /* Adjust as needed */
    font-weight: 800;
    color: var(--primary-color, #231f20);
    margin-bottom: 10px; /* Tighter margin when a subtitle is present */
}

/* =========================================
   NEW SUBTITLE STYLING
   ========================================= */
.commn_head .section-subtitle {
    font-size: 18px; /* Slightly smaller than h2, larger than body text */
    font-weight: 600;
    color: var(--secondary-color, #eb1e24); /* Using your accent color stands out */
    text-transform: uppercase; /* Optional: gives a premium, structured look */
    letter-spacing: 1px;
    margin-bottom: 20px; /* Space between subtitle and paragraph */
}

/* Styling for the longer introductory paragraph */
.commn_head .section-intro-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 900px; /* Prevents long lines of text from stretching too far */
    margin: 0 auto; /* Centers the paragraph */
}
/* =========================================
   PROCESS SECTION HEADER - VISIBILITY FIX
   ========================================= */
/* 1. The small kicker text "HOW WE WORK" (Red) */
.process-sec .commn_head span {
    color: var(--secondary-color, #eb1e24) !important;
    font-weight: 700;
}

/* 2. The main heading (Black/Charcoal) */
.process-sec .commn_head h2 {
    color: var(--primary-color, #231f20) !important;
}

/* 3. The subtitle paragraph (Dark Gray for readability) */
.process-sec .commn_head p {
    color: #444444 !important; /* Dark enough to be highly visible */
    font-weight: 500;
}
/* =========================================
   BLOG SLIDER - EQUAL HEIGHT FIX
   ========================================= */

/* 1. Ensure the swiper slide itself stretches */
.blog-slider-wrapper .swiper-slide {
    height: auto !important; /* Forces the slide to inherit the tallest card's height */
    display: flex;
}

/* 2. Turn the blog card into a full-height flex column */
.blog-card {
    border-radius: 18px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
    background: #fff !important;
    transition: all 0.4s var(--ease-bounce) !important;
    overflow: hidden !important;
    
    /* Flexbox rules added here */
    display: flex;
    flex-direction: column;
    height: 100%; 
    width: 100%;
}

/* Make sure the image container doesn't stretch weirdly */
.blog-img {
    height: 230px !important;
    flex-shrink: 0; /* Prevents the image from shrinking */
    overflow: hidden;
    position: relative;
}

/* 3. Turn the content area into a flex column */
.blog-content {
    padding: 24px !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows the content area to fill the remaining space */
}

/* 4. Push the Read More button to the bottom */
.blog-content .read-more-btn {
    margin-top: auto !important; /* Pushes the button to the bottom of the card */
    display: inline-block;
}
/* =========================================
   "CLIENTS FIRST" SECTION - PREMIUM AMBIENT GROW BACKGROUND
   ========================================= */

/* 1. Container to hold the waves safely behind the text */
.riyadh-premium-waves {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none; /* Prevents it from blocking clicks */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. The core shape of the glowing wave */
.riyadh-premium-waves .white-wave {
    position: absolute;
    width: 400px;
    height: 400px;
    /* Soft white gradient that blends seamlessly into your brand background */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: premiumGrowPulse 10s infinite linear;
    transform-origin: center;
}

/* 3. Stagger the animations so they flow continuously */
.riyadh-premium-waves .white-wave:nth-child(1) {
    animation-delay: 0s;
}

.riyadh-premium-waves .white-wave:nth-child(2) {
    animation-delay: 3.3s;
}

.riyadh-premium-waves .white-wave:nth-child(3) {
    animation-delay: 6.6s;
}

/* 4. The Keyframe Animation Engine */
@keyframes premiumGrowPulse {
    0% {
        transform: scale(0.5); /* Starts small */
        opacity: 0;
    }
    30% {
        opacity: 1; /* Reaches peak brightness */
    }
    100% {
        transform: scale(4.5); /* Grows massive to fill the section */
        opacity: 0; /* Fades out completely before resetting */
    }
}
      /* =========================================
   COMMAND CENTER LAYOUT (Video Left / Widget Right)
   ========================================= */
.premium-theatre-layout {
    background: #0f0f11 !important; /* Deep "Obsidian" background */
    position: relative;
    overflow: hidden;
}

/* Video Frame Adjustments */
.video-theatre-wrapper {
    position: relative;
    z-index: 5;
}

.video-frame {
    background: #1a1a1a;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    transform: perspective(1000px) rotateY(5deg); /* Subtle angle toward the center */
}

.video-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Glassmorphism Performance Widget */
.performance-widget-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    animation: floatWidget 6s ease-in-out infinite;
}

@keyframes floatWidget {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.widget-header i {
    color: var(--secondary-color, #eb1e24);
    font-size: 20px;
    filter: drop-shadow(0 0 8px rgba(235,30,36,0.5));
}

.widget-header span {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
}

/* Metric Items */
.metric-item {
    margin-bottom: 20px;
}

.metric-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.metric-info strong {
    color: #fff;
    font-size: 14px;
}

.metric-info span {
    color: var(--secondary-color, #eb1e24);
    font-size: 12px;
    font-weight: 700;
}

.metric-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color, #eb1e24), #ff4d4d);
    box-shadow: 0 0 10px rgba(235,30,36,0.4);
    border-radius: 10px;
}

/* Widget Footer */
.widget-footer p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 20px 0;
}

.widget-link {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.widget-link:hover {
    color: var(--secondary-color, #eb1e24);
    transform: translateX(5px);
}

/* UI Pills */
.premium-pill {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(235,30,36,0.1);
    border: 1px solid rgba(235,30,36,0.3);
    color: var(--secondary-color, #eb1e24);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .video-frame { transform: none; }
    .performance-widget-box { margin-top: 30px; animation: none; }
}