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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.container {
    width: 96%;
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    min-width: 1200px; /* Fixed width for desktop feel */
}

/* ================= TOP BAR ================= */
.top-bar {
    background: linear-gradient(to bottom, #182b40 0%, #223951 100%);
    color: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
}

.contact-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info span {
    font-size: 24px;
    font-weight: 400;
    color: #eeeeee;
}

/* ================= MAIN HEADER ================= */
.main-header {
    background: #ffffff;
    border-bottom: 3px solid #7a2222;
    position: relative;
    z-index: 100;
    height: 75px;
}

.header-flex {
    display: flex;
    align-items: center;
    height: 100%;
    flex-wrap: nowrap; 
}

/* LOGO OVERLAP */
.logo {
    position: absolute;
    margin-left: 30px;
    top: -30px;
    z-index: 101;
}

.logo img {
    height: 120.4px;
    display: block;
    object-fit: contain;
}


.nav-links {
    margin-left: auto;
    margin-right: 30px;
    display: block !important; 
}

.nav-links ul {
    list-style: none;
    display: flex !important; 
    flex-direction: row !important;
}

.nav-links ul li {
    margin: 0 15px; 
}

.nav-links ul li a {
    text-decoration: none;
    color: #04195d;
    font-weight: 700;
    font-size: 24px;
    transition: 0.2s;
    position: relative;
    white-space: nowrap; 
}

.nav-links ul li a:hover {
    color: #a81c1c;
}

/* BUTTON */
.btn-schedule {
    background: linear-gradient(to bottom, #23395d 0%, #152238 100%);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #000;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
    display: inline-block;
    white-space: nowrap;
}

/* Responsive elements ko hide karne ke liye */
.menu-toggle {
    display: none !important;
}
