/* StockistHub Custom Styles - Redesigned */

/* Inter Font Face Declarations */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

body {
    font-family: 'Inter', sans-serif;
}
button {
    cursor: pointer;
}
/* Scroll Animations - Beautiful and Smooth */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--animation-delay, 0s);
    will-change: opacity, transform;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Beautiful animations for different sections */
.stats-card.animate-on-scroll {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
}

.stats-card.animate-in {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.feature-card.animate-on-scroll {
    transform: translateY(40px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--animation-delay, 0s);
}

.feature-card.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.product-card.animate-on-scroll {
    transform: translateY(30px) rotateX(5deg);
    opacity: 0;
}

.product-card.animate-in {
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
}

.cta-section.animate-on-scroll {
    transform: translateY(40px);
    opacity: 0;
}

.cta-section.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.service-card.animate-on-scroll {
    transform: translateY(30px);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--animation-delay, 0s);
}

.service-card.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Partners Section Animation - Beautiful Text and Carousel */
.partners-swiper .text-center.animate-on-scroll {
    transform: translateY(30px);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--animation-delay, 0s);
}

.partners-swiper .text-center.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.partners-swiper.animate-on-scroll {
    transform: translateY(40px);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--animation-delay, 0s);
}

.partners-swiper.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Other Products Section Animation */
.other-product-item.animate-on-scroll {
    transform: translateY(30px);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--animation-delay, 0s);
}

.other-product-item.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Contact Section Animation */
#contact.animate-on-scroll {
    transform: translateY(40px);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--animation-delay, 0s);
}

#contact.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Contact Form Required Field Asterisks - Red Color */
label span.text-red-600 {
    color: #dc2626 !important;
}


/* Hero content animation */
.hero-content.animate-on-scroll {
    transform: translateY(60px);
    opacity: 0;
}

.hero-content.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Hero text animations */
.hero-content h1.animate-on-scroll {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--animation-delay, 0s);
}

.hero-content h1.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.hero-content p.animate-on-scroll {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--animation-delay, 0s);
}

.hero-content p.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.hero-content .flex.animate-on-scroll {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--animation-delay, 0s);
}

.hero-content .flex.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* New Color Scheme */
:root {
    --primary-color: #F6AE2D;
    --secondary-color: #0986F4;
    --accent-color: #2A2D34;
    --light-bg: #DBE4EE;
}

