/* ===== ADVANCED CYBERSECURITY THEME ===== */

:root {
    --primary-cyber: #00d4ff;
    --secondary-cyber: #6c5ce7;
    --accent-cyber: #00ff88;
    --dark-bg: #0a0e27;
    --darker-bg: #050816;
    --light-text: #ffffff;
    --muted-text: #a0aec0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--darker-bg);
    color: var(--light-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== ADVANCED HERO SECTION ===== */
.hero-advanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

/* Hero Background Carousel */
.hero-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-carousel .carousel,
.hero-bg-carousel .carousel-inner,
.hero-bg-carousel .carousel-item {
    height: 100%;
}

.hero-bg-img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.5);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, rgba(10, 14, 39, 0.4) 100%);
    z-index: 1;
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-cyber);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-cyber);
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-cyber);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content-advanced {
    position: relative;
    z-index: 10;
}

.hero-badge-advanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-cyber);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

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

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-cyber);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title-advanced {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -1px;
}

.text-cyber-gradient {
    background: linear-gradient(135deg, var(--primary-cyber) 0%, var(--accent-cyber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.text-cyber-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyber), var(--accent-cyber));
    border-radius: 2px;
}

.hero-desc-advanced {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted-text);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item-hero {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-cyber), var(--primary-cyber));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #000;
}

.feature-item-hero span {
    color: var(--light-text);
    font-size: 15px;
}

.hero-buttons-advanced {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cyber-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary-cyber), var(--accent-cyber));
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cyber-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-cyber-primary:hover::before {
    left: 100%;
}

.btn-cyber-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5);
    color: #000;
}

.btn-cyber-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: transparent;
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-cyber-outline:hover {
    border-color: var(--primary-cyber);
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-cyber);
    transform: translateY(-3px);
}

/* Hero Image Section */
.hero-image-advanced {
    position: relative;
    z-index: 10;
}

/* Hero Carousel Styling */
#heroCarousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.carousel-hero-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    filter: brightness(0.85);
}

.carousel-caption-custom {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    border-radius: 12px;
}

.carousel-caption-custom h5 {
    font-size: 28px;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption-custom p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #00d4ff;
    margin: 0 6px;
}

.carousel-indicators .active {
    background-color: #00d4ff;
    box-shadow: 0 0 10px #00d4ff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 212, 255, 0.8);
    border-radius: 50%;
    padding: 20px;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #00d4ff;
    box-shadow: 0 0 20px #00d4ff;
}

.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

.image-wrapper-3d {
    position: relative;
    perspective: 1000px;
}

.main-hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.image-wrapper-3d:hover .main-hero-img {
    transform: rotateY(5deg) rotateX(5deg);
}

.floating-card-3d {
    position: absolute;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: float3D 3s ease-in-out infinite;
    z-index: 20;
}

.floating-card-3d.card-security {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card-3d.card-success {
    bottom: 35%;
    left: -10%;
    animation-delay: 1s;
}

.floating-card-3d.card-clients {
    bottom: 5%;
    right: -8%;
    animation-delay: 2s;
}

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

.card-icon-3d {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyber), var(--accent-cyber));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

.card-content-3d h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.card-content-3d p {
    font-size: 13px;
    color: var(--muted-text);
    margin: 0;
}

.scroll-indicator-advanced {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary-cyber), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { height: 0; opacity: 0; }
    50% { height: 50px; opacity: 1; }
    100% { height: 0; opacity: 0; }
}

.scroll-indicator-advanced span {
    font-size: 12px;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

/* ===== ADVANCED SERVICES SECTION ===== */
/* Section Background Carousel - Reusable */
.section-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.section-bg-carousel .carousel,
.section-bg-carousel .carousel-inner,
.section-bg-carousel .carousel-item {
    height: 100%;
}

.section-bg-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.7) 0%, rgba(10, 14, 39, 0.6) 100%);
    z-index: 1;
}

.section-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(10, 14, 39, 0.75) 100%);
    z-index: 1;
}

.services-advanced {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
}

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

