body {
    padding-top: 72px;
}

/* Navbar */
.navbar{
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .025), 0 1px 1px 0 rgba(0, 0, 0, .01), 0 0 50px 0 rgba(0, 0, 0, .07) !important;
}

.navbar-brand img {
    height: 45px;
}

.nav-item .nav-link {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 17px;
    line-height: 17px;
    vertical-align: baseline;
    font-weight: 600;
}

.navbar-nav .menu-item .nav-link .active {
    color: 2px solid #0E8FBF !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: #0dcaf0;
}

.header-phone-num {
    background-color: #1B98BF;
    padding: 3px 10px;
    color: #FFFFFF;
    text-decoration: none;
}

.header-youtube-icon {
    background-color: #CD201F;
    color: #FFFFFF;
    padding: 3px 8px;
    border-radius: 3px;
}

.header-facebook-icon {
    background-color: #1877F2;
    color: #FFFFFF;
    padding: 3px 8px;
    border-radius: 3px;
}

.header-whatsapp-icon {
    background-color: #25D366;
    color: #FFFFFF;
    padding: 3px 8px;
    border-radius: 3px;
}

/* navbar-end */




/* Modern Footer Styles */
.modern-footer {
    /* background: linear-gradient(135deg, #0E8FBF 0%, #0a7099 100%); */
    background: linear-gradient(135deg, #0a2239 0%, #0E8FBF 100%);
    color: #ffffff;
    /* margin-top: 60px; */
}

/* Footer Content - Using Flexbox for Equal Columns */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 0;
}

/* Footer Brand Section */
.footer-brand .footer-logo {
    max-width: 160px;
    height: auto;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ffffff;
    color: #0E8FBF;
    transform: translateY(-3px);
}

/* Footer Titles */
.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #ffffff;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 8px;
}

/* Contact Info */
.contact-info {
    margin-bottom: 20px;
}

.info-label {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.6;
}

.info-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #ffffff;
}

/* Product List */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.product-card img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    background: #ffffff;
}

.product-card span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
}

.bottom-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.bottom-link:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {

    .modern-footer {
        /* margin-top: 40px; */
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .social-links {
        justify-content: flex-start;
    }

    .footer-title::after {
        left: 0;
        transform: none;
    }

    .footer-menu {
        text-align: left;
    }

    .footer-brand {
        text-align: left;
    }

    .contact-info {
        text-align: left;
    }

    .product-list {
        align-items: flex-start;
    }
}

/* footer-end */