/*------------------------------------------------------------------
    Theme Name: Bohotek Digital Solutions (Modern Dark)
    Author: Gemini
    Version: 2.0.0
-------------------------------------------------------------------*/

:root {
    --primary-color: #f47f22; /* Vibrant Orange */
    --secondary-color: #6f42c1; /* Muted Purple for gradients */
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-light: #e0e0e0;
    --text-muted-dark: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.bg-dark-custom {
    background-color: var(--bg-dark) !important;
}

.section-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Navbar */
.navbar {
    background-color: rgba(18, 18, 18, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease-in-out;
}

.navbar-brand {
    color: #fff !important;
    font-weight: 700;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero-section {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 127, 34, 0.1), transparent 40%);
    animation: pulse 10s infinite linear;
}

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

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}

.hero-section .lead {
    color: var(--text-muted-dark);
    max-width: 600px;
    margin: 1.5rem auto;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 127, 34, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 127, 34, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Cards */
.icon-card, .testimonial-card, .process-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.icon-card:hover, .testimonial-card:hover, .process-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.icon-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-card .author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

/* Page Headers */
.page-header-section {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

/* Footer */
.footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--text-muted-dark);
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color) !important;
}
