/********** Template CSS **********/
:root {
    --primary: #4761FF;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #1C2035;
    --surface: #FFFFFF;
    --surface-soft: #F7F9FF;
    --radius-md: 14px;
    --radius-lg: 18px;
}

body {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 22%);
}

.site-mini-header {
    z-index: 1030;
    box-shadow: 0 4px 18px rgba(28, 32, 53, .06);
}

.site-mini-header .btn-sm {
    padding: .35rem .9rem;
    font-size: .85rem;
}

.diw-opb-nav-link {
    color: #0d2ea8 !important;
    font-weight: 700;
}

.navbar-nav .diw-opb-nav-link:hover {
    color: #4761FF !important;
}

.diw-opb-pill {
    background: linear-gradient(90deg, #4761FF, #0d2ea8);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 5px 12px;
}

.diw-opb-content-cta {
    border: 2px solid rgba(71, 97, 255, .25);
    background: linear-gradient(135deg, #f7f9ff 0%, #ffffff 55%);
}

.diw-opb-footer-strip {
    background: linear-gradient(90deg, #0d2ea8, #2346d2);
}

.diw-opb-footer-logo {
    width: 120px;
    max-width: 42vw;
    height: auto;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
}

.diw-opb-hero-card {
    border: 2px solid rgba(71, 97, 255, .3);
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 70%);
}

.diw-opb-price {
    font-size: 2rem;
    font-weight: 800;
    color: #0d2ea8;
    line-height: 1.1;
}

.diw-opb-price small {
    font-size: .95rem;
    font-weight: 600;
    color: #555;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    letter-spacing: -.01em;
}

p {
    line-height: 1.7;
}

.site-logo-top {
    width: 210px;
    height: 56px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
}

.site-logo-nav {
    width: 165px;
    height: 44px;
    object-fit: contain;
    object-position: center;
    border-radius: 6px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .35s ease;
    font-weight: 500;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(71, 97, 255, .15);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(71, 97, 255, .2);
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: 0;
    transition: .5s;
    backdrop-filter: blur(8px);
    z-index: 1030;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.container-xxl,
.container-fluid {
    position: relative;
}

.section-card {
    background: var(--surface);
    border: 1px solid #e9eeff;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 36px rgba(28, 32, 53, .08);
}

.stat-pill {
    background: var(--surface-soft);
    border: 1px solid #e5ebff;
    border-radius: 999px;
    padding: .55rem .95rem;
    margin-bottom: .55rem;
    font-size: .95rem;
    font-weight: 500;
    color: #283153;
}

.contact-card {
    background: linear-gradient(145deg, #ffffff, #f4f7ff);
    border: 1px solid #e7edff;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(71, 97, 255, .08);
}

.opb-highlight-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #0f2ca0, #4761FF, #0f2ca0);
    background-size: 220% 220%;
    color: #ffffff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 18px 28px rgba(15, 44, 160, .28);
    animation: opbPulse 2.2s ease-in-out infinite, opbGradient 5s linear infinite;
}

.opb-highlight-banner h3,
.opb-highlight-banner p {
    color: #ffffff;
}

.opb-highlight-badge {
    display: inline-block;
    background: #ff6a00;
    color: #fff;
    font-weight: 700;
    font-size: .78rem;
    border-radius: 999px;
    padding: 5px 11px;
    margin-bottom: 8px;
}

@keyframes opbPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}

@keyframes opbGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* One Point Buy global promotion */
.opb-notice-bar {
    position: sticky;
    top: 0;
    z-index: 1060;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #0d2ea8, #2346d2);
    color: #fff;
    padding: 10px 16px;
}

.opb-notice-logo {
    width: 130px;
    height: auto;
    border-radius: 6px;
    background: #fff;
    padding: 2px;
}

.opb-notice-content {
    font-size: .92rem;
}

.opb-notice-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.opb-notice-btn {
    background: #fff;
    color: #0d2ea8;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
}

.opb-notice-close {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.opb-hero-ribbon {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 1040;
    background: #0d2ea8;
    color: #fff;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(13, 46, 168, .35);
}

.opb-floating-cta {
    position: fixed;
    right: 18px;
    bottom: 150px;
    z-index: 1045;
    width: 180px;
    background: #fff;
    border: 1px solid #d8e2ff;
    border-radius: 14px;
    box-shadow: 0 18px 28px rgba(13, 46, 168, .22);
    padding: 12px;
}

.opb-floating-logo {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
    border-radius: 8px;
}

.opb-floating-title {
    color: #4761FF;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.opb-floating-sub {
    font-size: .95rem;
    font-weight: 700;
    color: #1c2035;
    margin-bottom: 8px;
}

.opb-floating-cta a {
    display: inline-block;
    text-decoration: none;
    background: #4761FF;
    color: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .82rem;
    font-weight: 600;
}

.opb-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 1085;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 20, 45, 0);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, background .35s ease, visibility 0s linear .35s;
}

.opb-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    background: rgba(16, 20, 45, .55);
    transition: opacity .35s ease, background .35s ease, visibility 0s linear 0s;
}

