/* ===================================
   GRAND PALACE - ULTRA BRIGHT VERSION
   WITH COMPLETE TRADING SOLUTION
   ================================== */

/* ===================================
   CSS Variables
   ================================== */
:root {
    --primary-blue: #2c5282;
    --secondary-blue: #2b6cb0;
    --bright-blue: #4299e1;
    --primary-gold: #f4d88a;
    --gold-glow: #ffeaa7;
    --dark-gold: #d4b46a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-light: rgba(255, 255, 255, 0.95);
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* ===================================
   Reset & Base Styles
   ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at 50% 30%, #3182ce 0%, #2c5282 35%, #1a365d 70%, #0f2744 100%);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===================================
   Top Light Beam Effect
   ================================== */
.light-beam {
    position: fixed;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 700px;
    background: radial-gradient(
        ellipse at center, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(244, 216, 138, 0.25) 20%,
        rgba(66, 153, 225, 0.15) 50%, 
        transparent 80%
    );
    pointer-events: none;
    z-index: 5;
    filter: blur(40px);
    animation: beamPulse 8s ease-in-out infinite;
}

.contact-name {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 10px 0 5px 0;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.contact-title {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.contact-details .contact-value {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Logo Image Styling */
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.9));
    animation: logoImageFloat 4s ease-in-out infinite;
}

@keyframes logoImageFloat {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        transform: scale(1.05) rotate(2deg); 
    }
}

/* Right Side Container */
.right-side-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: span 1;
    height: 100%;
}

/* Top Services Grid - Single Card */
.top-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    flex-shrink: 0;
}

.top-services-grid .service-card {
    /* background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(236, 72, 153, 0.2)); */
    backdrop-filter: blur(30px);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.top-services-grid .service-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 15px;
    /* background: linear-gradient(135deg, #fbbf24, #ec4899, #06b6d4); */
    background-size: 300% 300%;
    animation: borderGlow 4s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.top-services-grid .service-card:hover::before {
    opacity: 1;
}

.top-services-grid .service-card:hover {
    transform: translateY(-10px) scale(1.05);
    /* box-shadow: 
        0 20px 50px rgba(251, 191, 36, 0.6),
        0 0 40px rgba(236, 72, 153, 0.5); */
}

.top-services-grid .service-icon {
    font-size: 50px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 25px rgba(251, 191, 36, 0.8));
    animation: iconFloat 3s ease-in-out infinite;
}

.top-services-grid h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Bottom Showcase Grid - Full Width & Height */
.bottom-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex: 1;
    min-height: 0;
    width: 100%;
}

.bottom-showcase-grid .product-showcase {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.bottom-showcase-grid .showcase-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Update solution-container for new layout */
.solution-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .solution-container {
        grid-template-columns: 1fr;
    }
    
    .right-side-container {
        width: 100%;
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .bottom-showcase-grid {
        grid-template-columns: 1fr;
        min-height: 400px;
        width: 100%;
    }
    
    .top-services-grid .service-card {
        min-height: 120px;
        padding: 25px 15px;
        width: 100%;
    }
    
    .top-services-grid .service-icon {
        font-size: 40px;
    }
    
    .top-services-grid h3 {
        font-size: 16px;
    }
}

/* Remove the old logo-text styles if you're not using text anymore */
.logo-text {
    display: none; /* Hide if you're using image instead */
} 


/* Brand Logo Styling */
.brand-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    /* object-fit: contain; */
    /* filter: brightness(0) invert(1); Makes logos white */
    /* opacity: 0.85; */
    /* transition: all 0.3s ease; */
}

/* .brand-item:hover .brand-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(251, 191, 36, 0.8));
    opacity: 1;
    transform: scale(1.15);
} */

/* Update brand-item to work with images */
.brand-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 0 20px;
}


@keyframes beamPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* ===================================
   Animated Background Shapes
   ================================== */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-center-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vh;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.3) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: centerGlow 10s ease-in-out infinite;
}

@keyframes centerGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 700px;
    height: 700px;
    background: #f4d88a;
    opacity: 0.4;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: #4299e1;
    opacity: 0.35;
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 600px;
    height: 600px;
    background: #63b3ed;
    opacity: 0.3;
    top: 15%;
    right: -100px;
    filter: blur(120px);
    animation-delay: 10s;
}

.shape-4 {
    width: 450px;
    height: 450px;
    background: #2b6cb0;
    opacity: 0.25;
    bottom: 25%;
    left: 10%;
    animation-delay: 15s;
}

.shape-5 {
    width: 550px;
    height: 550px;
    background: #ffeaa7;
    opacity: 0.3;
    top: 40%;
    left: -100px;
    filter: blur(110px);
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(60px, -60px) rotate(90deg); }
    50% { transform: translate(-40px, 40px) rotate(180deg); }
    75% { transform: translate(50px, 50px) rotate(270deg); }
}

