/* ✅ General Styles */ 
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}

      

        /* Media query for mobile */
        @media (max-width: 768px) {
            body {
                padding-top: 80px; /* Adjust padding for smaller screens */
            }
        }
   
/* ✅ Navigation Bar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1e3a8a;
    padding: 10px 20px;
    z-index: 1000;
    height: 60px; /* Set explicit height for the navbar */
}

/* ✅ Adjust header section to prevent overlap */
.header {
    padding-top: 80px; /* Space for the navbar height (60px + a bit more for safety) */
}

/* Optional: For smaller screens or mobile, you might need to adjust the header padding */
@media (max-width: 768px) {
    .header {
        padding-top: 80px; /* Adjust padding for mobile responsiveness */
    }
}

/* ✅ Top Bar */
.topbar {
    background: #ff5722;
    color: white;
    font-size: 14px;
}

.topbar a {
    color: yellow;
    font-weight: bold;
    text-decoration: none;
}

.topbar a:hover {
    text-decoration: underline;
}

/* ✅ Navigation Bar */
.navbar {
    background-color: #333;
    padding: 10px 0; /* You can adjust this value to reduce height */
    display: flex;  /* This will make the navbar items line up horizontally */
    align-items: center; /* Ensures vertical alignment of items */
    justify-content: space-between; /* Space out items if necessary */
}

.navbar .logo {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px; /* Optional: Add some space between the logo and the left side */
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

/* ✅ Hero Section */
.hero {
    background: url('assets/images/sigle-btl-1-new-446x448.png') no-repeat center;
    background-size: cover;
    padding: 100px 0;
    color: white;
}

.hero h1 {
    font-size: 40px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero .btn {
    background: #ff5722;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
}

.hero .btn:hover {
    background: #e64a19;
}

/* ✅ Footer */
.footer {
    background: #222;
    color: white;
    padding: 20px 0;
}

.footer a {
    color: #ff5722;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
