/* 
 * Hexaro Tech - Premium IT Software Company
 * CSS Design System
 * Author: Frontend Engineer
 * Version: 1.0.0
 */

/* ========================================
   1. CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    /* Main Theme Colors */
    --color-theme-primary: #00d2ff;
    --color-theme-secondary: #3a7bd5;
    --color-theme-accent: #00f2fe;

    /* Backgrounds */
    --color-bg-dark: #050a10;
    --color-bg-secondary: #0a111a;
    --color-bg-card: rgba(26, 46, 68, 0.4);

    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.8);
    --color-text-muted: rgba(255, 255, 255, 0.5);

    /* Gradients */
    --gradient-theme: linear-gradient(135deg, var(--color-theme-primary) 0%, var(--color-theme-secondary) 100%);
    --gradient-dark: linear-gradient(180deg, #050a10 0%, #0a111a 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, rgba(0, 210, 255, 0.1) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(58, 123, 213, 0.1) 0, transparent 50%);

    /* Effects */
    --glass-bg: rgba(13, 22, 33, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-theme: 0 0 30px rgba(0, 210, 255, 0.3);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);
    --neon-text-glow: 0 0 10px rgba(0, 210, 255, 0.5), 0 0 20px rgba(0, 210, 255, 0.2);
    --neon-card-glow: 0 0 15px rgba(0, 210, 255, 0.2);
    --neon-card-hover: 0 0 30px rgba(0, 210, 255, 0.5);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-padding: 20px;
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (min-width: 1025px) {
    * {
        cursor: none !important;
        /* Hide real cursor for custom cursor on desktop */
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Noise Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9998;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--color-theme-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: difference;
}

.custom-cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-theme-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, border 0.3s ease;
}

.custom-cursor.active {
    transform: scale(3.5);
    background: white;
}

.custom-cursor-outline.active {
    transform: scale(1.5);
    opacity: 0;
}

/* Mesh Gradient Backgrounds */
.mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    z-index: -1;
    pointer-events: none;
}

/* Selection */
::selection {
    background: var(--color-gold-primary);
    color: var(--color-bg-dark);
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.text-theme {
    background: var(--gradient-theme);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    text-shadow: var(--neon-text-glow);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-theme);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--gradient-theme);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--color-theme-primary);
    z-index: 2;
}

/* ========================================
   4. NAVIGATION
   ======================================== */
.navbar-custom {
    background: transparent;
    padding: 1rem 0;
    transition: var(--transition-normal);
    z-index: 1000;
}

.navbar-custom.scrolled {
    background: rgba(5, 10, 16, 0.85);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 0.6rem 0;
}

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-theme);
    z-index: 2000;
    box-shadow: 0 0 10px var(--color-theme-primary);
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.75rem;
    background: var(--gradient-theme);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--color-text-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-theme);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: 1px solid var(--color-theme-primary);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300d2ff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   5. BUTTONS
   ======================================== */
.btn-theme {
    background: var(--gradient-theme);
    color: var(--color-bg-dark);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-theme);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-theme::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: var(--transition-slow);
    z-index: -1;
}

.btn-theme:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-theme);
    color: var(--color-bg-dark);
}

.btn-theme:hover::before {
    left: 100%;
}

.btn-outline-theme {
    background: transparent;
    color: var(--color-theme-primary);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: 2px solid var(--color-theme-primary);
    border-radius: 50px;
    transition: var(--transition-normal);
}

.btn-outline-theme:hover {
    background: var(--gradient-theme);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-theme);
    border-color: transparent;
}

