:root {
    --primary-color: #FFD700;
    /* Gold/Yellow */
    --secondary-color: #000000;
    /* Black */
    --text-dark: #333333;
    --text-light: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* Navbar */
.navbar-brand {
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-call {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-call:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./bannerimage.jpeg');
    /* Placeholder Image */
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    /* Slightly taller */
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Buttons */
.btn-warning {
    background-color: var(--primary-color);
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-warning:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.service-card .icon-box {
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.1);
}

/* Utilities */
.text-warning {
    color: var(--primary-color) !important;
}

.bg-black {
    background-color: #000000 !important;
}

.connector-line {
    width: 60px;
    height: 4px;
    margin-top: 15px;
    border-radius: 2px;
}

/* Form Styling */
.form-control {
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.me-2 {
    transform: rotateZ(92deg);
}

/* Blinking Animation for Urgent CTA */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.blinking-text {
    animation: blink 2s infinite;
}