* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    background: #fdfdfd;
}
h1, h2, h3 {
    font-family: "Playfair Display", serif;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
header svg {
    width: 28px;
}
header img {
    width: 90px;
}

.search-box {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: #fff8e1;
}
.search-box h1 {
    font-size: 26px;
    border-bottom: 2px solid goldenrod;
}
.search-box input {
    width: 100%;
    max-width: 500px;
    padding: 14px 18px;
    font-size: 16px;
    border: 1.5px solid #d4af37;
    border-radius: 30px;
}
.search-box button {
    padding: 12px 20px;
    background-color: goldenrod;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
}
.search-box button:hover {
    background-color: #c99e1a;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 20px;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.filter-group select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.result {
    padding: 32px 16px;
}
.result h1 {
    text-align: center;
    font-size: 32px;
    border-bottom: 2px solid goldenrod;
    margin-bottom: 24px;
}
.result-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.card {
    background-color: white;
    border-radius: 12px;
    padding: 18px;
    width: 280px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.card:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.card p {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}
.bus {
    border-left: 3px solid #2196f3;
}
.train {
    border-left: 3px solid #ff9800;
}

/* Responsive */
@media (max-width: 600px) {
    .search-box {
        padding: 16px;
    }
    .search-box input {
        font-size: 15px;
        padding: 12px 14px;
    }
    .search-box h1 {
        font-size: 22px;
    }
    .result h1 {
        font-size: 26px;
    }
    .card {
        width: 90%;
    }
}

.notice-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    color: #333;
    font-family: "Poppins", sans-serif;
    z-index: 999;
}

.info-icon {
    display: inline-block;
    background-color: goldenrod;
    color: white;
    font-weight: bold;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.info-icon:hover {
    background-color: #c99e1a;
}

.notice-text {
    margin-top: 8px;
    background-color: #fffef7;
    padding: 12px 16px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: none;
    max-width: 300px;
}
.Rights-reserved {
    text-align: center;
    padding: 20px 10px;
    border-top: 2px solid #000;
    font-size: 15px;
    color: #444;
    width: 100%;
    margin-bottom: 50px;


}