/* =========================================
   1. VARIABLES, RESET & TYPOGRAPHY
   ========================================= */
:root {
    --primary-blue: #00A3FF; 
    --secondary-blue: #0077FF; 
    --dark-blue: #0055CC;
    --bg-dark: #0A1118;
    --text-light: #E2E8F0;
    --white: #FFFFFF;
    
    /* Gradient for the slow hover effect */
    --btn-gradient: linear-gradient(135deg, #00A3FF, #0055CC, #00A3FF); 

    /* Fluid Typography - Scales smoothly across screen sizes */
    --h1-size: clamp(2.5rem, 5vw, 3.5rem);
    --h2-size: clamp(1.8rem, 4vw, 2.6rem);
    --h3-size: clamp(1.2rem, 2vw, 1.7rem);
    --p-size: clamp(0.9rem, 1vw, 1.05rem);
    --section-pad: clamp(60px, 8vw, 100px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden; 
}

h1, h2, h3, h4, .vertical-tag, .logo-text { font-family: 'Poppins', sans-serif; }
a { text-decoration: none; }
.section-padding { padding: var(--section-pad) 5%; position: relative; }
.container { max-width: 1300px; margin: 0 auto; width: 100%; }

/* =========================================
   2. TOP BAR & NAVIGATION
   ========================================= */
.top-bar {
    background: #05080C;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1001;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-left span i { color: var(--primary-blue); margin-right: 5px; }

#navbar {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%;
    padding: 5px 3%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 17, 24, 0.2); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease; 
}

#navbar.scrolled {
    background-color: rgba(5, 8, 12, 0.95); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary-blue), transparent) 1;
}

.logo-container { display: flex; align-items: center; gap: 12px; cursor: pointer; transition: 0.3s ease; flex: 1; }
.nav-center { display: flex; align-items: center; justify-content: center; flex: 2; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; flex: 1; gap: 20px; }

.logo-container:hover .logo-img { transform: scale(1.05); filter: drop-shadow(0 0 10px rgba(0, 163, 255, 0.5)); }
.logo-img { height: clamp(50px, 8vw, 130px); width: auto; object-fit: contain; transition: all 0.3s ease; }
#navbar.scrolled .logo-img { height: clamp(40px, 6vw, 80px); }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { position: relative; display: flex; align-items: center; padding: 10px 15px; }
.nav-links li + li { border-left: 1px solid rgba(255, 255, 255, 0.2); }

.nav-links a {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-links a i { font-size: 0.7rem; margin-top: 1px; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 2px; background: var(--primary-blue); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary-blue); text-shadow: 0 0 10px rgba(0, 163, 255, 0.4); }

/* Desktop Dropdowns */
.dropdown-menu {
    position: absolute; top: 100%; left: 15px;
    background: rgba(10, 17, 24, 0.95); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-top: 2px solid var(--primary-blue);
    min-width: 220px; padding: 10px 0; opacity: 0; visibility: hidden;
    transform: translateY(15px); transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.nav-links li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { border-left: none !important; }
.dropdown-menu li a { display: block; padding: 10px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); text-transform: capitalize; font-size: 0.8rem; }
.dropdown-menu li a::after { display: none; } 
.dropdown-menu li a:hover { background: rgba(0, 163, 255, 0.1); padding-left: 25px; color: var(--primary-blue); }

/* Nav CTA Button */
.btn-consult {
    background-image: var(--btn-gradient); background-size: 200% 200%; 
    color: var(--white); padding: 10px 24px; border-radius: 30px; font-size: 0.8rem; 
    font-weight: 600; text-transform: uppercase; display: flex; align-items: center; gap: 8px; 
    transition: background-position 0.6s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 163, 255, 0.3); border: none; cursor: pointer;
}
.btn-consult:hover { background-position: 100% 100%; transform: scale(1.05); box-shadow: 0 6px 20px rgba(0, 163, 255, 0.6); }

/* Mobile Menu */
.hamburger { display: none; font-size: 2rem; color: var(--white); cursor: pointer; margin-left: 15px; }
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(5, 8, 12, 0.98); backdrop-filter: blur(15px);
    z-index: 2000; display: flex; flex-direction: column; justify-content: center;
    align-items: center; transition: right 0.4s ease-in-out;
}
.mobile-menu.active { right: 0; }
.close-btn { position: absolute; top: 30px; right: 5%; font-size: 2.5rem; color: var(--white); cursor: pointer; transition: 0.3s; }
.close-btn:hover { color: var(--primary-blue); transform: rotate(90deg); }

.mobile-nav-links { list-style: none; text-align: center; width: 100%; padding: 0 10%; }
.mobile-nav-links li { margin: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }
.mobile-nav-links li:last-child { border: none; }
.mobile-nav-links a { color: var(--white); font-size: 1.2rem; font-weight: 600; text-transform: uppercase; }

.mobile-dropdown-menu { display: none; list-style: none; padding-top: 15px; background: rgba(0,0,0,0.2); margin-top: 10px; border-radius: 8px; }
.mobile-nav-links li.active .mobile-dropdown-menu { display: block; }
.mobile-dropdown-menu li { border: none; margin: 5px 0; padding: 5px 0; }
.mobile-dropdown-menu a { font-size: 0.9rem; color: var(--text-light); text-transform: capitalize; font-weight: 400; }
.mobile-dropdown-menu a:hover { color: var(--primary-blue); }

