/* General Styles */
body, html {
    height: 100%;
    margin: 0;
    background-color: #EBF0F4;
}

/* Anchor Tags */
a {
    text-decoration: none;
}

/* List Items */
li {
    list-style: none !important;
}

/* Primary Background Color */
.bg-primary {
    background-color: #007bff !important;
}

/* Hero Image */
.hero-image {
    background-image: url('images/1.png');
    height: 80vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Search Box */
.search-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1105px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 100px 10px rgba(24, 33, 77, .05);
    padding: 50px 30px 40px;
    position: relative;
}

/* Active Light Button */
.btn-light.active {
    background-color: #007bff !important;
    color: white;
}

/* Ad Image Styling */
.add-image {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

/* Footer Styling */
footer {
    max-width: 1105px;
}

/* Footer Background Color */
.footer_bg_color {
    background-color: #00036E;
}

/* Top and Ad Banner Images */
.top-banner img, .ad-banner img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Card Title */
.card-title {
    color: #007bff;
}

/* Card Body */
.card-body {
    background-color: #ffffff;
    padding: 11px !important;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero-image {
        height: 80vh;
    }
    .search-box {
        padding: 50px 30px 40px;
    }
    .navbar .col-md-2, .navbar .col-md-6, .navbar .col-md-4 {
        text-align: center;
        margin-bottom: 10px;
    }
    .navbar .col-md-4 {
        order: -1;
    }
    .way {
        text-align: center;
    }
    .way b {
        display: block;
        margin-bottom: 5px;
    }
    .form-row .form-group {
        margin-bottom: 10px;
    }
}