.section-label-advanced {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--primary-cyber);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title-advanced {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-desc-advanced {
    font-size: 1.125rem;
    color: var(--muted-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.service-card-advanced {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyber), var(--accent-cyber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card-advanced:hover::before {
    transform: scaleX(1);
}

.service-card-advanced:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 30px 90px rgba(0, 212, 255, 0.2);
}

.service-card-advanced.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-cyber);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent-cyber), var(--primary-cyber));
    color: #000;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon-advanced {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    position: relative;
    transition: transform 0.4s ease;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card-advanced:hover .service-icon-advanced {
    transform: rotateY(360deg);
}

.icon-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%),
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImciIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiMwMGQ0ZmY7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiMwMDk5ZmY7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgZmlsbD0idXJsKCNnKSIvPjwvc3ZnPg==');
    background-blend-mode: overlay;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4), inset 0 0 60px rgba(255, 255, 255, 0.1);
}

.icon-purple {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%),
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImciIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiM2YzVjZTc7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiNhMjliZmU7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgZmlsbD0idXJsKCNnKSIvPjwvc3ZnPg==');
    background-blend-mode: overlay;
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4), inset 0 0 60px rgba(255, 255, 255, 0.1);
}

.icon-green {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%),
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImciIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiMwMGZmODg7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiMwMGZmOWY7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgZmlsbD0idXJsKCNnKSIvPjwvc3ZnPg==');
    background-blend-mode: overlay;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4), inset 0 0 60px rgba(255, 255, 255, 0.1);
}

.icon-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%),
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImciIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiNmZjZiMDA7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiNmZmE1MDA7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgZmlsbD0idXJsKCNnKSIvPjwvc3ZnPg==');
    background-blend-mode: overlay;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4), inset 0 0 60px rgba(255, 255, 255, 0.1);
}

.service-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted-text);
}

.service-title-advanced {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-desc-advanced {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted-text);
    margin-bottom: 25px;
}

.service-list-advanced {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-list-advanced li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--light-text);
    font-size: 14px;
}

.service-list-advanced i {
    color: var(--accent-cyber);
    font-size: 16px;
}

.service-link-advanced {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-cyber);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-link-advanced:hover {
    gap: 12px;
    color: var(--accent-cyber);
}

.service-link-advanced i {
    transition: transform 0.3s ease;
}

.service-link-advanced:hover i {
    transform: translateX(5px);
}

/* ========================================
   BRUTAL / NEO-BRUTALISM SERVICE CARDS
======================================== */

.service-card-brutal {
    position: relative;
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
    background: rgba(255, 255, 255, 0.03);
    border: 3px solid;
    min-height: 450px;
    padding: 45px 35px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.service-card-brutal:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Color Variants */
.service-card-brutal.variant-cyan {
    border-color: #00ffff;
}

.service-card-brutal.variant-cyan .diagonal-cut {
    background: #00ffff;
}

.service-card-brutal.variant-cyan .brutal-icon i {
    color: #00ffff;
}

.service-card-brutal.variant-cyan .brutal-link {
    color: #00ffff;
}

.service-card-brutal.variant-magenta {
    border-color: #ff00ff;
}

.service-card-brutal.variant-magenta .diagonal-cut {
    background: #ff00ff;
}

.service-card-brutal.variant-magenta .brutal-icon i {
    color: #ff00ff;
}

.service-card-brutal.variant-magenta .brutal-link {
    color: #ff00ff;
}

.service-card-brutal.variant-lime {
    border-color: #bfff00;
}

.service-card-brutal.variant-lime .diagonal-cut {
    background: #bfff00;
}

.service-card-brutal.variant-lime .brutal-icon i {
    color: #bfff00;
}

.service-card-brutal.variant-lime .brutal-link {
    color: #bfff00;
}

/* Diagonal Cut Corner */
.diagonal-cut {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
}

.service-card-brutal:hover .diagonal-cut {
    width: 140px;
    height: 140px;
}

/* Giant Number Watermark */
.number-watermark {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.025);
    z-index: 0;
    pointer-events: none;
    font-family: 'Inter', -apple-system, sans-serif;
    letter-spacing: -5px;
}