@media (max-width: 992px) {
    .nav-center, .btn-consult { display: none; }
    .hamburger { display: block; }
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    min-height: clamp(80vh, 100vh, 1000px); 
    width: 100vw; position: relative;
    background: linear-gradient(90deg, rgba(10,17,24,0.95) 0%, rgba(10,17,24,0.7) 60%, rgba(10,17,24,0.3) 100%), 
                url(../images/home/background.jpg) center/cover no-repeat;
    display: flex; align-items: center; padding: 150px 5% 100px; overflow: hidden; box-sizing: border-box;
}

#particles-js { position: absolute; width: 100%; height: 100%; z-index: 1; top: 0; left: 0; pointer-events: none; }

.sidebar-left { position: absolute; left: 3%; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 20px; z-index: 10; }
.follow-text { color: rgba(255,255,255,0.7); font-size: 0.65rem; letter-spacing: 2px; writing-mode: vertical-rl; transform: rotate(180deg); display: flex; align-items: center; gap: 15px; }
.follow-text::after { content: ''; width: 1px; height: 60px; background: rgba(255,255,255,0.3); display: block; }
.social-circle { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.8rem; transition: all 0.3s ease; cursor: pointer; }
.social-circle:hover { border-color: var(--primary-blue); color: var(--primary-blue); transform: scale(1.1); }

.sidebar-right { position: absolute; right: 3%; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 15px; z-index: 10; }
.dot { width: 6px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 50%; cursor: pointer; transition: 0.3s; }
.dot.active { background: transparent; border: 2px solid var(--primary-blue); width: 10px; height: 10px; margin-left: -2px; }

.hero-content { margin-left: 10%; max-width: 900px; position: relative; z-index: 5; }
.accent-frame { position: relative; padding: 15px 0 15px 35px; }
.accent-frame::before { content: ''; position: absolute; top: 0; left: 0; width: 120px; height: 100%; border-top: 2px solid var(--primary-blue); border-left: 2px solid var(--primary-blue); }
.vertical-tag { position: absolute; left: -25px; top: 15px; color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 2px; writing-mode: vertical-rl; transform: rotate(180deg); }

/* Decreased Typography Scale */
.hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 15px; text-transform: uppercase; }
.hero h3 { color: var(--primary-blue); font-size: clamp(0.85rem, 1.2vw, 0.95rem); font-weight: 500; margin-bottom: 15px; max-width: 750px; line-height: 1.5; }
.hero p { color: var(--text-light); font-size: clamp(0.85rem, 1vw, 0.95rem); line-height: 1.6; max-width: 700px; margin-bottom: 30px; }

