@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');


.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.blog-card h2 {
    margin: 10px 0 5px;
}

.blog-card p {
    color: #555;
}

.blog-card a {
    text-decoration: none;
    color: #007BFF;
}

/* Main styles for Travel Flight Booking */
body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #004366;
    background: #f8f9fa;
}

:root {
    --primary: #00a3b5;
    --secondary: #004366;
    --light: #f8f9fa;
    --dark: #004366;
    --accent: #f5f5f5;
}
.bg-primary {
   
    background-color: #004366;
  }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: var(--secondary);
}

.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(34,34,59,0.7)), url('../images/istockphoto-155439315-612x612.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
}

.card {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(34,34,59,0.07);
    border: none;
}

.card-title {
    color: var(--primary);
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.navbar {
    background: #004366 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

footer {
    background: #004366;
    color: #fff;
    margin-top: 50px;
    padding: 40px 0 0 0;
}

/* Airport Search Autocomplete Styles */
.autocomplete-dropdown {
    position: absolute;
    top: auto;
    left: 17%;
    right: 0;
    background: white;
   
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);width: 50%;
}

.autocomplete-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;color: black;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background-color: #f5f5f5;
}

.form-group, .mb-3 {
    position: relative;
}

/* Add more custom styles for sections, headings, and buttons as needed for the new design */