.opb-popup-animate {
    transform: translateY(24px) scale(.96);
    opacity: 0;
    transition: transform .4s ease, opacity .4s ease;
}

.opb-popup-overlay.is-visible .opb-popup-animate {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.topbar-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
}

.topbar-whatsapp-link:hover {
    color: #fff !important;
    text-decoration: none;
}

.topbar-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.15rem;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); transform: scale(1); }
    50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); transform: scale(1.05); }
}

.diw-topbar-animate {
    animation: diwSlideDown .55s ease-out both;
}

.diw-navbar-animate {
    animation: diwFadeIn .65s ease-out .15s both;
}

@keyframes diwSlideDown {
    from { opacity: 0; transform: translateY(-14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes diwFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.diw-shimmer-btn {
    position: relative;
    overflow: hidden;
    font-weight: 700;
    animation: diwBtnGlow 2.2s ease-in-out infinite;
}

@keyframes diwBtnGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(255, 255, 255, 0); }
    50% { box-shadow: 0 0 18px rgba(255, 255, 255, .45); }
}

.diw-nav-cta-btn {
    animation: diwNavCtaPulse 2.5s ease-in-out infinite;
}

@keyframes diwNavCtaPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(71, 97, 255, .25); }
    50% { transform: scale(1.04); box-shadow: 0 12px 26px rgba(71, 97, 255, .38); }
}

.navbar .nav-link {
    transition: color .2s ease, transform .2s ease;
}

.navbar .nav-link:hover {
    transform: translateY(-1px);
}

.navbar .nav-link.active {
    font-weight: 700;
}

.navbar .nav-link.active::after {
    content: "";
    display: block;
    height: 3px;
    border-radius: 3px;
    background: var(--primary);
    margin-top: 4px;
    animation: diwUnderlineIn .35s ease;
}

@keyframes diwUnderlineIn {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 1; }
}

.diw-opb-nav-link {
    color: #0d2ea8 !important;
    font-weight: 600;
}