.gradient-bg {
    background: linear-gradient(135deg, #F6AE2D 0%, #0986F4 100%);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-effect-new {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* .text-gradient removed - using solid colors instead */

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Bootstrap-like Container */
.container-custom {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (min-width: 576px) {
    .container-custom {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-custom {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-custom {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-custom {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-custom {
        max-width: 1320px;
    }
}


/* Swiper Partners Padding */
.partners-swiper {
    padding: 15px 0 !important;
    overflow: hidden;
    width: 100%;
}

/* Partner Logo Images Fix */
.partner-logo img {
    width: auto;
    height: 100%;
}

/* Swiper Performance Optimizations */
.partners-swiper {
    will-change: transform;
}

.partners-swiper .swiper-slide {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.partner-logo {
    width: 100%;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    padding: 0.5rem;
    height: 8rem;
    transition: none;
}

/* Ensure swiper wrapper and slides are properly configured */
.partners-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.partners-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* New Color Scheme Utilities */
.bg-primary-new {
    background-color: #2A2D34;
}

.bg-secondary-new {
    background-color: #0986F4;
}

.bg-accent-new {
    background-color: #F6AE2D;
}

.bg-light-new {
    background-color: #DBE4EE;
}

.text-primary-new {
    color: #2A2D34;
}

.text-secondary-new {
    color: #0986F4;
}

.text-accent-new {
    color: #F6AE2D;
}

.border-primary-new {
    border-color: #2A2D34;
}

.border-secondary-new {
    border-color: #0986F4;
}

.border-accent-new {
    border-color: #F6AE2D;
}

/* Enhanced gradient backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, #2A2D34 0%, #1F2126 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, #0986F4 0%, #0770D1 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, #F6AE2D 0%, #E0991A 100%);
}

.gradient-mixed {
    background: linear-gradient(135deg, #2A2D34 0%, #0986F4 50%, #F6AE2D 100%);
}

/* Hover effects with new colors */
.hover-primary:hover {
    background-color: #2A2D34;
    color: white;
}

.hover-secondary:hover {
    background-color: #0986F4;
    color: white;
}

.hover-accent:hover {
    background-color: #F6AE2D;
    color: #2A2D34;
}

/* Card enhancements */
.card-enhanced {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #DBE4EE;
    box-shadow: 0 4px 6px -1px rgba(42, 45, 52, 0.1);
}

.card-enhanced:hover {
    border-color: #0986F4;
    box-shadow: 0 10px 15px -3px rgba(9, 134, 244, 0.1);
}

/* Button enhancements */
.btn-accent {
    background: linear-gradient(135deg, #F6AE2D 0%, #E0991A 100%);
    color: #2A2D34;
    border: none;
    font-weight: 600;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #E0991A 0%, #C8850F 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(246, 174, 45, 0.3);
}

/* New Button Styles */
.btn-accent {
    background: linear-gradient(135deg, #F6AE2D 0%, #E0991A 100%);
    color: #2A2D34;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #E0991A 0%, #C8850F 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(246, 174, 45, 0.3);
}

.btn-outline-new {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-new:hover {
    background: white;
    color: #2A2D34;
    transform: translateY(-2px);
}

/* New Color Utilities */
.bg-primary-new {
    background-color: #F6AE2D;
}

.bg-secondary-new {
    background-color: #0986F4;
}

.bg-accent-new {
    background-color: #2A2D34;
}

.text-primary-new {
    color: #F6AE2D;
}

.text-secondary-new {
    color: #0986F4;
}

.text-accent-new {
    color: #2A2D34;
}

/* Enhanced Gradients */
.gradient-primary {
    background: linear-gradient(135deg, #F6AE2D 0%, #E0991A 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, #0986F4 0%, #0770D1 100%);
}

.gradient-mixed {
    background: linear-gradient(135deg, #F6AE2D 0%, #0986F4 50%, #2A2D34 100%);
}

/* Card Enhancements */
.card-enhanced {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #DBE4EE;
    box-shadow: 0 4px 6px -1px rgba(246, 174, 45, 0.1);
}

.card-enhanced:hover {
    border-color: #F6AE2D;
    box-shadow: 0 10px 15px -3px rgba(246, 174, 45, 0.2);
}

/* Animation Enhancements */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
    }
}

/* Aramco-style Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    z-index: 1;
}

.product-card:hover::before {
    background: rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.product-card .content {
    position: relative;
    z-index: 2;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-card p {
    color: white;
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
}

.product-card .arrow-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: auto;
}

.product-card:hover .arrow-icon {
    background: rgba(255,255,255,0.3);
    transform: translateX(4px);
}

.product-card .arrow-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Minimal & Elegant Other Product Cards */
.other-product-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.other-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 134, 244, 0.02) 0%, rgba(246, 174, 45, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.other-product-card:hover::before {
    opacity: 1;
}

.other-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(9, 134, 244, 0.2);
}

.other-product-card .flex {
    position: relative;
    z-index: 2;
}

.other-product-card .w-12 {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.other-product-card:hover .w-12 {
    transform: scale(1.1);
}

.other-product-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    transition: color 0.3s ease;
}

.other-product-card:hover h3 {
    color: #ee7203;
}

.other-product-card svg {
    width: 24px;
    height: 24px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.other-product-card:hover svg {
    color: #ee7203;
    transform: scale(1.1);
}

/* Other Product Cards Loading Animation */
.other-product-card.animate-on-scroll {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--animation-delay, 0s);
}

.other-product-card.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Parallax Section */
.parallax-section {
    background-image: url('../images/stockisthub/005.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.parallax-section .container-custom {
    position: relative;
    z-index: 2;
}

/* Video Background Styles */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(246, 174, 45, 0.8) 0%, rgba(9, 134, 244, 0.7) 50%, rgba(42, 45, 52, 0.9) 100%);
    z-index: -1;
}

/* Hero Banner Background - Only for pages without video */
.hero-section:not(#home) {
    background-image: url('../images/internal-banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 1;
}

/* Video background styles for index page */
#home .hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

#home .hero-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Login Button - Moved to header-custom.css */

/* Secondary Button */
.btn-secondary {
    background-color: #ee7203;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #d96700;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Secondary Color Text */
.text-secondary-color {
    color: #ee7203;
}

/* Product Card Images */
.product-card-image {
    height: auto;
    aspect-ratio: 4/2.3;
    object-fit: cover;
}

/* Other Products Section - Dark Design */
.bg-dark-section {
    background-color: #2A2D34;
}

.other-products-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.other-product-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 0;
    width: 25%;
    flex-basis: 25%;
}

.other-product-icon {
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.other-product-icon svg {
    color: #ee7203;
    width: 2.8rem;
    height: 2.8rem;
}

.other-product-text {
    color: white;
    font-weight: 500;
    font-size: 1.2rem;
    min-width: 80px;
}


/* Back to Top Button - Moved to header-custom.css */



@media (max-width: 768px) {
    .other-product-item {
        width: 50%; 
        flex-basis: 50%;
    }
}

/* Navigation Links - Moved to header-custom.css */

/* Custom Checkbox Styling - Moved to header-custom.css */

/* Chat Typing Indicator Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* Login Page Card Icons */
.login-card-icon-wrapper {
    background-color: #2A2D34;
}
.login-card-icon {
    color: #fff;
}

/* Contact Us Page Card Icons */
.contact-card-icon-wrapper {
    background-color: #2A2D34;
}
.contact-card-icon {
    color: #fff;
}


/* Catalogue Download Button */
.catalogue-download-btn {
    background-color: #ee7203;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.catalogue-download-btn:hover {
    background-color: #d96700;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Services Page Icon Background */
.services-icon-bg {
    background-color: #2A2D34;
}
.login-btn {
    background: #ee7203;
    padding: 0 16px;
    height: 35px;
    border-radius: 8px;
    color: #fff;
    margin-top: 15px;
}
.orange-btn {
    background-color: #ee7203;
}

/* Read More Button */
.btn-read-more {
    display: inline-block;
    background-color: #ee7203;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-read-more:hover {
    background-color: #d66303;
    transform: translateY(-1px);
}

/* Services Intro Layout */
.services-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .services-intro-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.services-intro-text {
    width: 100%;
}

.services-intro-image {
    width: 100%;
}

/* Orange Content Box */
.blue-content-box {
    background-image: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(29, 78, 216, 0.2) 0%, transparent 50%);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #DBE4EE;
}

@media (min-width: 768px) {
    .blue-content-box {
        padding: 3rem;
    }
}

/* MacBook Laptop Mockup */
.portal-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.monitor-frame {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    padding: 14px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
    position: relative;
}

.monitor-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #4b5563;
    border-radius: 2px;
    z-index: 2;
}

.monitor-screen {
    background: #000;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    border: 2px solid #1f2937;
}

.monitor-stand {
    width: 100%;
    height: 24px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    margin: 0 auto;
    border-radius: 0 0 15px 15px;
    position: relative;
}

.monitor-stand::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: #9ca3af;
    border-radius: 2px;
}

.monitor-stand::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 7px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 7px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.portal-mockup .swiper {
    width: 100%;
    height: 100%;
}

.portal-mockup .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-mockup .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.portal-mockup .swiper-button-next,
.portal-mockup .swiper-button-prev {
    color: #fff;
    background: rgba(208, 221, 251, 0.53);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.portal-mockup .swiper-button-next:after,
.portal-mockup .swiper-button-prev:after {
    font-size: 18px;
}

.portal-mockup .swiper-button-next:hover,
.portal-mockup .swiper-button-prev:hover {
    background: rgba(208, 221, 251, 0.7);
}

.portal-mockup .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.portal-mockup .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ee7203;
}

.portal-mockup .swiper-pagination {
    bottom: 20px !important;
    z-index: 10;
}

.portal-mockup .swiper-button-next {
    right: 15px !important;
}

.portal-mockup .swiper-button-prev {
    left: 15px !important;
}

/* AI Image Radius */
.ai-intro-image {
    border-radius: 1rem;
}

/* Features Section Custom Styles */
.feature-card-custom {
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card-custom:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-icon-inner {
    width: 50px;
    height: 50px;
    background: #2A2D34;
    border-radius: 0.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card-custom:hover .feature-icon-inner {
    background: #ee7203;
    transform: scale(1.1);
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-custom:hover .feature-icon-wrapper::before {
    opacity: 1;
}

.feature-title-custom {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}



.feature-description-custom {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Portal Section Order for Mobile Devices */
@media (max-width: 1023px) {
    /* Ensure text appears first, then monitor in all portal sections */
    .portal-text-content {
        order: 1;
    }
    
    .portal-image-content {
        order: 2;
    }
}

@media (min-width: 1024px) {
    /* Reset order on desktop - maintain natural order */
    .portal-text-content {
        order: initial;
    }
    
    .portal-image-content {
        order: initial;
    }
    
    /* Supplier Portal: monitor first, text second on desktop */
    .supplier-portal-image {
        order: 1;
    }
    
    .supplier-portal-text {
        order: 2;
    }
}