/* Custom styles for animations and overrides */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero section background image with overlay */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/slide.png');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Section backgrounds for visual appeal */
.section-bg-light {
    background-color: #f8f9fa; /* Light gray */
}

.section-bg-dark {
    background-color: #0A2342; /* Dark blue from logo */
    color: white;
}

.btn-primary-hqt {
    background-color: #007bff; /* Bootstrap primary blue */
    border-color: #007bff;
    transition: all 0.3s ease;
}

.btn-primary-hqt:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.navbar-brand img {
    height: 60px; /* Adjust logo size */
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Image styling */
.img-fluid-rounded {
    border-radius: 0.75rem; /* Tailwind rounded-lg */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Card styling */
.card-hqt {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Ensure rounded corners apply to children */
}

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

.card-hqt img {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

/* Icon box styling */
.icon-box {
    background-color: #e9ecef;
    color: #0A2342;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.icon-box:hover {
    background-color: #0A2342;
    color: white;
    transform: translateY(-3px);
}

/* Contact form styling */
.form-control-hqt {
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control-hqt:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
    outline: none;
}

/* Footer styling */
footer {
    background-color: #212529; /* Dark footer */
    color: white;
    padding: 3rem 0;
}

footer a {
    color: #adb5bd; /* Light gray links */
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* Animation for elements on scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
header .card { border: 1px solid rgba(0,0,0,.06); }
.btn-primary { background-color: #1f6feb; border-color: #1f6feb; }
.btn-primary:hover { filter: brightness(0.95); }
#formAlert { transition: all .2s ease; }

