:root {
    --black: #000000;
    --yellow: #FFD700;
    --light-yellow: #FFF9C4;
    --dark-yellow: #FFC107;
    --gray: #F8F9FA;
    --dark-gray: #6C757D;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
}

/* Color Classes */
.bg-black {
    background-color: var(--black) !important;
}

.bg-yellow {
    background-color: var(--yellow) !important;
}

.text-yellow {
    color: var(--yellow) !important;
}

.text-black {
    color: var(--black) !important;
}

.btn-yellow {
    background-color: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.btn-yellow:hover {
    background-color: var(--dark-yellow);
    border-color: var(--dark-yellow);
    color: var(--black);
}

.btn-outline-yellow {
    color: var(--yellow);
    border-color: var(--yellow);
}

.btn-outline-yellow:hover {
    background-color: var(--yellow);
    color: var(--black);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/business.png');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step Cards */
.step-card {
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Testimonials */
.testimonial-carousel .owl-item {
    padding: 0 15px;
}

.testimonial-item {
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Admin Dashboard */
.admin-dashboard {
    background-color: #f8f9fa;
}

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}

#content {
    width: calc(100% - 250px);
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

#content.active {
    width: 100%;
}

#sidebar .sidebar-header {
    border-bottom: 1px solid var(--yellow);
}

#sidebar ul.components {
    padding: 20px 0;
}

#sidebar ul li a {
    padding: 10px 20px;
    display: block;
    color: var(--yellow);
    text-decoration: none;
    transition: all 0.3s;
}

#sidebar ul li a:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

#sidebar ul li.active > a {
    background-color: var(--yellow);
    color: var(--black);
}

/* Responsive */
@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    
    #sidebar.active {
        margin-left: 0;
    }
    
    #content {
        width: 100%;
    }
    
    #content.active {
        width: calc(100% - 250px);
    }
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
}

/* Form Styles */
.form-control:focus, .form-select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

/* Table Styles */
.table-hover tbody tr:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

/* Badge Styles */
.badge.bg-yellow {
    background-color: var(--yellow) !important;
    color: var(--black) !important;
}

/* Top Contact Bar Styles */
.top-contact-bar {
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.top-contact-bar i {
    min-width: 16px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .top-contact-bar .col-md-6 {
        margin-bottom: 0.5rem;
    }
    .top-contact-bar .d-flex {
        justify-content: center !important;
    }
}

/* Sticky Header Styles */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Adjust stacking context for sticky headers */
.top-contact-bar.sticky-top {
    z-index: 1030; /* Above main nav */
}

.navbar.sticky-top {
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .navbar.sticky-top {
        top: 0;
    }
    

}

/* Prevent content jumping */
body {
    padding-top: 0 !important;
}