/* Custom Styles for CloudCoreLab */

:root {
    --primary-color: #00d2ff;
    --secondary-color: #3a7bd5;
    --dark-bg: #0b0e14;
    --darker-bg: #05070a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --neon-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bg-darker {
    background-color: var(--darker-bg);
}

/* Glassmorphism Navbar */
.glass-nav {
    background: rgba(11, 14, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.1) 0%, transparent 40%);
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-box {
    position: absolute;
    border: 2px solid var(--primary-color);
    box-shadow: var(--neon-shadow);
    border-radius: 15px;
    animation: float 6s ease-in-out infinite;
}

.box-1 { width: 200px; height: 200px; top: 0; right: 50px; opacity: 0.6; }
.box-2 { width: 150px; height: 150px; bottom: 50px; right: 200px; animation-delay: 1s; opacity: 0.4; }
.box-3 { width: 100px; height: 100px; top: 150px; right: 0; animation-delay: 2s; opacity: 0.2; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: var(--neon-shadow);
}

/* Cards */
.solution-card, .pricing-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover, .pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--neon-shadow);
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    border: none;
    box-shadow: var(--neon-shadow);
}

.neon-btn:hover {
    box-shadow: var(--neon-shadow);
    background-color: var(--primary-color);
    color: black;
}

/* How It Works Steps */
.step-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.5;
}

/* Architecture Visualization */
.arch-layer {
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.arch-layer.active {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: var(--neon-shadow);
}

/* Status Indicator */
.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 5px #198754;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

/* Accordion Customization */
.accordion-button::after {
    filter: invert(1);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