/* ========================================
   6. HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.hero-section canvas {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.6;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
}

.hero-kinetic-title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-h-main {
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 900;
    color: white;
    margin: 0;
    line-height: 0.8;
    letter-spacing: -4px;
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    animation: breathableGlow 4s ease-in-out infinite;
}

@keyframes breathableGlow {

    0%,
    100% {
        text-shadow: var(--neon-text-glow);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 30px rgba(0, 210, 255, 0.7), 0 0 50px rgba(0, 210, 255, 0.3);
        transform: scale(1.02);
    }
}

.brand-h-outline {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    -webkit-text-stroke: 2px rgba(0, 210, 255, 0.5);
    color: transparent;
    margin: -20px 0 0 0;
    line-height: 0.8;
    letter-spacing: 20px;
    text-indent: 20px;
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.2));
}

.hero-assistant-center {
    position: relative;
    width: 300px;
    height: 300px;
    margin: -100px auto 0;
    z-index: 3;
    pointer-events: none;
}

.hero-3d-img-center {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(0, 210, 255, 0.3));
}

.glow-orb-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: pulseOrb 6s infinite;
}

@keyframes pulseOrb {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Small Hero for Internal Pages */
.hero-section-sm {
    min-height: 30vh !important;
    padding: 80px 0 40px;
}

.hero-section-sm .brand-h-main {
    font-size: clamp(2.5rem, 8vw, 5rem);
}

.hero-section-sm .brand-h-outline {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-top: -10px;
    letter-spacing: 10px;
}

.hero-section-sm .hero-kinetic-title {
    margin-bottom: 2rem !important;
}

.hero-tagline-immersive {
    font-weight: 500;
    background: linear-gradient(90deg, #fff, #00d2ff, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
    animation: flowGradient 5s linear infinite;
}

@keyframes flowGradient {
    to {
        background-position: 200% center;
    }
}

.max-w-700 {
    max-width: 700px;
}

.hero-buttons-center .btn {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons-center .btn:hover {
    letter-spacing: 2px;
}

/* 3D Asset Styles */
.hero-3d-asset-wrapper {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.2));
}

.hero-3d-img {
    max-width: 100%;
    height: auto;
    z-index: 3;
    position: relative;
}

.asset-glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.floating-asset {
    animation: floatAsset 8s ease-in-out infinite;
}

@keyframes floatAsset {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(2deg);
    }

    66% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

.bg-theme-glow {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.1);
}

/* ========================================
   7. GLASS CARDS
   ======================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-normal);
    box-shadow: var(--neon-card-glow);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: var(--shadow-card), var(--neon-card-hover);
}

/* Solid Cards (for high contrast) */
.solid-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-card), var(--neon-card-glow);
}

.solid-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-theme-primary);
    box-shadow: var(--shadow-card), var(--neon-card-hover);
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-theme);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--color-bg-dark);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h4 {
    margin-bottom: 1rem;
}

/* ========================================
   8. COUNTERS SECTION
   ======================================== */
.counters-section {
    background: var(--color-bg-secondary);
    padding: var(--section-padding) 0;
    position: relative;
}

.counter-item {
    text-align: center;
    padding: 2rem;
}

.counter-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-theme);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--neon-text-glow);
}

.counter-label {
    color: var(--color-text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* ========================================
   9. TIMELINE
   ======================================== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient-theme);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-theme);
    border-radius: 50%;
    border: 4px solid var(--color-bg-dark);
    z-index: 1;
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.timeline-content:hover {
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-card);
}

.timeline-year {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-theme-primary);
    margin-bottom: 0.5rem;
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }
}

/* ========================================
   10. PROJECT CARDS
   ======================================== */
.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.project-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
    padding: 2rem;
    transform: translateY(60%);
    transition: var(--transition-normal);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.project-tags .badge {
    background: rgba(0, 210, 255, 0.2);
    color: var(--color-theme-primary);
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 20px;
}

/* ========================================
   11. BOOTSTRAP CAROUSEL CUSTOM
   ======================================== */
.carousel-custom .carousel-indicators {
    bottom: -50px;
}

.carousel-custom .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-text-muted);
    border: none;
    margin: 0 5px;
    transition: var(--transition-fast);
}

.carousel-custom .carousel-indicators button.active {
    background: var(--color-theme-primary);
    width: 30px;
    border-radius: 10px;
}

.carousel-custom .carousel-control-prev,
.carousel-custom .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: var(--transition-fast);
}

.carousel-custom .carousel-control-prev:hover,
.carousel-custom .carousel-control-next:hover {
    background: var(--color-theme-primary);
    border-color: var(--color-theme-primary);
}