/* ===================================
   Particles Background
   ================================== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* ===================================
   Main Container
   ================================== */
.container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* ===================================
   Logo Section
   ================================== */
.logo-container {
    margin-bottom: 40px;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-circle {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 5px solid #f4d88a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 80px rgba(244, 216, 138, 0.7),
        0 0 120px rgba(244, 216, 138, 0.4),
        inset 0 0 40px rgba(244, 216, 138, 0.25);
    animation: logoFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.logo-text {
    font-size: 80px;
    font-weight: 800;
    color: #f4d88a;
    text-transform: lowercase;
    font-family: 'Poppins', sans-serif;
    text-shadow: 
        0 0 40px rgba(244, 216, 138, 0.9),
        0 0 60px rgba(244, 216, 138, 0.5);
}

.logo-crown {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 70px;
    z-index: 3;
    filter: drop-shadow(0 0 30px rgba(244, 216, 138, 0.9));
    animation: crownBounce 2s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(244, 216, 138, 0.5), transparent);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

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

@keyframes crownBounce {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

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

/* ===================================
   Company Info
   ================================== */
.company-info {
    margin-bottom: 30px;
}

.company-name-arabic {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #f4d88a;
    margin-bottom: 10px;
    text-shadow: 
        0 0 35px rgba(244, 216, 138, 0.7),
        0 0 60px rgba(244, 216, 138, 0.4);
    letter-spacing: 3px;
}

.company-name-english {
    font-size: 60px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 12px;
    text-shadow: 
        0 0 25px rgba(255, 255, 255, 0.6),
        0 0 50px rgba(255, 255, 255, 0.3);
}

.company-subtitle {
    font-size: 17px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.company-subtitle .arabic {
    font-family: 'Noto Sans Arabic', sans-serif;
}

.separator {
    color: var(--primary-gold);
    font-size: 22px;
}

/* ===================================
   Coming Soon Badge
   ================================== */
.coming-soon-badge {
    position: relative;
    display: inline-block;
    margin: 40px 0;
}

.badge-text {
    display: inline-block;
    padding: 22px 65px;
    background: linear-gradient(135deg, #ffeaa7, #f4d88a, #d4b46a);
    color: #000000;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 5px;
    border-radius: 50px;
    box-shadow: 
        0 0 60px rgba(244, 216, 138, 0.7),
        0 15px 50px rgba(244, 216, 138, 0.5),
        inset 0 -2px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(244, 216, 138, 0.5), transparent);
    border-radius: 50px;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: 1;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-gold);
    border-radius: 50px;
    animation: ringPulse 2s ease-out infinite;
    z-index: 0;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes ringPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* ===================================
   Tagline
   ================================== */
.tagline {
    margin-bottom: 50px;
}

.tagline h2 {
    font-size: 38px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.tagline .highlight {
    color: #f4d88a;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 25px rgba(244, 216, 138, 0.6);
}

.tagline .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f4d88a, transparent);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.subtitle {
    font-size: 19px;
    color: var(--text-light);
    font-weight: 300;
}

/* ===================================
   Countdown Timer
   ================================== */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    padding: 30px 25px;
    min-width: 120px;
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(244, 216, 138, 0.3);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-10px);
    border-color: #f4d88a;
    box-shadow: 
        0 20px 50px rgba(244, 216, 138, 0.5),
        0 0 40px rgba(244, 216, 138, 0.4);
}

.countdown-value {
    font-size: 50px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 
        0 0 25px rgba(244, 216, 138, 0.9),
        0 0 50px rgba(244, 216, 138, 0.5);
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.countdown-separator {
    font-size: 42px;
    color: #f4d88a;
    font-weight: 300;
    animation: blink 1s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(244, 216, 138, 0.6);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===================================
   Trading Solution Section - NEW
   ================================== */
.trading-solution-section {
    margin: 70px 0;
}

.solution-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.solution-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border: 3px solid #f4d88a;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(244, 216, 138, 0.4),
        0 0 40px rgba(244, 216, 138, 0.3);
    transition: all 0.4s ease;
}

.solution-box:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(244, 216, 138, 0.5),
        0 0 60px rgba(244, 216, 138, 0.4);
}

.solution-header {
    font-size: 18px;
    color: #f4d88a;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.solution-title {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 3px;
}

.solution-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.solution-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.solution-item {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid rgba(244, 216, 138, 0.3);
    transition: all 0.3s ease;
}

.solution-item:hover {
    color: #f4d88a;
    padding-left: 10px;
    border-bottom-color: #f4d88a;
}

/* Product Showcase Cards */
.product-showcase {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.product-showcase:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #f4d88a;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 25px 60px rgba(244, 216, 138, 0.5),
        0 0 40px rgba(244, 216, 138, 0.4);
}

.showcase-label {
    font-size: 14px;
    color: #f4d88a;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(244, 216, 138, 0.4);
}

.showcase-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.showcase-icon {
    font-size: 60px;
    filter: drop-shadow(0 0 20px rgba(244, 216, 138, 0.5));
    animation: iconBounce 3s ease-in-out infinite;
}

.garments-showcase .showcase-icon {
    animation-delay: 0s;
}

.spice-showcase .showcase-icon {
    animation-delay: 0.5s;
}

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

.showcase-content p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* ===================================
   Services Preview Grid
   ================================== */
.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin: 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 35px 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #f4d88a;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 60px rgba(244, 216, 138, 0.5),
        0 0 40px rgba(244, 216, 138, 0.4);
}

.service-icon {
    font-size: 52px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(244, 216, 138, 0.5));
    animation: iconFloat 3s ease-in-out infinite;
}