/* Brutal Icon */
.brutal-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 3;
}

.brutal-icon i {
    font-size: 32px;
    transition: color 0.3s;
}

.service-card-brutal:hover .brutal-icon {
    transform: rotate(360deg);
}

/* Brutal Title */
.brutal-title {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
    line-height: 1.2;
    position: relative;
    z-index: 3;
}

/* Brutal Description */
.brutal-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 25px 0;
    position: relative;
    z-index: 3;
}

/* Brutal Tags (Pills) */
.brutal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.tag-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.tag-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Brutal Link (EXPLORE) */
.brutal-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.brutal-link:hover {
    gap: 15px;
    opacity: 0.8;
}

.brutal-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.brutal-link:hover svg {
    transform: translateX(5px);
}

/* Shine Effect */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: skewX(-20deg);
    z-index: 10;
    pointer-events: none;
}

.service-card-brutal:hover .shine-effect {
    animation: shine-sweep 1.5s ease-in-out;
}

@keyframes shine-sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

/* Featured Label */
.service-card-brutal.featured {
    border-width: 4px;
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 0, 255, 0.2);
    border: 2px solid #ff00ff;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ff00ff;
    text-transform: uppercase;
    z-index: 5;
    transform: rotate(3deg);
    animation: pulse-featured 2s infinite;
}

@keyframes pulse-featured {
    0%, 100% {
        transform: rotate(3deg) scale(1);
    }
    50% {
        transform: rotate(3deg) scale(1.05);
    }
}

/* Responsive Brutal Cards */
@media (max-width: 991px) {
    .service-card-brutal {
        min-height: 420px;
        padding: 35px 28px;
    }
    
    .number-watermark {
        font-size: 90px;
    }
    
    .brutal-title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .service-card-brutal {
        min-height: 400px;
        padding: 30px 25px;
        clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    }
    
    .number-watermark {
        font-size: 70px;
        top: 10px;
        left: 10px;
    }
    
    .brutal-icon {
        width: 60px;
        height: 60px;
    }
    
    .brutal-icon i {
        font-size: 28px;
    }
    
    .brutal-title {
        font-size: 20px;
    }
    
    .brutal-desc {
        font-size: 13px;
    }
    
    .diagonal-cut {
        width: 60px;
        height: 60px;
    }
    
    .service-card-brutal:hover .diagonal-cut {
        width: 100px;
        height: 100px;
    }
}

/* About Section Advanced */
.about-advanced {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
}

.about-image-advanced {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-height: 500px;
}

.about-image-advanced img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.about-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

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

.about-floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    z-index: 3;
    animation: float3D 3s ease-in-out infinite;
}

.about-floating-badge .badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyber), var(--secondary-cyber));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.about-floating-badge .badge-icon i {
    font-size: 24px;
    color: #fff;
}

.about-floating-badge h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-cyber);
    margin: 0;
    line-height: 1;
}

.about-floating-badge p {
    font-size: 14px;
    color: var(--light-text);
    margin: 5px 0 0 0;
}

.about-pattern-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    opacity: 0.3;
}

.about-content-advanced {
    padding-left: 30px;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

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

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-cyber);
    transform: translateX(10px);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon.icon-green {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.about-feature-icon.icon-blue {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.about-feature-icon.icon-orange {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.05));
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.about-feature-icon.icon-purple {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(108, 92, 231, 0.05));
    border: 1px solid rgba(108, 92, 231, 0.3);
}

.about-feature-icon i {
    font-size: 22px;
    color: var(--primary-cyber);
}

.about-feature-icon.icon-green i {
    color: var(--accent-cyber);
}

.about-feature-icon.icon-orange i {
    color: #ff6b00;
}

.about-feature-icon.icon-purple i {
    color: var(--secondary-cyber);
}

.about-feature-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px 0;
}

.about-feature-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Navbar Styles */
.cyber-nav {
    background: rgba(10, 14, 39, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-cyber), var(--accent-cyber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand .brand-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-cyber), var(--accent-cyber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--muted-text) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--primary-cyber) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyber), var(--accent-cyber));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

