* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    scroll-behavior: smooth; 
    scroll-padding-top: 5rem;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px); 
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}


section.visible {
    opacity: 1; 
}

:root{
    --main-color: #161888;
    --second-color: #ffffff;
}

section{
    padding: 50px 10%
}


img{
    width: 100%;
}

.logo {
    height: 50px;
    max-width: 100%;
}

.custom-navbar {
    background-color: #013781; 
    width: 100%;
}

.navbar .navbar-nav .nav-link {
    color: #FFFFFF; 
    font-weight: 600;
    border-radius: 5px;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease; 
    margin: .7rem;
    text-align: center;
}

.navbar .navbar-nav .nav-link:hover {
    color: black;
    background-color: lightskyblue;
    border-radius: 5px;
}


.custom-navbar .navbar-toggler-icon {
    border-radius: 5px;
}

.custom-navbar .navbar-toggler-icon:hover {
    margin-bottom: 5px;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

.navbar .navbar-brand img  {
    max-height: 50px; 
}

.nav-item i{
    font-size: 30px;
}



#userModal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #1a1a4b;
    border-radius: 10px;
}


.modal-header {
    background-color: #003366;
    color: white;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 20px;
}

.list-group-item {
    border: none; 
    background-color: transparent;
}

.list-group-item a {
    color: black;
    text-decoration: none;
}

.list-group-item a:hover {
    text-decoration: underline;
    color: #007bff;
}

.modal-body .btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-weight: 500;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 17px;
        margin: 0 5px;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column; 
        align-items: center; 
        width: 100%; 
    }

    .navbar-nav .nav-link {
        margin: 5px 0; 
        width: 100%;
        text-align: center;
        font-size: 12px; 
        padding: 10px;
    }

    .navbar .navbar-toggler {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .navbar .navbar-nav .nav-link {
        font-size: 15px; 
        padding: 8px; 
    }

    .navbar-brand img {
        max-height: 25px;
    }

    .modal-body {
        padding: 10px; 
    }

    .modal-body .btn-primary {
        padding: 6px;
    }
}

@media (max-width: 412px) {
    .navbar .navbar-nav .nav-link {
        font-size: 12px; 
        padding: 6px; 
    }

    .navbar-brand img {
        max-height: 20px; 
    }

    .modal-body {
        padding: 8px; 
    }

    .modal-body .btn-primary {
        padding: 5px; 
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}





section.home {
    background-image: url('img/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}

.home-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.home-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    flex-wrap: wrap; 
}

.home-text {
    flex: 1;
    animation: fadeInLeft 1.5s ease-in-out;
}

.company-name {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFD700;;
}

.tagline {
    font-size: 1.7rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #d1ecf1;
}

.home .btn {
    display: inline-block;
    position: relative; 
    padding: 15px 30px;
    background-color: #007bff;
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.home .btn:hover {
    background-color: #0056b3;
    color: #fff;
}

.home .btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%; 
    width: 0;
    height: 2px;
    background: #FFD700; 
    transition: width 0.3s ease, left 0.3s ease;
}

.home .btn:hover::after {
    width: 100%;
    left: 0; 
}

.home-img {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeInRight 1.5s ease-in-out, float 4s ease-in-out infinite;
}

.home-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .home-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .home-text {
        margin-bottom: 20px;
        text-align: center;
    }

    .company-name {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .home-img {
        margin-top: 20px; 
    }

    .home-img img {
        width: 70%; 
    }
}

@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .home-img img {
        width: 60%;
    }
}

@media (max-width: 480px) {
    section.home {
        padding: 50px 0;
    }

    .company-name {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .home-img img {
        width: 80%;
    }
}





.promos { 
    padding: 60px 10%; 
    color: #333333; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    border-radius: 15px; 
}

.promos .heading {
    text-align: center;
    margin-bottom: 40px; 
}

.promos .heading h1 {
    font-size: 40px; 
    font-weight: 700; 
    color: #003366;
    letter-spacing: 1px; 
}

.promos p{
    color:#003366;
    text-align: center;
}

.promos h2 {
    border-top: 4px solid #ffc107; 
    padding-top: 15px; 
    margin: 20px 0; 
    font-size: 24px; 
}

.promos-container {
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto; 
}

.box {
    background-color: #003366; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); 
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s; 
    flex: 1 1 300px; 
    margin: 0.5rem;
    text-align: center; 
    height: auto; 
    width: auto;
    position: relative; 
}

.box:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); 
}

