.btn-primary {
    background-color: #02c8ff;
    border-color: #02c8ff;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* Dark overlay */
}

.text-box {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    margin-top: 50px;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.sub-text {
    font-size: 18pt;
    margin-bottom: 30px;
}

.cta-button {
    border-radius: 30px;
    padding: 10px 30px;
}

.content h2 {
    color: #000000;
    font-weight: 600;
}

.content .header-size {
    font-size: 2.75rem;
}

.blue-sub-header {
    font-size: 18pt;
    color: #001278;
}

.padding-sides {
    padding-left: 24px;
    padding-right: 24px;
}

.video-card {
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    position: relative;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.video-card h3 {
    color: #FFFFFF;
    padding-top: 0;
    padding-bottom: 20px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.video-card:hover h3 {
    transform: translateY(-2px);
}

.tab-pane {
    border: none;
    width: 100%;
    padding: 10px 25px;
}

.nav-pills .nav-link {
    max-width: 600px;
    padding: 15px 45px 15px 15px;
    color: #7C7C7C;
    /*border-bottom: 1px solid #000000;*/
    border-radius: 0;
    font-size: 1.5rem;
    text-align: left;
    position: relative;
    display: block;
    margin-bottom: 5px;
    background-color: #f8f9fa;
    margin-left: 20px;
}

.nav-pills .nav-link::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transition: transform 0.3s ease;
    color: #7C7C7C;
}

.nav-pills .nav-link.active::after {
    transform: translateY(-50%) rotate(0deg);
    color: white;
    top: 20%;
}

.nav-pills .nav-link.active {
    background-color: #02C8FF;
    color: white;
}

.nav-pills .nav-link .accordion-content {
    display: none;
    font-size: 1rem;
    color: #FFFFFF;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 1.4;
}

.nav-pills .nav-link.active .accordion-content {
    display: block;
}

.hr-o {
    border-bottom: 3px solid #2c6c89;
    margin-bottom: 30px;
    font-size: 2rem;
}

.content .digital-text {
    left: 45%;
    top: 50%;
}

@media(max-width: 767px) {
    .content .digital-text {
        left: 50%;
        top: 47%;
    }
}

.digital-img-section .section-style {
    height: 300px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .digital-img-section .section-style {
        height: 400px !important;
    }

    .digital-img-section img {
        min-height: 400px !important;
    }
}

/* Horizontal tabs with images - unique to solutions section */
.solutions-tabs .nav-tabs {
    border-bottom: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.solutions-tabs .nav-tabs>.nav-item {
    border: none;
    background-color: #FFFFFF;
}

.solutions-tabs .nav-link {
    border: none;
    background: #f8f9fa;
    color: #333;
    padding: 20px 30px;
    margin: 0 5px 10px;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
}

.solutions-tabs .nav-link::after {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 15px;
    color: #000000;
    transition: all 0.3s ease;
}

.solutions-tabs .nav-link.active::after {
    content: '\f068';
    color: white;
}

.solutions-tabs .nav-link img {
    width: 160px;
    height: 170px;
    object-fit: contain;
}

.solutions-tabs .nav-link.active {
    background: #2AD0FF;
    color: white;
}

.solutions-tabs .nav-link:hover {
    background: #e9ecef;
}

.solutions-tabs .nav-link.active:hover {
    background: #2AD0FF;
}

.no-arrow .dropdown {
    display: none;
}

.solutions-tabs .tab-content {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 3px #2AD0FF solid;
}

.solutions-tabs .tab-content.show {
    display: block !important;
}

.solutions-tabs .tab-pane {
    display: none;
}

.solutions-tabs .tab-pane.show {
    display: block !important;
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .solutions-tabs .nav-link {
        padding: 15px 20px;
        margin: 0 3px 10px;
    }

    .solutions-tabs .nav-link img {
        width: 120px;
        height: 130px;
    }
}

@media (max-width: 1200px) {
    .solutions-tabs .nav-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .solutions-tabs .nav-item {
        flex: 0 0 auto;
    }

    .solutions-tabs .nav-link {
        padding: 10px 15px;
        white-space: nowrap;
    }

    .solutions-tabs .nav-link img {
        width: 100px;
        height: 110px;
    }
}

@media (max-width: 1000px) {
    .tab-content img {
        display: none !important;
    }

    .tab-pane {
        width: 100%;
        padding: 15px;
    }

    .nav-pills .nav-link {
        max-width: 100%;
        font-size: 1.2rem;
    }
}

.prod-card {
    border: none;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.prod-card:hover {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    border-color: #f5f5f5;
}

.story-card {
    padding: 0;
    color: #000000;
    height: 100%;
}

.story-card .card-body {
    padding-bottom: 0;
}

.story-card .card-footer {
    padding: 0;
    background-color: #FFFFFF;
    border-top: none;
    color: #0A60FF;
}

.resource-card {
    padding: 1.5rem 1rem 1.5rem;
}

.resource-card:hover {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
}

.infographics-card {
    padding: 1rem;
    height: 100%;
}

.infographics-card:hover {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
    background-color: #F5F5F5;
    border-radius: 20px;
}

.btn-blue-outline {
    border-color: #02C8FF;
    color: #02C8FF;
    background-color: #FFFFFF;
    padding: 10px 60px !important;
}

/* Static/Sticky Navigation Bar */
.header-links {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #07182D !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.header-links.scrolled {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
}

.header-links a {
    color: #FFFFFF !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 20px 4px;
    border-radius: 5px;
    display: inline-block;
}

.header-links a:hover {
    color: #02C8FF !important;
}

.header-links>.col>a::after {
    content: '';
    display: inline-block;
    height: 6px;
    background: none;
    /*Underline color*/
}

.header-links .btn {
    transition: all 0.3s ease;
}

.header-links .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .header-links {
        padding: 10px 0px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    /* Hide desktop navigation */
    .desktop-nav {
        display: none !important;
    }

    /* Mobile navigation row */
    .mobile-nav-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .mobile-visible-item {
        color: #FFFFFF !important;
        text-decoration: none;
        font-weight: 500;
        padding: 8px 10px;
        border-radius: 5px;
        font-size: 0.9rem;
        flex: 1;
        text-align: center;
    }

    .mobile-visible-item:hover {
        color: #02C8FF !important;
    }

    /* Mobile toggle button */
    .mobile-nav-toggle {
        display: inline-block;
        background: transparent;
        border: 2px solid #02C8FF;
        color: #02C8FF;
        padding: 8px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .mobile-nav-toggle:hover {
        background-color: #02C8FF;
        color: white;
    }

    .mobile-nav-toggle i {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .mobile-nav-toggle.active i {
        transform: rotate(180deg);
    }

    /* Dropdown container */
    .mobile-nav-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #07182D;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        padding: 10px 0;
    }

    .mobile-nav-dropdown.show {
        display: block;
    }

    .mobile-nav-dropdown .dropdown-item {
        display: block;
        padding: 12px 20px;
        color: #FFFFFF !important;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: background-color 0.3s ease;
    }

    .mobile-nav-dropdown .dropdown-item:hover {
        background-color: rgba(2, 200, 255, 0.1);
        color: #02C8FF !important;
    }

    .mobile-nav-dropdown .btn {
        margin: 10px 20px;
        width: calc(100% - 40px);
        padding: 10px !important;
    }

    .header-links a {
        font-size: 0.9rem;
        padding: 5px 8px;
    }

    .header-links .btn {
        font-size: 0.8rem;
        padding: 3px 10px !important;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .mobile-nav-row {
        display: none !important;
    }

    .mobile-nav-dropdown {
        display: none !important;
    }

    .desktop-nav {
        display: flex !important;
    }
}

#faq .accordion-item {
    border: 1px #000000 solid;
    border-bottom: thin;
}

#faq .accordion-button:focus {
    box-shadow: none;
}

@media(max-width: 767px) {
    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1;
    }

    .header-size {
        font-size: 2rem !important;
        line-height: 1.25;
    }

    .blue-sub-header {
        font-size: 15pt;
        line-height: 1.3;
    }

    .padding-sides {
        padding-left: 10px;
        padding-right: 10px;
    }

    #guide {
        padding-top: 25px !important;
    }

    .video-card {
        height: 100%;
    }

    .content .px-4 {
        padding-right: 0 !important;
        padding-left: 10px !important;
    }

    .content .py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .content .pt-4 {
        padding-top: 0 !important;
    }

    .content .pe-5 {
        padding-right: 1rem !important;
    }

    .content .pb-5 {
        padding-bottom: 0 !important;
    }

    .content .pt-5 {
        padding-top: 20px !important;
    }

    .resource-card {
        padding: 1.5rem 0rem 1.5rem;
    }

    .digital-img-section h2 {
        font-size: 2rem !important;
    }

    #success-story {
        margin-bottom: 25px;
        margin-top: 40px;
    }

    #tribal {
        margin-top: 25px;
    }

}