.btn-cyber {
    background: linear-gradient(135deg, var(--primary-cyber), var(--accent-cyber));
    color: #000 !important;
    border-radius: 50px;
    padding: 0.6rem 1.5rem !important;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.btn-cyber:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.5);
}

/* Hero Parallax Section */
.hero-parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #16213e 50%, #1a1a2e 100%);
    padding: 120px 0 80px;
}

.hero-parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 14, 39, 0.8) 100%);
    pointer-events: none;
}

/* Parallax Layers */
.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.parallax-layer-1 {
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.parallax-layer-2 {
    background: radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite reverse;
}

.parallax-layer-3 {
    background: radial-gradient(circle at 50% 80%, rgba(0, 119, 255, 0.06) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

/* Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 255, 136, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
    will-change: transform;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 16s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 19s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; animation-duration: 11s; }
.particle:nth-child(10) { left: 95%; animation-delay: 3.5s; animation-duration: 20s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(0, 255, 136, 0.2);
    animation: iconFloat 20s infinite ease-in-out;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    will-change: transform;
}

.float-icon.icon-1 { top: 20%; left: 10%; animation-delay: 0s; }
.float-icon.icon-2 { top: 60%; left: 15%; animation-delay: 2s; }
.float-icon.icon-3 { top: 30%; right: 20%; animation-delay: 4s; }
.float-icon.icon-4 { top: 70%; right: 10%; animation-delay: 1s; }
.float-icon.icon-5 { top: 45%; right: 25%; animation-delay: 3s; }

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    color: var(--cyber-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyber-primary) 0%, var(--cyber-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3)) hue-rotate(0deg);
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 119, 255, 0.4)) hue-rotate(10deg);
    }
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-stats-inline {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stats-inline .stat-item {
    text-align: center;
}

.hero-stats-inline .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyber-primary);
    margin-bottom: 0.25rem;
}

.hero-stats-inline .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.hero-stats-inline .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

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

.btn-hero-outline {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyber-primary);
    color: var(--cyber-primary);
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.feature-tag i {
    color: var(--cyber-primary);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(0, 255, 136, 0.1));
    pointer-events: none;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 10%;
    right: -5%;
    animation-delay: 2s;
}

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

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.floating-card .card-content h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #333;
}

.floating-card .card-content p {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0;
}

.progress-mini {
    width: 100px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-bar-mini {
    height: 100%;
    background: linear-gradient(90deg, var(--cyber-primary), var(--cyber-secondary));
    border-radius: 10px;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--cyber-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin: 0;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    color: #0a0a0a;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.95), rgba(0, 119, 255, 0.95));
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-shape-1,
.about-shape-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: -1;
}

.about-shape-1 {
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), transparent);
}

.about-shape-2 {
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), transparent);
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h5 {
    font-size: 1rem;
    color: #333;
}

/* Services Section */
.services-section {
    background: white;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cyber-primary), var(--cyber-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--cyber-primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
}

.service-card h4 {
    color: #1a1a2e;
    font-weight: 700;
}

.service-link {
    color: var(--cyber-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: var(--cyber-secondary);
    gap: 0.5rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Statistics Section */
.stats-section {
    background: #ffffff;
    padding: 100px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.stats-section::before {
    display: none;
}

.stat-card {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    text-align: center;
}

.stat-card::before {
    display: none;
}

.stat-card:hover {
    border-color: #0a0a0a;
    background: #ffffff;
    transform: none;
    box-shadow: none;
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    background: #0a0a0a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: #0a0a0a;
    padding: 100px 0;
}

.cta-section::before {
    display: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-card {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
}

/* Dashboard Welcome Card */
.dashboard-welcome-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.dashboard-welcome-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.welcome-decoration {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
}

/* Dashboard Stat Cards */
.dashboard-stat-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.4s ease;
}

.dashboard-stat-card.stat-green::before {
    background: linear-gradient(135deg, #00ff88, #00d4aa);
}

.dashboard-stat-card.stat-blue::before {
    background: linear-gradient(135deg, #0077ff, #00a6ff);
}

.dashboard-stat-card.stat-purple::before {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.dashboard-stat-card.stat-orange::before {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.dashboard-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dashboard-stat-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-green .stat-card-icon {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 170, 0.1));
    color: #00d4aa;
}

.stat-blue .stat-card-icon {
    background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 166, 255, 0.1));
    color: #0077ff;
}

.stat-purple .stat-card-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
}

.stat-orange .stat-card-icon {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1), rgba(245, 87, 108, 0.1));
    color: #f5576c;
}

.dashboard-stat-card:hover .stat-card-icon {
    transform: rotateY(360deg);
}

.stat-card-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-card-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Dashboard Cards */
.dashboard-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--cyber-primary);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-icon.green {
    background: linear-gradient(135deg, #00ff88, #00d4aa);
    color: white;
}

.card-icon.blue {
    background: linear-gradient(135deg, #0077ff, #00a6ff);
    color: white;
}

.card-icon.purple {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.card-icon.orange {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.card-title {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

/* Forms */
.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--cyber-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 136, 0.25);
}

.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 255, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #00ff88, #00d4aa);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.btn-danger {
    background: linear-gradient(135deg, #ff006e, #ff4757);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

/* Tables */
.table-responsive {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table {
    margin-bottom: 0;
}

.table thead {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.table thead th {
    border: none;
    padding: 1rem;
    font-weight: 600;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
    transform: scale(1.01);
}

/* Badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.badge.bg-success {
    background: linear-gradient(135deg, #00ff88, #00d4aa) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #ffd93d, #ffb800) !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, #ff006e, #ff4757) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #0077ff, #00a6ff) !important;
}

/* Progress Bar */
.progress {
    height: 25px;
    border-radius: 15px;
    background-color: #e9ecef;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    font-weight: 600;
    transition: width 0.6s ease;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin-top: auto;
}

.text-cyber {
    color: var(--cyber-primary);
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-light-50:hover {
    color: var(--cyber-primary);
}

.contact-info li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--cyber-primary);
    color: #1a1a2e !important;
    transform: translateY(-3px);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Admin Dashboard */
.admin-welcome-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
    margin-bottom: 2rem;
}

.admin-welcome-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.stat-link {
    color: var(--cyber-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.stat-link:hover {
    color: var(--cyber-secondary);
    transform: translateX(3px);
}

/* Parallax Divider Section */
.parallax-divider {
    position: relative;
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.parallax-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.85));
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.parallax-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Animated Background Shapes */
.parallax-divider .shape {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.parallax-divider .shape-1 {
    width: 300px;
    height: 300px;
    background: var(--cyber-primary);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.parallax-divider .shape-2 {
    width: 200px;
    height: 200px;
    background: var(--cyber-secondary);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

/* Why Choose Section */
.why-choose-section {
    background: white;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.accordion-button {
    background: white;
    color: #333;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(0, 255, 136, 0.05));
    color: var(--cyber-secondary);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.25rem 1.5rem;
    color: #666;
    line-height: 1.8;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-choose-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.why-choose-image img {
    transition: transform 0.5s ease;
}

.why-choose-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: bounceIn 0.8s ease-out 0.5s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.image-badge i {
    font-size: 2.5rem;
    color: var(--cyber-primary);
    animation: pulse 2s ease-in-out infinite;
}

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

.image-badge h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.image-badge p {
    font-size: 0.85rem;
    color: #666;
}

/* Fade In Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out both;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out both;
}

.zoom-in {
    animation: zoomIn 0.8s ease-out both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger Animation Delays */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover Effects */
.service-card,
.stat-card,
.dashboard-stat-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
    background-size: 1000px 100%;
}

/* ===========================
   RESPONSIVE DESIGN - MOBILE
   =========================== */

@media (max-width: 991px) {
    /* Hero Section Mobile */
    .hero-advanced {
        min-height: 100vh;
        padding: 100px 0 60px;
    }
    
    .hero-content-advanced h1 {
        font-size: 42px;
        line-height: 1.2;
    }
    
    .hero-image-advanced {
        margin-top: 50px;
    }
    
    .floating-card-3d {
        padding: 15px;
    }
    
    .floating-card-3d h4 {
        font-size: 20px;
    }
    
    .floating-card-3d p {
        font-size: 11px;
    }
    
    /* Carousel Mobile */
    .carousel-hero-img {
        height: 400px;
    }
    
    .carousel-caption-custom {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 20px;
    }
    
    .carousel-caption-custom h5 {
        font-size: 22px;
    }
    
    .carousel-caption-custom p {
        font-size: 14px;
    }
    
    /* Services Mobile */
    .services-advanced {
        padding: 80px 0;
    }
    
    .section-title-advanced {
        font-size: 32px;
    }
    
    /* About Mobile */
    .about-advanced {
        padding: 80px 0;
    }
    
    .about-content-advanced {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-floating-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }
    
    .about-floating-badge h4 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    /* Typography Mobile */
    .hero-content-advanced h1 {
        font-size: 32px;
    }
    
    .hero-content-advanced p {
        font-size: 15px;
    }
    
    /* Carousel Very Small Screens */
    .carousel-hero-img {
        height: 300px;
    }
    
    .carousel-caption-custom {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 15px;
    }
    
    .carousel-caption-custom h5 {
        font-size: 18px;
    }
    
    .carousel-caption-custom p {
        font-size: 13px;
    }
    
    .floating-card-3d.card-security,
    .floating-card-3d.card-clients {
        display: none;
    }
    
    .section-title-advanced {
        font-size: 28px;
    }
    
    /* Buttons Mobile */
    .cyber-btn-gradient,
    .btn-cyber-primary,
    .btn-cyber-outline {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Hero Features Mobile */
    .hero-features-advanced {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    /* Floating Cards Mobile - Stack Vertically */
    .image-wrapper-3d {
        perspective: none;
    }
    
    .floating-card-3d.card-security {
        top: auto;
        bottom: 20px;
        left: 10px;
    }
    
    .floating-card-3d.card-success {
        top: 20px;
        right: 10px;
        left: auto;
    }
    
    .floating-card-3d.card-clients {
        bottom: 20px;
        right: 10px;
        top: auto;
        left: auto;
    }
    
    /* Service Cards Mobile */
    .service-card-advanced {
        margin-bottom: 20px;
    }
    
    .service-icon-advanced {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-advanced i {
        font-size: 24px;
    }
    
    /* Navbar Mobile */
    .cyber-nav {
        padding: 15px 0;
    }
    
    .navbar-brand-gradient {
        font-size: 20px;
    }
    
    /* Scroll Indicator - Hide on Mobile */
    .scroll-indicator-advanced {
        display: none;
    }
    
    /* Animated Shapes - Reduce on Mobile */
    .animated-shapes .shape {
        display: none;
    }
    
    .animated-shapes .shape:first-child {
        display: block;
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 576px) {
    /* Extra Small Mobile */
    .hero-content-advanced h1 {
        font-size: 28px;
    }
    
    .section-title-advanced {
        font-size: 24px;
    }
    
    .about-floating-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
    
    .service-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-number {
        position: static;
        margin-top: 10px;
    }
}

/* ===========================
   ADVANCED AUTH PAGES
   =========================== */

.auth-section-advanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #050816 0%, #0a0e27 50%, #1a1f3a 100%);
    overflow: hidden;
    padding: 50px 0;
}

.auth-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.auth-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.auth-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.auth-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.auth-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-cyber), transparent);
    top: 10%;
    left: -10%;
    animation: floatShape 15s ease-in-out infinite;
}

.auth-shape.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-cyber), transparent);
    bottom: -10%;
    right: -10%;
    animation: floatShape 20s ease-in-out infinite reverse;
}

.auth-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-cyber), transparent);
    top: 50%;
    left: 50%;
    animation: floatShape 18s ease-in-out infinite;
}

.auth-card-advanced {
    position: relative;
    background: rgba(15, 20, 45, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 212, 255, 0.1);
}

.auth-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-cyber), var(--secondary-cyber), var(--accent-cyber));
    border-radius: 24px;
    opacity: 0.1;
    z-index: -1;
    filter: blur(10px);
}

.auth-header-advanced {
    text-align: center;
    margin-bottom: 40px;
}

.auth-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-cyber), var(--secondary-cyber));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: float3D 3s ease-in-out infinite;
}

