/* Top Bar Section */
.top-bar {
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif; /* Stylish font */
}

/* ISO Bar Stylish Text with Shadow */
.iso-bar {
    background-color: #FF9800; /* Orange background */
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* Text shadow for 3D effect */
    font-family: 'Montserrat', sans-serif; /* Use a stylish, modern font */
    box-sizing: border-box;
}

/* Stats Bar Stylish Text */
.stats-bar {
    background-color: white;
    color: black;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    box-sizing: border-box;
    border-top: 1px solid #ccc; /* Adds a subtle border for separation */
}

/* Social Bar Stylish Text */
.social-bar {
    background-color: #FF9800;
    display: flex;
    justify-content: flex-end; /* Align everything to the right */
    align-items: center;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; /* Stylish font */
}

/* Social Icons and Contact Aligned Right */
.social-bar a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    font-size: 20px;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease; /* Add transform transition */
}

.social-bar a:hover {
    opacity: 0.8;
    transform: scale(1.1); /* Slight scaling effect on hover */
}

/* Contact Details with Smaller Email Font */
.contact {
    color: white;
    font-size: 14px; /* Smaller font size */
    display: flex;
    align-items: center;
    margin-left: 20px; /* Added margin for spacing between icons and contact */
}

.contact a {
    color: white;
    font-size: 12px; /* Smaller email size */
    margin-left: 5px;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Travel Icons Bar */
.travel-icons-bar {
    background-color: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    flex-wrap: nowrap; /* Ensure icons remain in a single line */
    box-sizing: border-box;
    overflow-x: auto; /* Enable horizontal scroll if necessary */
}

.travel-icons-bar i {
    font-size: 25px; /* Icon size */
    margin: 0 10px;
    color: #007bff; /* Blue color for travel icons */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-icons-bar i:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column; /* Stack content vertically */
        padding: 15px; /* Increase padding for spacing */
    }

    .social-bar {
        justify-content: center; /* Center-align social icons */
        flex-wrap: wrap; /* Allow icons to wrap on smaller screens */
        padding: 15px; /* Add padding for better spacing */
    }

    .contact {
        justify-content: center;
        margin-left: 0; /* Remove margin for better alignment */
        margin-top: 10px; /* Add spacing between icons and contact on mobile */
        flex-wrap: wrap;
    }

    .social-bar a {
        margin-right: 10px; /* Reduce spacing between icons */
        font-size: 18px; /* Smaller icon size */
    }

    .contact a {
        font-size: 14px; /* Adjust email size */
    }

    .travel-icons-bar {
        justify-content: flex-start; /* Align icons to the start */
        overflow-x: scroll; /* Allow horizontal scrolling on mobile */
        padding: 10px 0; /* Reduce padding */
        flex-wrap: nowrap; /* Prevent wrapping */
    }

    .travel-icons-bar i {
        font-size: 20px; /* Reduce icon size for mobile */
        margin: 5px; /* Smaller margins for icons */
    }
}

@media (max-width: 576px) {
    .iso-bar {
        font-size: 16px; /* Reduce font size for smaller screens */
        letter-spacing: 1px;
    }

    .stats-bar {
        font-size: 14px; /* Smaller font for stats bar */
    }

    .social-bar a {
        font-size: 16px; /* Further reduce icon size */
        margin-right: 5px;
    }

    .contact {
        flex-direction: column; /* Stack contact details vertically */
        align-items: center; /* Center contact details */
        margin-top: 15px;
    }

    .contact a {
        font-size: 12px; /* Smaller email size */
        margin-left: 0;
    }

    .travel-icons-bar i {
        font-size: 18px; /* Further reduce icon size */
        margin: 5px; /* Adjust spacing */
    }
}
/* Top Bar Section */
.top-bar {
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* ISO Bar Stylish Text with Shadow */
.iso-bar {
    background-color: #FF9800;
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

/* Stats Bar Stylish Text */
.stats-bar {
    background-color: white;
    color: black;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    box-sizing: border-box;
    border-top: 1px solid #ccc;
}

/* Social Bar Stylish Text */
.social-bar {
    background-color: #FF9800;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Social Icons and Contact Aligned Right */
.social-bar a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    font-size: 20px;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease;
}

.social-bar a:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Contact Details with Smaller Email Font */
.contact {
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.contact a {
    color: white;
    font-size: 12px;
    margin-left: 5px;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Travel Icons Bar */
.travel-icons-bar {
    background-color: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    flex-wrap: nowrap;
    box-sizing: border-box;
    overflow-x: auto;
}

.travel-icons-bar i {
    font-size: 25px;
    margin: 0 10px;
    color: #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-icons-bar i:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        padding: 15px;
    }

    .social-bar {
        justify-content: center;
        flex-wrap: wrap;
        padding: 15px;
    }

    .contact {
        justify-content: center;
        margin-left: 0;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .social-bar a {
        margin-right: 10px;
        font-size: 18px;
    }

    .contact a {
        font-size: 14px;
    }

    .travel-icons-bar {
        justify-content: flex-start;
        overflow-x: scroll;
        padding: 10px 0;
        flex-wrap: nowrap;
    }

    .travel-icons-bar i {
        font-size: 20px;
        margin: 5px;
    }
}

@media (max-width: 576px) {
    .iso-bar {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .stats-bar {
        font-size: 14px;
    }

    .social-bar a {
        font-size: 16px;
        margin-right: 5px;
    }

    .contact {
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
    }

    .contact a {
        font-size: 12px;
        margin-left: 0;
    }

    .travel-icons-bar {
        display: none; /* Hide travel icons bar on small screens */
    }
}
