/* ========================================
   AVIT Website - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #00a8ff;
    --primary-dark: #0077b6;
    --secondary-color: #7c3aed;
    --accent-color: #f72585;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-dark: #1a1a2e;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(255, 255, 255, 0.05);
    --gradient-primary: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    --gradient-accent: linear-gradient(135deg, #f72585 0%, #7c3aed 100%);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --border-radius: 12px;
    --border-radius-lg: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Preloader
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader .logo-text {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    z-index: 1000;
    transition: var(--transition-medium);
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-container .main-nav {
    flex: 1;
    justify-content: center;
}

.logo {
    width: auto;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.logo-img {
    width: auto;
    height: 130px;
    object-fit: contain;
    filter: brightness(1.15) contrast(1.15) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo-text-header {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* PRO Badge Styling */
.pro-badge {
    font-size: 0.5em;
    font-weight: 700;
    background: linear-gradient(135deg, #f72585 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    top: -0.3em;
    margin-left: 2px;
    letter-spacing: 1px;
}

/* Alternative: PRO badge with background pill */
.logo-text-header .pro-badge {
    font-size: 0.4em;
    background: linear-gradient(135deg, #f72585 0%, #7c3aed 100%);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    top: -0.5em;
    margin-left: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(247, 37, 133, 0.3);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-primary);
    border-radius: 6px;
    transition: var(--transition-fast);
    white-space: nowrap;
    opacity: 0.4;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav-link {
    opacity: 1;
}

.nav-link:hover {
    background: var(--bg-card);
    color: var(--primary-color);
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 500px;
    background: rgba(20, 20, 30, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dropdown-column h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.dropdown-column a {
    display: block;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.dropdown-column a:hover {
    color: var(--text-primary);
    padding-left: 10px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.4;
    transition: var(--transition-fast);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header.scrolled .support-link {
    opacity: 1;
}

.support-link:hover {
    color: var(--primary-color);
    opacity: 1;
}

.btn-contact {
    padding: 8px 20px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 500;
    border-radius: 50px;
    font-size: 0.8rem;
    transition: var(--transition-fast);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header.scrolled .btn-contact {
    background: var(--gradient-primary);
    border: none;
    opacity: 1;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

/* Mobile Menu Close - hidden on desktop */
.mobile-menu-close {
    display: none;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-text {
    text-align: center;
    max-width: 800px;
}

.slide-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-slide.active .slide-label {
    opacity: 1;
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
    text-align: center;
    display: block;
    width: 100%;
}

.hero-slide.active .slide-title {
    opacity: 1;
}

.slide-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Specific offset for slide 4 - Communication Solutions */
.slide-title .highlight.offset-left {
    display: inline-block;
    position: relative;
    left: -80px;
}

/* Slide 3 - Professional Displays styling */
.slide-title.smaller-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.slide-title.smaller-title .highlight {
    font-size: clamp(3rem, 5vw, 4.5rem);
    display: block;
    margin-top: 10px;
}

.slide-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-slide.active .slide-description {
    opacity: 1;
}

.slide-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-slide.active .slide-actions {
    opacity: 1;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary i {
    font-size: 1.2rem;
}

/* Slide Visual */
.slide-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

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

.display-frame {
    width: 450px;
    height: 280px;
    background: linear-gradient(145deg, #1a1a2e, #0a0a15);
    border-radius: 20px;
    padding: 15px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.display-frame.large {
    width: 500px;
    height: 320px;
}

.display-screen {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* LED Animation */
.led-animation {
    background: linear-gradient(45deg,
        #00a8ff, #7c3aed, #f72585, #00a8ff);
    background-size: 400% 400%;
    animation: gradient-shift 4s ease infinite;
}

/* Interactive Animation */
.interactive-animation {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    position: relative;
    overflow: hidden;
}

.interactive-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s ease-out infinite;
}

/* Retail Animation */
.retail-animation {
    background: linear-gradient(180deg, #2d1b4e, #1a0a2e);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.retail-animation::before {
    content: 'AVIT';
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: scale-pulse 3s ease-in-out infinite;
}

/* Touch Indicators */
.touch-indicators {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.touch-point {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: touch-pulse 2s ease-out infinite;
}

.touch-point:nth-child(1) {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.touch-point:nth-child(2) {
    top: 50%;
    left: 60%;
    animation-delay: 0.5s;
}

.touch-point:nth-child(3) {
    top: 70%;
    left: 40%;
    animation-delay: 1s;
}

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

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

@keyframes touch-pulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

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

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 40px;
}

.slider-pagination {
    display: flex;
    gap: 12px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pagination-dot:hover {
    border-color: var(--primary-color);
}

.pagination-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    position: relative;
    border-radius: 1px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ========================================
   About Us Section
   ======================================== */
.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #1a1a2e;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-feature {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-fast);
}

.about-feature:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.about-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.about-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 50px auto 0;
    }
}

/* About Services (Corporate, Education, Government) */
.about-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-service {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-fast);
}

.about-service:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-service i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.about-service h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.about-service p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.service-partners {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.partners-label {
    display: block;
    font-size: 0.85rem;
    color: #00a8ff;
    font-weight: 600;
    margin-bottom: 8px;
}

.partners-list {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .about-services {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 20px;
    }
}

/* ========================================
   Vision Quote Section - Logic AV Style
   ======================================== */
.vision-section {
    padding: 120px 0;
    background: #0a0a0f;
}

.vision-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    overflow-x: hidden;
}

.vision-quote {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

/* Product Grid - 5 cards layout in one row */
.product-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 15px;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 20px;
}

.product-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    height: 300px !important;
    flex: 0 0 220px !important;
    text-decoration: none;
    display: block !important;
    background: #1a1a2e;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 168, 255, 0.2);
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(0.7);
}

.product-card:hover .product-image img {
    transform: scale(1.15);
    filter: brightness(0.9);
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: left;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #00a8ff;
}

.product-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(0);
}

.product-card:hover .product-arrow {
    opacity: 1;
    transform: translateX(0);
    background: #00a8ff;
}

@media (max-width: 1200px) {
    .product-card {
        min-width: 180px;
        width: 180px;
        height: 250px;
    }
}

@media (max-width: 992px) {
    .product-grid {
        justify-content: flex-start;
        padding-left: 20px;
    }

    .product-card {
        min-width: 160px;
        width: 160px;
        height: 220px;
    }

    .vision-quote {
        margin-bottom: 50px;
    }

    .product-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .vision-section {
        padding: 80px 0;
    }

    .vision-container {
        padding: 0 15px;
    }

    .product-grid {
        gap: 12px;
    }

    .product-card {
        min-width: 140px;
        width: 140px;
        height: 180px;
    }

    .product-content {
        padding: 15px 10px;
    }

    .product-title {
        font-size: 0.85rem;
    }

    .product-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

/* ========================================
   Solutions Page - Products Grid (Logic AV Style)
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid .product-card {
    position: relative;
    background: #f5f0eb;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.products-grid .product-card:nth-child(2) {
    background: #e8eaf6;
}

.products-grid .product-card:nth-child(3) {
    background: #e3f2fd;
}

.products-grid .product-card:nth-child(4) {
    background: #fff3e0;
}

.products-grid .product-card:nth-child(5) {
    background: #f3e5f5;
}

.products-grid .product-card:nth-child(6) {
    background: #e0f7fa;
}

.products-grid .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.products-grid .product-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.products-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.products-grid .product-card:hover .product-image img {
    transform: scale(1.05);
}

.products-grid .product-info {
    padding: 20px 25px 25px;
    text-align: center;
    background: transparent;
}

.products-grid .product-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.products-grid .product-card:hover .product-info h4 {
    color: #00a8ff;
}

.products-grid .product-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.products-grid .product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00a8ff;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.products-grid .product-link:hover {
    color: #0077b6;
}

.products-grid .product-link i {
    transition: transform 0.3s ease;
}

.products-grid .product-link:hover i {
    transform: translateX(5px);
}

/* Section Alt Background */
.section-alt {
    background: #ffffff;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
    }

    .products-grid .product-image {
        height: 300px;
    }
}

/* ========================================
   Stats Bar
   ======================================== */
.stats-bar {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

/* ========================================
   Testimonials Section - Column Layout in Box
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-box {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 50px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-box.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
}

/* Testimonials Column List */
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.testimonial-card {
    position: relative;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.testimonial-card:first-child {
    padding-top: 0;
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card[data-animate="1"] { transition-delay: 0.1s; }
.testimonial-card[data-animate="2"] { transition-delay: 0.2s; }
.testimonial-card[data-animate="3"] { transition-delay: 0.3s; }
.testimonial-card[data-animate="4"] { transition-delay: 0.4s; }
.testimonial-card[data-animate="5"] { transition-delay: 0.5s; }
.testimonial-card[data-animate="6"] { transition-delay: 0.6s; }

/* Card Layout */
.testimonial-card-inner {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

/* Quote Icon */
.quote-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-main {
    flex: 1;
}

/* Stars Rating */
.stars {
    margin-bottom: 12px;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar span {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

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

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.8rem;
    color: #666;
}

/* Hover effect */
.testimonial-card:hover .quote-icon {
    background: var(--gradient-primary);
    transition: background 0.3s ease;
}

.testimonial-card:hover .quote-icon i {
    -webkit-text-fill-color: white;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-container {
        padding: 0 20px;
    }

    .testimonials-box {
        padding: 40px 30px;
    }

    .testimonials-header {
        margin-bottom: 30px;
    }

    .testimonial-card-inner {
        flex-direction: column;
        gap: 15px;
    }

    .quote-icon {
        width: 40px;
        height: 40px;
    }

    .quote-icon i {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 25px 0;
    }
}

/* ========================================
   Stats with Video Section
   ======================================== */
.stats-video-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 100px 0;
}

.stats-video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.stats-video-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.stats-highlight-box {
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

.stats-big-number {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stats-big-suffix {
    font-size: 3rem;
    font-weight: 700;
    color: #00a8ff;
}

.stats-big-label {
    margin-top: 15px;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
}

.stats-video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.stats-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 1;
    transition: all 0.3s ease;
}

.stats-video-wrapper:hover .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-btn-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 168, 255, 0.4);
}

.play-btn-large i {
    font-size: 1.8rem;
    color: #fff;
    margin-left: 5px;
}

.play-btn-large:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 168, 255, 0.5);
}

.video-overlay p {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-video-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-highlight-box {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ========================================
   Vision Innovation Section
   ======================================== */
.vision-innovation-section {
    background: #ffffff;
    padding: 100px 0;
}

.vision-innovation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.vision-innovation-header {
    text-align: center;
    margin-bottom: 60px;
}

.vision-stats-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.vision-stat-card:nth-child(1),
.vision-stat-card:nth-child(2),
.vision-stat-card:nth-child(3) {
    grid-column: span 4;
}

.vision-stat-card:nth-child(4),
.vision-stat-card:nth-child(5),
.vision-stat-card:nth-child(6),
.vision-stat-card:nth-child(7) {
    grid-column: span 3;
}

.vision-stat-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.vision-stat-card:hover {
    background: #fff;
    border-color: rgba(0, 168, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.vision-stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.vision-stat-card:hover .vision-stat-icon {
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
}

.vision-stat-icon i {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.vision-stat-card:hover .vision-stat-icon i {
    -webkit-text-fill-color: #fff;
}

.vision-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.vision-stat-label {
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

@media (max-width: 992px) {
    .vision-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-stat-card:nth-child(1),
    .vision-stat-card:nth-child(2),
    .vision-stat-card:nth-child(3),
    .vision-stat-card:nth-child(4),
    .vision-stat-card:nth-child(5),
    .vision-stat-card:nth-child(6),
    .vision-stat-card:nth-child(7) {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .vision-stats-grid {
        grid-template-columns: 1fr;
    }

    .vision-stat-card:nth-child(1),
    .vision-stat-card:nth-child(2),
    .vision-stat-card:nth-child(3),
    .vision-stat-card:nth-child(4),
    .vision-stat-card:nth-child(5),
    .vision-stat-card:nth-child(6),
    .vision-stat-card:nth-child(7) {
        grid-column: span 1;
    }

    .vision-stat-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   Industries Section
   ======================================== */
.industries-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 100px 0;
}

.industries-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.industries-header {
    text-align: center;
    margin-bottom: 60px;
}

.industries-header .section-label {
    color: #00a8ff;
}

.industries-header .section-title {
    color: #fff;
}

.industries-header .section-description {
    color: #b8c5d6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    text-decoration: none;
}

.industry-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.industry-overlay h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.industry-arrow {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.industry-arrow i {
    color: #fff;
    font-size: 0.9rem;
}

.industry-card:hover .industry-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   News Section
   ======================================== */
.news-section {
    background: #ffffff;
    padding: 100px 0;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.news-card.featured {
    grid-row: span 2;
}

.news-card.featured .news-image {
    height: 300px;
}

.news-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}

.news-date i {
    color: #00a8ff;
}

.news-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: #00a8ff;
}

.news-card.featured .news-content h3 {
    font-size: 1.5rem;
}

.news-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00a8ff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    gap: 12px;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card.featured {
        grid-row: span 1;
    }

    .news-card.featured .news-image {
        height: 200px;
    }
}

/* ========================================
   Wide Dropdown Menu (for Solutions)
   ======================================== */
.dropdown-menu-wide {
    min-width: 800px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}

.nav-item:hover .dropdown-menu-wide {
    transform: translateX(-50%) translateY(0);
}

.dropdown-content-wide {
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* ========================================
   Footer Section
   ======================================== */
.footer {
    background: #0a0a0f;
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer-logo-text .pro-badge {
    font-size: 0.4em;
    background: linear-gradient(135deg, #f72585 0%, #7c3aed 100%);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
    top: -0.5em;
    margin-left: 3px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(247, 37, 133, 0.3);
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Footer Support Section */
.footer-support .support-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.support-portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00a8ff 0%, #7c3aed 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.support-portal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-phone i,
.footer-email i {
    color: #00a8ff;
    font-size: 1rem;
}

.footer-phone:hover,
.footer-email:hover {
    color: #00a8ff;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 168, 255, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
}

/* Footer Contact Bar */
.footer-contact-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1200px) {
    .slide-content {
        gap: 40px;
    }

    .display-frame {
        width: 380px;
        height: 240px;
    }

    .display-frame.large {
        width: 420px;
        height: 280px;
    }
}

@media (max-width: 992px) {
    .header-container {
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 20px 30px;
        transition: right 0.4s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    /* Mobile menu close button */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #fff;
        font-size: 18px;
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .mobile-menu-close:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    /* Mobile menu overlay */
    .main-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .main-nav.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        padding: 14px 0;
        width: 100%;
        justify-content: space-between;
        font-size: 0.9rem;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        left: 0 !important;
        min-width: 100%;
        width: 100%;
        padding: 0 0 15px 15px;
        background: transparent;
        box-shadow: none;
        border: none;
        display: none;
        border-radius: 0;
    }

    .dropdown-column h4 {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .dropdown-column a {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .nav-item:hover .dropdown-menu {
        transform: none !important;
    }

    .nav-item.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none !important;
    }

    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .support-link {
        display: none;
    }

    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px;
    }

    .slide-text {
        order: 2;
        padding-top: 0;
    }

    .slide-description {
        margin: 0 auto 40px;
    }

    .slide-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .slide-visual {
        order: 1;
        padding-top: 120px;
    }

    .display-frame {
        width: 320px;
        height: 200px;
    }

    .display-frame.large {
        width: 350px;
        height: 220px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item::after {
        display: none;
    }

    /* Footer Responsive */
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: span 2;
    }

    .footer-contact-bar {
        flex-wrap: wrap;
        gap: 30px;
    }

    /* Wide Dropdown Responsive */
    .dropdown-menu-wide {
        min-width: 100%;
        width: 100%;
        position: static;
        transform: none !important;
        left: 0 !important;
    }

    .nav-item:hover .dropdown-menu-wide {
        transform: none !important;
    }

    .dropdown-content-wide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .slide-title .highlight {
        font-size: 1.5rem;
    }

    .slide-title .highlight.offset-left {
        left: 0;
    }

    .slide-title.smaller-title {
        font-size: 1.4rem;
    }

    .slide-title.smaller-title .highlight {
        font-size: 1.8rem;
        margin-top: 5px;
    }

    .slide-content {
        padding: 0 15px;
    }

    .slide-description {
        font-size: 0.95rem;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .display-frame {
        width: 280px;
        height: 175px;
    }

    .display-frame.large {
        width: 300px;
        height: 190px;
    }

    .slider-controls {
        flex-direction: column;
        gap: 20px;
        bottom: 60px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .btn-contact {
        display: none;
    }

    /* Mobile nav improvements for small screens */
    .main-nav {
        width: 100%;
        max-width: 100%;
        padding: 70px 15px 20px;
    }

    .nav-link {
        padding: 12px 0;
        font-size: 0.85rem;
    }

    .dropdown-column a {
        font-size: 0.8rem;
        padding: 5px 0;
    }

    /* Footer Mobile */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-contact-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 20px;
    }
}

/* ========================================
   Contact Modal
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #ffffff;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.modal-close i {
    font-size: 1rem;
    color: #333;
}

.modal-content {
    padding: 50px 40px 40px;
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.modal-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    font-size: 1rem;
    color: #666;
}

/* Modal Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-form label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: #999;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 168, 255, 0.1);
}

.modal-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.modal-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.3);
}

.btn-submit-modal i {
    font-size: 0.9rem;
}

/* Modal Contact Info */
.modal-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.modal-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.modal-contact-item i {
    color: var(--primary-color);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 40px 25px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* ========================================
   Mission Vision Values Section - New Design
   ======================================== */
.mv-section {
    padding: 80px 0;
    background: #fff;
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mv-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.mv-card-new {
    position: relative;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mv-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.mv-card-content {
    padding: 40px;
    width: 100%;
}

.mv-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mv-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.mv-values-row {
    display: block;
}

.mv-values-card {
    min-height: 300px;
}

.mv-values-card .mv-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mv-values-card .mv-text {
    max-width: 800px;
}

/* Mission Vision Responsive */
@media (max-width: 992px) {
    .mv-cards-grid {
        grid-template-columns: 1fr;
    }

    .mv-card-new {
        min-height: 350px;
    }

    .mv-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .mv-section {
        padding: 60px 0;
    }

    .mv-card-new {
        min-height: 300px;
    }

    .mv-card-content {
        padding: 30px;
    }

    .mv-title {
        font-size: 2rem;
    }

    .mv-text {
        font-size: 0.95rem;
    }

    .mv-values-card {
        min-height: 250px;
    }
}