.auth-icon-wrapper i {
    font-size: 36px;
    color: #fff;
}

.auth-header-advanced h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.auth-header-advanced p {
    color: var(--muted-text);
    font-size: 16px;
}

.auth-form-advanced {
    margin-top: 30px;
}

.form-group-advanced {
    margin-bottom: 25px;
}

.form-label-advanced {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.form-label-advanced i {
    color: var(--primary-cyber);
}

.form-control-advanced {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 15, 35, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control-advanced:focus {
    outline: none;
    border-color: var(--primary-cyber);
    background: rgba(10, 15, 35, 0.8);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
}

.form-control-advanced::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.password-input-wrapper {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--muted-text);
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s ease;
}

.password-toggle-btn:hover {
    color: var(--primary-cyber);
}

.form-options-advanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.custom-checkbox-advanced {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-advanced {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.custom-checkbox-advanced label {
    color: var(--muted-text);
    font-size: 14px;
    cursor: pointer;
    margin: 0;
}

.forgot-link {
    color: var(--primary-cyber);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--accent-cyber);
}

.btn-auth-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-cyber), var(--secondary-cyber));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-auth-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-auth-primary:hover::before {
    left: 100%;
}

.btn-auth-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
    position: relative;
    background: rgba(10, 14, 39, 0.9);
    padding: 0 15px;
    color: var(--muted-text);
    font-size: 14px;
}