.box-img {
    width: 100%; 
    max-height: 400px; 
    min-height: 400px;
    overflow: hidden; 
}

.box-img img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.box h2, p{
    color: #ffffff;
}

span {
    font-size: 16px; 
    color: #ffffff; 
    margin: 10px 0; 
    display: block;
    text-align: center;
    font-style: italic; 
}

.box .btn {
    background-color: #007bff;
    color: #fff; 
    padding: 12px 20px; 
    border-radius: 5px; 
    text-decoration: none;
    display: inline-block;
    margin: 15px 0; 
    transition: background-color 0.3s, transform 0.3s; 
    font-weight: bold; 
    position: relative;
}

.box .btn:hover {
    background-color: #0056b3;
    color: #fff;
}

.box .btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%; 
    width: 0;
    height: 2px;
    background: #FFD700; 
    transition: width 0.3s ease, left 0.3s ease;
}

.box .btn:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 1200px) {
    .promos .heading h1 {
        font-size: 36px; 
    }
}

@media (max-width: 992px) {
    .promos {
        padding: 40px 5%; 
    }

    .box {
        flex: 1 1 45%; 
    }

    .promos .heading h1 {
        font-size: 32px; 
    }
}

@media (max-width: 768px) {
    .promos-container {
        padding: 10px; 
    }

    .box {
        flex: 1 1 100%;
        height: auto; 
    }

    .promos .heading h1 {
        font-size: 28px;
    }
}





.product-container{
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.product {
    padding: 60px 5%;
    text-align: center;
    color: #003366; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-box {
    background-color: #003366; 
    padding: 40px;
    border-radius: 10px;
    color: #ffffff; 
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); 
}

.product-box h2 {
    font-size: 32px;
    color: #FFD700; 
    margin-bottom: 20px;
}

.product-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 20px;
    margin: 20px auto;
    max-width: 300px;
    position: relative;
}

.progress {
    background-color: #ffc107;
    height: 100%;
    width: 70%; 
    animation: progressAnimation 3s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { width: 30%; }
    50% { width: 70%; }
    100% { width: 30%; }
}

.under-construction-image {
    width: 150px;
    margin-top: 20px;
    opacity: 0.8;
}





.contact {
    padding: 60px 20px;
    color: #333; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.heading {
    text-align: center;
    margin-bottom: 40px;
}

.heading span {
    display: block;
    font-size: 18px;
    color: #6c757d;
}

.heading h1 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 10px;
    color: #003366; 
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: white; 
    padding: 30px;
    border-radius: 8px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
}

.input-box {
    position: relative;
    margin-bottom: 20px; 
}

.input-box i {
    position: absolute; 
    left: 10px; 
    top: 50%; 
    transform: translateY(-50%); 
    color: #888; 
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    padding: 15px 15px 15px 45px; 
    border: 1px solid #ced4da; 
    border-radius: 5px; 
    font-size: 16px; 
    transition: border-color 0.3s; 
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
    border-color: #80bdff; 
    outline: none; 
}

.input-box textarea {
    resize: none; 
}

.contact .btn {
    background-color: #007bff; 
    color: white; 
    border: none; 
    padding: 10px 20px; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: background-color 0.3s; 
}

.contact .btn:hover {
    background-color: #0056b3; 
    color: #fff;
}

.social {
    text-align: center;
    margin-top: 30px;
}

.social label {
    font-size: 16px;
}

.social a {
    margin-left: 10px; 
    color: #007bff; 
    font-size: 24px; 
    transition: color 0.3s; 
}

