* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

html,
body {
    overflow-x: clip;
    width: 100%;
}

body {
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif !important;
}

.topbar {
    background: linear-gradient(124deg, #0296DD 0 61.5%, #242A4C 61.65% 100%);
    padding: 0;
    height: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1031;
    box-shadow: 0 5px 18px rgba(36, 42, 76, 0.18);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0));

}

.topbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(61.5% - 16px);
    width: 34px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    transform: skewX(-34deg);
    transform-origin: top;

}

.topbar .container,
.topbar .row {
    height: 100%;
}

.topbar-info-text p {
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.topbar-info-text i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 12px;
}

.topbar-info-text i.me-2 {
    margin-right: 0 !important;
}

.topbar-info-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.topbar-info-text a:hover {
    color: rgba(255, 255, 255, 0.82);
}

.topbar-contact-wrap {
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.topbar-social-links ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
    justify-content: end;
    align-items: center;
}

.topbar-social-links ul::before {
    content: "Follow Us:";
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-right: 4px;
    white-space: nowrap;
}

.topbar-social-links li a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.topbar-social-links li a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.topbar-social-links li a i {
    color: #fff;
    font-size: 13px;
}

@media (max-width: 991px) {
    .topbar {
        height: auto;
        min-height: 50px;
        padding: 8px 0;
        background: linear-gradient(135deg, #0296DD 0 100%);
    }

    .topbar::after {
        display: none;
    }

    .topbar .row {
        gap: 8px;
    }

    .topbar-contact-wrap,
    .topbar-social-links ul {
        justify-content: center;
    }

    .topbar-social-links ul {
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .topbar-info-text p {
        font-size: 13px;
    }

    .topbar-social-links ul::before {
        display: none;
    }
}

/* Transparent navbar initially */
.transparent-navbar {
    background: #fff !important;
    top: 50px;
    min-height: 76px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: top 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    z-index: 1030;
}

.transparent-navbar.scrolled {
    top: 0;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.navbar.fixed-top.scrolled {
    top: 0;
}

/* Open dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    transition: all.3s;
}

.dropdown-item:hover {
    background-color: #0296DD !important;
    color: #fff !important;
}

/* nav area */
.navbar {
    background-color: #fff !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

.navbar.fixed-top {
    top: 50px;
}

.nav-menu {
    gap: 25px;
}

.links-area ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.links-area ul a {
    text-decoration: none;
}

.links-area i {
    color: #0296DD;
    font-size: 20px;
}

.nav-link {
    font-weight: 600 !important;
    color: #000 !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    font-weight: 600 !important;
    color: #0296DD !important;

}

.navbar-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
}

/* .navbar-brand img {
    display: block;
    max-height: 48px;
    width: auto;
} */

.navbar-toggler {
    border: 0 !important;
    box-shadow: none !important;
    padding: 0.35rem 0.5rem !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* banner */
.banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 850px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(https://omahacommunications.com/wp-content/uploads/2026/05/banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.anim {
    position: relative;
}

.anim::before {
    content: "";
    position: absolute;
    background-image: url(https://omahacommunications.com/wp-content/uploads/2026/05/second-effect.png);
    bottom: 0;
    right: 0;
    width: 16%;
    height: 59%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    animation: moveLR 4s ease-in-out infinite;
}

@keyframes moveLR {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}

.banner::before {
    content: "";
    position: absolute;
    background-image: url(https://omahacommunications.com/wp-content/uploads/2026/05/blue-design.png);
    top: 0;
    left: 0;
    width: 64%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.banner::after {
    content: "";
    position: absolute;
    background-image: url(https://omahacommunications.com/wp-content/uploads/2026/05/blurr.png);
    top: 0;
    left: 0;
    width: 20%;
    height: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.banner-content::after {
    content: "";
    position: absolute;
    background-image: url(https://omahacommunications.com/wp-content/uploads/2026/05/main-slider-five-shape-2.png);
    top: -64%;
    right: 25%;
    width: 37%;
    height: 68%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

/* .effct {
    position: relative;
    overflow: hidden;
}

.effct::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;

    background: radial-gradient(circle at center,
            rgba(2, 150, 221, 0.25) 0%,
            rgba(2, 150, 221, 0.12) 30%,
            rgba(2, 150, 221, 0.05) 55%,
            rgba(2, 150, 221, 0) 75%);

     
    z-index: 1;
} */

.banner-content h1 {
    color: #fff;
    font-size: 55px;
    font-weight: 700;
}

.banner-content p {
    color: #b5b5b5;
}

@media (max-width: 1400px) {
    .banner {
        height: auto;
        min-height: 790px;
        padding: 165px 0 115px;
        background-position: 56% center;
    }

    .banner-content h1 {
        max-width: 680px;
        font-size: 50px;
        line-height: 1.16;
    }

    .banner-content p {
        max-width: 590px;
        font-size: 17px;
        line-height: 1.65;
    }

    .banner::before {
        width: 70%;
    }

    .banner::after {
        width: 18%;
        height: 48%;
    }

    .banner-content::after {
        top: -46%;
        right: 14%;
        width: 30%;
        height: 54%;
    }

    .anim::before {
        width: 14%;
        height: 48%;
    }
}

@media (max-width: 1200px) {
    .banner {
        height: auto;
        min-height: 720px;
        padding: 150px 0 105px;
        background-position: 58% center;
    }

    .banner-content h1 {
        max-width: 620px;
        font-size: 44px;
        line-height: 1.16;
    }

    .banner-content p {
        max-width: 560px;
        font-size: 16px;
        line-height: 1.65;
    }

    .banner::before {
        width: 78%;
        opacity: 0.96;
    }

    .banner::after {
        width: 18%;
        height: 42%;
    }

    .banner-content::after {
        top: -36%;
        right: 8%;
        width: 26%;
        height: 44%;
    }

    .anim::before {
        width: 14%;
        height: 42%;
    }
}

@media (max-width: 991px) {
    .banner {
        min-height: 680px;
        height: auto;
        padding: 180px 0 110px;
        align-items: flex-start;
        background-position: 62% center;
    }

    .banner .col-lg-7 {
        max-width: 680px;
    }

    .banner::before {
        width: 100%;
        opacity: 0.92;
    }

    .banner::after {
        width: 34%;
        height: 40%;
        opacity: 0.7;
    }

    .anim::before {
        width: 24%;
        height: 34%;
        opacity: 0.72;
    }

    .banner-content h1 {
        max-width: 620px;
        font-size: 40px;
        line-height: 1.18;
    }

    .banner-content p {
        max-width: 560px;
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 767px) {
    .banner {
        min-height: 620px;
        padding: 160px 0 90px;
        background-position: 68% center;
    }

    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content::after,
    .anim::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .banner {
        min-height: 560px;
        padding: 142px 0 72px;
        text-align: center;
        background-position: 72% center;
    }

    .banner .row {
        justify-content: center;
    }

    .line-anim {
        margin: 0 auto 22px;
        width: 140px;
    }

    .banner-content h1 {
        font-size: 29px;
        line-height: 1.22;
    }

    .banner-content p {
        font-size: 15px;
    }

    .banner-content .btn-primary {
        width: 100%;
        max-width: 240px;
    }

    .banner::before {
        background-size: cover;
    }

    .banner::after {
        display: none;
    }
}

@media (max-width: 380px) {
    .banner-content h1 {
        font-size: 26px;
    }
}

.btn-primary {
    position: relative;
    display: inline-block;
    padding: 16px 35px;
    color: #fff;
    background: #0296DD !important;
    border: none !important;
    font-weight: 700 !important;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all.3s;
    border-radius: 0px !important;
}

.btn-primary::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 200%;
    left: 50%;
    top: 50%;
    background-color: #242A4C !important;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all.3s;
}

.btn-primary::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 25px;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary:hover::before {
    width: 120%;
}

.btn-primary:hover {
    color: #fff;
}

.line-anim {
    position: relative;
    width: 180px;
    height: 2px;
    background: #fff;
    overflow: hidden;
    z-index: 3;
}

.line-anim span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #0296DD;
    transform: translateX(-50%);
    animation: lineMove 2s ease-in-out infinite;
}

@keyframes lineMove {
    0% {
        width: 60px;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 60px;
    }
}

/* feature */
.feature {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #f5f7fa;
    background-image: url(https://omahacommunications.com/wp-content/uploads/2026/05/feature-four-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.feature::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 12%;
    width: 88px;
    height: 70px;
    background-image: url(https://omahacommunications.com/wp-content/uploads/2026/05/feature-four-shape.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    animation: shapemove 1s ease-in-out infinite alternate;
}

@keyframes shapemove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(30px);
    }
}

.feature-row {
    row-gap: 32px;
    overflow: visible;
}

.feature-card {
    min-height: 228px;
    margin-left: 56px;
    padding: 36px 36px 34px 82px;
    position: relative;
    overflow: visible;
    background-color: #242A4C;
    box-shadow: 0 18px 35px rgba(7, 20, 67, 0.12);
}

.feature-card::before,
.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(24, 39, 88, 0.42);
    transform: skewX(-18deg);

}

.feature-card::before {
    right: 36%;
    width: 78px;
}

.feature-card::after {
    right: 13%;
    width: 58px;
    background: rgba(31, 48, 102, 0.34);
}

.feature-content {
    position: relative;
    display: flex;
    height: 100%;
    z-index: 1;
}

.feature-icon {
    width: 110px;
    height: 110px;
    background-color: #242A4C;
    border: 8px solid #1F2A52;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #0296DD;
    transition: 300ms;
    position: absolute;
    left: -138px;
    top: 0;
    bottom: 0;
    margin: auto;
    box-shadow: 0 0 0 8px rgba(31, 42, 82, 0.28);
}

.feature-icon i {
    line-height: 1;
}

.feature-card:hover .feature-icon {
    color: #fff;
    background-color: #0296DD;
    border-color: #182758;
}

.feature-text {
    position: relative;
    z-index: 1;
}

.feature-text h3 {
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 22px;
}

.feature-text p {
    color: #fff;
    max-width: 300px;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 700;
    margin-bottom: 0;
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .feature {
        padding: 88px 0;
    }

    .feature-card {
        margin-left: 48px;
        padding: 34px 30px 32px 78px;
    }

    .feature-icon {
        width: 100px;
        height: 100px;
        left: -128px;
        font-size: 31px;
    }

    .feature-text h3 {
        font-size: 22px;
    }

    .feature-text p {
        font-size: 17px;
        line-height: 1.65;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .feature {
        padding: 82px 0;
    }

    .feature-card {
        min-height: 220px;
        margin-left: 42px;
        padding: 32px 24px 30px 68px;
    }

    .feature-icon {
        width: 96px;
        height: 96px;
        min-width: 96px;
        left: -118px;
        font-size: 29px;
        border-width: 7px;
    }

    .feature-text h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .feature-text p {
        font-size: 15px;
        line-height: 1.65;
    }
}

@media (max-width: 991px) {
    .feature {
        padding: 72px 0;
    }

    .feature-card {
        max-width: 680px;
        min-height: 0;
        margin-left: 58px;
        padding: 34px 34px 32px 78px;
    }

    .feature-icon {
        width: 104px;
        height: 104px;
        left: -132px;
        font-size: 32px;
    }

    .feature-text h3 {
        font-size: 23px;
        margin-bottom: 14px;
    }

    .feature-text p {
        max-width: none;
        font-size: 16px;
        line-height: 1.65;
    }
}

@media (max-width: 767px) {
    .feature {
        padding: 66px 0;
    }

    .feature-card {
        margin-left: 48px;
        padding: 30px 28px 28px 70px;
    }

    .feature-icon {
        width: 92px;
        height: 92px;
        left: -112px;
        font-size: 28px;
        border-width: 7px;
    }

    .feature-text h3 {
        font-size: 21px;
    }

    .feature-text p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .feature {
        padding: 56px 0;
        overflow: visible;
    }

    .feature::after {
        display: none;
    }

    .feature-card {
        margin-left: 0;
        margin-top: 48px;
        padding: 76px 22px 28px;
        text-align: center;
    }

    .feature-card::before,
    .feature-card::after {
        display: none;
    }

    .feature-content {
        display: block;
        position: static;
    }

    .feature-icon {
        left: 0;
        right: 0;
        top: -54px;
        bottom: auto;
        width: 96px;
        height: 96px;
        margin: 0 auto;
        font-size: 29px;
        border-width: 7px;
    }

    .feature-text h3 {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .feature-text p {
        max-width: none;
        font-size: 15px;
        line-height: 1.6;
        font-weight: 600;
    }
}

@media (max-width: 380px) {
    .feature-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .feature-text h3 {
        font-size: 19px;
    }

    .feature-text p {
        font-size: 14px;
    }
}

/* about us */
.about-us {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.about-us .container {
    max-width: 1130px;
}

.about-one-image {
    position: relative;
    padding-top: 34px;
    padding-bottom: 64px;
}

.about-one-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -68px;
    width: 92px;
    height: 72px;
    background-image: url(https://omahacommunications.com/wp-content/uploads/2026/05/feature-four-shape.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    animation: aboutShapeMove 2s ease-in-out infinite alternate;
    z-index: 2;
}

@keyframes aboutShapeMove {
    0% {
        transform: translateX(0) rotate(280deg);
    }

    100% {
        transform: translateX(10px) rotate(280deg);
    }
}

.about-one-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 28px;
    width: 92px;
    height: 16px;
    background: #0296DD;
    box-shadow: -92px 28px 0 #242A4C;
    z-index: 1;
}

.about-one-image img,
.about-second-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-one-image img {
    height: 402px;
}

.about-experience {
    width: 188px;
    min-height: 188px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    background: #f9fbff;
    border: 1px dashed #0296DD;
    box-shadow: 0 20px 45px rgba(7, 20, 67, 0.08);
}

.about-experience::before {
    content: "";
    width: 92px;
    height: 92px;
    margin-bottom: 14px;
    border: 5px solid #0296DD;
    border-right-color: transparent;
    border-radius: 50%;
}

/* .about-experience::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 6px 0 0 #0296DD, inset -6px 0 0 #0296DD;
    clip-path: polygon(0 0, 36px 0, 36px 8px, 0 8px, 0 100%, 36px 100%, 36px calc(100% - 8px), 0 calc(100% - 8px), 0 0, 100% 0, calc(100% - 36px) 0, calc(100% - 36px) 8px, 100% 8px, 100% 100%, calc(100% - 36px) 100%, calc(100% - 36px) calc(100% - 8px), 100% calc(100% - 8px));
     
} */

.about-experience h2 {
    position: absolute;
    top: 60px;
    color: #242A4C;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    margin: 0;
}

.about-experience p {
    color: #242A4C;
    font-size: 17px;
    font-weight: 800;
    margin: 0;
}

.about-second-image img {
    height: 320px;
}

.textt-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0296DD !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.textt-primary::before {
    content: "";
    width: 14px;
    height: 2px;
    background: #242A4C;
}

.textt-primary::after {
    content: "";
    width: 14px;
    height: 2px;
    background: #242A4C;
}

.about-content h1 {
    color: #242A4C;
    font-size: 36px;
    line-height: 1.18;
    font-weight: 800;
    margin-bottom: 22px;
}

.about-content>p {
    color: #6d7280;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 26px;
}

.line-anime {
    position: relative;
    width: 100%;
    height: 2px;
    background: #e6e8ef;
    overflow: hidden;
    z-index: 3;
    margin-bottom: 32px;
}

.line-anime span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #0296DD;
    transform: translateX(-50%);
    animation: lineMovee 3.5s ease-in-out infinite;
}

.about-content .row {
    row-gap: 22px;
    margin-bottom: 34px;
}

.about-content .d-flex {
    align-items: flex-start;
    gap: 16px;
}

.about-content .feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    position: static;
    margin: 0;
    border: 0;
    box-shadow: none;
    background: #f4f6fb;
    color: #0296DD;
    font-size: 17px;
}

.about-content h4 {
    color: #242A4C;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 7px;
}

.about-content .d-flex p {
    color: #6d7280;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
    margin-bottom: 0;
}

.about-content .btn-primary {
    background: #0296DD !important;
    padding: 15px 32px !important;
    font-size: 13px;
    white-space: nowrap;
}

.about-content .btn-primary::before {
    background-color: #242A4C !important;
}

@keyframes lineMovee {
    0% {
        width: 60px;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 60px;
    }
}

@media (max-width: 1199px) {
    .about-us {
        padding: 86px 0;
    }

    .about-one-image img {
        height: 370px;
    }

    .about-experience {
        width: 170px;
        min-height: 170px;
    }

    .about-experience::before {
        width: 82px;
        height: 82px;
    }

    .about-experience h2 {
        top: 54px;
    }

    .about-second-image img {
        height: 290px;
    }

    .about-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .about-us {
        padding: 72px 0;
    }

    .about-us .col-lg-6:first-child {
        max-width: 680px;
        margin: 0 auto;
    }

    .about-us .col-lg-6:first-child>.row {
        align-items: flex-start;
        flex-wrap: nowrap;
    }

    .about-us .col-lg-6:first-child .col-lg-4 {
        flex: 0 0 38%;
        max-width: 38%;
    }

    .about-us .col-lg-6:first-child .col-lg-8 {
        flex: 0 0 62%;
        max-width: 62%;
    }

    .about-content {
        max-width: none;
        margin-top: 42px;
        margin-left: 0;
        text-align: left;
    }

    .about-content h1 {
        max-width: 620px;
    }

    .about-content>p {
        max-width: 680px;
    }
}

@media (max-width: 767px) {
    .about-us {
        padding: 64px 0;
    }

    .about-us .col-lg-6:first-child>.row {
        row-gap: 24px;
    }

    .about-one-image {
        padding-top: 30px;
        padding-bottom: 46px;
    }

    .about-one-image::before {
        left: -18px;
        width: 78px;
        height: 62px;
    }

    .about-one-image::after {
        right: 0;
        bottom: 18px;
        width: 74px;
        height: 14px;
        box-shadow: -74px 24px 0 #242A4C;
    }

    .about-one-image img {
        height: 330px;
    }

    .about-experience {
        width: 158px;
        min-height: 158px;
        margin-bottom: 20px;
    }

    .about-experience::before {
        width: 76px;
        height: 76px;
        margin-bottom: 12px;
    }

    .about-experience h2 {
        top: 50px;
        font-size: 22px;
    }

    .about-experience p {
        font-size: 15px;
    }

    .about-second-image img {
        height: 250px;
    }

    .about-content .row {
        row-gap: 20px;
    }
}

@media (max-width: 575px) {
    .about-us {
        padding: 56px 0;
    }

    .about-us .col-lg-6:first-child {
        max-width: 390px;
    }

    .about-us .col-lg-6:first-child>.row {
        flex-wrap: wrap;
    }

    .about-us .col-lg-6:first-child .col-lg-4,
    .about-us .col-lg-6:first-child .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-one-image {
        padding-top: 26px;
        padding-bottom: 56px;
    }

    .about-one-image::before {
        left: 8px;
        top: 0;
        width: 68px;
        height: 54px;
    }

    .about-one-image::after {
        right: 0;
        bottom: 28px;
    }

    .about-one-image img,
    .about-second-image img {
        height: auto;
        max-height: none;
    }

    .about-experience {
        width: 100%;
        min-height: 160px;
        margin-bottom: 24px;
    }

    .about-experience h2 {
        top: 50px;
    }

    .about-content {
        margin-top: 34px;
    }

    .textt-primary {
        font-size: 13px;
    }

    .about-content h1 {
        font-size: 28px;
        line-height: 1.22;
    }

    .about-content>p {
        font-size: 14px;
    }

    .about-content .d-flex {
        gap: 14px;
    }

    .about-content .btn-primary {
        width: 100%;
        text-align: center;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}

@media (max-width: 380px) {
    .about-content h1 {
        font-size: 25px;
    }

    .about-content .d-flex {
        align-items: center;
    }

    .about-content h4 {
        font-size: 16px;
    }

    .about-content .d-flex p {
        font-size: 13px;
    }
}

/* why choose us */
.choose-us {
    width: 100%;
    min-height: 100%;
    padding: 92px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #242A4C;
    background-image: linear-gradient(135deg, rgba(36, 42, 76, 0.96), rgba(7, 20, 67, 0.92)), url(https://omahacommunications.com/wp-content/uploads/2026/05/choose-us.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.choose-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 12%, transparent 12.2% 100%),
        linear-gradient(300deg, rgba(2, 150, 221, 0.18) 0 18%, transparent 18.2% 100%);
}

/* .choose-us::after {
    content: "";
    position: absolute;
    top: 42px;
    right: 8%;
    width: 84px;
    height: 68px;
    background-image: url(https://omahacommunications.com/wp-content/uploads/2026/05/feature-four-shape.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    animation: aboutShapeMove 2.3s ease-in-out infinite alternate;
     
} */

.choose-us .container {
    position: relative;
    z-index: 1;
}

.choose-us .textt-primary {
    color: #0296DD !important;
    justify-content: center;
}

.choose-us .textt-primary::before {
    background: #fff;
}

.choose-us .textt-primary::after {
    background: #fff;
}

.choose-us h2 {
    color: #fff;
    max-width: 780px;
    margin: 0 auto 18px;
    font-size: 44px;
    line-height: 1.16;
    font-weight: 800;
}

.choose-us .col-lg-8>p {
    max-width: 720px;
    margin: 0 auto 42px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 600;
}

.choose-us .col-lg-3 {
    margin-bottom: 24px;
}

.choose-us .d-flex {
    height: 100%;
    min-height: 210px;
    padding: 30px 24px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.choose-us .d-flex::before {
    content: "";
    position: absolute;
    top: 0;
    right: -42px;
    width: 86px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    transform: skewX(-18deg);
}

.choose-us .d-flex:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(2, 150, 221, 0.55);
}

.choose-us .feature-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    position: static;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
    background: #0296DD;
    color: #fff;
    font-size: 24px;
    z-index: 1;
}

.choose-us h4 {
    color: #fff;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 10px;
}

.choose-us .d-flex p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 0;
}




@media (max-width: 991px) {
    .choose-us {
        padding: 76px 0;
    }

    .choose-us h2 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .choose-us {
        padding: 60px 0;
    }

    .choose-us::after {
        width: 64px;
        height: 52px;
        right: 16px;
        top: 24px;
    }

    .choose-us h2 {
        font-size: 29px;
    }

    .choose-us .col-lg-8>p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .choose-us .d-flex {
        min-height: auto;
        padding: 26px 20px;
    }
}

/* services */
.services {
    padding: 96px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    top: 54px;
    left: 38px;
    width: 24px;
    height: 24px;
    border: 2px solid #0296DD;
    border-radius: 50%;
    opacity: 0.65;
}

.services::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: #0296DD;
    border-radius: 50%;
    opacity: 0.35;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.services-content {
    max-width: 650px;
}

.services-content h2 {
    color: #242A4C;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 0;
}

.services-btn {
    flex: 0 0 auto;
    background: #0296DD !important;
    padding: 17px 36px !important;
}

.service-row {
    row-gap: 30px;
}

.service-card {
    height: 100%;
    padding: 20px 20px 38px;
    background: #f4f7fb;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before,
.service-card::after {
    content: "";
    position: absolute;
    z-index: 0;
}

.service-card::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100%;
    background: #0296DD;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.45s ease;
}

.service-card::after {
    right: 22px;
    bottom: -42px;
    width: 88px;
    height: 170px;
    background: rgba(2, 150, 221, 0.08);
    transform: skewX(-42deg);
    transition: background-color 0.45s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(7, 20, 67, 0.12);
}

.service-card:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.service-card:hover::after {
    background: rgba(255, 255, 255, 0.18);
}

.service-box {
    position: relative;
    margin-bottom: 52px;
    z-index: 1;
}

.service-box img {
    width: 100%;
    height: 168px;
    display: block;
    object-fit: cover;
}

.service-icon {
    width: 72px;
    height: 72px;
    position: absolute;
    left: 20px;
    bottom: -36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #242A4C;
    background: #fff;
    border: 6px solid #0296DD;
    border-radius: 50%;
    font-size: 27px;
    box-shadow: 0 0 0 5px rgba(36, 42, 76, 0.08);
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:hover .service-icon {
    color: #fff;
    background: #242A4C;
    border-color: #242A4C;
}

.service-card:hover .service-body h3,
.service-card:hover .service-body p {
    color: #fff;
}

.service-body {
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.service-body h3 {
    color: #242A4C;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-body p {
    color: #6d7280;
    min-height: 100px;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
    margin-bottom: 24px;
}

.service-link {
    background: #242A4C !important;
    padding: 14px 30px !important;
    font-size: 14px !important;
}

.service-link:hover {
    color: #242A4C !important;
}

.service-link::before {
    background-color: #fff !important;
}

@media (max-width: 1199px) {
    .services-content h2 {
        font-size: 38px;
    }

    .service-box img {
        height: 205px;
    }

    .service-body {
        padding: 0 18px;
    }

    .service-body h3 {
        font-size: 22px;
    }

    .service-body p {
        min-height: 74px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .services {
        padding: 76px 0;
    }

    .services-header {
        display: block;
        margin-bottom: 38px;
    }

    .services-btn {
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .services {
        padding: 60px 0;
    }

    .services::before,
    .services::after {
        display: none;
    }

    .services-content h2 {
        font-size: 30px;
    }

    .service-card {
        padding: 16px 16px 32px;
    }

    .service-box img {
        height: 190px;
    }

    .service-body {
        padding: 0 8px;
    }

    .service-body h3 {
        font-size: 20px;
    }

    .service-body p {
        min-height: auto;
    }

    .services-btn,
    .service-link {
        width: 100%;
        text-align: center;
    }
}

/* testimonial */
.testimonmial {
    padding: 88px 0;
}

.testi {
    position: relative;
}

.testimonmial {
    margin-bottom: 48px;
}

.testimonmial-content .textt-primary {
    color: #0296DD !important;
}

.testimonmial-content h2 {
    color: #242A4C;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.testimonial-swiper {
    padding: 0 0 30px;
}

.testi::before {
    content: "";
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 48%;
    height: 188px;
    background: #0296DD;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.testimonial-card {
    /* min-height: 448px; */
    height: 100%;
    padding: 76px 11%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(120deg, transparent 0 56%, rgba(255, 255, 255, 0.06) 56% 66%, transparent 66% 100%),
        #242A4C;
}

.testimonial-card h3 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 12px;
}

.testimonial-card span {
    font-weight: 700;
    margin-bottom: 34px;
}

.testimonial-card p {
    max-width: 680px;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 700;
    margin-bottom: 34px;
}

.testi-stars {
    color: #ffc107;
    letter-spacing: 3px;
}

.testimonial-img {
    width: 100%;
    height: 448px !important;
    object-fit: cover;
    /* filter: brightness(0.65) sepia(0.15) hue-rotate(178deg) saturate(1.25); */
}

.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
    top: auto;
    bottom: 0;
    width: 52px;
    height: 52px;
    color: #242A4C;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(7, 20, 67, 0.12);
}

.testimonial-swiper .swiper-button-prev {
    left: auto;
    right: 88px;
}

.testimonial-swiper .swiper-button-next {
    right: 30px;
}

.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 800;
}

.testimonial-swiper .swiper-pagination {
    display: none;
}

@media (max-width: 991px) {
    .testimonmial {
        padding: 70px 0;
    }

    .testimonial-card,
    .testimonial-img {
        min-height: auto;
        height: auto;
    }

    .testimonial-card {
        padding: 52px 28px;
    }

    .testimonial-img {
        max-height: 360px;
    }
}

@media (max-width: 575px) {
    .testimonmial-content h2 {
        font-size: 30px;
    }

    .testimonial-card::before {
        display: none;
    }

    .testimonial-card h3 {
        font-size: 26px;
    }

    .testimonial-card p {
        font-size: 15px;
    }
}

.brands {
    padding: 100px 0;
    background-color: #242A4C;
    background-image: linear-gradient(135deg, rgba(36, 42, 76, -0.22), rgba(7, 20, 67, 0.72)), url(https://omahacommunications.com/wp-content/uploads/2026/05/newsletter.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.brand-row {
    row-gap: 22px;
}

.brand-box {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-box img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-box:hover img {
    opacity: 1;
    transform: translateY(-4px);
}

.brand-box,
.stats-card {
    will-change: transform;
}

@media (max-width: 575px) {
    .brands {
        padding: 38px 0;
    }

    .brand-box {
        height: 76px;
    }

    .brand-box img {
        max-height: 48px;
    }
}

/* stats */
.stats-section {
    padding: 36px 0;
    background: #f4f7fb;
}

.stats-row {
    position: relative;
    top: -100px;
}

.stats-card {
    min-height: 136px;
    height: 100%;
    padding: 30px 28px 28px 66px;
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 14px 35px rgba(7, 20, 67, 0.08);
    transition: all.3s;
}

.stats-card:hover {
    top: -10px;
    transition: all.3s;
    box-shadow: 0 14px 35px rgb(7 20 67 / 48%);
}

.stats-icon {
    width: 64px;
    height: 64px;
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #242A4C;
    border-radius: 50%;
    font-size: 25px;
}

.stats-card h3 {
    color: #0296DD;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 12px;
}

.stats-card p {
    color: #242A4C;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .stats-card {
        margin-left: 32px;
    }
}

@media (max-width: 575px) {
    .stats-card {
        margin-left: 0;
        padding-left: 92px;
    }

    .stats-icon {
        left: 18px;
    }
}

/* contact */
/* contact */
.contact-behind {
    background-color: #E7F5F5;
    background-image: linear-gradient(110deg, rgba(231, 245, 245, -0.26) -.9%, rgba(2, 150, 221, 0.66) 101.13%), url(https://omahacommunications.com/wp-content/uploads/2026/05/feature-four-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 10px solid #242A4C;
    backdrop-filter: blur(570px);
    margin: 100px 40px;
    padding: 50px 0;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.content4 img {
    background-color: #242A4C;
    width: 70px;
    padding: 20px;
    border-radius: 100px;
}

.contactUSPage {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contactUSPage::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(https://omahacommunications.com/wp-content/uploads/2026/05/feature-four-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.08;
    pointer-events: none;
}

.contactUSPage>* {
    position: relative;
    z-index: 1;
}

.content5 {
    padding: 10px;
}

.content5 h4 {
    font-size: 16px;
    color: #242A4C;
    font-weight: 400;
}

.content5 h3 {
    font-size: 17px;
    font-weight: 600;
}

.contact-section {
    position: relative;
}

/* .contact-section::before {
    content: "";
    position: absolute;
    left: -34px;
    top: -38px;
    width: 120px;
    height: 120px;
    background-image: url(https://omahacommunications.com/wp-content/uploads/2026/05/blurr.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.75;
    pointer-events: none;
} */

.contact-set {
    padding: 100px;
}

.contact-section h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #242A4C;
    margin-bottom: 5px;
}

.form-control {
    display: block;
    color: #fff !important;
    background-color: #242A4C !important;
}

.form-control::placeholder {
    color: #fff !important;
}

.form-select {
    color: #fff !important;
    background-color: #242A4C !important;
}

option {
    background-color: #fff;
    color: #242A4C;
}


.contact-section h2 {
    font-size: 40px;
    font-weight: 600;
    color: #242A4C;
    margin-bottom: 20px;
}


/* footer */
footer {
    background-color: #242A4C;
    position: relative;
    padding-top: 25px;
}

/* footer:after {
    content: "";
    top: 0;
    position: absolute;
    background-image: url(https://omahacommunications.com/wp-content/uploads/2026/05/clouds_2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
} */

.footer-box h2 {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 17px;
    color: var(--s-white);
}

.footer-box p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}

.footer-box h3 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
}

.footer-box ul li {
    margin-bottom: 0.5rem;
}

.footer-box li a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: all.3s;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    transition: all.3s;

}

.footer-box a {
    text-decoration: none;
    color: #fff;
}

.footer-box ul li a:hover {
    color: #fff;
    letter-spacing: 1px;
    transition: all.3s;
}

.footer1stRow {
    padding: 2rem 0 1.5rem 0;
    position: relative;
    z-index: 1;
    /* border-top: 1px solid #2525251e; */
}

.socialmediaicon li a i {
    background-color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 8px;
    padding: 0;
    color: #112F4E;
    transition: 0.3s;
    border-radius: 100px;
}

.socialmediaicon ul {
    list-style: none;
    padding: 0;
}

.socialmediaicon ul li a i:hover {
    transform: rotate(360deg);
    background-color: #fff;
    color: #112F4E;
}

.SocialIcon h3 {
    font-size: 17px;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.copyRight {
    border-top: 1px solid #ffffff5b;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.copyRight a {
    /* text-decoration: none; */
    color: #fff;
}

.copyRight p {
    color: #fff;
}

/* Back To Top CSS Start Here */
.button {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #0296DD;
    cursor: pointer;
    border: 2px solid var(--s-primary);
    /* mix-blend-mode: multiply;     */
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.btn-txt {
    z-index: 10;
}

.type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: #242A4C;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
}

.button:hover {
    box-shadow: 1px 1px 200px var(--s-white);
    color: #fff;
    border: none;
}

.type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
}

/* cursor */
.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    --dot-x: 0px;
    --dot-y: 0px;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border: 1.5px solid #0296DD;
    border-radius: 50%;
    background-color: transparent;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s;
}

.cb-cursor::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: #0298dd96;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + var(--dot-x)), calc(-50% + var(--dot-y)));
    opacity: 0.9;
    transition: width 0.28s ease, height 0.28s ease, opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-cursor.is-idle::before {
    width: 18px;
    height: 18px;
    opacity: 0.35;
    transform: translate(-50%, -50%);
}


/* about us page */
.other-banner {
    background-image: linear-gradient(rgb(0 0 0 / 58%), rgb(0 0 0 / 32%)), url(https://omahacommunications.com/wp-content/uploads/2026/05/banner-2.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-content {}

.new-content h3 {
    font-size: 55px;
    color: #fff;
    font-weight: 800;
}

.breadcrumb-item {
    font-weight: 700;
    color: #fff !important;
}

.breadcrumb-item a {
    color: #fff !important;
    font-weight: 700;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

/* about section 2 */
.about-page {
    position: relative;
    padding: 100px 0 110px;
    background: #fff;
    overflow: hidden;
}


.about-img::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: 118px;
    width: 310px;
    height: 210px;
    background: url(https://omahacommunications.com/wp-content/uploads/2026/05/Business-Phone-Systems.png) center / contain no-repeat;
    pointer-events: none;
    animation: router 4s ease-in-out infinite;
}

@keyframes router {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-35px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-img {
    position: relative;
    min-height: 505px;
    padding: 48px 0 50px;
}

.about-img::before {
    position: absolute;
    content: "";
    left: 72px;
    top: 76px;
    width: 185px;
    height: 428px;
    border: 4px solid #0296DD;
    z-index: 2;
}

.about-img::after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -4px;
    width: 335px;
    height: 215px;
    background: url(https://omahacommunications.com/wp-content/uploads/2026/05/remote-wifi.png) center / contain no-repeat;
    z-index: 3;
}

.about-img img {
    position: relative;
    display: block;
    object-fit: cover;
}

.about-img img:first-child {
    position: absolute;
    left: 0;
    top: 108px;
    width: 220px;
    height: 365px;
    z-index: 3;
}

.about-img img:last-child {
    width: 400px;
    height: 482px;
    margin-left: 100px;
    z-index: 1;
}

.about-page .about-content {
    max-width: 610px;
    margin-left: auto;
}

.about-page .about-content h2 {
    color: #242A4C;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
}

.about-page .about-content>p {
    color: #81868c;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.what-we-do-body {
    border-bottom: 1px solid var(--divider-color);
    /* margin-bottom: 40px;
    padding-bottom: 40px; */
}

.what-we-do-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.what-we-do-body ul li {
    background-image: url(https://omahacommunications.com/wp-content/uploads/2026/05/icon-check.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 24px auto;
    line-height: 1.5em;
    margin-bottom: 20px;
    padding-left: 35px;
}

.what-we-do-body ul li:last-child {
    margin-bottom: 0;
}



@media (max-width: 1199px) {
    .about-img img:first-child {
        width: 205px;
    }

    .about-img img:last-child {
        width: 365px;
        margin-left: 88px;
    }

    .about-page .about-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .about-page {
        padding: 76px 0 84px;
    }

    .about-img {
        max-width: 570px;
        margin: 0 auto 34px;
    }

    .about-page .about-content {
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .about-page {
        padding: 58px 0 66px;
    }

    .about-img {
        min-height: 470px;
        padding-top: 26px;
    }

    .about-img::before {
        left: 62px;
        top: 50px;
        width: 160px;
        height: 350px;
    }

    .about-img::after {
        right: -48px;
        bottom: 16px;
        width: 260px;
    }

    .about-img img:first-child {
        top: 82px;
        width: 46%;
        height: 300px;
    }

    .about-img img:last-child {
        width: 76%;
        height: 390px;
        margin-left: 20%;
    }

    .about-page .about-content h2 {
        font-size: 32px;
    }

    .about-page .about-content>p {
        font-size: 15px;
    }

    .about-page .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* service detail page */
.services1 {
    position: relative;
    padding: 100px 0 82px;
    background: #fff;
    overflow: hidden;
}

.services1::before {
    content: "";
    position: absolute;
    right: -130px;
    top: 64px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(2, 150, 221, 0.08);
}

.services-content1 {
    position: relative;
    z-index: 1;
}

.services-content1 h3 {
    color: #242A4C;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
}

.service-kicker {
    color: #0296DD;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
}

.services-content1 p,
.innerServicesPage p,
.accordion-body {
    color: #6d7280;
    font-size: 16px;
    line-height: 1.8;
}

.services-image {
    position: relative;
    padding: 22px;
}

.services-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 390px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 24px 55px rgba(36, 42, 76, 0.14);
}

.aboutSection {
    position: relative;
    padding: 90px 0;
    background: #f4f7fb;
}

.allServicesList {
    position: static !important;
    top: auto !important;
}

.aboutSection .row {
    align-items: flex-start !important;
}

.sticky-services {
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Mobile fix */
@media (max-width: 992px) {
    .sticky-services {
        position: static;
    }
}

/* .allServicesList.service-list-scroll {
    position: static !important;
    top: auto !important;
    transform: none !important;
} */

.allServicesListBody {
    padding: 34px 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(7, 20, 67, 0.08);
}

.allServicesListBody h2,
.innerServicesPage h1,
.titleBar h3 {
    color: #242A4C;
}

.allServicesListBody h2 {
    font-size: 28px;
}

.revSite-btn {
    color: #242A4C;
    font-weight: 700;
    background: #f4f7fb;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.revSite-btn:hover,
.revSite-btn.active {
    color: #fff;
    background: #0296DD;
    border-left-color: #242A4C;
}

.innerServicesPage {
    padding: 42px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(7, 20, 67, 0.08);
}

.innerServicesPage h1 {
    font-size: 34px;
    line-height: 1.18;
    margin-bottom: 18px;
}

.innerServicesPage .what-we-do-body {
    margin-top: 18px;
    margin-bottom: 0;
}

.wifi-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.wifi-proof-item,
.wifi-detail-card {
    background: #f4f7fb;
    border: 1px solid rgba(36, 42, 76, 0.08);
    padding: 18px;
}

.wifi-proof-item span,
.wifi-detail-card h3 {
    display: block;
    color: #242A4C;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}

.wifi-proof-item p,
.wifi-detail-card p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.65;
}

.wifi-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 26px 0;
}

.wifi-story-block {
    padding-top: 34px;
    margin-top: 34px;
    border-top: 1px solid rgba(36, 42, 76, 0.12);
}

.wifi-story-block h2,
.wifi-cta-panel h2 {
    color: #242A4C;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.wifi-story-block strong {
    color: #242A4C;
}

.wifi-check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.wifi-check-list li {
    position: relative;
    color: #6d7280;
    line-height: 1.75;
    padding-left: 30px;
    margin-bottom: 12px;
}

.wifi-check-list strong {
    color: #242A4C;
}

.wifi-cta-panel {
    margin-top: 36px;
    padding: 30px;
    background: #242A4C;
}

.wifi-cta-panel h2,
.wifi-cta-panel p {
    color: #fff;
}

.wifi-cta-panel p {
    opacity: 0.9;
}

.fq-section {
    padding: 96px 0;
    background: #fff;
}

.FAQs-box {
    min-height: 520px;
    background-image: linear-gradient(rgba(36, 42, 76, 0.25), rgba(36, 42, 76, 0.25)), url(https://omahacommunications.com/wp-content/uploads/2026/05/banner.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
}

.titleBar h6 {
    color: #0296DD;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.titleBar h3 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
}

.accordion-button {
    color: #242A4C !important;
    font-weight: 700;
    background: #f4f7fb !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
    background: #0296DD !important;
}

.accordion-body {
    background: #fff;
    border: 1px solid rgba(36, 42, 76, 0.08);
    border-top: 0;
}

.services1,
.services-image,
.allServicesList,
.innerServicesPage,
.FAQs-box,
.accordion-item {
    will-change: transform;
}

@media (max-width: 991px) {

    .services1,
    .aboutSection,
    .fq-section {
        padding: 70px 0;
    }

    .services-content1 h3,
    .innerServicesPage h1,
    .titleBar h3 {
        font-size: 30px;
    }

    .wifi-proof-grid,
    .wifi-detail-grid {
        grid-template-columns: 1fr;
    }

    .allServicesList {
        position: static;
    }
}

@media (max-width: 575px) {

    .services1,
    .aboutSection,
    .fq-section {
        padding: 56px 0;
    }

    .services-image {
        padding: 12px;
    }

    .services-image::before {
        transform: translate(8px, 8px);
    }

    .services-image img,
    .FAQs-box {
        min-height: 300px;
    }

    .innerServicesPage {
        padding: 28px 20px;
    }

    .wifi-story-block h2,
    .wifi-cta-panel h2 {
        font-size: 24px;
    }

    .wifi-cta-panel {
        padding: 24px 18px;
    }
}

/* our mission */
.mission {
    width: 100%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0;
    background-image: linear-gradient(135deg, rgba(36, 42, 76, 0.95) 0%, rgba(36, 42, 76, 0.76) 100%), url(https://omahacommunications.com/wp-content/uploads/2026/05/bg-image.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.mission-content h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0296DD;
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: 0.18em;
}

.mission-content h3 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.12;
}

.mission-content p {
    margin-top: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.85;
}

.mission-box {
    background-color: rgba(255, 255, 255, 0.96);
    margin-top: 0;
    min-height: 100%;
    margin-bottom: 0;
    padding: 34px 28px;
    gap: 10px;
    border-radius: 26px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.mission-box-content h3 {
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 25px;
    margin-top: 25px;
    letter-spacing: 1px;

}

.mission-box-content h5 {
    margin-top: 0;
    font-size: 14px;
    margin-bottom: 0rem;
    color: #5d7381;
    font-weight: 500;
    line-height: 1.7;

}

.work-para {
    text-align: center;
}

@media (min-width: 1201px) and (max-width: 1400px) {

    .services,
    .about-us,
    .testimonmial {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .services-content h2 {
        font-size: 40px;
    }

    .service-box img {
        height: 220px;
    }

    .stats-row {
        top: -82px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .container {
        max-width: 960px !important;
    }

    .section-title p {
        font-size: 14px;
    }

    .about1 {
        padding: 70px 0;
    }

    .services {
        padding: 82px 0;
    }

    .about-us {
        padding: 82px 0;
    }

    .services-header {
        gap: 22px;
    }

    .stats-row {
        top: -72px;
    }

    .contact-behind {
        margin: 82px 24px;
    }
}


@media(max-width:992px) {

    .about-us h4 {
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        color: #D48742;
        margin-bottom: 15px;
        margin-top: 40px;
    }

    .about-image img {
        height: 420px !important;
    }

    .mission {
        padding: 70px 0;
    }
}

@media(max-width:767px) {
    .about1 {
        padding: 60px 0;
    }

    .aboutSection {
        /* margin-top: 100px; */
        padding: 20px;
    }

    .about-image img {
        height: 320px !important;
        border-radius: 20px;
    }

    .black-bg {
        left: -10px;
        top: 45px;
        border-radius: 20px;
    }

    .mission {
        padding: 60px 0;
    }

    .mission-box {
        padding: 28px 22px;
        border-radius: 20px;
    }
}

.process-box {
    background-color: #242A4C;
    color: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.process-box h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
    margin-bottom: 14px;
}

.process-box h2 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 18px;
    color: #fff;
}

.process-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.process-gap {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfe 100%);
}

.process-gap h3 {
    color: #242A4C;
    font-size: 40px;
    line-height: 1.15;
}

.step-box {
    height: 100%;
    padding: 34px 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(6, 43, 61, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.step-box h4 {
    margin: 20px 0 12px;
    color: #242A4C;
    font-size: 22px;
}

.step-box p {
    margin: 0;
    color: #5d7381;
    line-height: 1.75;
}

@media(max-width:992px) {
    .process-box {
        padding: 36px 28px;
    }

    .process-gap {
        padding: 70px 0;
    }
}

@media(max-width:767px) {
    .process-box {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .process-gap {
        padding: 60px 0;
    }

    .step-box {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .step-box h4 {
        font-size: 20px;
    }
}


/* responsive */
@media(max-width:767px) {
    .new-content h3 {
        font-size: 30px;
        color: rgb(255, 255, 255);
        font-weight: 800;
    }
}

@media(max-width:500px) {
    .new-content h3 {
        font-size: 25px;
        color: rgb(255, 255, 255);
        font-weight: 800;
    }
}

#contact .row {
    align-items: flex-start;
}

.new-stick {
    position: sticky;
    top: 20px;
    height: fit-content;
    align-self: flex-start;
}

#contact,
.contact-behind,
.container {
    overflow: visible !important;
}

.contact-image-wrap {
    position: relative;
    isolation: isolate;
    max-width: 500px;
    width: 100%;
    padding: 18px;
}

.contact-image-wrap::before {
    content: "";
    position: absolute;
    inset: 9% 2% 4% 14%;
    background: rgba(33, 107, 177, 0.432);
    border-radius: 28px;
    transform: rotate(-4deg);
    z-index: -2;
}

.contact-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(33, 107, 177, 0.432);
    border-radius: 30px;
    transform: rotate(3deg);
    z-index: -1;
}

.contact-image-wrap img {
    display: block;
    width: 100%;
    border: 8px solid rgba(255, 255, 255, 0.95);
    border-radius: 26px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-image-wrap:hover img {
    transform: translateY(-6px);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
}

@media (max-width: 767px) {

    .contact-image-wrap {
        max-width: 420px;
        margin-top: 10px;
        padding: 12px;
    }

    .contact-image-wrap img {
        border-width: 6px;
        border-radius: 20px;
    }
}