body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Colors */
.text-primary {
    color: #0056b3 !important;
}

.bg-primary {
    background-color: #0056b3 !important;
}

.text-warning {
    color: #ff6b00 !important;
}

.bg-warning {
    background-color: #ff6b00 !important;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.btn-warning {
    background-color: #ff6b00;
    border-color: #ff6b00;
    color: #fff;
}

.btn-warning:hover {
    background-color: #e66000;
    border-color: #e66000;
    color: #fff;
}

/* Navbar */
.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1.05rem;
    padding: 10px 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ff6b00;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Slider Carousel */
.carousel-item {
    height: 70vh;
    min-height: 400px;
    background: #000;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.6;
    /* overlay effect */
}

.carousel-caption {
    background: transparent;
    padding: 0;
    backdrop-filter: none;
    text-align: left;
}

.slider-box {
    background-color: #1a233a;
    border-left: 6px solid #ffb200;
    max-width: 650px;
    border-radius: 12px;
}

.slider-box .badge,
.slider-box .btn-warning {
    background-color: #ffb200 !important;
    color: #000 !important;
    border: none;
}

.slider-box .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.slider-box .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.slider-box h1 {
    font-size: 3rem;
}

@media (max-width: 768px) {
    .slider-box h1 {
        font-size: 2.2rem;
    }
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 40px;
    color: #ff6b00;
    margin-bottom: 20px;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.floating-btn.whatsapp {
    background-color: #25D366;
}

.floating-btn.phone {
    background-color: #ff6b00;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 48%;
    /* Assume text-center */
    width: 60px;
    height: 4px;
    background: #ff6b00;
    border-radius: 2px;
}

.section-title.text-start::after {
    left: 0;
}

/* Dynamic SEO Layout */
.seo-nav-list {
    max-height: 400px;
    overflow-y: auto;
}

.seo-nav-list a {
    transition: all 0.2s;
}

.seo-nav-list a:hover {
    background-color: #f8f9fa;
    border-left: 3px solid #ff6b00;
}

/* Mobile Overrides */
@media (max-width: 767.98px) {
    .contact-info-mobile {
        padding-left: 50px !important;
    }
}