.auth-footer-links {
    text-align: center;
}

.auth-footer-links p {
    color: var(--muted-text);
    font-size: 14px;
    margin: 0;
}

.register-link {
    color: var(--primary-cyber);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.register-link:hover {
    color: var(--accent-cyber);
}

.auth-alert {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff453a;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
}

/* Auth Mobile Responsive */
@media (max-width: 767px) {
    .auth-card-advanced {
        padding: 40px 25px;
    }
    
    .auth-header-advanced h2 {
        font-size: 26px;
    }
    
    .form-options-advanced {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ===========================
   PARALLAX CTA SECTION
   =========================== */

.parallax-cta-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

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

.parallax-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.parallax-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-cyber), var(--accent-cyber));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s ease-in-out infinite;
}

.parallax-icon i {
    font-size: 48px;
    color: #fff;
}

.parallax-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.parallax-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.8;
}

.parallax-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.parallax-stat-item h3 {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-cyber), var(--accent-cyber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.parallax-stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.parallax-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--primary-cyber), var(--secondary-cyber));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.parallax-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.5);
    color: #fff;
}

/* Parallax Mobile */
@media (max-width: 991px) {
    .parallax-cta-section {
        padding: 100px 0;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
    
    .parallax-title {
        font-size: 36px;
    }
    
    .parallax-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 30px 20px;
    }
    
    .parallax-stat-item h3 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .parallax-title {
        font-size: 28px;
    }
    
    .parallax-desc {
        font-size: 16px;
    }
    
    .parallax-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .parallax-btn {
        padding: 16px 35px;
        font-size: 16px;
    }
}