.diw-mobile-opb-strip {
    background: linear-gradient(90deg, #0d2ea8, #4761ff);
    padding: 8px 12px;
    text-align: center;
    animation: diwSlideDown .45s ease-out both;
}

.diw-mobile-opb-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.diw-mobile-opb-link:hover {
    color: #fff;
    opacity: .92;
}

.topbar-gbp-link {
    transition: opacity .2s ease;
}

.topbar-gbp-link:hover {
    color: #fff !important;
    opacity: .9;
}

.diw-opb-about-card {
    border: 2px solid rgba(71, 97, 255, .35);
    background: linear-gradient(135deg, #eef2ff 0%, #ffffff 60%);
    animation: opbCardGlow 3s ease-in-out infinite;
}

@keyframes opbCardGlow {
    0%, 100% { box-shadow: 0 8px 28px rgba(13, 46, 168, .12); }
    50% { box-shadow: 0 14px 36px rgba(71, 97, 255, .22); }
}

.diw-opb-about-card .btn-primary {
    animation: opbBtnPulse 2.5s ease-in-out infinite;
}

@keyframes opbBtnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.service-highlight-lead {
    background: rgba(255, 255, 255, .14);
    border-left: 4px solid #ff6a00;
    padding: 12px 14px;
    border-radius: 10px;
    margin-top: 10px;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.pricing-table tr td {
    background: #f7f9ff;
    padding: 14px 18px;
    border-radius: 12px;
}

.pricing-table tr td:last-child {
    text-align: right;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-total-row td {
    background: #e8edff !important;
    font-size: 1.05rem;
}

.pricing-pay-row td {
    background: linear-gradient(90deg, #4761FF, #0d2ea8) !important;
    color: #fff !important;
    font-size: 1.2rem;
    font-weight: 800;
}

.gmb-showcase img {
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(28, 32, 53, .12);
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 992px) {
    .navbar .navbar-nav .nav-link {
        font-size: .88rem;
        padding: .55rem .45rem;
        white-space: nowrap;
    }
}

@media (min-width: 1200px) {
    .navbar .navbar-nav .nav-link {
        font-size: .93rem;
        padding: .55rem .62rem;
    }
}

.btn-pay-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(71, 97, 255, .25);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-pay-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(71, 97, 255, .32);
    color: #fff;
}

.pricing-pay-row .btn-pay-cta {
    color: #0d2ea8 !important;
    background: #fff !important;
    box-shadow: none;
}

.google-review-card {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 16px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 10px 26px rgba(28, 32, 53, .08);
    height: 100%;
}

.google-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.google-review-head img {
    width: 28px;
    height: 28px;
}

.google-review-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #5f6368;
    margin-top: 2px;
}

.google-review-brand .fab.fa-google {
    color: #4285f4;
    font-size: 1rem;
}

.google-stars {
    color: #fbbc04;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1;
}

.google-review-card p {
    color: #3c4043;
    margin-bottom: 0;
    line-height: 1.65;
}

.google-review-card h5 {
    margin-bottom: 2px;
    font-size: 1rem;
}

.google-review-card .reviewer-role {
    font-size: .85rem;
    color: #4761FF;
}

.opb-popup-card {
    position: relative;
    width: min(560px, 100%);
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 28px 60px rgba(16, 20, 45, .35);
}

.opb-popup-label {
    margin: 0 0 8px;
    color: #4761FF;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.opb-popup-logo {
    width: 230px;
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
    border-radius: 8px;
}

.opb-popup-card h3 {
    margin-bottom: 10px;
}

.opb-popup-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.opb-popup-primary,
.opb-popup-secondary {
    text-decoration: none;
    border-radius: 999px;
    padding: 9px 16px;
    font-size: .9rem;
    font-weight: 700;
}

.opb-popup-primary {
    background: #4761FF;
    color: #fff;
}

.opb-popup-secondary {
    border: 1px solid #4761FF;
    color: #4761FF;
}

.opb-popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 1.4rem;
    color: #1c2035;
    cursor: pointer;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Features ***/
.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
    background: var(--surface);
    transition: .3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(28, 32, 53, .08);
}


/*** About ***/
.about {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about.jpg) left center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 32px rgba(28, 32, 53, .08);
    transition: .5s;
    z-index: 2;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 10px 24px rgba(28, 32, 53, .1);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}


/*** Project ***/
.project-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}


/*** Testimonial ***/
.testimonial-item {
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 32px rgba(28, 32, 53, .09);
    transition: .5s;
}

.owl-item .testimonial-item,
.testimonial-item * {
    transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
    background: var(--primary);
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
    color: #FFFFFF !important;
}

.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    opacity: 1 !important;
    visibility: visible !important;
}

.topbar-social .btn,
.footer .btn-square {
    background: #ffffff;
    border: 1px solid #e8ecff;
}

.bg-primary .btn.btn-sm-square {
    background: #ffffff;
    border: 1px solid #e8ecff;
}

.topbar-social .btn i,
.footer .btn-square i {
    color: var(--primary);
}

.bg-primary .btn.btn-sm-square i {
    color: var(--primary);
}