.service-card:nth-child(1) .service-icon { animation-delay: 0s; }
.service-card:nth-child(2) .service-icon { animation-delay: 0.2s; }
.service-card:nth-child(3) .service-icon { animation-delay: 0.4s; }
.service-card:nth-child(4) .service-icon { animation-delay: 0.6s; }
.service-card:nth-child(5) .service-icon { animation-delay: 0.8s; }
.service-card:nth-child(6) .service-icon { animation-delay: 1s; }

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

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

/* ===================================
   Contact Section
   ================================== */
.contact-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    min-width: 300px;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #f4d88a;
    box-shadow: 
        0 20px 50px rgba(244, 216, 138, 0.5),
        0 0 35px rgba(244, 216, 138, 0.4);
}

.contact-icon {
    font-size: 42px;
    filter: drop-shadow(0 0 20px rgba(244, 216, 138, 0.5));
}

.contact-info {
    text-align: left;
}

.contact-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 20px;
    font-weight: 700;
    color: #f4d88a;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(244, 216, 138, 0.4);
}

.contact-value:hover {
    color: #ffeaa7;
    transform: translateX(5px);
    text-shadow: 0 0 20px rgba(244, 216, 138, 0.7);
}

.website-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ===================================
   Brands Marquee
   ================================== */
.brands-section {
    margin: 60px 0;
    overflow: hidden;
}

.brands-title {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.brands-marquee {
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px 0;
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.brand-item {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    opacity: 0.85;
    transition: all 0.3s ease;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.brand-item:hover {
    opacity: 1;
    color: #f4d88a;
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(244, 216, 138, 0.6);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   Footer
   ================================== */
.footer {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===================================
   Fade In Animations
   ================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }
.fade-in-delay-4 { animation-delay: 0.8s; }
.fade-in-delay-5 { animation-delay: 1s; }
.fade-in-delay-6 { animation-delay: 1.2s; }
.fade-in-delay-7 { animation-delay: 1.4s; }
.fade-in-delay-8 { animation-delay: 1.6s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Responsive Design
   ================================== */
@media (max-width: 1024px) {
    .solution-container {
        grid-template-columns: 1fr;
    }

    .solution-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .company-name-english {
        font-size: 38px;
        letter-spacing: 6px;
    }

    .company-name-arabic {
        font-size: 34px;
    }

    .badge-text {
        font-size: 26px;
        padding: 18px 45px;
    }

    .tagline h2 {
        font-size: 30px;
    }

    .solution-title {
        font-size: 32px;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-item {
        min-width: 95px;
        padding: 22px 18px;
    }

    .countdown-value {
        font-size: 40px;
    }

    .countdown-separator {
        font-size: 32px;
    }

    .services-preview {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 18px;
    }

    .service-icon {
        font-size: 44px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .contact-section {
        flex-direction: column;
        gap: 20px;
    }

    .contact-card {
        min-width: auto;
        width: 100%;
    }

    .logo-circle {
        width: 160px;
        height: 160px;
    }

    .logo-text {
        font-size: 64px;
    }

    .logo-crown {
        font-size: 54px;
        top: -28px;
    }

    .solution-box {
        padding: 30px;
    }

    .product-showcase {
        min-height: 220px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .company-name-english {
        font-size: 30px;
        letter-spacing: 3px;
    }

    .company-name-arabic {
        font-size: 26px;
    }

    .company-subtitle {
        font-size: 13px;
        flex-direction: column;
        gap: 5px;
    }

    .separator {
        display: none;
    }

    .badge-text {
        font-size: 22px;
        padding: 15px 35px;
        letter-spacing: 3px;
    }

    .tagline h2 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 15px;
    }

    .solution-title {
        font-size: 28px;
    }

    .solution-box {
        padding: 20px;
    }

    .solution-items {
        grid-template-columns: 1fr;
    }

    .countdown-item {
        min-width: 75px;
        padding: 18px 12px;
    }

    .countdown-value {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 11px;
    }

    .services-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-showcase {
        min-height: 180px;
    }

    .showcase-icon {
        font-size: 48px;
    }
}