/* ===========================
   SERVICE DETAIL PAGES
   =========================== */

.service-detail-hero {
    position: relative;
    padding: 150px 0 100px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #050816 0%, #0a0e27 50%, #1a1f3a 100%);
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-cyber), var(--secondary-cyber));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: float3D 3s ease-in-out infinite;
}

.service-icon-large i {
    font-size: 56px;
    color: #fff;
}

.service-hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.service-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-content {
    padding: 80px 0;
    background: var(--dark-bg);
}

.service-content-box {
    background: rgba(15, 20, 45, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 212, 255, 0.1);
}

.service-content-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.service-content-box .lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.service-content-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 25px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.service-feature-box {
    background: rgba(10, 15, 35, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-feature-box:hover {
    background: rgba(15, 20, 45, 0.9);
    border-color: var(--primary-cyber);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 212, 255, 0.2);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon-box.icon-blue {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
    border: 2px solid rgba(0, 212, 255, 0.4);
}

.feature-icon-box.icon-green {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    border: 2px solid rgba(0, 255, 136, 0.4);
}

.feature-icon-box.icon-purple {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(108, 92, 231, 0.05));
    border: 2px solid rgba(108, 92, 231, 0.4);
}

.feature-icon-box.icon-orange {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.05));
    border: 2px solid rgba(255, 107, 0, 0.4);
}