.typing-text { color: var(--white); position: relative; display: inline-block; }
.typing-cursor { display: inline-block; width: 3px; background-color: var(--primary-blue); margin-left: 5px; animation: blink 0.7s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Redesigned Attractive Buttons */
.hero-buttons { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; }

.btn-blue-gradient {
    position: relative; overflow: hidden; z-index: 1; background-color: var(--primary-blue); color: var(--white); 
    padding: 10px 26px; border-radius: 30px; font-size: 0.75rem; font-weight: 600; display: inline-flex; 
    align-items: center; gap: 8px; text-transform: uppercase; box-shadow: 0 4px 15px rgba(0, 163, 255, 0.2); 
    border: 1px solid rgba(255, 255, 255, 0.1); cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.btn-blue-gradient::before {
    content: ''; position: absolute; top: -100%; left: -100%; width: 100%; height: 100%;
    /* New Related Hover Gradient: Bright Electric Cyan to Deep Blue */
    background: linear-gradient(135deg, #00E1FF, #0055CC); z-index: -1; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-blue-gradient i { background: rgba(255,255,255,0.2); border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; transition: 0.4s; }
.btn-blue-gradient:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 225, 255, 0.4); border-color: rgba(255, 255, 255, 0.3); }
.btn-blue-gradient:hover::before { top: 0; left: 0; }
.btn-blue-gradient:hover i { background: rgba(255,255,255,0.3); transform: translateX(4px); }

.btn-outline {
    position: relative; overflow: hidden; z-index: 1; background: rgba(0, 163, 255, 0.05); color: var(--white); 
    border: 1px solid rgba(0, 163, 255, 0.4); padding: 10px 26px; border-radius: 30px; font-size: 0.75rem; 
    font-weight: 600; text-transform: uppercase; transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer;
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
}
.btn-outline::before {
    content: ''; position: absolute; top: -100%; left: -100%; width: 100%; height: 100%;
    /* New Related Hover Gradient: Deep Oceanic Wash */
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.2), rgba(0, 85, 204, 0.5)); z-index: -1; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline:hover { border-color: #00E1FF; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0, 163, 255, 0.2); }
.btn-outline:hover::before { top: 0; left: 0; }

.hero-features { display: flex; flex-wrap: wrap; gap: 12px; }
.feature-pill { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 6px 16px; border-radius: 50px; font-size: 0.7rem; font-weight: 500; display: flex; align-items: center; gap: 8px; color: var(--text-light); transition: 0.3s; }
.feature-pill i { color: var(--primary-blue); font-size: 0.85rem; }
.feature-pill:hover { background: rgba(0, 163, 255, 0.1); border-color: var(--primary-blue); color: var(--white); transform: translateY(-2px); }

.scroll-bottom-circle { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 45px; height: 45px; border: 2px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--white); font-size: 1rem; z-index: 10; transition: 0.3s; animation: bounceUpDown 2s infinite ease-in-out; cursor: pointer; }
.scroll-bottom-circle::before { content: ''; position: absolute; top: -6px; left: -6px; right: -6px; bottom: -6px; border: 1px dashed var(--primary-blue); border-radius: 50%; animation: spinRing 10s linear infinite; opacity: 0.5; transition: 0.3s; }
.scroll-bottom-circle:hover { border-color: var(--primary-blue); color: var(--primary-blue); background: rgba(0, 163, 255, 0.1); box-shadow: 0 0 15px rgba(0, 163, 255, 0.4); }
.scroll-bottom-circle:hover::before { opacity: 1; }

@keyframes bounceUpDown { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }
@keyframes spinRing { 100% { transform: rotate(360deg); } }

@media (max-width: 992px) {
    .sidebar-left, .sidebar-right { display: none; }
    .hero-content { margin: 0 auto; text-align: center; }
    .accent-frame { padding: 0; }
    .accent-frame::before, .vertical-tag { display: none; }
    .hero-buttons { justify-content: center; }
    .hero-features { justify-content: center; }
}

/* =========================================
   4. ABOUT US (BENTO-BOX MATRIX)
   ========================================= */
.about-section-block { background-color: var(--bg-dark); padding: var(--section-pad) 5%; position: relative; overflow: hidden; }
.about-layout-container {
    max-width: 1300px; margin: 0 auto;
    display: grid;
    /* Fluid Grid - Auto reflows to single column on mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(40px, 6vw, 60px);
    align-items: center;
}

.about-image-matrix { position: relative; height: clamp(380px, 50vw, 580px); width: 100%; }
.about-wireframe-back { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 75%; height: 78%; border: 2px solid var(--primary-blue); z-index: 1; opacity: 0.8; filter: drop-shadow(0 0 8px rgba(0, 163, 255, 0.2)); }
.matrix-img-node { position: absolute; border-radius: 4px; box-shadow: 0 15px 35px rgba(0,0,0,0.6); object-fit: cover; z-index: 2; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), z-index 0.1s; }
.matrix-img-node:hover { transform: scale(1.03); z-index: 5 !important; box-shadow: 0 20px 45px rgba(0, 163, 255, 0.35); }

.matrix-node-1 { top: 0; left: 0; width: 55%; height: 45%; }
.matrix-node-2 { top: 22%; right: 0; width: 55%; height: 55%; z-index: 3; border: 4px solid var(--bg-dark); }
.matrix-node-3 { bottom: 0; left: 8%; width: 52%; height: 40%; z-index: 4; }

.about-text-panel h4 { color: var(--primary-blue); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.about-text-panel h2 { font-size: var(--h2-size); font-weight: 700; line-height: 1.2; margin-bottom: 22px; color: var(--white); }
.about-text-panel p { color: var(--text-light); font-size: var(--p-size); line-height: 1.7; margin-bottom: 20px; }

.matrix-bullet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 32px 0; }
.matrix-bullet-node { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 0.88rem; font-weight: 500; }
.matrix-bullet-node i { color: var(--primary-blue); font-size: 1.1rem; }

.btn-panel-gradient {
    background-image: var(--btn-gradient); background-size: 200% 200%;
    color: var(--white); padding: 13px 32px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; 
    display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; border: none; cursor: pointer;
    transition: background-position 0.6s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 15px rgba(0, 163, 255, 0.25);
}
.btn-panel-gradient:hover { background-position: 100% 100%; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 163, 255, 0.5); }

/* =========================================
   5. CERTIFICATIONS TICKER 
   ========================================= */
.certifications-ticker-block {
    background-color: #050A14; padding: 10px 0; 
    border-top: 1px solid rgba(0, 163, 255, 0.1); border-bottom: 1px solid rgba(0, 163, 255, 0.1);
    display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
    background: linear-gradient(90deg, #050A14 0%, #0A1428 50%, #050A14 100%);
}
.ticker-wrapper { width: 100%; max-width: 1800px; overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%); }
.ticker-track { display: flex; width: max-content; align-items: center; animation: tickerScroll 50s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-group { display: flex; align-items: center; flex-shrink: 0; }
.ticker-item { font-size: clamp(0.75rem, 2vw, 0.9rem); font-weight: 500; color: var(--text-light); letter-spacing: 1px; margin: 0 15px; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; }
.ticker-item:hover { color: #00E1FF; transform: scale(1.05); text-shadow: 0 0 8px rgba(0, 225, 255, 0.5); }
.ticker-dot { width: 4px; height: 4px; background-color: var(--primary-blue); border-radius: 50%; box-shadow: 0 0 6px rgba(0, 163, 255, 0.5); flex-shrink: 0; }

@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================
   6. SERVICES OVERVIEW (GLASSMORPHISM BENTO)
   ========================================= */
.services-section-block {
    position: relative; padding: var(--section-pad) 5%; background-color: var(--bg-dark);
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 17, 24, 0.88) 50%, var(--bg-dark) 100%), url('../images/background.jpg') center/cover no-repeat;
    background-attachment: fixed; overflow: hidden;
}
.services-glow-aura { position: absolute; top: 5%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0, 163, 255, 0.08) 0%, transparent 70%); z-index: 1; pointer-events: none; }
.services-layout-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }

.services-header-panel { text-align: center; margin-bottom: 50px; }
.services-header-panel h4 { color: var(--primary-blue); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.services-header-panel h2 { font-size: var(--h2-size); font-weight: 700; letter-spacing: -0.5px; color: var(--white); text-transform: uppercase; position: relative; display: inline-block; padding-bottom: 15px; margin-bottom: 15px; }
.services-header-panel h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 70px; height: 3px; background-color: var(--primary-blue); }
.services-header-panel p { color: #94A3B8; font-size: var(--p-size); max-width: 600px; margin: 0 auto; }

.services-matrix-grid {
    display: grid;
    /* Fluid Column Layout: Auto-scales down to 1 column on mobile */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 20px;
    margin-bottom: 50px;
}

.service-premium-card {
    background: rgba(10, 17, 24, 0.75); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; padding: clamp(20px, 3vw, 30px) 15px; 
    text-align: center; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer; display: flex; flex-direction: column; align-items: center; transform-style: preserve-3d;
}
.service-premium-card:hover, .service-premium-card.active-card { border-color: var(--primary-blue); box-shadow: 0 15px 40px rgba(0, 163, 255, 0.25); background: rgba(10, 17, 24, 0.9); transform: translateY(-5px); }

.card-icon-node-ring { position: relative; width: 65px; height: 65px; border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.4s ease; background: rgba(5, 8, 12, 0.8); }
.card-icon-node-ring::before { content: ''; position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px; border: 1px dashed rgba(0, 163, 255, 0.3); border-radius: 50%; transition: transform 0.6s ease, border-color 0.3s ease; }
.card-icon-node-ring i { color: var(--text-light); font-size: 1.6rem; transition: color 0.3s ease; }
.service-premium-card:hover .card-icon-node-ring { border-color: var(--primary-blue); background: rgba(0, 163, 255, 0.08); box-shadow: 0 0 20px rgba(0, 163, 255, 0.3); }
.service-premium-card:hover .card-icon-node-ring::before { transform: rotate(180deg); border-color: var(--primary-blue); }
.service-premium-card:hover .card-icon-node-ring i { color: var(--primary-blue); }

.service-premium-card h3 { font-size: var(--h3-size); font-weight: 600; color: var(--white); margin-bottom: 10px; text-transform: uppercase; transition: color 0.3s ease; }
.service-premium-card:hover h3 { color: var(--primary-blue); }
.service-premium-card p { color: #94A3B8; font-size: 0.85rem; line-height: 1.5; margin-bottom: 15px; }

.card-action-trigger { font-size: 0.7rem; font-weight: 600; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; display: flex; align-items: center; gap: 6px; margin-top: auto; transition: all 0.3s ease; }
.service-premium-card:hover .card-action-trigger { color: var(--primary-blue); text-shadow: 0 0 8px rgba(0, 163, 255, 0.4); }
.service-premium-card:hover .card-action-trigger i { transform: translateX(4px); }

/* Details Viewport */
.service-details-viewport { background: rgba(10, 17, 24, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.08); border-left: 4px solid var(--primary-blue); border-radius: 4px; padding: clamp(20px, 4vw, 40px); margin-top: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); display: none; }
.details-back-btn { background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); color: var(--text-light); padding: 8px 20px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 25px; transition: all 0.3s ease; }
.details-back-btn:hover { color: var(--primary-blue); border-color: var(--primary-blue); box-shadow: 0 0 12px rgba(0, 163, 255, 0.2); }
.details-back-btn:hover i { transform: translateX(-4px); }

.service-details-content { display: none; }
.service-details-content.active-details { display: block; animation: detailsFadeIn 0.5s ease forwards; }
@keyframes detailsFadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

.service-details-viewport h2 { font-size: var(--h2-size); font-weight: 700; color: var(--white); text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.service-details-viewport h2 i { color: var(--primary-blue); }
.service-details-viewport p { color: var(--text-light); font-size: var(--p-size); line-height: 1.8; margin-bottom: 25px; }

.details-spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.spec-item-box { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); padding: 20px; border-radius: 4px; }
.spec-item-box h4 { color: var(--primary-blue); font-size: 1rem; margin-bottom: 8px; text-transform: uppercase; }
.spec-item-box p { color: #94A3B8; font-size: 0.85rem; line-height: 1.5; margin: 0; }

/* =========================================
   7. WHY CHOOSE US
   ========================================= */
.expert-section-block { position: relative; width: 100vw; padding: var(--section-pad) 0; background-color: var(--bg-dark); background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 17, 24, 0.93) 50%, var(--bg-dark) 100%), url(../images/About-1.jpg) center/cover no-repeat; background-attachment: fixed; overflow: hidden; display: grid; grid-template-columns: 80px 1fr 80px; }
.expert-glow-aura { position: absolute; top: 20%; left: -5%; width: 450px; height: 450px; background: radial-gradient(circle, rgba(0, 163, 255, 0.12) 0%, transparent 70%); z-index: 1; pointer-events: none; }

