:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --accent-color: #ff6b6b;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s;
}

    .navbar.scrolled {
        padding: 10px 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

.navbar-brand img {
    transition: all 0.3s;
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

    .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        bottom: 0;
        left: 0;
        transition: width 0.3s;
    }

    .nav-link:hover:after,
    .nav-link.active:after {
        width: 100%;
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s;
}

    .dropdown-item:hover {
        background-color: var(--primary-color);
        color: white;
    }

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

.btn-outline-primary:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    z-index: 99;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
}

/* Footer */
footer a {
    text-decoration: none;
    transition: color 0.3s;
}

    footer a:hover {
        color: var(--primary-color) !important;
    }

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 20px 0;
    }

    .nav-link {
        padding: 0.5rem 0 !important;
    }

        .nav-link:after {
            display: none;
        }
}

/* Animations */
.animate__animated {
    --animate-duration: 1s;
}

/* Section Styling */
.section-title {
    position: relative;
    margin-bottom: 45px;
}

    .section-title:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 3px;
        background: var(--primary-color);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
}

/* Service Cards */
.service-card {
    transition: all 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    border-left: 3px solid var(--primary-color);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Contact Form */
.contact-form .form-control {
    padding: 15px;
    border-radius: 0;
    margin-bottom: 15px;
}

    .contact-form .form-control:focus {
        box-shadow: none;
        border-color: var(--primary-color);
    }

/* Counter */
.counter-box {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.counter-box p {
    font-weight: 500;
    margin-top: 10px;
}
