/* Announcement Bar Styles */
.edit {
    background-color: #334053;
    padding: 0px;
    font-size: 12px;
    font-weight: 100 !important;
    letter-spacing: 0.5px;
    font-weight: 300 !important;
}

.time-span {
    color: rgb(255, 255, 255, 80%);
}

.time-unit {
    background-color: #475364;
    border-radius: 2px;
    font-weight: 500;
    color: white;
}

/* Announcement Bar Media Queries */
@media (max-width: 768px) {
    .edit {
        font-size: 11px;
        padding: 5px 0;
    }
}

@media (max-width: 576px) {
    .edit {
        font-size: 10px;
    }

    .time-unit {
        padding: 2px 4px;
        font-size: 10px;
    }
}

/* Navbar Styles */
.navbar-nav a {
    /* color: #001e3c; */
    color: #4a5568;
    font-weight: 500;
    font-size: 14px;
}

.navbar-nav .nav-link:hover {
    color: #00bcd4;
}
.dropdown-item:hover {
    /* background: linear-gradient(90deg, #009644 0%, #18adc0 100%); */
    /* background: linear-gradient(to right, #00c96b, #00b5e2); */
   background: linear-gradient(to right, #6fdc9f, #7ac0db);
    color: #fff;
}
.dropdown-menu {
    border: none !important;
}
a.dropdown-item.text-center {
    text-align: left !important;
}
.navbar .dropdown-toggle::after {
    margin-left: 0 !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand img {
    height: 45px;
}

/* Navbar Media Queries */
@media (max-width: 992px) {
    .navbar-nav a {
        font-size: 16px;
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-nav a {
        text-align: center;
        border-bottom: 1px solid #e9ecef;
        padding: 15px 0;
    }

    .navbar-brand img {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .navbar-nav a {
        font-size: 14px;
        padding: 12px 0;
    }

    .navbar-brand img {
        height: 32px;
    }
}

/* Footer Section */
.footer-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 0 20px 0;
}

.main-footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.company-section {
    flex: 0 0 400px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.company-description {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 30px;
    max-width: 380px;
}

.rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    max-width: 380px;
}

.rating-item {
    text-align: center;
    flex: 1;
}

.rating-item img {
    height: 35px;
    width: auto;
    margin-bottom: 8px;
}

.rating-stars {
    font-size: 12px;
    color: #f39c12;
    margin-bottom: 3px;
}

.rating-score {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
}

.awards-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 380px;
}

.award-item {
    text-align: center;
    flex: 1;
}

.award-item img {
    height: 30px;
    width: auto;
    margin-bottom: 5px;
}

.award-text {
    font-size: 11px;
    color: #95a5a6;
    line-height: 1.2;
}

.nav-section {
    display: flex;
    gap: 60px;
}

.nav-column {
    min-width: 180px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #3498db;
}

.contact-section {
    flex: 0 0 300px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.contact-icon {
    font-size: 16px;
    margin-right: 10px;
    width: 20px;
}

.contact-title {
    font-size: 14px;
    font-weight: 600;
}

.contact-details {
    color: #95a5a6;
    font-size: 13px;
    line-height: 1.4;
    margin-left: 30px;
}

.social-section {
    border-top: 1px solid #34495e;
    margin-top: 40px;
    padding-top: 20px;
}

.social-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #3498db;
    font-size: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #3498db;
    color: #ffffff;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3498db;
}

/* Footer Media Queries */
@media (max-width: 1200px) {
    .main-footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .company-section,
    .contact-section {
        flex: none;
        align-self: center;
        max-width: 100%;
    }

    .nav-section {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-section {
        padding: 40px 0 15px 0;
    }

    .nav-section {
        gap: 30px;
    }

    .company-section {
        flex: none;
        max-width: 100%;
    }

    .contact-section {
        flex: none;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 30px 0 15px 0;
    }

    .nav-section {
        flex-direction: column;
        gap: 20px;
    }

    .rating-row,
    .awards-row {
        max-width: 100%;
    }

    .social-row {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .company-description {
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .rating-row {
        gap: 15px;
    }

    .awards-row {
        gap: 10px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-details {
        margin-left: 0;
        text-align: center;
    }

    .contact-header {
        justify-content: center;
    }

    .contact-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-item {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 20px 0 10px 0;
    }

    .rating-item img {
        height: 25px;
    }

    .award-item img {
        height: 20px;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .company-description {
        font-size: 13px;
    }

    .footer-links ul li a {
        font-size: 13px;
    }
}


.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5000;
}
.sticky, input[type=text] {
    background: #fff;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5000;
    background: white;
}
.tv-header--sticky {
    position: sticky;
    /* position: fixed; */
    top: 0;
    width: 100%;
    z-index: 101;
    background-color: #fff;
}
header {
    position: fixed;
    height: auto;
    width: 100%;
    z-index: 100;
}