/* === Global Styles === */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* === Navbar === */
.navbar-brand img {
    max-height: 50px;
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
}

/* === Hero Section === */
header {
    background: linear-gradient(to right, #2378d2, #0056b3),
        url('https://bordertechsmedia.com/images/btm_b_t.png') no-repeat center;
    background-size: contain;
    /* Use 'cover' if you want it to stretch */
    background-blend-mode: overlay;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Add Background Image */
header::before {
    content: "";
    background: url('../images/btm_b_.png') no-repeat center;
    background-size: cover; /* or contain */
    opacity: 1; /* Increase if too faint */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    /* Adjust size as needed */
    height: 400px;
    /* Adjust size as needed */
    opacity: 0.2;
    /* Adjust transparency */
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Ensure content appears above background */
header .container {
    position: relative;
    z-index: 1;
}

header h1 {
    font-weight: 600;
}

/* === Services Section === */
section.container {
    text-align: center;
}

section .col-md-4 {
    padding: 20px;
}

section .col-md-4 i {
    margin-bottom: 15px;
}

/* === Contact Section === */
#contact {
    background-color: white;
    padding: 60px 0;
}

#contact h2 {
    color: #2378d2;
    font-weight: 600;
}

#contact p {
    color: #666;
}

#contactForm {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#contactForm .form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
}

#contactForm .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 12px;
    font-size: 1.1rem;
}

#contactForm .btn-primary:hover {
    background-color: #0056b3;
}

/* === Footer === */
footer {
    background: #46505b;
    color: white;
    padding: 15px 0;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}
/* Navbar Branding Images */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.navbar-brand img:first-child {
    margin-right: 10px;
    /* Add spacing between the two images */
}

/* Adjustments for smaller screens */
@media (max-width: 992px) {
    .navbar-brand-img {
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .navbar-brand-img {
        max-height: 50px;
    }
}