@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0066cc;
    --primary-dark: #004c99;
    --secondary: #0dcaf0;
    --accent: #6f42c1;
    --dark: #0f172a;
    --light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-muted: #64748b;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    animation: fadeIn 1s ease-out forwards;
}

/* Universal Styles */
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    padding: 25px 0; /* Increased padding */
    transition: all 0.3s;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary) !important;
}

.nav-link {
    font-weight: 600; /* Bolder */
    font-size: 1.15rem; /* Bigger font */
    color: var(--dark) !important;
    margin: 0 15px; /* More spacing */
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

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

.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: url('../images/hero_bg_vibrant.png') no-repeat center center/cover;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 14, 44, 0.85) 0%, rgba(13, 202, 240, 0.3) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(13, 202, 240, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e0e7ff;
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.4;
    filter: blur(80px);
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 10%;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    animation-delay: 2s;
    animation-duration: 15s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 30%;
    background: #ffffff;
    opacity: 0.1;
    animation-delay: 4s;
    animation-duration: 12s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Glass Card in Hero */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
    transition: all 0.5s ease;
}

.hero-glass-card:hover {
    transform: rotate(0deg) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 204, 255, 0.2);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

/* Features/Services */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 25px;
}

/* Product Showcase */
.product-showcase {
    background-color: var(--dark);
    color: white;
    overflow: hidden;
}

.product-img-wrapper {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.5);
    border-radius: 10px;
}

.product-img-wrapper:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.product-img {
    border-radius: 10px;
    width: 100%;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: #94a3b8;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-widget h5 {
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.footer-links a {
    color: #94a3b8;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .product-img-wrapper {
        transform: none;
        margin-top: 40px;
    }
}
