:root {
    /* Brand colors (from ONE IT logo) */
    --primary-bg: linear-gradient(
        135deg,
        #1e3a8a,
        #0f172a
    ); /* main sections bg */
    --secondary-bg: #0b1220; /* dark navy (navbar/footer) */
    --text-color: #ffffff;

    /* Neutrals */
    --bg: #f8fafc; /* page background */
    --surface: #ffffff; /* cards */
    --muted: #64748b; /* paragraph text */
    --border: #e2e8f0; /* borders */

    /* Accents */
    --accent-green: #16a34a; /* highlight (innovation) */
    --accent-red: #ef4444; /* limited use only */
}

:root {
    --bs-primary: #1e3a8a; /* buttons, icons */
    --bs-secondary: #16a34a; /* hover glow */
    --bs-dark: #0f172a; /* dark sections */
    --bs-light: #f1f5f9; /* light background */
    --bs-body-color: #0f172a; /* main text */
}

.nav-pills .nav-link.active {
    height: 15px;
    background-color: var(--bs-primary);
    color: rgb(255, 255, 255);
}
.cardd {
    background: var(--primary-bg);
    color: var(--text-color);
    border-radius: 10px;
    padding: 20px;
}

.text-primary {
    text-transform: uppercase;
}

/* Service content responsive */
.service-item {
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
}
.service-content {
    display: flex;
    flex-direction: column;
}
.service-content-inner {
    flex-grow: 1;
}

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

#spinner.show {
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

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

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

.btn-md-square {
    width: 44px;
    height: 44px;
}

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

.btn-xl-square {
    width: 66px;
    height: 66px;
}

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

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: 0.5s;
    opacity: 1;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.nav-bar {
    background: var(--secondary-bg); /* Dark Blue-Black */
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 70px;
    transition: 0.5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin: 2px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: white;
}

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

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

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

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: 0.5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: 0.5s;
        opacity: 1;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        rgb(3, 2, 10),
        rgb(14, 9, 27),
        rgb(12, 7, 23),
        rgb(86, 66, 136),
        rgb(10, 5, 18)
    );
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/

/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    /* background: rgb(223, 221, 227); */
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service
    .service-item:hover
    .service-content
    .service-content-inner
    .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service
    .service-item:hover
    .service-content
    .service-content-inner
    .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-white);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, 0.8);
    font-size: 18px;
}

.faq-section
    .accordion
    .accordion-item
    .accordion-header
    .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(155, 42, 127, 0.2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-dark);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-dark);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s;
}

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/

/*** Footer Start ***/

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/*** copyright end ***/
.header-carousel .header-carousel-item {
    height: 760px;
    position: relative;
}

.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* dark overlay */
    align-items: center;
    text-align: center;
}

.header-carousel .carousel-caption {
    position: relative;
    z-index: 2;
}
/* Modern Odoo cards */
.odoo-card {
    position: relative;
    border-radius: 18px;
    padding: 22px;
    background: rgba(11, 18, 32, 0.92); /* matches --secondary-bg */
    border: 1px solid rgba(226, 232, 240, 0.12);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(10px);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    overflow: hidden;
}

/* subtle glow line */
.odoo-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    /* background: radial-gradient(500px 200px at 10% 10%, rgba(22,163,74,0.25), transparent 60%),
              radial-gradient(500px 200px at 90% 20%, rgba(30,58,138,0.28), transparent 60%); */
    /* background: var(--primary-bg); */
    background: var(--primary-bg);

    opacity: 0.9;
    pointer-events: none;
}

.odoo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(22, 163, 74, 0.35);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.28);
    border-width: 2px;
}

.odoo-card-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    z-index: 1;
}

.odoo-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    background: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(226, 232, 240, 0.12);
}

.odoo-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, 0.14);
    border: 1px solid rgba(22, 163, 74, 0.22);
    color: #fff;
}

.odoo-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    margin: 0 0 10px 0;
}

.odoo-desc {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    line-height: 1.6;
}
/* ===== Work Process Modern Design ===== */

