* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
}

.container-fluid {
    
    width: 100%;
    margin: 0 auto;
}
.sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    height: 50px;
}

/* TOP BAR */
.top-bar {
    background: linear-gradient(135deg, #061733, #0a1f44);
    color: #ecf0f1;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 3px solid #3498db;
}

.top-bar .top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    transition: color 0.3s;
}

.top-bar .top-left span i {
    color: #c40000;
    font-size: 16px;
}

.top-bar .top-left span:hover {
    color: #3498db;
    cursor: pointer;
}

.top-right .follow-text {
    font-size: 13px;
    color: #95a5a6;
    margin-right: 6px;
}

.top-right a {
    color: #ecf0f1;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255 255 255 / 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}

.top-right a.fb:hover {
    background: #1877f2;
}

/* Instagram */
.top-right a.ig:hover {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%, #fdf497 5%,
            #fd5949 45%, #d6249f 60%,
            #285AEB 90%);
}

/* Twitter */
.top-right a.tw:hover {
    background: #1da1f2;
}

/* YouTube */
.top-right a.yt:hover {
    background: #ff0000;
}


/* MAIN NAVBAR */
.main-navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #000;
}

.navbar-logo {
    color: #071c3f;
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.logo-text {
    font-weight: 700;
    font-size: 21px;
    color: #c40000;
}

.logo-desc {
    font-size: 13px;
}

/* Tablet */
@media (max-width: 992px) {
    .logo-text {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
  
    .logo-text {
        font-size: 15px;
        line-height: 1.1;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-text {
        font-size: 13px;
        text-align: left;
    }
}

.contact-info {
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-size: 15px;
}

.contact-item i {
    color: #c40000;
    font-size: 25px;
    margin-right: 10px;
}

.contact-item small {
    display: block;
    font-weight: 500;
    color: #999;
    font-size: 14px;
    line-height: 1.5;
}

.contact-item strong {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.secondary-navbar {
    padding: 8px 0;
}

.secondary-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #c40000;

}

.btn-get-touch {
    background-color: #c40000;
    color: #000;
    padding: 5px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-get-touch:hover {
    background-color: #c40000;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 220px;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
}

.dropdown.active .dropdown-menu {
    display: block;
}

/* FIX SECONDARY NAVBAR VISUAL */
.secondary-navbar {
    background: #ffffff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* FIX DROPDOWN POSITION */
.dropdown {
    position: relative;
}

/* MOBILE MENU FIX */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 200px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 15px;
    }

    .top-bar {
        display: none;
    }

    .contact-info {
        display: none !important;
    }

}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav-menu>li>a {
        padding: 10px 12px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .contact-info {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-left {
        flex-direction: column;
        gap: 6px;
    }
}