.feature-icon-box i {
    font-size: 28px;
    color: var(--primary-cyber);
}

.feature-icon-box.icon-green i {
    color: var(--accent-cyber);
}

.feature-icon-box.icon-purple i {
    color: var(--secondary-cyber);
}

.feature-icon-box.icon-orange i {
    color: #ff6b00;
}

.service-feature-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.service-feature-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(10, 15, 35, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.process-step:hover {
    background: rgba(15, 20, 45, 0.9);
    border-color: var(--primary-cyber);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 212, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyber), var(--secondary-cyber));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: rgba(15, 20, 45, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 212, 255, 0.1);
}

.sidebar-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list i {
    margin-right: 10px;
}

.stat-item {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-cyber), var(--accent-cyber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(108, 92, 231, 0.15));
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 212, 255, 0.15);
}

.sidebar-cta h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Service Details Mobile */
@media (max-width: 991px) {
    .service-detail-hero {
        padding: 120px 0 80px;
    }
    
    .service-hero-content h1 {
        font-size: 36px;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .service-hero-content h1 {
        font-size: 28px;
    }
    
    .service-content-box {
        padding: 25px;
    }
}

/* ===========================
   GOOGLE TRANSLATE WIDGET
   =========================== */

.translate-widget {
    margin-top: 8px;
}

#google_translate_element select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 14px;
}

/* ===========================
   LATEST NEWS SECTION
   =========================== */

.news-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.news-card {
    background: rgba(15, 20, 45, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 212, 255, 0.05);
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 212, 255, 0.15);
}

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

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

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

.news-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-cyber), #0099ff);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.news-category.category-purple {
    background: linear-gradient(135deg, var(--secondary-cyber), #a29bfe);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.news-category.category-green {
    background: linear-gradient(135deg, var(--accent-cyber), #00ff9f);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-meta i {
    color: var(--primary-cyber);
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: var(--primary-cyber);
}

.news-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-cyber);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
}
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#google_translate_element select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-cyber);
}

#google_translate_element select option {
    background: var(--dark-bg);
    color: #fff;
}

/* Hide Google Translate branding */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

.goog-te-gadget > span {
    display: none !important;
}

.goog-te-gadget > div {
    display: inline !important;
}

body {
    top: 0 !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget img {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-parallax-section {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats-inline {
        gap: 1rem;
    }
    
    .hero-stats-inline .stat-value {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-image-overlay {
        bottom: 15px;
        left: 15px;
        padding: 1rem 1.5rem;
    }
    
    .image-badge {
        bottom: 15px;
        left: 15px;
        padding: 1rem 1.5rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .parallax-divider {
        height: 300px;
        background-attachment: scroll;
    }
    
    .parallax-content h2 {
        font-size: 2rem;
    }
    
    .parallax-content p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .hero-parallax-section,
    .parallax-divider,
    .cta-section {
        background: white !important;
        color: black !important;
    }
    
    .floating-card,
    .particles-container,
    .floating-icons,
    .scroll-indicator {
        display: none !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyber-secondary);
}

/* Service Icon Colors */
.service-icon.green {
    background: linear-gradient(135deg, #00ff88, #00d4aa);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.service-icon.blue {
    background: linear-gradient(135deg, #0077ff, #00a6ff);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 119, 255, 0.3);
}

.service-icon.purple {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-icon.orange {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

/* Loading Spinner */
.spinner-cyber {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--cyber-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert Customization */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 170, 0.1));
    color: #00d4aa;
    border-left: 4px solid #00ff88;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(255, 71, 87, 0.1));
    color: #ff4757;
    border-left: 4px solid #ff006e;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border-radius: 15px 15px 0 0 !important;
    padding: 1rem 1.5rem;
    font-weight: 600;
}