.work-process-section {
    background: linear-gradient(135deg, #0b1220, #111827, #0f172a);
    position: relative;
    overflow: hidden;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 30px 15px;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.process-card:hover {
    transform: translateY(-8px);
    background: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 20px;
    background: rgba(22, 163, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #22c55e;
    transition: 0.3s;
}

.process-card:hover .process-icon {
    background: #22c55e;
    color: white;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #22c55e;
    margin-top: 15px;
}
/* ===== Modern Services Section ===== */

.services-modern {
    background: linear-gradient(135deg, #0b1220, #111827, #0f172a);
}

.modern-service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.35s ease;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.modern-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(22, 163, 74, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    /* background: rgba(22, 163, 74, 0.06); */
}

.modern-service-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(22, 163, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #22c55e;
    margin-bottom: 20px;
    transition: 0.3s;
}

.modern-service-card:hover .modern-service-icon {
    background: #22c55e;
    color: white;
}

.modern-service-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.modern-service-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    line-height: 1.6;
}

.modern-btn {
    display: inline-block;
    margin-top: 15px;
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.modern-btn:hover {
    color: white;
}

/* ===== Modern Testimonials ===== */
.testimonials-modern {
    background: linear-gradient(135deg, #0b1220, #111827, #0f172a);
}

.testimonial-modern-card {
    /* background: rgba(255, 255, 255, 0.04); */
    background: var(--primary-bg);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 26px;
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    min-height: 230px;
    /* width: 100%; */
}

.testimonial-modern-card:hover {
    transform: translateY(-8px);
    border-color: rgba(22, 163, 74, 0.35);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
    /* background: rgba(22, 163, 74, 0.06); */
}

.testimonial-top {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.testimonial-meta h5 {
    font-weight: 700;
}

.testimonial-stars i {
    color: #22c55e;
    margin-right: 3px;
    font-size: 14px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    line-height: 1.7;
}

/* Owl nav modern look */
.testimonial-modern-carousel .owl-nav {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.testimonial-modern-carousel .owl-nav button {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
    transition: 0.25s;
}

.testimonial-modern-carousel .owl-nav button:hover {
    border-color: rgba(22, 163, 74, 0.35) !important;
    background: rgba(22, 163, 74, 0.18) !important;
}

/* ===== Modern Team Section ===== */
.team-modern {
    background: linear-gradient(135deg, #0b1220, #111827, #0f172a);
}

.team-modern-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    backdrop-filter: blur(12px);
}

.team-modern-card:hover {
    transform: translateY(-10px);
    border-color: rgba(22, 163, 74, 0.35);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.team-modern-img {
    position: relative;
    overflow: hidden;
}

.team-modern-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.team-modern-card:hover .team-modern-img img {
    transform: scale(1.08);
}

.team-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1),
        rgba(11, 18, 32, 0.85)
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
}

.team-modern-card:hover .team-modern-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 10px;
    transform: translateY(12px);
    transition: transform 0.35s ease;
}

.team-modern-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.team-social a:hover {
    background: rgba(22, 163, 74, 0.22);
    border-color: rgba(22, 163, 74, 0.35);
}

.team-modern-content {
    padding: 18px 18px 20px 18px;
}
/* ===== Modern Footer ===== */
.footer-modern {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

/* soft glow background */
.footer-modern::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(
            700px 260px at 10% 0%,
            rgba(30, 58, 138, 0.18),
            transparent 60%
        ),
        radial-gradient(
            700px 260px at 90% 10%,
            rgba(22, 163, 74, 0.16),
            transparent 55%
        );
    pointer-events: none;
}

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

.footer-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-social {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.25s ease;
}

.footer-social:hover {
    background: rgba(22, 163, 74, 0.18);
    border-color: rgba(22, 163, 74, 0.35);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-newsletter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    flex: 1;
    min-width: 230px;
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.footer-input:focus {
    box-shadow: none;
    border-color: rgba(30, 58, 138, 0.55);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-btn {
    border-radius: 14px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--accent-green));
    border: none;
    color: #fff;
    font-weight: 700;
    transition: 0.25s ease;
}

.footer-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.footer-contact-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.25s ease;
    height: 100%;
}

.footer-contact-card:hover {
    border-color: rgba(22, 163, 74, 0.35);
    transform: translateY(-2px);
}

.footer-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 138, 0.18);
    border: 1px solid rgba(30, 58, 138, 0.25);
    color: #fff;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-bottom-link:hover {
    color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
    .footer-newsletter {
        flex-direction: column;
    }
    .footer-input {
        min-width: auto;
        width: 100%;
    }
}
/* Base Card */
.modern-service-card {
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    color: #fff;
}

/* BLUE */
.card-blue {
    background: linear-gradient(135deg, #1e3a8a);
}
.card-blue:hover {
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.5);
}

/* GREEN */
.card-green {
    background: #ef4444;
}
.card-green:hover {
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.5);
}

/* PURPLE */
.card-purple {
    background: #16a34a;
}
.card-purple:hover {
    box-shadow: 0 20px 50px rgba(122, 202, 151, 0.5);
}

/* CYAN */
.card-cyan {
    background: linear-gradient(135deg, #0e7490);
}
.card-cyan:hover {
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.5);
}

/* Icon Style */
.modern-service-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: rgba(255, 255, 255, 0.12);
    transition: 0.3s ease;
}

