
/*** Spinner Start ***/
/*** Spinner ***/

html {
    scroll-behavior: smooth;
}
#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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .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);
    background-color: rgb(0, 208, 132);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** 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: 11px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/



/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 59px;
    transition: .5s;
    border-radius: 19px;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.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 a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #fffa;
        backdrop-filter: blur(5px);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        height: 12px;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
        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-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 30px;
    margin-left: 90px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }


    .header-carousel .owl-nav .owl-next {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}


.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}
.bg-breadcrumb.bg-about {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/about.jpg);
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Service Start ***/
.service .service-item {
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-top-left-radius: 13px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.service .service-item .service-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item .rounded-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service .service-item .btn {
    margin-top: auto;
}
/*** Service End ***/



/*** Features Start ***/
.feature .feature-item {
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    border: 1px solid transparent;
    transition: 0.5s;
}

.feature .feature-item:hover {
    border: 1px solid var(--bs-primary);
}

.feature .feature-item .feature-icon {
    background: var(--bs-white);
    border-radius: 10px;
    display: inline-block;
}
/*** Features End ***/

/*** Offer Start ***/
.offer-section .nav a.accordion-link {
    width: 100%;
    border-radius: 10px;
    display: flex;
    background: var(--bs-white);
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.offer-section .nav a.accordion-link h5 {
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h5 {
    color: var(--bs-white);
}
/*** Offer End ***/

/*** Blog Start ***/
.blog .owl-stage {
    display: flex;
}
.blog .owl-item {
    display: flex;
}
.blog .blog-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: var(--bs-primary);
}

.blog .blog-item .blog-img {
    border-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: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
    color: var(--bs-white);
    background: var(--bs-primary);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
    color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-secondary);
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
}
/*** FAQs End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    padding: 0 25px 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--bs-primary);
}

.team .team-item .team-img {
    width: 100%; 
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid var(--bs-primary);
    border-style: dotted;
    padding: 4px;
    background: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 4px solid var(--bs-white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--bs-white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
    color: var(--bs-primary);
    background: var(--bs-dark);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0 25px 25px 25px;
}

.testimonial .testimonial-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
    width: 100px; 
    height: 100px;
    border-radius: 100px;
    border: 5px solid var(--bs-light);
    border-style: double;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-text {
    padding: 25px 0;
    text-align: center;
}

.testimonial .testimonial-item .testimonial-title {
    display: flex;
    justify-content: space-between;
}

.testimonial .testimonial-item  .testimonial-quote-left {
    position: absolute;
    width: 60px; 
    height: 60px;
    top: 20px;
    left: 25px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item  .testimonial-quote-right {
    position: absolute;
    width: 60px; 
    height: 60px;
    bottom: -30px;
    right: 25px;
    margin-top: -5px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.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-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-secondary);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.odoo-wrapper{
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.text-white{
    font-size: 20px;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
}
/*** copyright end ***/

/* Terms & Conditions  */

body{
            background: #f4f7fb;
        }
        .policy-box{
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        }
        h2{
            font-size: 1.6rem;
            margin-bottom: 15px;
        }
        p, li{
            color: #4a4a4a;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .contact-details2{
           display: flex;
           gap: 8px;
           align-items: center;
        }

        .main-legal-title{
            font-weight: 500;
            color: #165863;
            font-size: 20px;
        }

        .contact-global{
            color: white;
            max-width: 360px;
            text-align: left;
        }

        .footer-cta{
            margin-bottom: 32px;
        }
/* Terms & Conditions end  */

/* career starts  */

.position-title{
    color: #6B949E;
}

.career-text{
    color: white;
}

.open-role{
     border: 1px solid #00d4ff;
    border-radius: 8px;
    padding: 6px 14px;
    display: inline-block;
    text-decoration: none;
    
}

.open-role:hover {
    background-color: #ffffff;
    color: #000000 !important;
    transition: 0.3s;
}

.career-section {
        /* background-image: url('../img/career.png'); */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        padding: 50px 0;
        opacity: 0.7;
    }

    .career-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
        margin-top: -24px;
    }

    .career-content {
        position: relative;
        z-index: 2;
    }

    .career-card {
        display: flex;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.55);
        border-radius: 12px;
        padding: 30px;
        color: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        height: 100%;
    }

    .open-position{
        align-self: flex-start; 
    }

    .open-role-main {
    align-self: flex-end;}
    


    /* .open-position{
        display: flex;
        flex-direction: column;
        gap: 6px;
    } */

    .close-title{
        margin-top: -12px;
    }

    /* career ends  */


    /* odoo implementation  */
    .card {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-10px);
    }
    .card-header {
      background-color: #1a1a1a;
      color: #00d4ff;
      border-bottom: none;
      padding: 1.5rem;
      font-weight: 600;
      font-size: 1.4rem;
    }
    .card-body {
      background-color: #2d2d2d;
      color: #e0e0e0;
      padding: 2rem;
      font-size: 1.1rem;
      line-height: 1.7;
    }
    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1a1a1a;
      margin: 4rem 0 2.5rem;
    }
    .section-text {
      max-width: 900px;
      margin: 0 auto;
      font-size: 1.15rem;
      line-height: 1.8;
      color: #ffffff;
    }
    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }
      .card-header {
        font-size: 1.2rem;
      }
    }

    .section-title {
      font-size: 3rem;
      font-weight: 800;
      color: rgb(255, 255, 255);
      text-align: center;
      margin: 4rem 0 2rem;
    }
    .section-subtitle {
      max-width: 900px;
      margin: 0 auto 4rem;
      text-align: center;
      font-size: 1.15rem;
      line-height: 1.8;
      opacity: 0.9;
    }
    .benefit-card {
      background-color: white;
      color: #1a1a1a;
      border-radius: 20px;
      padding: 1.8rem 1.2rem;
      text-align: center;
      font-weight: 600;
      font-size: 1.1rem;
      min-height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
    }
    .benefit-card:hover {
      transform: translateY(-8px);
    }
    @media (max-width: 992px) {
      .section-title { font-size: 2.4rem; }
      .benefit-card { font-size: 1rem; min-height: 100px; padding: 1.2rem; }
    }
    @media (max-width: 576px) {
      .section-title { font-size: 2rem; }
      .benefit-card { font-size: 0.95rem; min-height: 90px; }
    }

    .section-2{
        background-color: #08181C;
        padding: 4px 20px;
    }

    .tx-challenge-box {
      background-color: #1a1a1a;
      color: #00d4ff;
      border-radius: 20px;
      padding: 1.6rem 1.2rem;
      text-align: center;
      font-weight: 600;
      font-size: 1.1rem;
      min-height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
    }
    .tx-challenge-box:hover {
      background-color: #2d2d2d;
      transform: translateY(-8px);
    }

    .tx-partner-title {
      font-size: 3rem;
      font-weight: 800;
      color: #1a1a1a;
      text-align: center;
      margin: 5rem 0 2rem;
    }

    .tx-partner-text {
      max-width: 900px;
      margin: 0 auto 4rem;
      text-align: center;
      font-size: 1.15rem;
      line-height: 1.8;
      color: #444;
    }

    .tx-benefit-pill {
      background-color: #e6f7ff;
      color: #1a1a1a;
      border: 2px solid #b3e0ff;
      border-radius: 50px;
      padding: 1.3rem 1.5rem;
      text-align: center;
      font-weight: 600;
      font-size: 1.1rem;
      min-height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }
    .tx-benefit-pill:hover {
      background-color: #b3e0ff;
      transform: translateY(-6px);
    }

    @media (max-width: 992px) {
      .tx-partner-title { font-size: 2.5rem; }
    }
    @media (max-width: 576px) {
      .tx-partner-title { font-size: 2rem; }
      .tx-challenge-box, .tx-benefit-pill { font-size: 0.95rem; padding: 1rem; }
    }

    .cta-wrapper {
      background-color: #ffffff;
      padding: 32px 20px;
      text-align: center;
    }

    .cta-main-heading {
      font-size: 44px;
      font-weight: 900;
      color: #1a1a1a;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }


    .cta-description {
      font-size: 1.35rem;
      color: #333;
      max-width: 800px;
      margin: 0 auto 3.5rem;
      line-height: 1.7;
      font-weight: 500;
    }

    .cta-contact-btn {
      background-color: #0f172a;
      color: white;
      font-size: 1.4rem;
      font-weight: 700;
      padding: 1.2rem 3.5rem;
      border-radius: 50px;
      border: none;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .cta-contact-btn:hover {
      background-color: #1e293b;
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(15, 23, 42, 0.4);
      color: white;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .cta-main-heading { font-size: 3.5rem; }
      .cta-sub-heading { font-size: 3.2rem; }
    }
    @media (max-width: 768px) {
      .cta-wrapper { padding: 100px 15px; }
      .cta-main-heading { font-size: 3rem; }
      .cta-sub-heading { font-size: 2.8rem; }
      .cta-description { font-size: 1.2rem; }
    }
    @media (max-width: 576px) {
      .cta-main-heading { font-size: 2.5rem; }
      .cta-sub-heading { font-size: 2.3rem; }
      .cta-description { font-size: 1.1rem; padding: 0 10px; }
      .cta-contact-btn {
        font-size: 1.2rem;
        padding: 1rem 2.5rem;
      }
    }
    /* odoo implementation end  */

    /* blog detail starts  */
    .hero {
      min-height: 260px;
      border-radius: 12px;
     background-image: url('../img/install-odoo.png');
      background-size: cover;
      background-position: center;
      position: relative;
      color: #ffffff;
      display: flex;
      align-items: flex-end;
      padding: 2rem;
    }
    .hero::after{
      /* subtle dark overlay */
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
      border-radius: 12px;
    }
    .hero .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    /* Article typography */
    .article-body p { line-height: 1.7; }
    .article-meta { color: #6c757d; }

    /* tags */
    .tag-pill { background: #f1f3f5; color: #0b2a36; border-radius: 6px; padding: .25rem .6rem; font-size:.875rem; }

    /* make code/blockquote spacing pretty */
    .article-body blockquote { border-left: .25rem solid rgba(0,0,0,.08); padding-left: 1rem; color: #495057; }

    @media (max-width: 767.98px){
      .hero { min-height: 200px; padding: 1.25rem; }
      .hero h1 { font-size: 1.4rem; }
    }
    /* blog details end   */


    /* soluitons  */
.solution-title{
    font-size: 32px !important;
}
    /* soluitons end  */

.career-card-modern {
    background: linear-gradient(145deg, #ffffff, #f3f6fb);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.career-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.career-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.position-title {
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

.badge.work-mode {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
}

.career-meta p {
    margin: 6px 0;
    font-size: 14px;
    color: #444;
}

.career-meta i {
    color: #0d6efd;
    margin-right: 6px;
}

.career-footer {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.open-count {
    font-weight: 600;
    color: #198754;
}

.team-members {
    margin-top: 40px;
}

.team-card {
    padding: 28px 18px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.08),   /* Indigo */
        rgba(14, 165, 233, 0.08),   /* Sky Blue */
        rgba(34, 197, 94, 0.08)     /* Green */
    );
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.14),
        rgba(14, 165, 233, 0.14),
        rgba(34, 197, 94, 0.14)
    );
}
.team-img {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;          /* 🔥 important */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* 🔥 key line */
    object-position: center;   /* image center rahe */
    border-radius: 50%;
}


.team-card h5 {
    font-weight: 600;
    color: #111;
}

.team-card p {
    font-size: 14px;
}
.team-social {
    margin-top: 12px;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 6px;
    border-radius: 50%;
    background: #f1f3f5;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Facebook */
.team-social a .fa-facebook-f {
    color: #1877F2;
}

/* Instagram (gradient) */
.team-social a .fa-instagram {
    background: linear-gradient(
        45deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LinkedIn */
.team-social a .fa-linkedin-in {
    color: #0A66C2;
}

/* Hover effect */
.team-social a:hover {
    transform: translateY(-3px);
    background: #fff;
}

/* =====================
   ROOT VARIABLES
===================== */
:root {
    --odoo-purple: #875A7B;
    --odoo-light-purple: #C8A2C8;
    --odoo-grey: #8F8F8F;
    --white: #ffffff;
}

/* =====================
   WRAPPER
===================== */
.odoo-service-wrapper {
    max-width: 93%;
    margin: 0 auto;
    text-align: center;
}

/* =====================
   IMAGE SECTION
===================== */
.odoo-image {
    margin-bottom: 25px;
    animation: imageReveal 1.2s ease forwards;
    opacity: 0;
}

.odoo-image img {
    max-width: 520px;
    width: 100%;
    transition: transform 0.4s ease;
}

.odoo-image:hover img {
    transform: scale(1.05);
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* =====================
   BANNER
===================== */
.banner {
    display: flex;
    align-items: center;
    height: 140px;
    background: var(--white);
    margin: 30px auto;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    overflow: hidden;
    font-family: "Segoe UI", Arial, sans-serif;
    border-radius: 6px;
    animation: slideIn 0.9s ease forwards;
    opacity: 0;
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =====================
   LEFT CHEVRON
===================== */
.left-shape {
    position: relative;
    width: 35%;
    height: 100%;
    background: var(--odoo-purple);
    display: flex;
    align-items: center;
    padding-left: 40px;
    color: var(--white);
    flex-shrink: 0;
}

.left-shape::after,
.left-shape::before {
    content: "";
    position: absolute;
    top: 0;
    border-top: 70px solid transparent;
    border-bottom: 70px solid transparent;
    animation: arrowPulse 2.5s infinite ease-in-out;
}

.left-shape::after {
    right: -60px;
    border-left: 60px solid var(--odoo-purple);
}

.left-shape::before {
    right: -95px;
    border-left: 60px solid var(--odoo-light-purple);
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(6px);
    }
}

/* =====================
   TITLE
===================== */
.banner-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    display: inline-block;
    animation: zigZagDance 2.2s ease-in-out infinite;
}

@keyframes zigZagDance {
    0% {
        transform: translate(0, 0);
    }
    20% {
        transform: translate(-4px, -2px);
    }
    40% {
        transform: translate(4px, 2px);
    }
    60% {
        transform: translate(-3px, 2px);
    }
    80% {
        transform: translate(3px, -2px);
    }
    100% {
        transform: translate(0, 0);
    }
}


/* =====================
   CONTENT
===================== */
.banner-content {
    width: 65%;
    padding: 30px 7rem;
    text-align: left;
}

.banner-content h3 {
    margin: 0;
    font-size: 24px;
    color: var(--odoo-purple);
    animation: fadeUp 1s ease forwards;
}

.banner-content p {
    margin-top: 8px;
    font-size: 14px;
    color: var(--odoo-grey);
    line-height: 1.6;
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   HOVER EFFECT
===================== */
.banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    transition: all 0.35s ease;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        height: auto;
    }

    .left-shape {
        width: 100%;
        height: 90px;
        justify-content: center;
        padding-left: 0;
    }

    .left-shape::after,
    .left-shape::before {
        display: none;
    }

    .banner-content {
        width: 100%;
        padding: 20px;
        text-align: center;
    }
}
.tech-item-sm {
    background: #ffffff;
    padding: 20px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.tech-item-sm i {
    font-size: 28px;
    margin-bottom: 8px;
}

.tech-item-sm h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.tech-item-sm:hover {
    transform: translateY(-6px);
}

.fa-python { color: #3776AB; }
.fa-js { color: #F7DF1E; }
.fa-react { color: #61DAFB; }
.fa-html5 { color: #E34F26; }
.fa-css3-alt { color: #1572B6; }
.fa-github { color: #181717; }
.fa-android { color: #3DDC84; }
.fa-flask { color: #000000; }
.fa-cube { color: #714B67; } /* Odoo */
.fa-brain { color: #FF6F00; }
.fa-chart-line { color: #4CAF50; }


.no-image-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.no-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Initials Circle */
.avatar-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-circle span {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Divider */
.card-divider {
    width: 60px;
    margin: 15px auto;
    border-top: 2px solid #e5e7eb;
}

/* Social Icons */
.team-social a {
    color: #6b7280;
    margin: 0 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: #4f46e5;
}