.social a:hover {
    color: #0056b3; 
}

/*contact sucess modal*/
.modal-content {
    border-radius: 8px; 
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2); 
}

.modal-header {
    border-bottom: none; 
}

.modal-title {
    font-size: 24px; 
    color: #333; 
}

.modal-body {
    padding: 20px; 
}

.modal-body p {
    font-size: 18px; 
    color: #555;
}

.btn-primary {
    background-color: #007bff; 
    border-color: #007bff; /
}

.btn-primary:hover {
    background-color: #0056b3; 
    border-color: #0056b3; 
}





.career-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.career .heading h1 {
    font-size: 40px;
    font-weight: bold;
    color: #003366; 
    margin-bottom: 20px;
}

.job-openings {
    margin-top: 20px;
    padding-left: 20px;
    font-size: 18px;
    color: #555;
}
.job-openings li {
    margin-bottom: 15px;
    position: relative;
}
.job-openings li::before {
    content: '•';
    color: #007bff;
    font-size: 24px;
    position: absolute;
    left: -20px;
    top: 0;
}

.career .btn {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 1rem;
}

.career .btn:hover {
    background-color: #0056b3;
    color: #fff;
}

.career {
    max-width: 1200px;
    margin: 1rem auto;
    margin-top: 4rem;
    padding: 0 20px;
    background-color: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

@media (max-width: 768px) {
    .heading h1 {
        font-size: 30px;
    }

    .career-text {
        padding: 20px;
    }

    .job-openings li {
        font-size: 16px;
    }
}





.store {
    padding: 20px;
}

.store-header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 100px;
}

.store-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #003366; 
    font-weight: bold;
    text-align: center;
}

.store-subtitle {
    font-size: 1.2em;
    color: #7f8c8d;
}

.store-container {
    display: flex;
    height: 70vh; 
}

.store-sidebar {
    flex: 0 0 300px; 
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto; 
    position: relative;
    color: white;
    text-align: center;
}

.store-search-bar {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.store-search-bar:focus {
    border-color: #3498db;
    outline: none;
}

.branch-list {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 15px;
}

.branch-item {
    padding: 15px;
    background: #003366; 
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: background 0.3s, transform 0.2s;
}

.branch-item:hover {
    background-color: #0056b3;
    color: #fff;
    transform: translateY(-2px);
}

.branch-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%; 
    width: 0;
    height: 2px;
    background: #FFD700; 
    transition: width 0.3s ease, left 0.3s ease;
}

.branch-item:hover::after {
    width: 100%;
    left: 0; 
}

.store-map {
    flex-grow: 1; 
    height: 100%; 
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.store-map span{
    color:  #003366;
}

@media (max-width: 768px) {
    .store-container {
        flex-direction: column; 
    }
    
    .store-sidebar {
        flex: none; 
        height: 300px; 
        margin-bottom: 10px;
    }

    .store-map {
        height: 400px; 
    }
}





.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    padding: 20px 0;
    text-align: center;
    flex-wrap: wrap; 
}

.footer-col {
    flex: 1;
    margin: 0 20px;
    min-width: 200px; 
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style-type: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffa500;
}

.footer-col .social-links a {
    display: column;
    margin-right: 10px;
    font-size: 40px;
    color: #3498db;
}

.footer-col .social-links a:hover {
    transition: color 0.3s;
    color: #ffa500;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #555;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column; 
        align-items: center; 
    }

    .footer-col {
        margin: 10px 0; 
        text-align: center; 
    }
}

@media (max-width: 480px) {
    .footer-col h3 {
        font-size: 16px; 
    }

    .footer-col ul li a {
        font-size: 12px; 
    }

    .footer-bottom {
        font-size: 12px; 
    }
}

@media (max-width: 412px) {
    .footer-col h3 {
        font-size: 14px; 
    }

    .footer-col ul li a {
        font-size: 10px;
    }

    .footer-bottom {
        font-size: 10px; 
    }
}