.modern-service-card:hover .modern-service-icon {
    transform: scale(1.1);
}
.service-modern-card {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.service-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
}
.service-badge {
    position: absolute;
    bottom: -22px;
    right: 18px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
    color: var(--bs-primary);
    font-size: 20px;
}
/* ===== Small Navbar Logo ===== */
.small-logo .logo-one {
    font-size: 22px;
}

.small-logo .logo-solutions {
    font-size: 24px;
}

.small-logo .mark-circle {
    width: 40px;
    height: 40px;
}

.small-logo .mark-it {
    font-size: 16px;
}

.small-logo .logo-tagline {
    font-size: 9px;
    margin-top: 3px;
    letter-spacing: 0.5px;
}
/* ===== Text Logo (ONE iT SOLUTIONS) ===== */
.text-logo {
    line-height: 1;
    display: inline-block;
}

.text-logo-top {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

/* ONE */
.logo-one {
    font-weight: 900;
    letter-spacing: 1px;
    color: #ff0000;
    font-size: clamp(22px, 3vw, 44px);
}

/* SOLUTIONS */
.logo-solutions {
    font-weight: 900;
    letter-spacing: 1px;
    color: #1e40ff;
    font-size: clamp(26px, 3.4vw, 52px);
}

/* circle mark */
.logo-mark {
    display: inline-flex;
    align-items: flex-end;
}

.mark-circle {
    width: clamp(42px, 4vw, 74px);
    height: clamp(42px, 4vw, 74px);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(
        #ff0000 0 35%,
        #ffffff 35% 50%,
        #1e40ff 50% 100%
    );
    position: relative;
    overflow: hidden;
}

/* inside white circle */
.mark-circle::after {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: 999px;
    background: #ffffff;
}

.mark-it {
    position: relative;
    z-index: 2;
    font-weight: 900;
    color: #0a8a00;
    font-size: clamp(18px, 2.2vw, 34px);
}

/* tagline */
.logo-tagline {
    margin-top: 6px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0a8a00;
    font-size: clamp(10px, 1.2vw, 16px);
    white-space: nowrap;
}

.logo-tagline span {
    margin: 0 6px;
}

/* mobile wrap */
@media (max-width: 576px) {
    .logo-tagline {
        white-space: normal;
    }
}
/* ===== Modern Contact Card ===== */
.contact-modern-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition: 0.3s ease;
}

.contact-modern-card:hover {
    border-color: rgba(22, 163, 74, 0.35);
}

/* Contact Info */
.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-item i {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, 0.2);
    color: #22c55e;
    font-size: 18px;
}

.contact-info-item h6 {
    color: #fff;
    margin-bottom: 3px;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 14px;
}

/* Modern Input */
.modern-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 14px;
    padding: 12px 15px;
}

