:root {
    --primary-color: #0d6efd;
    --secondary-color: #0dcaf0;
    --dark-bg: #0f172a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #333;
    --heading-font: 'Outfit', sans-serif;
    --body-font: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Glassmorphism Navbar */
.glass-nav {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('../assets/images/hero-modern.png') no-repeat center center/cover;
    margin-top: -76px;
    background-attachment: fixed;
    /* Parallax effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 11, 28, 0.95) 0%, rgba(13, 110, 253, 0.7) 100%);
    z-index: 1;
}

.hero-title {
    background: linear-gradient(to right, #ffffff, #89cff0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.tracking-wider {
    letter-spacing: 2px;
}

/* Glowing Button */
.btn-glow {
    position: relative;
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    border: none;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(13, 202, 240, 0.6);
    transform: translateY(-3px);
}

/* Floating Particles */
.particles .particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.particle.p-1 {
    width: 300px;
    height: 300px;
    background: #0dcaf0;
    top: -10%;
    left: -10%;
    animation-duration: 25s;
}

.particle.p-2 {
    width: 200px;
    height: 200px;
    background: #0d6efd;
    bottom: 20%;
    right: 10%;
    animation-delay: -5s;
}

.particle.p-3 {
    width: 150px;
    height: 150px;
    background: #ffffff;
    bottom: 10%;
    left: 20%;
    animation-duration: 30s;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Animation Classes */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-padding {
    padding: 80px 0;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

/* About Section */
.icon-square {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-box {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rounded-4 {
    border-radius: 1rem !important;
}

/* Services placeholders */
.service-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.1);
}

.icon-circle {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Product Section */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.transition-scale {
    transition: transform 0.5s ease;
}

.product-card:hover .transition-scale {
    transform: scale(1.1);
}

.overlay-gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    transition: opacity 0.3s ease;
}

.product-card:hover .overlay-gradient {
    opacity: 1 !important;
}

.object-fit-cover {
    object-fit: cover;
}

/* Contact Section */
.backdrop-blur {
    backdrop-filter: blur(10px);
}

.hover-up {
    transition: transform 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-3px);
}