.topbar-social .btn:hover,
.footer .btn-square:hover {
    background: var(--primary);
}

.bg-primary .btn.btn-sm-square:hover {
    background: var(--primary);
}

.topbar-social .btn:hover i,
.footer .btn-square:hover i {
    color: #ffffff;
}

.bg-primary .btn.btn-sm-square:hover i {
    color: #ffffff;
}

.form-control,
.form-select,
.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: 12px;
    border: 1px solid #dfe5ff;
}

.form-control:focus,
.form-select:focus {
    border-color: #9fb0ff;
    box-shadow: 0 0 0 .2rem rgba(71, 97, 255, .14);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #111111;
}

.copyright a:hover {
    color: var(--primary) !important;
}

/* ===== Mobile/Tablet Responsiveness ===== */
html,
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.wow {
    visibility: visible !important;
}

@media (max-width: 991.98px) {
    .container-xxl.py-5,
    .container-fluid.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 16px;
        line-height: 1.4;
    }

    .display-1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .display-2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .display-5,
    .display-6 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .carousel-caption .btn {
        margin-top: 10px;
    }

    .service-item .service-btn {
        position: static;
        width: 100%;
        height: auto;
        box-shadow: none;
        padding: 0 0 1rem;
    }

    .service-item:hover .service-btn,
    .service-item:hover .service-text {
        top: 0;
        bottom: 0;
    }

    .testimonial-item,
    .service-item .service-text {
        padding: 1.25rem !important;
    }

    .floating-whatsapp {
        right: 14px !important;
        bottom: 78px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
    }

    .back-to-top {
        right: 14px !important;
        bottom: 18px !important;
        width: 48px !important;
        height: 48px !important;
    }
}

@media (max-width: 767.98px) {
    .opb-notice-bar {
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 10px 12px;
        gap: 8px;
    }

    .opb-notice-logo {
        width: 96px;
        flex-shrink: 0;
    }

    .opb-notice-content {
        flex: 1 1 calc(100% - 110px);
        font-size: .82rem;
        line-height: 1.45;
    }

    .opb-notice-actions {
        width: 100%;
        justify-content: space-between;
    }

    .opb-notice-btn {
        font-size: .8rem;
        padding: 6px 12px;
    }

    .opb-floating-cta {
        display: none;
    }

    .opb-hero-ribbon {
        left: 12px;
        right: 12px;
        bottom: 132px;
        text-align: center;
        max-width: calc(100% - 24px);
        font-size: .74rem;
        padding: 7px 12px;
        white-space: normal;
    }

    .opb-popup-card {
        padding: 18px 16px;
    }

    .opb-popup-logo {
        width: 180px;
    }

    .opb-popup-actions {
        flex-direction: column;
    }

    .opb-popup-primary,
    .opb-popup-secondary {
        width: 100%;
        text-align: center;
    }

    .opb-highlight-banner h3 {
        font-size: 1.15rem;
        line-height: 1.35;
    }

    .opb-highlight-banner p {
        font-size: .92rem;
        line-height: 1.55;
    }
}

@media (max-width: 575.98px) {
    .container,
    .container-fluid {
        padding-left: 14px;
        padding-right: 14px;
    }

    #header-carousel .carousel-item {
        min-height: 420px;
    }

    .carousel-caption p.fs-4 {
        font-size: 1rem !important;
    }

    .carousel-caption .btn {
        width: 100%;
    }

    .btn.rounded-pill {
        padding-left: 1.1rem !important;
        padding-right: 1.1rem !important;
    }

    .footer .btn.btn-link {
        white-space: normal;
    }
}

/* SEO interlink block */
.diw-seo-interlinks {
    margin-top: 0;
}

.diw-seo-interlinks .section-card {
    border: 1px solid rgba(13, 110, 253, 0.12);
}

.diw-seo-interlinks a {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: 0.5rem;
    background: rgba(13, 110, 253, 0.06);
    color: var(--bs-primary);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.diw-seo-interlinks a:hover {
    background: rgba(13, 110, 253, 0.12);
    transform: translateY(-1px);
}