.modern-input:focus {
    box-shadow: none;
    border-color: rgba(22, 163, 74, 0.6);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Modern Button */
.modern-login-btn {
    background: linear-gradient(135deg, #16a34a, #15803d);
    border: none;
    border-radius: 2px;
    color: #fff;
    font-weight: 700;
    transition: 0.3s ease;
    padding: 2px;
}

.modern-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
}
/* ===== Service Details Modern ===== */
.service-details {
    background: linear-gradient(135deg, #0b1220, #111827, #0f172a);
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 26px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(22, 163, 74, 0.35);
}

/* Card Head */
.glass-card-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.glass-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, 0.18);
    border: 1px solid rgba(22, 163, 74, 0.25);
    color: #22c55e;
    font-size: 18px;
}

/* List */
.glass-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.glass-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    line-height: 1.6;
}

.glass-list i {
    margin-top: 3px;
    color: #22c55e;
}
/* ===== Career Modern ===== */
.career-hero,
.career-jobs {
    background: linear-gradient(135deg, #0b1220, #111827, #0f172a);
}

/* Cards */
.career-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 22px;
    backdrop-filter: blur(12px);
    transition: 0.25s ease;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}
.career-card:hover {
    transform: translateY(-6px);
    border-color: rgba(22, 163, 74, 0.3);
}

.career-card-top {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.career-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, 0.16);
    border: 1px solid rgba(22, 163, 74, 0.22);
    color: #22c55e;
    font-size: 18px;
}

.career-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    line-height: 1.7;
}

/* Job cards */
.job-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 22px;
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
    transition: 0.25s ease;
}
.job-card:hover {
    transform: translateY(-6px);
    border-color: rgba(22, 163, 74, 0.3);
}

.job-meta {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}
.job-meta i {
    width: 18px;
    color: #22c55e;
    margin-right: 6px;
}

.job-deadline {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.25);
    white-space: nowrap;
}

/* Modal */
.job-modal {
    background: rgba(11, 18, 32, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}
.form-modern {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 14px !important;
}
.form-modern::placeholder {
    color: rgba(255, 255, 255, 0.55);
}
.form-modern:focus {
    box-shadow: none !important;
    border-color: rgba(34, 197, 94, 0.45) !important;
} /* ===== Modern Login ===== */
.login-modern {
    min-height: 100vh;
    background: linear-gradient(135deg, #0b1220, #111827, #0f172a);
}

/* Main Card */
.login-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Left Image */
.login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form area */
.login-content {
    padding: 40px;
}

/* Modern Inputs */
.form-modern {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
}

.form-modern::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.form-modern:focus {
    box-shadow: none !important;
    border-color: rgba(34, 197, 94, 0.45) !important;
}

/* Checkbox */
.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.form-check-input:checked {
    background-color: #22c55e;
    border-color: #22c55e;
}
/* ===== Demo Modern Section ===== */
.demo-modern-section {
    background: linear-gradient(135deg, #0b1220, #111827, #0f172a);
}

.demo-hero-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.demo-mini-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(226, 232, 240, 0.12);
}

.modern-demo-btn {
    display: inline-flex;
    align-items: center;
    border: none;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.3s ease;
    text-decoration: none;
}

.modern-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.35);
    color: #fff;
}

/* ===== Video Cards ===== */
.demo-modern-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition: 0.3s ease;
    height: 100%;
}

.demo-modern-card:hover {
    transform: translateY(-8px);
    border-color: rgba(22, 163, 74, 0.35);
}

.demo-modern-thumb-wrap {
    position: relative;
    overflow: hidden;
}

.demo-modern-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.35s ease;
}

.demo-modern-card:hover .demo-modern-thumb {
    transform: scale(1.06);
}

.demo-modern-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.92);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: 0.3s ease;
}

.demo-modern-play:hover {
    background: #16a34a;
    transform: translate(-50%, -50%) scale(1.08);
}

.demo-modern-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(11, 18, 32, 0.88);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.demo-modern-body {
    padding: 20px;
}

/* ===== Modals ===== */
.demo-video-modal,
.demo-inquiry-modal {
    background: rgba(11, 18, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    backdrop-filter: blur(12px);
}

.demo-form-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
}

.demo-form-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.demo-form-input:focus {
    box-shadow: none !important;
    border-color: rgba(34, 197, 94, 0.45) !important;
}