.expert-sidebar { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 5; }
.expert-sidebar-left { grid-column: 1; gap: 20px; }
.expert-sidebar-left .follow-label { color: rgba(255, 255, 255, 0.5); font-size: 0.75rem; letter-spacing: 2px; writing-mode: vertical-rl; transform: rotate(180deg); display: flex; align-items: center; gap: 15px; }
.expert-sidebar-left .follow-label::after { content: ''; width: 1px; height: 50px; background: rgba(255, 255, 255, 0.15); display: block; }
.expert-social-node { width: 34px; height: 34px; border: 1px solid rgba(0, 163, 255, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-blue); font-size: 0.9rem; transition: all 0.3s ease; cursor: pointer; background: rgba(10, 17, 24, 0.5); box-shadow: 0 0 8px rgba(0, 163, 255, 0.15); }
.expert-social-node:hover { background-color: var(--primary-blue); color: #0A1118; box-shadow: 0 0 15px rgba(0, 163, 255, 0.5); transform: scale(1.05); }

.expert-sidebar-right { grid-column: 3; justify-content: start; padding-top: 60px; }
.tracking-tag-text { writing-mode: vertical-rl; color: rgba(255, 255, 255, 0.4); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; }

.expert-content-canvas { grid-column: 2; max-width: 1100px; margin: 0 auto; width: 100%; position: relative; z-index: 2; display: flex; flex-direction: column; }
.expert-header-panel { margin-bottom: 50px; position: relative; }
.expert-header-panel h2 { font-size: var(--h2-size); font-weight: 800; line-height: 1.2; color: var(--white); text-transform: uppercase; letter-spacing: -0.5px; }
.expert-header-panel h2 span { color: var(--primary-blue); text-shadow: 0 0 15px rgba(0, 163, 255, 0.3); }
.expert-header-line { width: 120px; height: 3px; background-color: var(--primary-blue); margin-top: 15px; box-shadow: 0 0 8px var(--primary-blue); }

.expert-matrix-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; width: 100%; margin-bottom: 40px; }
.expert-card-node { background: rgba(10, 17, 24, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(0, 163, 255, 0.25); border-radius: 6px; padding: 25px 30px; display: flex; align-items: center; gap: 25px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 163, 255, 0.05); transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
.expert-card-node:hover { transform: translateY(-4px); border-color: var(--primary-blue); box-shadow: 0 10px 25px rgba(0, 163, 255, 0.2); background: rgba(10, 17, 24, 0.8); }

.expert-icon-frame { font-size: 2.2rem; color: var(--primary-blue); display: flex; align-items: center; justify-content: center; text-shadow: 0 0 10px rgba(0, 163, 255, 0.4); }
.custom-badge-wrapper { border: 2px solid var(--primary-blue); border-radius: 50%; width: 48px; height: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 0 10px rgba(0, 163, 255, 0.3); }
.custom-badge-top { font-size: 0.55rem; font-weight: 800; color: var(--white); line-height: 1; }
.custom-badge-mid { font-size: 0.75rem; font-weight: 800; color: var(--primary-blue); line-height: 1; margin: 1px 0; }
.custom-badge-bot { font-size: 0.45rem; font-weight: 700; color: var(--white); line-height: 1; }

.expert-headline-text { font-size: 1.1rem; font-weight: 600; color: var(--white); line-height: 1.4; letter-spacing: 0.3px; }
.expert-summary-paragraph { max-width: 850px; color: #94A3B8; font-size: var(--p-size); line-height: 1.7; margin-bottom: 35px; }

.btn-expert-action { background-image: var(--btn-gradient); background-size: 200% 200%; color: var(--white); padding: 14px 36px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; border: none; cursor: pointer; align-self: flex-start; transition: background-position 0.6s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 15px rgba(0, 163, 255, 0.25); }
.btn-expert-action:hover { background-position: 100% 100%; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 163, 255, 0.5); }

@media (max-width: 992px) {
    .expert-section-block { grid-template-columns: 1fr; padding: var(--section-pad) 5%; }
    .expert-sidebar { display: none; }
    .expert-content-canvas { grid-column: 1; }
}

/* =========================================
   8. PATHWAY (TWO WAYS)
   ========================================= */
.pathway-section-block { position: relative; padding: var(--section-pad) 5%; background-color: #0A1428; overflow: hidden; }
.pathway-glow-left { position: absolute; top: 10%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0, 163, 255, 0.08) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.pathway-glow-right { position: absolute; bottom: -10%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0, 163, 255, 0.08) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.pathway-layout-container { max-width: 1150px; margin: 0 auto; position: relative; z-index: 5; }

.pathway-header-panel { text-align: center; margin-bottom: 60px; }
.pathway-header-panel h4 { color: var(--primary-blue); font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; }
.pathway-header-panel h2 { font-size: var(--h2-size); font-weight: 700; letter-spacing: -0.5px; color: var(--white); margin-bottom: 20px; }
.pathway-header-panel p { color: #CBD5E1; font-size: var(--p-size); max-width: 700px; margin: 0 auto; line-height: 1.7; }

.pathway-split-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.pathway-card { position: relative; background-color: #112240; border: 1px solid rgba(0, 163, 255, 0.1); border-radius: 12px; overflow: hidden; padding: 45px 35px; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); display: flex; flex-direction: column; justify-content: space-between; min-height: 460px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
.card-bg-image { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; transition: transform 0.8s ease; z-index: 0; }
.client-bg { background-image: url(../images/home/clients.jpg); } 
.seeker-bg { background-image: url(../images/home/career.jpg); }
.card-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(10, 20, 40, 0.7) 0%, rgba(10, 20, 40, 0.95) 100%); z-index: 1; transition: background 0.4s ease; }

.pathway-card:hover { transform: translateY(-8px); border-color: var(--primary-blue); box-shadow: 0 15px 40px rgba(0, 163, 255, 0.15); }
.pathway-card:hover .card-bg-image { transform: scale(1.05); }
.pathway-card:hover .card-overlay { background: linear-gradient(180deg, rgba(0, 163, 255, 0.2) 0%, rgba(10, 20, 40, 0.95) 100%); }

.pathway-content-wrapper { position: relative; z-index: 5; display: flex; flex-direction: column; height: 100%; }
.pathway-icon { width: 65px; height: 65px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 25px; background: rgba(0, 163, 255, 0.05); border: 1px solid rgba(0, 163, 255, 0.15); color: var(--primary-blue); transition: all 0.4s ease; backdrop-filter: blur(5px); }
.pathway-card:hover .pathway-icon { background: rgba(0, 163, 255, 0.2); border-color: var(--primary-blue); color: #FFF; }

.path-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; color: var(--primary-blue); }
.pathway-text-content h3 { font-size: var(--h3-size); font-weight: 600; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.pathway-text-content p { font-size: 1rem; color: #CBD5E1; line-height: 1.6; margin-bottom: 30px; }

.pathway-action-btn { display: inline-flex; align-items: center; justify-content: space-between; padding: 14px 24px; border-radius: 8px; font-size: 1rem; font-weight: 600; text-decoration: none; margin-top: auto; max-width: 240px; position: relative; overflow: hidden; z-index: 1; border: 1px solid var(--primary-blue); color: var(--white); }
.pathway-action-btn span, .pathway-action-btn i { position: relative; z-index: 2; transition: transform 0.3s ease; }
.pathway-action-btn::after { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background-color: #0044CC; z-index: -1; transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.pathway-action-btn:hover::after { width: 100%; }
.pathway-action-btn:hover { border-color: #0044CC; box-shadow: 0 10px 20px rgba(0, 68, 204, 0.4); }

/* =========================================
   9. INDUSTRIES SERVED (FLEX ACCORDION)
   ========================================= */
.industries-showcase-block { position: relative; padding: 60px 5% 80px; background-color: #050A14; overflow: hidden; }
.industries-glow { position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(0, 163, 255, 0.05) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.industries-layout-container { max-width: 1100px; margin: 0 auto; position: relative; z-index: 5; }

.industries-header-panel { text-align: center; margin-bottom: 35px; }
.industries-header-panel h4 { color: #FFD700; font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.industries-header-panel h2 { font-size: var(--h2-size); font-weight: 700; letter-spacing: -0.5px; color: var(--white); margin: 0; }

.flex-accordion-container { display: flex; flex-direction: row; height: clamp(300px, 40vw, 400px); gap: 10px; width: 100%; }
.flex-accordion-container:hover .ind-panel { opacity: 0.6; }

.ind-panel { position: relative; flex: 1; border-radius: 12px; overflow: hidden; background-size: cover; background-position: center; background-color: #112240; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); cursor: pointer; opacity: 1; }
.flex-accordion-container .ind-panel:hover { flex: 4.5; opacity: 1; box-shadow: 0 10px 25px rgba(0, 163, 255, 0.25); border: 1px solid rgba(0, 163, 255, 0.5); }

.bg-oil { background-image: url(../images/home/Oil\ &\ Gas.jpg); }
.bg-petro { background-image: url(../images/home/Petrochemical.jpg); }
.bg-power { background-image: url(../images/home/Power\ &\ Energy.jpg); }
.bg-marine { background-image: url(../images/home/Marine\ &\ Offshore.jpg); }
.bg-infra { background-image: url(../images/home/Infrastructure.jpg); }
.bg-manufacturing { background-image: url(../images/home/Manufacturing.jpg); }

.ind-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(5, 10, 20, 0.3) 0%, rgba(5, 10, 20, 0.95) 100%); transition: background 0.5s ease; z-index: 1; }
.ind-panel:hover .ind-overlay { background: linear-gradient(180deg, rgba(0, 163, 255, 0.15) 0%, rgba(5, 10, 20, 0.95) 100%); }

.ind-icon-box { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 45px; height: 45px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white); transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); z-index: 2; backdrop-filter: blur(5px); }
.ind-panel:hover .ind-icon-box { top: 15px; left: calc(100% - 30px); transform: translate(-50%, 0); background: var(--primary-blue); border-color: var(--primary-blue); box-shadow: 0 0 15px rgba(0, 163, 255, 0.4); }

.ind-content-box { position: absolute; bottom: 15px; left: 0; right: 0; padding: 0 10px; text-align: center; z-index: 2; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.ind-panel:hover .ind-content-box { padding: 0 25px; text-align: left; bottom: 20px; }
.ind-title { font-size: 0.95rem; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; margin: 0; transition: all 0.5s ease; }
.ind-panel:hover .ind-title { font-size: 1.4rem; color: #00E1FF; margin-bottom: 8px; letter-spacing: -0.5px; }

.ind-hidden-content { opacity: 0; max-height: 0; transform: translateY(10px); overflow: hidden; transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, max-height 0s ease 0.3s; }
.ind-panel:hover .ind-hidden-content { opacity: 1; max-height: 120px; transform: translateY(0); transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s, max-height 0.5s ease; }
.ind-hidden-content p { font-size: 0.85rem; color: #CBD5E1; line-height: 1.5; margin-bottom: 12px; }

@media (max-width: 768px) {
    .flex-accordion-container { flex-direction: column; height: 600px; }
    .ind-panel:hover { flex: 3; }
    .ind-icon-box { top: 15px; left: 15px; transform: translate(0, 0); width: 35px; height: 35px; font-size: 1rem; }
    .ind-content-box { bottom: 12px; left: 60px; padding: 0; text-align: left; }
    .ind-panel:hover .ind-icon-box { top: 15px; left: 15px; transform: translate(0, 0); }
    .ind-panel:hover .ind-content-box { padding: 0 15px; bottom: 15px; left: 0; }
}

/* =========================================
   10. WHY PARTNER
   ========================================= */
.partner-section-block { position: relative; padding: var(--section-pad) 5%; background-image: linear-gradient(180deg, rgba(5, 10, 20, 0.8) 0%, rgba(5, 10, 20, 0.9) 100%), url('../images/background.jpg'); background-position: center; background-size: cover; background-attachment: fixed; overflow: hidden; }
.bg-orb { position: absolute; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--primary-blue) 40%, transparent 70%); opacity: 0.4; filter: blur(15px); pointer-events: none; z-index: 0; }
.bg-orb.top-left { top: -80px; left: -80px; width: 350px; height: 350px; }
.bg-orb.bottom-right { bottom: -100px; right: -100px; width: 450px; height: 450px; }

.partner-layout-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 5; }
.partner-header-panel { text-align: center; margin-bottom: 70px; }
.partner-header-panel h4 { color: #FFD700; font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; }
.partner-header-panel h2 { font-size: var(--h2-size); font-weight: 700; color: var(--white); text-transform: uppercase; position: relative; display: inline-block; padding-bottom: 18px; text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(0, 163, 255, 0.2); }
.partner-header-panel h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--primary-blue); }

.partner-matrix-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.partner-feature-card { background: rgba(5, 10, 20, 0.85); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; padding: 45px 35px; text-align: center; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); }
.partner-feature-card:hover { background: #000205; border-color: rgba(0, 163, 255, 0.6); transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0, 163, 255, 0.3); }

.partner-icon-ring { width: 75px; height: 75px; margin: 0 auto 25px auto; background: rgba(0, 163, 255, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(0, 163, 255, 0.4); transition: all 0.3s ease; box-shadow: 0 0 15px rgba(0, 163, 255, 0.2); }
.partner-feature-card:hover .partner-icon-ring { background: var(--primary-blue); border-color: var(--primary-blue); box-shadow: 0 0 25px rgba(0, 163, 255, 0.6); }
.partner-icon-ring i { font-size: 2rem; color: var(--primary-blue); transition: color 0.3s ease; }
.partner-feature-card:hover .partner-icon-ring i { color: var(--white); }

.partner-feature-card h3 { font-size: var(--h3-size); font-weight: 600; color: #00E1FF; margin-bottom: 15px; }
.partner-feature-card:hover h3 { color: var(--white); }
.partner-feature-card p { font-size: var(--p-size); color: var(--white); line-height: 1.7; margin: 0; }

/* =========================================
   11. VOICES (TESTIMONIALS)
   ========================================= */
.voices-section-block { position: relative; padding: var(--section-pad) 5%; overflow: hidden; background: linear-gradient(180deg, rgba(5, 10, 20, 0.9) 0%, rgba(5, 10, 20, 0.9) 100%), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?q=80&w=2000&auto=format&fit=crop') center/cover fixed; }
.voices-layout-container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.voices-header-panel { text-align: center; margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; }
.voices-header-panel h4 { color: var(--primary-blue); font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 15px; }
.voices-header-panel h2 { color: var(--white); font-size: var(--h2-size); margin-bottom: 15px; }
.voices-header-panel p { color: #CBD5E1; font-size: var(--p-size); max-width: 600px; line-height: 1.7; margin: 0; }

.voices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.voice-card { background: rgba(5, 10, 20, 0.85); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; padding: 40px; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); display: flex; flex-direction: column; }
.voice-card:hover { background: #000205; border-color: rgba(0, 163, 255, 0.6); transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0, 163, 255, 0.2); }
.voice-card p { color: var(--white); font-size: 1rem; line-height: 1.7; margin-bottom: 30px; font-style: italic; }
.voice-author h5 { color: #00E1FF; margin: 0; font-size: 1.1rem; }
.voice-author span { color: #CBD5E1; font-size: 0.85rem; }
.quote-icon { font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 20px; opacity: 0.5; }

/* =========================================
   12. STATS SECTION
   ========================================= */
.stats-section { background-color: #050A14; padding: var(--section-pad) 5%; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; max-width: 1100px; margin: 0 auto; }
.stat-card { background: rgba(17, 34, 64, 0.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(0, 163, 255, 0.2); padding: 40px 20px; border-radius: 16px; text-align: center; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); position: relative; overflow: hidden; }
.stat-card:hover { transform: translateY(-10px); border-color: var(--primary-blue); background: rgba(17, 34, 64, 0.7); box-shadow: 0 10px 30px rgba(0, 163, 255, 0.15); }
.stat-value { display: block; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 8px; text-shadow: 0 0 15px rgba(0, 163, 255, 0.3); }
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: #94A3B8; margin: 0; transition: color 0.3s ease; }
.stat-card:hover .stat-label { color: var(--white); }

/* =========================================
   13. CTA SECTION
   ========================================= */
/* --- Hero Section Wrapper --- */
.rexora-hero-section {
    position: relative;
    /* Deep industrial navy-to-black gradient */
    background: radial-gradient(circle at 50% 0%, #0f172a 0%, #050a14 70%, #020408 100%);
    
    /* Compact Height Setup */
    min-height: 40vh; 
    padding: 30px 5%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    text-align: center;
}

/* --- Floating Glassmorphic Diamond Shapes --- */
.bg-shape {
    position: absolute;
    /* Electric cyan gradients matching the 'RX' logo glow */
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 240, 255, 0.15);
    transform: rotate(45deg) skew(15deg, 15deg);
    z-index: 0;
    border-radius: 8px;
    pointer-events: none;
}

.shape-1 {
    top: 15%;
    left: 10%;
    width: 250px;
    height: 250px;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.shape-2 {
    bottom: 5%;
    right: 15%;
    width: 150px;
    height: 150px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(0, 240, 255, 0.05);
}

/* --- Content Container --- */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 750px;
    width: 100%;
}

/* --- Logo Placeholder --- */
.hero-logo {
    max-width: 280px;
    margin-bottom: 30px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

/* --- Typography --- */
.hero-headline {
    /* DECREASED: Changed from clamp(2.2rem, 5vw, 3.2rem) */
    font-size: clamp(1.8rem, 4vw, 2.5rem); 
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
    /* DECREASED: Changed from clamp(1rem, 2vw, 1.15rem) */
    font-size: clamp(0.9rem, 1.5vw, 1rem); 
    color: #94a3b8;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    max-width: 600px;
}

/* --- Buttons Container --- */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-cyan, .btn-outline-silver {
    padding: 12px 28px; /* Slightly reduced padding to match smaller font */
    border-radius: 6px;
    /* DECREASED: Changed from 1rem */
    font-size: 0.9rem; 
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* --- The Sweeping Animated Primary Button --- */
.btn-cyan {
    /* 3-stop gradient for the sweeping effect */
    background-image: linear-gradient(to right, #00f0ff 0%, #0250c7 50%, #00f0ff 100%);
    background-size: 200% auto;
    
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.25);
    border: none;
    transition: background-position 0.5s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cyan:hover {
    /* Triggers the left-to-right sweep */
    background-position: right center;
    
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4);
}

/* --- Glass Secondary Button --- */
.btn-outline-silver {
    background-color: rgba(255, 255, 255, 0.03); 
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-outline-silver:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* --- Disclaimer Note --- */
.hero-disclaimer {
    /* DECREASED: Changed from 0.85rem */
    font-size: 0.75rem; 
    color: #64748b;
    margin: 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 600px) {
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-cyan, .btn-outline-silver {
        width: 100%;
        box-sizing: border-box;
    }
    .bg-shape {
        opacity: 0.4;
    }
}

/* =========================================
   14. FOOTER
   ========================================= */
/* --- Core Container --- */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

.footer-col {
    flex: 1;
    max-width: 25%;
}

/* --- Typography --- */
.footer-col h4 {
    margin-top: 0;
    margin-bottom: 20px;
    min-height: 24px;
    color: #fff; /* Ensures visibility on dark background */
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* --- Links & Icons --- */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-links a, .footer-links span {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #94a3b8;
    transition: 0.3s;
}

.footer-links a:hover { color: #00f0ff; }

.footer-links i {
    min-width: 30px; /* Increased for better separation */
    color: #00f0ff;
}

/* --- Social Media Alignment --- */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-links a:hover { color: #00f0ff; }

/* --- RESPONSIVE DESIGN --- */

/* 1. Tablets (Smaller than 992px) */
@media (max-width: 992px) {
    .footer-container {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-col {
        max-width: 45%; /* Two columns per row */
    }
}

/* 2. Mobile (Smaller than 600px) */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-col {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }

    /* Fix for list alignment on mobile */
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links li {
        justify-content: center;
        width: 100%;
    }

    /* Center social icons on mobile */
    .social-links {
        justify-content: center;
        margin-top: 10px;
    }
}
/* --- Footer Bottom Bar (Tightened & White Text) --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #010204;
    padding: 10px 5% 15px 5%; 
    text-align: center;
    margin-top: 0; 
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #ffffff; /* Changed to white */
    letter-spacing: 0.5px;
}

/* --- 5. Floating Contact Widget --- */
.contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.widget-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Specific Brand Colors */
.whatsapp { background-color: #25d366; }
.phone { background-color: #0ea5e9; }
.email { background-color: #f43f5e; }

/* Scroll-to-Top Button with Pulse Animation */
.scroll-top { 
    background-color: #00f0ff; 
    color: #020408;
    animation: pulse 2s infinite;
}

@keyframes pulse { 
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); } 
    70% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); } 
}

.widget-btn:hover {
    transform: scale(1.1);
    animation: none; /* Stop pulsing on hover */
}

/* Hide on mobile if preferred, or keep as is */
@media (max-width: 600px) {
    .contact-widget {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
}