/* General Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    overflow-x: hidden;
    color: #333;
}

/* Top Bar */
.top-bar {
    font-size: 14px;
}

    .top-bar a {
        transition: color 0.3s ease;
    }

        .top-bar a:hover {
            color: #fff !important;
        }

/* Navigation */
.navbar {
    padding: 12px 0;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-color) !important;
    }

.navbar-nav .btn-primary {
    color: #fff !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
}

    .navbar-nav .btn-primary:hover {
        background: #0b5ed7 !important;
        color: #fff !important;
    }

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

    .hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .hero-slide .container {
        position: relative;
        z-index: 1;
    }

    .hero-slide h1 {
        font-weight: 700;
        line-height: 1.2;
    }

    .hero-slide .lead {
        font-size: 1.25rem;
        font-weight: 300;
    }

/* Trust Badges */
.bg-white.shadow.rounded {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .bg-white.shadow.rounded:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }

/* Compliance Badges */
.badge-item {
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .badge-item:hover {
        transform: translateY(-3px);
    }

    .badge-item p {
        font-weight: 500;
    }

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    border-radius: 12px !important;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
        border-color: var(--primary-color);
    }

    .service-card .card-body {
        padding: 2rem 1.5rem;
    }

    .service-card i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .service-card .card-title {
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    .service-card .card-text {
        font-size: 0.95rem;
        color: #6c757d;
    }

    .service-card .btn-outline-primary {
        border-radius: 50px;
        padding: 0.4rem 1.5rem;
    }

/* Feature Boxes */
.feature-box {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

    .feature-box:hover {
        transform: translateY(-5px);
    }

    .feature-box i {
        color: var(--primary-color);
    }

    .feature-box h6 {
        font-weight: 600;
        margin-top: 0.5rem;
    }

/* About Section */
.about-section img {
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
}

/* Footer */
footer {
    background: #1a1a2e !important;
}

    footer h5 {
        font-weight: 600;
        color: #fff;
    }

    footer a {
        transition: color 0.3s ease;
    }

        footer a:hover {
            color: #fff !important;
        }

.social-links a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #fff !important;
}

    .social-links a:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
    }

/* Contact Form */
.contact-form .form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
}

    .contact-form .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }

/* Request Quote Form */
.quote-form .form-control,
.quote-form .form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-slide {
        min-height: 450px;
    }

        .hero-slide h1 {
            font-size: 2.5rem !important;
        }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 400px;
        text-align: center;
    }

        .hero-slide h1 {
            font-size: 2rem !important;
        }

        .hero-slide .d-flex {
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-slide .btn {
            width: 100%;
            margin-bottom: 10px;
        }

    .top-bar {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 350px;
    }

        .hero-slide h1 {
            font-size: 1.75rem !important;
        }

        .hero-slide .lead {
            font-size: 1rem;
        }
}
/* Navbar Scroll Effect */
.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

/* Buttons */
.btn {
    border-radius: 50px;
    font-weight: 500;
    padding: 0.6rem 1.8rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

    .btn-primary:hover {
        background: #0b5ed7;
        border-color: #0b5ed7;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    }

.btn-success {
    background: var(--success-color);
    border: 2px solid var(--success-color);
}

    .btn-success:hover {
        background: #157347;
        border-color: #157347;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
    }

/* Cards */
.card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
    }

/* Form Controls */
.form-control, .form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }

/* Alert */
.alert {
    border-radius: 12px;
    border: none;
}


/* Logo Fallback */
.navbar-brand img {
    max-height: 50px;
    width: auto;
}

    .navbar-brand img:not([src]),
    .navbar-brand img[src=""],
    .navbar-brand img[src*="error"] {
        display: none;
    }

.navbar-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 40px;
    }

    .navbar-brand .brand-text {
        font-size: 1rem;
    }
}

/* Add this to make logo display properly */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .navbar-brand .brand-text {
        color: #0d6efd;
        font-weight: 700;
    }