:root {
    --primary-blue: #0056b3;
    --accent-orange: #ff6b00;
    --dark-bg: #1a1a24;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.top-bar {
    background-color: var(--dark-bg);
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.top-bar a:hover {
    color: var(--accent-orange);
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: #ffffff;
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 65px;
    object-fit: contain;
}

.nav-link {
    font-weight: 600;
    color: #444 !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active { /* Added .nav-link.active here */
    color: var(--primary-blue) !important;
}

.nav-link.active { /* Specific style for active link */
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 5px;
}

.btn-quote {
    background-color: var(--accent-orange);
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
}

.btn-quote:hover {
    background-color: #e65c00;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.carousel-item {
    height: 70vh;
    min-height: 500px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
}

.about-home-section {
    margin: 40px 0;
}

.about-img-wrapper {
    border: 5px solid white;
}

.about-img-badge {
    transform: translate(20px, 20px);
}

.page-header {
    padding: 80px 0;
    background-color: var(--dark-bg);
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-header .container {
    position: relative;
}

.breadcrumb-nav {
    background-color: var(--light-bg);
    padding: 1rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--accent-orange);
}

.text-orange {
    color: var(--accent-orange);
}

.text-blue {
    color: #4da6ff;
}

.text-primary-blue {
    color: var(--primary-blue);
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-weight: 700;
    color: var(--dark-bg);
    text-transform: uppercase;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

.services-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.1);
}

.service-body {
    padding: 25px;
    text-align: center;
    background: white;
    z-index: 1;
    position: relative;
}

.service-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.btn-outline-custom {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-custom:hover {
    background-color: var(--primary-blue);
    color: white;
}

.why-us-section {
    background-color: var(--dark-bg);
    color: white;
    padding: 80px 0;
}

.why-us-section .section-title h2 {
    color: white;
}

.feature-box {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin: 0 auto 20px;
    transition: 0.3s;
}

.feature-box:hover .feature-icon {
    background-color: var(--accent-orange);
    color: white;
}

.feature-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.client-name {
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 15px;
}

.blog-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.blog-card .card-body {
    padding: 20px;
}

.blog-date {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-weight: 700;
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.blog-title:hover {
    color: var(--primary-blue);
}

.blog-card-img-placeholder {
    height: 200px;
}

footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 20px;
}

footer .footer-logo {
    max-height: 80px;
    margin-bottom: 20px;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-orange);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #333;
    color: white;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--accent-orange);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .top-bar {
        display: none;
    }
}

/* WhatsApp Floating Action Button */
.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    text-decoration: none;
    animation: pulse-animation 2s infinite;
    transition: transform 0.3s ease;
}
.whatsapp-fab:hover {
    color: white;
    transform: scale(1.1);
    animation-play-state: paused;
}
@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}