.carousel-custom .carousel-control-prev {
    left: -25px;
}

.carousel-custom .carousel-control-next {
    right: -25px;
}

/* ========================================
   12. FORMS
   ======================================== */
.form-control-custom {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control-custom:focus {
    background: var(--glass-bg);
    border-color: var(--color-theme-primary);
    box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.15);
    color: var(--color-text-primary);
}

.form-control-custom::placeholder {
    color: var(--color-text-muted);
}

.form-label {
    color: var(--color-text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ========================================
   13. MODAL CUSTOM
   ======================================== */
.modal-custom .modal-content {
    background: var(--color-bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.modal-custom .modal-header {
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
}

.modal-custom .modal-title {
    font-family: var(--font-display);
}

.modal-custom .modal-body {
    padding: 2rem;
}

.modal-custom .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* ========================================
   14. FOOTER
   ======================================== */
/* Big Footer Redesign */
.footer {
    background: #050a10;
    padding: 8rem 0 3rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "HEXARO";
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(5rem, 15vw, 20rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 20px;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-links h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-theme-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-block;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-theme-primary);
    transform: translateX(10px);
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--color-text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gradient-theme);
    color: var(--color-bg-dark);
    transform: translateY(-10px) rotate(15deg);
    border-color: transparent;
    box-shadow: var(--shadow-theme);
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ========================================
   15. ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

/* ========================================
   16. UTILITY CLASSES
   ======================================== */
.section-padding {
    padding: var(--section-padding) 0;
}

.bg-dark-custom {
    background-color: var(--color-bg-dark);
}

.bg-secondary-custom {
    background-color: var(--color-bg-secondary);
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-theme);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ========================================
   17. MAP SECTION
   ======================================== */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ========================================
   18. CONTACT INFO
   ======================================== */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-theme);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-dark);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-details p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ========================================
   19. VALUES SECTION
   ======================================== */
.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1) 0%, rgba(0, 210, 255, 0.05) 100%);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--color-theme-primary);
    transition: var(--transition-normal);
}

.value-card:hover .value-icon {
    background: var(--gradient-theme);
    color: var(--color-bg-dark);
    transform: scale(1.1) rotate(10deg);
}

/* ========================================
   20. PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-theme);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 1.5s ease infinite;
}

/* ========================================
   21. TEAM SECTION
   ======================================== */
.team-card {
    transition: var(--transition-normal);
}

.team-card:hover {
    border-color: var(--color-theme-primary);
    box-shadow: var(--shadow-theme);
}

.team-avatar img {
    width: 120px;
    height: 120px;
    border: 3px solid var(--color-theme-primary);
    padding: 5px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.team-card:hover .team-avatar img {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}


/* ========================================
   22. RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid var(--glass-border);
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .carousel-custom .carousel-control-prev,
    .carousel-custom .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .glass-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* ========================================
   23. WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        left: 20px;
    }
}

/* Tech Shards Orbital System */
.tech-shards-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shard {
    position: absolute;
    background: rgba(0, 210, 255, 0.2);
    border: 1px solid rgba(0, 210, 255, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 4px;
}

.shard-1 {
    width: 30px;
    height: 30px;
    top: 20%;
    left: 10%;
    animation: orbitalFloat 12s infinite linear;
}

.shard-2 {
    width: 20px;
    height: 20px;
    bottom: 15%;
    right: 15%;
    animation: orbitalFloat 15s infinite linear reverse;
}

.shard-3 {
    width: 40px;
    height: 10px;
    top: 60%;
    left: -5%;
    animation: orbitalFloat 18s infinite linear 1s;
}

.shard-4 {
    width: 15px;
    height: 15px;
    top: 10%;
    right: 5%;
    animation: orbitalFloat 20s infinite linear 2s;
}

@keyframes orbitalFloat {
    0% {
        transform: rotate(0deg) translateX(40px) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        transform: rotate(360deg) translateX(40px) rotate(-360deg);
        opacity: 0;
    }
}

/* Mouse Reactive Layers */
.parallax-layer {
    transition: transform 0.1s cubic-bezier(0.1, 0, 0, 1);
}