@import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);
@import url(https://fonts.googleapis.com/css?family=Titillium+Web:300);
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', fantasy; /* Use 'Titillium Web' as primary font with fantasy as fallback */
  }


  /*Navbar Section*/
/* Navbar Section */
.navbar {
    background: #ffffff;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Align items vertically */
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0d6efd;
}

#navbar__logo img {
    width: 80px;
    height: auto;
    margin-right: 10px;
}

.navbar-toggler {
    background-color: transparent;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-toggler-icon {
    color: #0d6efd;
    font-size: 1.5rem;
}

#mobile-menu {
    position: absolute;
    top: 70px; /* Adjust top position to move the menu below the navbar */
    right: 0;
    width: 100%; /* Make the menu fill the full width */

    z-index: 998; /* Ensure menu is below navbar */
    display: none; /* Hide menu by default */
}

#mobile-menu.active {
    display: block; /* Display menu when active */
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 15px;
}

.nav-link {
    color: #0d6efd;
    text-decoration: none;
}

.nav-link:hover {
    color: #0a58ca;
}

@media (max-width: 992px) {
    .navbar__container {
        padding: 0 30px; /* Adjust padding for smaller screens */
    }

    #mobile-menu {
        top: 70px; /* Adjust top position for smaller screens */
    }
}

@media (max-width: 576px) {
    .navbar__container {
        padding: 0 15px; /* Further adjust padding for smaller screens */
    }

    #mobile-menu {
        top: 70px; /* Further adjust top position for smaller screens */
    }
}

/* End Navbar Section */

/* About Section Styles (if applicable) */
.about-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.about-image {
    margin-top: 30px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
