* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Exo', sans-serif !important;
}

.navbar-container {
    background-color: #FFFFFF;
    position: relative;
}

.menu-div {
    width: 62%;
}

.navbar {
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
}

.navbar-brand img {
    width: 160px;
    height:auto;
}

.navbar-nav .nav-link {
    margin-right: 1rem;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #212121 !important;
}


.navbar-nav .nav-link:hover {
    color: #08D336 !important;
}

.nav-link.active {
    color: #08D336 !important;
}

.btn-nav {
    text-decoration: none;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.02em;
    border: 1px solid #08D336;
    background-color: white;
    color: #08D336;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 18px;
}

.button-container {
    text-align: center;
}

.arrow {
    font-size: 16px;
}

.btn-nav:hover {
    background-color: #08D336;
    color: #FFFFFF;
}

.navbar-collapse {
    justify-content: end;
}

.navbar-toggler {
    border: none;
    background: transparent;
    position: relative;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 0px;
}

.navbar-toggler .bar {
    width: 100%;
    height: 3px;
    background-color: #212121;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggler.collapsed .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.collapsed .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.collapsed .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media(max-width: 1100px) {
    .navbar-nav .nav-link {
        margin-right: 4px;
    }
}

@media (max-width: 992px) {


    .menu-div {
        width: 100% !important;
        margin-top: 25px;
        justify-content: start;
    }

    .navbar-nav .nav-item {
        text-align: center;
        margin-bottom: 15px;
    }

    .navbar-nav .nav-item .nav-link {
        padding: 10px;
        margin: 0;
    }

    .navbar-nav .nav-item .nav-link:hover {
        color: #FFFFFF !important;
        background-color: #08D336;
        box-shadow: 0px 4px 15px rgba(8, 211, 54, 0.4);
        transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    }

    .nav-link.active {
        color: #FFFFFF !important;
        background-color: #08D336 !important;
        box-shadow: 0px 4px 15px rgba(8, 211, 54, 0.4);
        transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    }

    .button-div {
        flex-direction: column;
        display: flex;
        align-items: start;
    }

    .btn-nav {
        margin-bottom: 18px;
    }

    /* Nav Links */

    .button-container {
        margin-top: auto;
    }

    .navbar-collapse {
        position: fixed;
        top: 0px;
        left: 0;
        width: 70%;
        height: 100%;
        background-color: #FFFFFF;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1050;
        transform: translateX(-100%);
        /* Hidden by default */
        transition: transform 0.3s ease-in-out;
        visibility: hidden;
        opacity: 0;
        padding: 1rem;
        display: flex;
        flex-direction: column;
    }

    .navbar-collapse.open {
        transform: translateX(0);
        /* Slide in */
        visibility: visible;
        opacity: 1;
        display: flex;
    }

    .no-scroll {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        visibility: hidden;
    }


    .navbar-collapse.open+.overlay {
        visibility: visible;
        opacity: 1;
    }

    .navbar-collapse {
        justify-content: space-between;
    }

}


/* Hero section */

.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 9, 77, 0) 0%, #0B094D 102.22%);
    z-index: 2;
}

.hero-section .container {
    z-index: 3;
}

.hero-title {
    font-family: Exo;
    font-size: 48px;
    font-weight: 700;
    line-height: 67.76px;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.hero-description {
    margin-bottom: 2rem;
    color: #FFFFFF;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
}

.hero-button {
    border: 1px solid #ffffff;
    border-radius: 18px;
    padding: 10px 25px;
    color: #ffffff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.hero-button:hover {
    background-color: #08D336;
    color: #FFFFFF;
}

.hero-button i {
    margin-left: 10px;
}


/* trusted slider section */

.trusted-section h3 {
    color: #212121;
    text-align: center;
    font-family: Exo;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.trusted-carousel {
    overflow: hidden;
    /* Ensure only the visible area is shown */
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    /* Ensure the track is as wide as its content */
    animation: moveCarousel 40s linear infinite;
    /* Default duration; JS refines it based on content width */
}

.trusted-carousel:hover .carousel-track {
    animation-play-state: paused;
}

.trusted-carousel img {
    display: block;
    flex-shrink: 0;
    width: auto;
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
}

.testimonial-carousel .owl-stage {
    display: flex;
}

/* Animation keyframes */
@keyframes moveCarousel {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
        /* Move by exactly one set of logos (the track is duplicated) for a seamless loop */
    }
}


/* software-service-section */


.section-title {
    color: #212121;
    font-family: Exo;
    font-size: 48px;
    font-weight: 700;
    line-height: 67.2px;
}

.section-description {
    color: #5C5A88;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.software-service-card {
    position: relative;
    border: none;
    border-radius: 15px;
    background-color: #fff;
    border: 1px solid #00000014;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: space-between;
}

.software-service-card .service-icon2 {
    display: none;
}


.software-service-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background-color: #0B084D;
}

.software-service-card:hover .card-title {
    color: #08D336;
}

.software-service-card:hover .card-text {
    color: #FFFFFF;
}

.software-service-card:hover .service-icon {
    display: none;
}

.software-service-card:hover .service-icon2 {
    display: block;
}

.software-service-card .icon img {
    max-width: 40px;
    margin-left: 5px;
}

.software-service-card .card-title {
    font-family: Exo;
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    color: #000000;
    margin: 0;
    padding: 5px 0px;
}

.software-service-card .card-text {
    color: #5C5A88;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
    padding: 5px 0px;
}

.software-service-card .learn-more {
    color: #08D336;
    text-decoration: none;
    text-align: left;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 10px 10px 0px;
    line-height: 24px;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 15px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.software-service-card .learn-more:hover {
    color: #FFFFFF;
    background-color: #08D336;
    padding: 10px 10px 10px 10px;
}

.let-start-card {
    position: relative;
    border: none;
    border-radius: 15px;
    background-color: #08D336;
    border: none;
    overflow: hidden;
    box-shadow: 0px 13px 100px 0px #C7C7C740;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: space-between;
}

.let-start-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background-color: #0B084D;
}

.let-start-card .icon {
    position: relative;
}

.let-start-card h5 {
    font-family: Exo;
    font-size: 32px;
    font-weight: 600;
    line-height: 64px;
    color: #FFFFFF;
    margin: -30px 0px 0px 16px;
}

.let-start-card h5 span {
    font-family: Exo;
    font-size: 48px;
    font-weight: 600;
    line-height: 64px;
    display: block;
}

.btn-let-start {
    border: 1px solid #ffffff;
    border-radius: 18px;
    padding: 10px 25px;
    color: #ffffff;
    font-family: Exo;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.btn-let-start:hover {
    background-color: #FFFFFF;
    color: #08D336;
}



/* two-card-section */
.custom-card {
    border: none;
    border-radius: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.card-1 {
    background-color: #D4FBDD;
    background-image: url(../images/card-1.webp);
}

.card-2 {
    background-color: #E7E6ED;
    background-image: url(../images/card-2.webp);
}

.custom-card .card-body {
    padding: 30px;
}

.custom-card h5 {
    font-family: Exo;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #000000;
}

.custom-card .card-text {
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -0.02em;
    color: #5C5A88;
    width: 60%;
}

.custom-card .btn {
    border-radius: 18px;
    padding: 10px 20px;
    font-family: Exo;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.custom-card .btn-outline-primary {
    color: #3C3971;
    border-color: #3C3971;
}

.custom-card .btn-outline-primary:hover {
    background-color: #08D336;
    color: #FFFFFF;
    border-color: #08D336;
}


/* our service-small-section */
.services-small-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('../images/small-service-lines.webp');
    border-radius: 15px;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.services-small-section .h6 {
    font-family: Exo;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: #f3f3f3;
}

.services-small-section h3 {
    font-family: Exo;
    font-size: 36px;
    font-weight: 700;
    line-height: 58px;
}

.services-small-section p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.services-small-section .custom-btn {
    border: 1px solid #ffffff;
    border-radius: 18px;
    padding: 10px 25px;
    color: #ffffff;
    font-family: Exo;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.services-small-section .custom-btn:hover {
    background-color: #08D336;
    color: #fff;
    border-color: #08D336;
}

.services-small-section .custom-btn .arrow {
    font-size: 18px;
}

/* solution-box */

.IT-solutions .row .col-md-6 {
    width: max-content !important;
}

.solution-title {
    font-family: "Nunito Sans", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 67px;
    text-align: center;
    color: #212121;
    margin-bottom: 35px;
}

.solution-box {
    border: 1px solid #08D336;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #fff;
    transition: transform 0.2s;
}

.solution-box:hover {
    background: #0B084D;
}

.solution-box img {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    /*background: #ccc;*/
    border-radius: 5px;
}

.solution-box span {
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    color: #08D336;
}

.view-all-btn {
    display: inline-block;
    text-align: center;
    border: 1px solid #08D336;
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    color: #08D336;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.view-all-btn:hover {
    background-color: #08D336;
    color: #fff;
}


/* styles.css */
.tools-section {
    max-width: 1200px;
}

.tools-section h3 {
    font-family: Exo;
    font-size: 48px;
    font-weight: 700;
    line-height: 67px;
    color: #212121;
    margin-bottom: 40px;
}

.tool-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100px !important;
    width: 100px;
}

.tool-card img {
    max-width: 80%;
    height: 40px;
}



/* Strategy-section */

.strategy-section {
    background: url('../images/Why Choose Us_ - Cards.webp') no-repeat center center/cover;
}

.left-section {
    padding: 20px;
}

.left-section h4 {
    font-family: Exo;
    font-size: 48px;
    font-weight: 700;
    line-height: 67.2px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.left-section p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 33.6px;
    color: #FFFFFF;

}

.right-section {
    overflow: hidden;
    height: 710px;
    margin-top: 100px;
    margin-bottom: 40px;
}

.scroll-container {
    overflow-y: scroll;
    height: 100%;
    padding: 20px;
    position: relative;
}

/* Custom scrollbar */
.scroll-container::-webkit-scrollbar {
    width: 8px;
}

.scroll-container::-webkit-scrollbar-track {
    background: #d3d3d3;
    border-radius: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #08D336;
    border-radius: 8px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #055e3b;
}

.point {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #FFFFFF;
    color: #000;
}

.point .h5 {
    color: #08D336;
    margin-bottom: 10px;
    font-family: Exo;
    font-size: 48px;
    font-weight: 600;
    line-height: 72px;
}

.point .second-h5 {
    color: #08D336;
    margin-bottom: 10px;
    font-family: Exo;
    font-size: 28px;
    font-weight: 600;
    line-height: 42px;
}

.point p {
    color: #3C3971;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32.4px;
}

/* why-choose-us section */

.why-choose-section {
    margin: 50px auto;
    padding: 20px;
}

.why-choose-image {
    position: relative;
    border-radius: 16px;
}

.clients-badge {
    position: absolute;
    right: 0;
    top: -20px;
    background: linear-gradient(180deg, #0B084D -48.26%, #046D1C 163.14%);
    color: white;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.clients-badge span {
    margin-left: -8px;
}

.clients-badge img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-left: -8px;
}

.experience-badge {
    position: absolute;
    bottom: 35px;
    left: 25px;
    background-color: white;
    padding: 30px 70px 30px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.experience-badge h6 {
    margin: 0;
    color: #08D336;
    font-family: Exo;
    font-size: 80px;
    font-weight: 700;
    display: inline-block;
}

.experience-badge span {
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

.experience-badge .span2 {
    color: #000000;
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0.1em;
    display: block;
    margin-top: -15px;
}

.why-text h2 {
    font-family: Exo;
    font-size: 48px;
    font-weight: 700;
    line-height: 67px;
    letter-spacing: -2px;
    color: #04091E;
}

.why-text h2 span {
    color: #08D336;
}

.why-text p {
    color: #5C5A88;
    margin: 20px 0;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 37.4px;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
    color: #0B084D;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 29.6px;
}

.checklist li img {
    margin-right: 15px;
}

.countries-served-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    column-gap: 20px;
}

.countries-served-list .pin-icon {
    margin-right: 12px;
    font-size: 20px;
    line-height: 1;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}


.stats-item h6 {
    margin-bottom: -12px;
    color: #08D336;
    font-family: Exo;
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
}

.stats-item span {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 42px;
    color: #5C5A88;
}

/* membership section */

.membership-title {
    text-align: center;
    font-family: "Nunito Sans", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 67px;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    color: #04091E;
}

.membership-title span {
    color: #08D336;
}

.membership-subtitle {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #5C5A88;
    margin-bottom: 3rem;
}

.membership-card {
    background: url('../images/pasha-bg.webp') no-repeat center center/cover;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 30px;
}

.membership-card img {
    max-width: 100px;
    margin-bottom: 1rem;
}

.membership-card p {
    color: #5C5A88;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -0.02em;
}

/* slider section */

.owl-item {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.testimonial-card {
    border-radius: 26px;
    background: #FFF;
    box-shadow: 4px 6px 24px 0px rgba(109, 141, 173, 0.12);
    padding: 2rem;
    text-align: left;
    display: flex;
    width: 100%;
}

.part-1 {
    width: 60%
}

.part-1 img {
    max-height: 60px;
    width: auto !important;
    max-width: 300px !important;
    margin-bottom: 10px;
}

.part-1 p {
    color: #5C5A88;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
}

.user-img img {
    width: 60px !important;
    height: 60px;
    margin-right: 10px;
    border-radius: 50px;
}

.user-img span {
    color: #282B27;
    margin: 0;
    font-family: Exo;
    font-size: 16px;
    font-weight: 600;
    line-height: 25.6px;
}

.user-img p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: #51564E;
}


.part-2 {
    width: 40%;
    display: flex;
    padding: 10px 10px;
    flex-direction: column;
    justify-content: space-around;
    border-radius: 16px;
    background: #F2F9F4;
    margin-top: 25px;
}

.part-2 .tags {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 10px;
    /* align-items: flex-start; */
    gap: 8px;
    /* align-self: stretch; */
}

.tags span {
    font-family: "Nunito Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 14.64px;
    color: #0B411D;
    background: #FFFFFF;
    padding: .3rem .7rem;
    border-radius: 2rem;
    border: 0.36px solid #C1C5BF;
    text-decoration: none;
    white-space: nowrap;
}

.tags span:hover {
    color: #FFFFFF;
    background-color: #08D336;
    border: 0.36px solid #08D336;
}

.owl-nav button {
    position: absolute;
    top: 45%;
    border: 1px solid #0B411D1A !important;
    padding: 10px 14px !important;
    border-radius: 50% !important;
}

.owl-prev {
    left: -10%;
}

.owl-next {
    right: -10%;
}

.owl-carousel {
    max-width: 1140px !important;
    margin: 0 auto;
    /* Center the carousel */
}

/* contact-us */

.contact-section {
    margin: 50px auto;
    padding: 20px;
}

.contact-heading h4 {
    font-family: Exo;
    font-size: 48px;
    font-weight: 700;
    line-height: 75px;
    letter-spacing: -1px;
    color: #000000;
}

.contact-heading p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #333333;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info .info-item {
    display: flex;
    background-color: #F7F7F7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-info .info-item p {
    margin: 0;
    color: #0B084D;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 33px;
    letter-spacing: -0.5px;
}

.contact-info .info-item a {
    margin: 0;
    color: #5C5A88;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.contact-info .info-item a:hover {
    color: #5C5A88;
}

.contact-info .info-item img {
    height: 22px;
    margin-right: 10px;
    margin-top: 7px;
}

.contact-form .form-label {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.25px;
    color: #000000;
}

.contact-form .input-group-text {
    background-color: #FFFFFF !important;
    border: 1px solid #ced4da;
    border-right: none !important;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #E7E6ED !important;
    padding: .75rem;
}

.product-part .row {
    padding-left: 15px;
    margin-bottom: 10px;
}

.product-part p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.25px;
    color: #000000;
}

.product-part .form-check {
    display: flex;
    align-items: baseline;
}

.product-part .form-check-label {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.25px;
    color: #000000;
}

.product-part .form-check-input {
    margin-right: 10px;
    border: 1px solid #000;
}

.contact-form .terms-check {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.contact-form .terms-check .form-check-label {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

.contact-form .terms-check .form-check-label a {
    color: #0B084D;
    font-weight: 600;
    text-decoration: underline;
}

.contact-btn {
    background-color: #08D336;
    color: #FFFFFF;
    border-radius: 22px;
    padding: 6px 10px;
    border: none;
    width: 100%;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.25px;
    text-decoration: none;
    text-align: center;
}

.contact-btn:hover {
    background-color: #009624;
    color: #FFFFFF;
}

.email-link {
    color: #3C3971;
    border-radius: 22px;
    padding: 6px 10px;
    border: none;
    width: 100%;
    text-align: center;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.25px;
    display: block;
    margin-top: 20px;
    background: var(--Dark-300, #00000008);
    text-decoration: none;
}

.email-link i {
    margin-right: 8px;
}

.email-link:hover {
    color: #08D336;
}

/* Contact Us page - "Get In Touch" card (scoped to #ContactUsSection so the
   shared .contact-section/.contact-form/.info-item classes used on other
   pages are unaffected) */

#ContactUsSection.contact-section {
    margin: 60px auto;
    padding: 0;
}

#ContactUsSection .contact-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #ECEBF3;
    box-shadow: 0 20px 60px rgba(11, 8, 77, 0.1);
    overflow: hidden;
}

#ContactUsSection .row {
    margin: 0;
}

#ContactUsSection .contact-info-panel {
    background: linear-gradient(160deg, #0B084D 0%, #150F5E 55%, #0B084D 100%);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}

#ContactUsSection .contact-info-panel:before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #08D336);
    opacity: 0.25;
    top: -50px;
    right: -50px;
}

#ContactUsSection .contact-info-panel:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border: 24px solid #08D336;
    border-radius: 50%;
    opacity: 0.12;
    bottom: -90px;
    left: -70px;
}

#ContactUsSection .contact-eyebrow {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: #08D336;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

#ContactUsSection .contact-heading {
    position: relative;
    z-index: 1;
}

#ContactUsSection .contact-heading h4 {
    color: #FFFFFF;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
}

#ContactUsSection .contact-heading p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.6;
}

#ContactUsSection .contact-info {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    margin-bottom: 0;
}

#ContactUsSection .info-item {
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#ContactUsSection .info-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(8, 211, 54, 0.45);
}

#ContactUsSection .info-item .info-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(8, 211, 54, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    margin-top: 0;
}

#ContactUsSection .info-item .info-icon img {
    height: 20px;
    margin: 0;
}

#ContactUsSection .info-item p {
    color: #FFFFFF;
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 2px;
}

#ContactUsSection .info-item a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.5;
}

#ContactUsSection .info-item a:hover {
    color: #08D336;
}

#ContactUsSection .contact-form {
    background: #FFFFFF;
    padding: 56px 48px;
    margin-top: 0;
}

#ContactUsSection .contact-form .form-label {
    color: #0B084D;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

#ContactUsSection .contact-form .form-control {
    border-radius: 12px;
    border: 1.5px solid #E7E6ED !important;
    padding: 12px 16px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    color: #212121;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#ContactUsSection .contact-form .form-control:focus {
    border-color: #08D336 !important;
    box-shadow: 0 0 0 4px rgba(8, 211, 54, 0.12);
    outline: none;
}

#ContactUsSection .contact-form .terms-check .form-check-input:checked {
    background-color: #08D336;
    border-color: #08D336;
}

#ContactUsSection .contact-form .terms-check .form-check-input:focus {
    border-color: #08D336;
    box-shadow: 0 0 0 3px rgba(8, 211, 54, 0.15);
}

#ContactUsSection .contact-btn {
    background: linear-gradient(135deg, #0B084D 0%, #08D336 100%);
    border-radius: 14px;
    padding: 14px 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(8, 211, 54, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#ContactUsSection .contact-btn:hover {
    background: linear-gradient(135deg, #0B084D 0%, #08D336 100%);
    box-shadow: 0 6px 20px rgba(8, 211, 54, 0.6);
    transform: translateY(-2px);
    color: #FFFFFF;
}

@media (max-width: 991px) {
    #ContactUsSection .contact-info-panel,
    #ContactUsSection .contact-form {
        padding: 40px 30px;
    }

    #ContactUsSection .contact-heading h4 {
        font-size: 32px;
    }

    #ContactUsSection .contact-heading p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    #ContactUsSection.contact-section {
        margin: 40px auto;
    }

    #ContactUsSection .contact-card {
        border-radius: 18px;
    }

    #ContactUsSection .contact-info-panel,
    #ContactUsSection .contact-form {
        padding: 30px 20px;
    }

    #ContactUsSection .contact-heading h4 {
        font-size: 28px;
    }

    #ContactUsSection .contact-heading p {
        font-size: 15px;
    }

    #ContactUsSection .info-item p {
        font-size: 16px;
    }

    #ContactUsSection .info-item a {
        font-size: 14px;
    }
}

/*  faq section */

.faq-section {
    margin: 50px auto;
}

.faq-header h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: Exo;
    font-size: 48px;
    font-weight: 700;
    line-height: 67px;
    color: #212121;
}

.faq-header p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #5C5A88;
    max-width: 700px;
    margin: 0 auto;
}

.faq-section .accordion-item {
    border: none !important;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #FBFBFB !important;
    border-radius: 10px !important;
}

.faq-section .accordion-button {
    color: #212121;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    padding: 15px;
    background-color: #FBFBFB !important;
    border-radius: 10px !important;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-button::after {
    font-family: "FontAwesome";
    content: "\f062";
    font-size: 14px;
    color: #0B084D;
    width: auto !important;
    height: auto !important;
    padding: 0px 12px;
    margin-left: auto;
    background-image: none !important;
    transform: none !important;
    border: 0.7px solid #0B084D !important;
    background-color: #FBFBFB !important;
    border-radius: 60px !important;
}

.faq-section .accordion-button.collapsed::after {
    content: "\f063";
    background-image: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #212121 !important;
    background-color: #FBFBFB !important;
    box-shadow: none !important;
    border-radius: 10px !important;
}

.faq-section .accordion-body {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #333333;
    padding: 0px 1.25rem 10px !important;
}


/* footer */
footer {
    /*background: url('../images/footer-bg.webp') no-repeat center center/cover;*/
    background-color: #0B084D;
}

.footer-logo {
    width: 200px;
}

.footer-section1 {
    border-bottom: 1px solid #E2E2E2;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 25px;
    padding-top: 25px;
}

.footer-section1 h5 {
    font-family: Exo;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-section1 li {
    margin-bottom: 12px;
}

.footer-section1 a {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #D3D3D3;
}

.footer-section1 a:hover {
    color: #08D336;
}

/* Contact rows: the circle icon and the label are only shown on mobile */
.footer-contact-icon,
.footer-contact-label {
    display: none;
}

/* Reviews block: sits above the social icons */
.footer-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.footer-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #FFA51F;
    font-size: 14px;
}

.footer-reviews-text {
    font-family: Exo, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    color: #FFFFFF;
}

.soical-icons {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.soical-icons a {
    border-radius: 12px;
    padding: 15px 20px;
    border: 1px solid #FFFFFF;
    height: fit-content;
}

.soical-icons a:hover {
    color: #FFFFFF;
    background: #08D336;
    border: 1px solid #08D336;
}

.f-icon {
    padding: 15px 22px !important;
}

.footer-section2 {
    justify-content: space-between;
}

.footer-section2 p,
.footer-section2 a {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #C9C9C9 !important;
}



/* Contact-us page */

.contact-page-hero-section,
.About-page-hero-section,
.Services-page-hero-section,
.career-page-hero-section {
    background: url('../images/contact-us-hero-section.webp') no-repeat center center/cover;
}

.contact-page-hero-section .row,
.About-page-hero-section .row,
.Services-page-hero-section .row,
.career-page-hero-section .row {
    color: #FFFFFF;
    min-height: 500px;
    text-align: left;
}

.contact-page-hero-section h3,
.About-page-hero-section h3,
.Services-page-hero-section h3,
.career-page-hero-section h3 {
    font-family: Exo;
    font-size: 24px;
    font-weight: 700;
    line-height: 31.9px;
    letter-spacing: 0.04em;
}

.contact-page-hero-section h1 {
    font-family: Exo;
    font-size: 56px;
    font-weight: 600;
    line-height: 74.42px;
    letter-spacing: 0.04em;
}

.contact-page-hero-btn {
    background: transparent;
    border: 1px solid #FFFFFF;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    color: #FFFFFF;
    padding: 10px 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-decoration: none;
    display: block;
    width: max-content;
}

.contact-page-hero-btn:hover {
    background: #08D336;
    color: #FFFFFF;
    border: 1px solid #08D336;
}

.contact-page-map-section .container {
    text-align: center;
}

.contact-page-map-section h3 {
    font-family: Exo;
    font-size: 48px;
    font-weight: 700;
    line-height: 67.2px;
    letter-spacing: 0.04em;
    color: #212121;
}

.contact-page-map-section h4 {
    font-family: Exo;
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    color: #212121;
}

.contact-page-map-section p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #5C5A88;
}

/* About-Us page */

.About-page-hero-section h1 {
    font-family: Exo;
    font-size: 48px;
    font-weight: 700;
    line-height: 55.82px;
    letter-spacing: 0.04em;
}

.About-page-hero-section p {
    font-family: "Nunito Sans", sans-serif !important;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
}

.phentech-histroy-section h2 {
    color: #08D336;
    font-family: Exo;
    font-size: 56px;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 20px;
}

.phentech-histroy-section span {
    color: #212121;
}

.phentech-histroy-section h3 {
    font-family: Exo;
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    color: #212121;
    margin-bottom: 20px;
}

.phentech-histroy-section p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #565656;
    margin-bottom: 30px;
}

.what-heading {
    color: #212121 !important;
}

.ceo-section {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.ceo-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.ceo-info {}

.ceo-info h5 {
    color: #282B27;
    margin: 0;
    font-family: Exo;
    font-size: 48px;
    font-weight: 600;
    line-height: 76.8px;
}

.ceo-info p {
    margin: 0;
    color: #51564E;
    font-family: "Nunito Sans", sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 38.19px;
}

.About-us-card {
    border-radius: 20px;
    border: 1px solid #E5E5E5;
    background: #FAFAFD;
    padding: 32px;
}

.About-us-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0B084D;
    display: flex;
    justify-content: center;
    align-items: center;

}

.About-us-card .card-title {
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    letter-spacing: -0.01em;
    color: #000000;
}

.About-us-card .card-text {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.01em;
    color: #565656;
}

.About-values-section h4 {
    font-family: Exo;
    font-size: 50px;
    font-weight: 700;
    line-height: 66.45px;
    letter-spacing: 0.04em;
    color: #08D336;
    margin-bottom: 20px;
}

.About-values-section span {
    color: #212121;
}

.About-values-section p {
    color: #908E8E;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.About-values-section .accordion-item {
    border: none !important;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #FFFFFF !important;
    border-radius: 0px !important;

}

.About-values-section .divider {
    border-bottom: 1px solid #B1B1B1 !important;
}

.About-values-section .accordion-button {
    color: #000000;
    font-family: Exo;
    font-size: 28px;
    font-weight: 600;
    line-height: 45px;
    padding: 30px 0px;
    background-color: #FFFFFF !important;
    border-radius: 0px !important;
}

.About-values-section .accordion-button:focus {
    box-shadow: none;
}

.About-values-section .accordion-button::after {
    font-family: "FontAwesome";
    content: "\f062";
    font-size: 18px;
    color: #08D336;
    width: auto !important;
    height: auto !important;
    padding: 0px 17px;
    margin-left: auto;
    background-image: none !important;
    transform: none !important;
    border: 0.7px solid #08D336 !important;
    background-color: #FFFFFF !important;
    border-radius: 60px !important;
}

.About-values-section .accordion-button.collapsed::after {
    content: "\f063";
    background-image: none !important;
}

.About-values-section .accordion-button span#toggle-text {
    position: absolute;
    right: 70px;
    color: #000;
    text-align: right;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.About-values-section .accordion-button:not(.collapsed) {
    color: #212121 !important;
    background-color: #FFFFFF !important;
    box-shadow: none !important;
    border-radius: 0px !important;
    border-bottom: none !important;
}

.About-values-section .accordion-body {
    padding: 0px 1.25rem 10px 0rem !important;
}

.About-values-section .accordion-body p {
    width: 60%;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #131313CC;
}

/*.team-section {
    background: url('../images/Our Team_11zon.webp') no-repeat center center/cover;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

    .team-section h3 {
        color: #FFFFFF;
        font-family: Exo;
        font-size: 56px;
        font-weight: 700;
        letter-spacing: -2px;
    }

    .team-section p {
        font-family: "Nunito Sans", sans-serif;
        font-size: 28px;
        font-weight: 500;
        line-height: 33.6px;
        margin-bottom: 40px;
    }

.team-member {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.downside-img {
    margin-top: 50px;
}

.team-member img {
    width: 100%;
    transition: transform 0.3s ease;
}

        

.member-info {
    transform: rotate(270deg);
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    font-size: 24px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    right: -40px;
    left: 66px;
    width: 100%;
}


.team-member img:hover {
    opacity: 0.8;
}


.team-member:hover .member-info {
    display: inline-block;
    opacity: 1;
    visibility: visible;
}*/

.owl-carousel .item {
    text-align: center;
}

.team-slider .owl-item {
    padding: 0px;
}

/* Image Container */
.img-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 20px;
}

/* Fixed Image Size */
.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.img-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

/* Show Overlay on Hover */
.img-container:hover .overlay {
    opacity: 1;
}

/* Member Info */
.member-info {
    font-size: 16px;
    font-weight: bold;
}


/* services page */
.Services-page-hero-section h1,
.career-page-hero-section h1 {
    font-family: Exo;
    font-size: 56px;
    font-weight: 600;
    line-height: 74.42px;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

.Services-page-hero-section p,
.career-page-hero-section p,
.contact-page-hero-section p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #FFFFFF;
}


/* every industory section */

.every-ind-section h2 {
    font-family: Exo;
    font-size: 50px;
    font-weight: 700;
    line-height: 66.45px;
    letter-spacing: 0.04em;
    color: #212121;
}

.every-ind-section .card {
    border: none;
    background-color: #F3F8F4;
    padding: 15px;
}

.every-ind-section .card p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #000000;
}

.solution-section .card {
    border: none;
    /*padding: 15px;*/
}

.solution-section .card h5 {
    color: #07D336;
    font-family: Exo;
    font-size: 22px;
    font-weight: 700;
    line-height: 28.6px;
}

.solution-section .card p {
    color: #545454;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
}

.solution-section .solution-card {
    background: url('../images/solution-card.webp') no-repeat center center/cover;
    border: none;
    border-radius: 22px;
}

.solution-section .card-body {
    display: flex;
    /*justify-content: space-between;*/
    flex-direction: column;
}

.solution-section .solution-card h4 {
    font-family: Exo;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #FFFFFF;
}

.solution-section .solution-card p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    color: #FFFFFF;
}

/* careers page */

.working-section h4 {
    font-family: Exo;
    font-size: 50px;
    font-weight: 700;
    line-height: 66.45px;
    letter-spacing: 0.04em;
    color: #212121;
}

.working-section p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #908E8E;
}

.working-section .icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid #E4E5E7;
    border-radius: 11px;
    width: fit-content;
}

.working-section .icon-box img {
    width: 36px;
    height: 36px;
}

.working-section .card {
    border: 1px solid #E5E9ED;
    border-radius: 20px;
}

.working-section .card h5 {
    font-family: Exo;
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    color: #212121;
}

.working-section .card p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #908E8E;
}


/* General Section Styling */
.job-listings {
    background-color: #F8F8FC;
    border-radius: 40px;
}

.job-listings h2 {
    font-family: Exo;
    font-size: 50px;
    font-weight: 700;
    line-height: 66.45px;
    letter-spacing: 0.04em;
    color: #212121;
}

.job-listings h2 span {
    color: #08D336;
}

.job-listings .section-subtitle {
    color: #908E8E;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 40px;
}


.tab-btn {
    font-family: Exo;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #07D336;
    background-color: transparent;
    border-radius: 22px;
    padding: 15px 20px;
    border: 1px solid #07D336;
    transition: all 0.3s ease-in-out;
}

/*.tab-btn:hover, .tab-btn.active {
        background-color: #07D336;
        color: #FFFFFF;
    }*/


.btn-check:checked+.btn,
:not(.btn-check)+.btn:active {
    color: #FFFFFF;
    background-color: #04741E;
    border-color: #04741E;
}

.case-studies-section .btn-primary {
    font-family: Exo;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #07D336;
    background-color: transparent;
    border-radius: 22px;
    padding: 15px 20px;
    border: 1px solid #07D336;
    transition: all 0.3s ease-in-out;
}

.case-studies-section .btn-primary:hover {
    color: #FFFFFF;
    background-color: #04741E;
    border-color: #04741E;
}

/* Job Cards */
.job-card {
    border-radius: 6px;
    background-color: #FFFFFF;
    transition: all 0.3s ease-in-out;
    padding: 20px;
    border: 1px solid #E0E4EA;
}

.job-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card .btn-employee {
    background-color: #E6FBEB;
    color: #07D336;
    border: none;
    text-decoration: none;
    padding: 10px 18px;
    font-family: Exo;
    font-size: 12px;
    font-weight: 600;
    line-height: 15.95px;
}

.job-card .job-type {
    font-family: "Nunito Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 14.4px;
    color: #474747;
    margin-top: 8px;
}

.job-card .job-type img {
    margin-right: 2px;
}

.job-listings .job-title {
    font-family: Exo;
    font-size: 20px;
    font-weight: 500;
    line-height: 26.58px;
    color: #23272C;
}

.job-listings .job-location {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 14.4px;
    color: #000000;
    margin-right: 7px;
}

.job-listings .job-location img {
    margin-bottom: 5px;
    margin-right: 2px;

}

.job-listings .job-date p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 14.4px;
    color: #343942;
    margin: 0;
}

.job-listings .job-date span {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.1px;
    color: #23272C;
}

.btn-apply {
    background-color: transparent;
    color: #08D336;
    text-decoration: none;
    padding: 8px 10px;
    font-family: Exo;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    border: 1px solid #07D336;
    border-radius: 22px;
}

@media(max-width: 1200px) {
    .job-location {
        display: block;
    }
}

@media(max-width:767px) {
    .job-location {
        display: inline;
    }
}

.btn-outline-green {
    color: #08D336;
    background-color: transparent;
    border: 1px solid #08D336;
}

.btn-outline-green:hover {
    color: #FFFFFF;
    background-color: #08D336;
}

.btn-arrow {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    border-radius: 22px;
    font-family: Exo;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
}

/* case studies detail page */

.sport-section h1 {
    font-family: Exo;
    font-size: 3rem !important;
    font-weight: 700;
    line-height: 1.2;
    color: #04091E;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.sport-section p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 1.8 !important;
    color: #625f7f;
    margin: 20px 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.sport-section h3 {
    color: #04091E;
    font-family: Exo;
    font-size: 1.75rem !important;
    font-weight: 600;
    line-height: 42.53px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.what-tools-container {
    display: flex;
    gap: 30px;
    width: 100%;
    padding: 10px;
    overflow-y: auto;
}

.what-tools-container img {
    width: 50px;
    height: 50px;

}

.sport-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 22px;
    padding: 20px;
    justify-self: center;
    width: 100%;
    max-height: 580px;
    background: #f4f8ff;
}

    .sport-img-container img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        max-height: 540px;
        border-radius: 22px;
    }

.bg-none{
    background: none !important;
}

.empower-section h2 {
    font-family: Exo;
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 1.3;
    color: #04091E;
    margin-bottom: 1.5rem;
    animation: fadeInLeft 0.8s ease-out;
}

.empower-section p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 1.125rem !important;
    font-weight: 500;
    line-height: 1.8 !important;
    color: #625f7f;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.empower-card-section .card {
    border: none;
    border-radius: 20px;
}

.empower-card-section .card-body {
    padding: 30px;
}

.bg-light-purple {
    background: radial-gradient(circle at 8% 14%, rgba(8,211,54,.08), transparent 23%), #f6f6fa;
}

.bg-light-pink {
    background-color: #FFDFF4;
}

.bg-light-blue {
    border: 1px solid #f6f6fa !important;
    background: #fff !important;
    background-color: #fff !important;
}

.empower-card-section .bg-light-white {
    background-color: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-light-green {
    background-color: #E6FBEB;
}

.empower-card-section h5 {
    color: #1A1A1A;
    font-family: Exo;
    font-size: 28px;
    font-weight: 600;
    line-height: 30.1px;
}

.empower-card-section p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #000000;
}

.green-img {
    background-color: #059626;
    border: 1px solid #E4E5E7;
    border-radius: 5px;
    padding: 10px;
    width: fit-content;
    margin-bottom: 25px;
}

.green-img img {
    width: 48px;
    height: 48px;
}

.purple-img {
    background-color: #0B084D;
    border: 1px solid #E4E5E7;
    border-radius: 5px;
    padding: 10px;
    width: fit-content;
    margin-bottom: 25px;
}

.purple-img img {
    width: 48px;
    height: 48px;
}

.pink-img {
    background-color: #BA007A;
    border: 1px solid #E4E5E7;
    border-radius: 5px;
    padding: 10px;
    width: fit-content;
    margin-bottom: 25px;
}

.pink-img img {
    width: 48px;
    height: 48px;
}

.four-card-section .card {
    border: none;
    border-radius: 20px;
    padding: 10px;
}

.four-card-section .card h5 {
    font-family: Exo;
    font-size: 28px;
    font-weight: 600;
    line-height: 30.1px;
    color: #000000;
}

.four-card-section .card p {
    font-family: Exo;
    font-size: 28px;
    font-weight: 600;
    line-height: 30.1px;
    color: #000000;
    margin: 25px 0px;
}

.four-card-section .card .custom-p {
    color: #333333;
}

.blur-img-container {
    background-color: #FFFFFF80;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 22px;
    padding: 20px;
}

.blur-img-container img {
    height: 100%;
    width: 100%;
}

.h-290 {
    height: 290px;
}

.h-600 {
    height: 600px;
}

.bg-laptop {
    background: url('../images/bg-img-section.webp') no-repeat center center/cover;
}


.offer-tabs-inner {
    width: 100%;
    /*  max-width: 370px; */
    position: relative;
    background-color: #565BDB;
    border-radius: 30px;
    padding: 32px 30px;
    transition: all .3s ease;
    cursor: pointer;
    min-height: 250px;
}

.offer-tabs-inner:before {
    transition: .25s ease all;
    content: "";
    position: absolute;
    height: 1px;
    width: 1px;
    background: transparent;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 30px;
}

.offer-tabs-inner .icons {
    position: relative;
    font-size: 40px;
}

.offer-tabs-inner-title {
    font-size: 18px;
    font-weight: 600;
    color: #151d21;
    margin-bottom: 18px;
    transition: .3s ease all;
    position: relative;
}

.offer-tabs-inner-text {
    font-size: 16px;
    color: #343434;
    margin: 0;
    padding-right: 1rem;
    transition: .3s ease all;
    position: relative;
}

.link-icon-wrapper {
    position: absolute;
    right: -1px;
    padding: 5px;
    bottom: -1px;
    background: #F8F8F8;
    width: 120px;
    height: 67px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    border-top-left-radius: 43%;
    border-bottom-right-radius: 1rem;
    z-index: 3;
}

.link-icon-wrapper .svg1 {
    position: absolute;
    top: -35px;
    right: 0;
    transform: rotate(180deg);
    width: 36px;
}

.link-icon-wrapper .icon-wrap {
    background: #2d2d2d;
    width: 100px;
    height: 50px;
    transition: all .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    color: #FFFFFF;
}

.link-icon-wrapper .icon-wrap img {
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

.link-icon-wrapper .icon-wrap a {
    color: #FFFFFF;
}

.link-icon-wrapper .svg2 {
    position: absolute;
    transform: rotate(180deg);
    width: 30px;
    bottom: 0;
    left: -29px;
}

.healthcare-section {
    background-color: #F8F8FC;
    border-radius: 40px;
}

.healthcare-box {
    margin: 20px 0px;
}

.healthcare-box a {
    text-decoration: none;
    background: #C8F9E2;
    color: #1B222B;
    padding: 5px;
}

.healthcare-box p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    color: #1B222B;
    margin-top: 10px;
}

.case-studies-section h2 {
    font-family: Exo;
    font-size: 50px;
    font-weight: 700;
    line-height: 66.45px;
    letter-spacing: 0.04em;
    color: #212121;
}

.case-studies-section h2 span {
    color: #07D336;
}

.btn-case-studies {
    color: #08D336;
    background-color: transparent;
    border: 1px solid #08D336;
    border-radius: 22px;
    padding: 15px 30px;
    border: 1px solid #07D336;
    transition: all 0.3s ease-in-out;
    font-family: Exo;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.02em;
    width: fit-content;
    text-decoration: none;
    margin-right: 20px;
}

.btn-case-studies:hover,
.btn-case-studies.active {
    background-color: #04741E;
    color: #FFFFFF;
    border-color: #04741E;
}

.case-studies-section .tab-btn {
    color: #07D336;
    border: 1px solid #07D336;
}

.case-studies-section .tab-btn:hover,
.case-studies-section .tab-btn.active {
    color: #FFFFFF;
    background-color: #04741E;
    border-color: #04741E;
}

.case-studies-section {
    background-color: #F8F8FC;
    border-radius: 22px;
}

.bg-card-light-purple {
    background-color: #DDDEEC;
}

.bg-card-light-green {
    background-color: #C9FFE6;
}

.bg-card-light-pink {
    background-color: #FFDFF4;
}


/* Features bar container */
.features-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

/* Text styling */
.features-text {
    color: #606060;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28.8px;
}

/* Navigation buttons container */
.features-nav {
    display: flex;
    gap: 10px;
}

/* Individual navigation buttons */
.nav-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1px solid #606060;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: #606060;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background-color: #f0f0f0;
    color: #333;
}

.our-service-section h2 {
    color: #212121;
    font-family: Exo;
    font-size: 56px;
    font-weight: 700;
    line-height: 74.42px;
    margin-bottom: 30px;
}

.our-service-section .card {
    background-color: #0B084D;
    padding: 15px;
    border-radius: 12px;
}

.our-service-section .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.our-service-section .img-box {
    padding: 10px;
    box-shadow: 0px 1.11px 2.21px 0px #1018280D;
    border: 1.11px solid #EAECF0;
    background-color: #FFFFFF;
    border-radius: 15px;
    width: fit-content;
}

.our-service-section .img-box img {
    height: 50px;
    width: 50px;
}

.our-service-section .card h4 {
    font-family: Exo;
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.our-service-section .card p {
    color: #FFFFFF;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.01em;
}

.service-feature-box {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: #FFFFFF;
    border: 1px solid #EAE9F2;
    box-shadow: 3px 1px 14px 0px #E7FFEC;
    border-radius: 6px;
}

.service-feature-box .img-box {
    padding: 10px;
    background-color: #F1F5F9;
    border-radius: 3px;
    width: fit-content;
    margin-right: 20px;
}

.service-feature-box .img-box img {
    width: 24px;
    height: 20px;
}

.service-feature-box span {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #18181B;
}

.service-feature-text h3 {
    font-family: Exo;
    font-size: 56px;
    font-weight: 700;
    line-height: 74.42px;
    color: #212121;
}

.service-feature-text h4 {
    font-family: Exo;
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    letter-spacing: -0.01em;
    color: #0B084D;
}

.service-feature-text p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.6px;
    color: #545454;
    width: 60%;
}

.web-line {
    position: relative;
}

.web-line .line {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, #0B084D 45.62%, #DCDDDF 45.63%);
}

.web-line .line2 {
    background: linear-gradient(0deg, #DCDDDF, #DCDDDF);
}

.web-line .num {
    position: absolute;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: #FFFFFF;
    border: 1px solid #F6F7F8;
    border-radius: 100px;
    color: #0B084D;
    font-family: Exo;
    font-size: 24px;
    font-weight: 400;
}

.web-line .one {
    top: -17px;
    left: 0;
}

.web-line .two {
    top: -17px;
    left: 34%;
}

.web-line .three {
    top: -17px;
    left: 67%;
}


.step-container {
    align-items: center;
    text-align: center;
    display: none;
}

.step-circle {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #F6F7F8;
    border-radius: 100px;
    color: #0B084D;
    font-family: Exo;
    font-size: 20px;
    font-weight: 400;
}

.step-line {
    background: linear-gradient(0deg, #DCDDDF, #DCDDDF);
    height: 1px;
    width: 100%;
}

.feature-box {
    margin-top: 20px;
}

.service-tool-section h3 {
    font-family: Exo;
    font-size: 56px;
    font-weight: 700;
    line-height: 74.42px;
    color: #212121;
}

.service-tool-section .tool-card {
    margin-right: 15px;
}


.book-tech-section .card {
    background: url('../images/blue-background_11zon.webp') no-repeat center center/cover;
    padding: 30px 15px;
    border-radius: 12px;
}

.book-tech-section .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.book-tech-section .card h2 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    display: block;
    color: #FFFFFF;
    margin: 0;
}

.book-tech-section .card h4 {
    color: #FFFFFF;
    font-family: Exo;
    font-size: 36px;
    font-weight: 700;
    line-height: 50.4px;
    text-align: center;
    width: 75%;
}

.book-tech-section .card p {
    color: #FFFFFF;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}

.service-progress-section {
    background: #F5FFF8;
}

.service-progress-section .section-title {
    font-family: Exo;
    font-size: 56px;
    font-weight: 700;
    line-height: 74.42px;
    letter-spacing: -2px;
    text-align: center;
    color: #04091E;
}

.service-progress-section .highlight {
    color: #08D336;
}

.service-progress-section .section-subtitle {
    text-align: center;
    color: #333333;
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 35.52px;
    margin-bottom: 2rem;
}

.service-progress-section .custom-margin {
    margin: 70px 0px 30px 0px;
}

.progress-bar-custom {
    width: 40%;
    display: flex;
}

.progress-bar-custom .bg-line {
    height: 4px;
    width: 33%;
}

.bg-purple {
    background: #0B084D;
}

.bg-green {
    background: #07D336;
}

.bg-orange {
    background: #F8AE48;
}

.color-purple {
    color: #0B084D;
}

.color-green {
    color: #07D336;
}

.color-orange {
    color: #F8AE48;
}

.border-purple {
    border: 4px solid #0B084D;
}

.border-green {
    border: 4px solid #07D336;
}

.border-orange {
    border: 4px solid #F8AE48;
}

.circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    position: relative;
}

.circle h6 {
    font-family: Exo;
    font-size: 20.26px;
    font-weight: 700;
    line-height: 26.92px;
}

.circle .icon {
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Exo;
    font-size: 36.58px;
    font-weight: 700;
}

.circle .heading-border {
    height: 3px;
    width: 30%;
}

.ring-img {
    position: absolute;
    width: 52%;
    right: -9px;
}

@media(max-width: 1400px) {
    .circle {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        position: relative;
    }

    .ring-img {
        position: absolute;
        width: 52%;
        right: -5px;
    }

    .circle .icon {
        width: 30px;
        height: 30px;
        font-size: 20.58px;
    }
}

@media(max-width: 1200px) {
    .ring-img {
        position: absolute;
        width: 62%;
        right: -28px;
    }
}

@media(max-width: 992px) {
    .ring-img {
        position: absolute;
        width: 27%;
        bottom: -43%;
        right: 36.5%;
        transform: rotate(90deg);
    }

    .circle-container {
        margin-bottom: 80px;
    }

    .circle .icon {
        position: absolute;
        top: 0%;
        left: 50%;
    }
}

@media (max-width: 767px) {
    .ring-img {
        position: absolute;
        width: 37%;
        bottom: -43%;
        right: 31.5%;
        transform: rotate(90deg);
    }
}

@media (max-width: 600px) {
    .ring-img {
        position: absolute;
        width: 37%;
        bottom: -43%;
        right: 31.5%;
        transform: rotate(90deg);
    }
}

@media (max-width: 500px) {
    .ring-img {
        position: absolute;
        width: 41%;
        bottom: -43%;
        right: 29.5%;
        transform: rotate(90deg);
    }
}

@media (max-width: 450px) {

    .ring-img {
        position: absolute;
        width: 48%;
        bottom: -43%;
        right: 25.5%;
        transform: rotate(90deg);
    }
}

@media (max-width: 400px) {
    .ring-img {
        position: absolute;
        width: 54%;
        bottom: -43%;
        right: 23.5%;
        transform: rotate(90deg);
    }
}

.cta-section {
    background-color: #EBF0FC;
    text-align: center;
    padding: 50px 20px;
}

.cta-title {
    font-family: Exo;
    font-size: 56px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -2px;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #484848;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #0B084D;
    border: 1px solid #0B084D;
    color: #F9F7FC;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: #0B084D;
}


.industries-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.industries-title {
    font-family: Exo;
    font-size: 56px;
    font-weight: 700;
    line-height: 74.42px;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: #04091E;
}

.industries-highlight {
    color: #08D336;
}

.industry-card {
    position: relative;
    background-color: #FFFFFF;
    border: 2px solid #E6FBEB;
    border-radius: 20px;
    padding: 20px;
    margin: 15px 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.industry-card:hover {
    background-color: #0B084D;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
}

.industry-icon img {
    height: 60px;
    width: 60px;
}

.industry-card:hover .industry-icon {
    opacity: 0;
}

.industry-title {
    font-family: Exo;
    font-size: 18px;
    font-weight: 600;
    line-height: 25.2px;
    color: #0B084D;
    margin: 0;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-title {
    color: #FFFFFF;
}

.arrow-icon {
    position: absolute;
    right: 20px;
    top: 27%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFFFFF;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover .arrow-icon {
    opacity: 1;
}

.tool-web .img-fluid {
    max-width: 80%;
}


.company-info-card {
    background: url('../images/case-card-bg.webp') no-repeat center center/cover;

}

.company-info-card .icon-container {
    width: fit-content;
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 5px;
}

.company-info-card .icon-container img {
    height: 48px;
    width: 48px;
}

.company-info-card .row {
    gap: 25px;
}

.company-info-card h3 {
    font-family: Exo;
    font-size: 28px;
    font-weight: 600;
    line-height: 30.1px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.company-info-card p {
    font-family: Urbanist;
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    color: #FFFFFF;
}

.company-info-card ul li {
    font-family: Urbanist;
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    color: #FFFFFF;
    margin-bottom: 5px;
}


.bg-image1 {
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    min-height: 480px;
    width: 100%;
    background-position: center;
}

.green-opacity-2 {
    background: linear-gradient(95deg, #0b084d5e, #08d3363b) !important;
    position: absolute !important;
    height: 100% !important;
    width: 100% !important;
}

.phentech-histroy-section h4 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 34px;
    color: #000;
    margin-bottom: 10px;
}

.phentech-histroy-section ul li {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #565656;
    margin-bottom: 10px;
}

.software-service-card p,
.blog-card p,
.description-div {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.iti {
    width: 100%;
}

.iti__country-list {
    max-width: 400px;
}

.scroll-industries {
    display: flex;
    overflow-y: auto;
    white-space: nowrap;
    gap: 10px;
    /* Adds space between spans */
    padding-bottom: 5px;
    /* Prevents scrollbar overlap */
    scrollbar-width: thin;
    /* For Firefox */
    scrollbar-color: #C8F9E2 transparent;
    /* For Firefox */
}

/* Custom scrollbar for Webkit browsers */
.scroll-industries::-webkit-scrollbar {
    height: 5px;
}

.scroll-industries::-webkit-scrollbar-thumb {
    background-color: #C8F9E2;
    border-radius: 5px;
}

.scroll-industries::-webkit-scrollbar-thumb:hover {
    background-color: #C8F9E2;
}

.industry-badge,
.service-badge {
    text-decoration: none;
    background: #C8F9E2;
    color: #1B222B;
    padding: 5px;
    display: inline-block;
    flex-shrink: 0;
}


.job-details {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.job-details h4 {
    margin: 0;
    color: #000;
    font-family: "Nunito Sans", sans-serif;
    font-size: 32px;
    font-weight: 500;
}

/*.tools-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;*/
/* space between rows */
/*position: relative;
    width: fit-content;
}

.tool-row {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    animation: scrollLeft 30s linear infinite;
}

.tool-cell {
    position: relative;
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool-icon {
    width: 80px;
    height: 80px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1;
}*/

/* Horizontal dotted line */
/*.dotted-line-horizontal {
    position: absolute;
    top: 35px;*/
/* middle of the icon */
/*left: 100%;
    width: 40px;
    height: 0;
    border-top: 2px dotted #ccc;
    z-index: 0;
}*/

/* Vertical dotted line */
/*.dotted-line-vertical {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 60px;
    border-left: 2px dotted #ccc;
    z-index: 0;
}*/


.tools-grid-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tool-row-wrapper {
    width: 100%;
    margin-bottom: 40px;
    /* space between rows */
}

.tool-row {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: scrollLeft 30s linear infinite;
}

.tool-cell {
    position: relative;
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool-icon {
    width: 80px;
    height: 80px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Horizontal dotted line */
.dotted-line-horizontal {
    position: absolute;
    top: 35px;
    /* middle of the icon */
    left: 100%;
    width: 40px;
    height: 0;
    border-top: 2px dotted #ccc;
    z-index: 0;
}

/* Vertical dotted line */
.dotted-line-vertical {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 60px;
    border-left: 2px dotted #ccc;
    z-index: 0;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move by half of the total width */
    }
}


.part-2 img {
    height: 270px;
    margin-bottom: 10px;
}


.team-section {
    text-align: center;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    justify-items: center;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    /*box-shadow: 0 8px 16px rgba(11, 8, 77, 0.3);*/
}

.team-member .name {
    margin-top: 8px;
    font-weight: bold;
    font-size: 14px;
}

.team-member .role {
    font-size: 13px;
    color: #777;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 800px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.btn-green {
    color: #fff;
    background-color: #08D336 !important;
    border: 1px solid #08D336;
}

.btn-green:hover {
    color: #08D336;
    background-color: transparent !important;
    border: 1px solid #08D336 !important;
}

.benefits-bar {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    color: white;
    margin-top: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.benefit-item .check {
    color: #00c853;
    /* Green checkmark */
    margin-right: 8px;
    font-weight: bold;
}

.contact-form {
    margin-top: 15px;
}

/* ========================================
   SingleCaseStudy Page Enhancements
   ======================================== */

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Image and Container Animations */
.sport-img-container {
    animation: fadeInRight 0.8s ease-out 0.4s both;
    transition: transform 0.3s ease;
}

    .sport-img-container img {
        border-radius: 15px;
        transition: transform 0.5s ease;
    }

.sport-img-container:hover img {
    transform: scale(1.02);
}

.what-tools-container {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.what-tools-container img {
    transition: all 0.3s ease;
    opacity: 0.85;
}

.what-tools-container img:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* Card Animations and Hover Effects */
.empower-card-section .card {
    animation: scaleIn 0.6s ease-out both;
    transition: all 0.3s ease;
}

.empower-card-section .col-md-6:nth-child(1) .card {
    animation-delay: 0.1s;
}

.empower-card-section .col-md-6:nth-child(2) .card {
    animation-delay: 0.2s;
}

.empower-card-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.company-info-card {
    animation: fadeInUp 0.8s ease-out 0.3s both;
    transition: all 0.3s ease;
}

.company-info-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.icon-container img {
    transition: transform 0.3s ease;
}

.icon-container:hover img {
    transform: scale(1.05);
}

.purple-img,
.pink-img,
.green-img {
    transition: transform 0.3s ease;
}

.card:hover .purple-img,
.card:hover .pink-img,
.card:hover .green-img {
    transform: scale(1.1);
}

.blur-img-container {
    overflow: hidden;
    transition: all 0.3s ease;
}

.blur-img-container img {
    transition: transform 0.5s ease;
}

.blur-img-container:hover img {
    transform: scale(1.05);
}

/* Four Card Section */
.four-card-section .card {
    animation: scaleIn 0.6s ease-out both;
    transition: all 0.3s ease;
}

.four-card-section .col-md-6:nth-child(1) .card {
    animation-delay: 0.1s;
}

.four-card-section .col-md-6:nth-child(2) .card {
    animation-delay: 0.2s;
}

.four-card-section .col-md-6:nth-child(3) .card {
    animation-delay: 0.3s;
}

.four-card-section .col-md-6:nth-child(4) .card {
    animation-delay: 0.4s;
}

.four-card-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Healthcare Section */
.healthcare-section .offer-tabs-inner {
    animation: fadeInUp 0.6s ease-out both;
    transition: all 0.3s ease;
}

.healthcare-section .col-lg-4:nth-child(1) .offer-tabs-inner {
    animation-delay: 0.1s;
}

.healthcare-section .col-lg-4:nth-child(2) .offer-tabs-inner {
    animation-delay: 0.2s;
}

.healthcare-section .col-lg-4:nth-child(3) .offer-tabs-inner {
    animation-delay: 0.3s;
}

.healthcare-section .offer-tabs-inner:hover {
    transform: translateY(-10px);
}

/* Button Animations */
.btn-arrow {
    animation: fadeInUp 0.8s ease-out 0.3s both;
    transition: all 0.3s ease;
}

.btn-arrow:hover {
    transform: translateX(5px);
}

.btn-arrow i {
    transition: transform 0.3s ease;
}

.btn-arrow:hover i {
    transform: translateX(5px);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Card Typography Enhancements */
.empower-card-section h5,
.four-card-section h5 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
}

.empower-card-section p,
.four-card-section p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

.company-info-card h3 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
}

.company-info-card p,
.company-info-card li {
    font-size: 1rem !important;
}

.healthcare-box p {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .sport-section h1 {
        font-size: 2.25rem !important;
    }

    .empower-section h2 {
        font-size: 2rem !important;
    }

    .healthcare-box p {
        font-size: 1.25rem !important;
    }
}

/* ========================================
   Floating Support Button & Modal
   ======================================== */

/* Floating Support Button */
.support-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B084D 0%, #08D336 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(8, 211, 54, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(8, 211, 54, 0.6);
}

@@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(8, 211, 54, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(8, 211, 54, 0.7);
    }
}

/* Support Modal Design */
.support-modal-form .form-container {
    position: relative;
    width: 100%;
    background-color: #fafafa;
    overflow: hidden;
    border-radius: 15px;
}

.support-modal-form .support-form-wrapper {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.support-modal-form .contact-form-section {
    background-color: #0B084D;
    position: relative;
}

.support-modal-form .form-circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #08D336);
    position: absolute;
}

.support-modal-form .form-circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.support-modal-form .form-circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.support-modal-form .contact-form-section:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #0B084D;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

.support-modal-form .support-form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.support-modal-form .form-title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.support-modal-form .input-container {
    position: relative;
    margin: 1rem 0;
}

.support-modal-form .form-input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
}

.support-modal-form textarea.form-input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
}

textarea.form-control {
    min-height: calc(4.5em + .75rem + calc(var(--bs-border-width) * 2));
}

.support-modal-form .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.support-modal-form .input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

.support-modal-form .form-btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #0B084D;
    line-height: 1;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    width: 100%;
}

.support-modal-form .form-btn:hover {
    background-color: transparent;
    color: #fff;
}

.support-modal-form .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.support-modal-form .input-container span:before,
.support-modal-form .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #0B084D;
    top: 50%;
    transform: translateY(-50%);
}

.support-modal-form .input-container span:before {
    left: 50%;
}

.support-modal-form .input-container span:after {
    right: 50%;
}

.support-modal-form .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.support-modal-form .input-container.focus span:before,
.support-modal-form .input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.support-modal-form .contact-info-section {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.support-modal-form .contact-info-section .form-title {
    font-family: Exo !important;
    color: #111111 !important;
}

.support-modal-form .info-text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

.support-modal-form .information-item p {
    margin: 0px;
}

.support-modal-form .information-item {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    font-size: 0.95rem;
}

.support-modal-form .information-item i {
    color: #08D336;
}

.support-modal-form .info-icon {
    width: 28px;
    margin-right: 0.7rem;
    margin-top: 4px;
}

.support-modal-form .social-media-section {
    padding: 2rem 0 0 0;
}

.support-modal-form .social-media-section p {
    color: #333;
}

.support-modal-form .social-icons {
    display: flex;
    margin-top: 0.5rem;
}

.support-modal-form .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #0B084D, #0B084D);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.support-modal-form .social-icons a:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #08D336, #08D336);
}

.support-modal-form .contact-info-section:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #08D336;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}

.support-modal-form .big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.support-modal-form .form-square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

/* Modal specific adjustments */
.support-modal-form .modal-content {
    border: none;
    background: transparent;
}

.support-modal-form .modal-header {
    border-bottom: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10000;
}

.support-modal-form .modal-title {
    display: none;
}

.support-modal-form .btn-close {
    background: none;
    color: white;
    font-size: 1.5rem;
    opacity: 1;
}

/* Responsive styles */
@media (max-width: 992px) {
    .support-modal-form .support-form-wrapper {
        grid-template-columns: 1fr;
    }

    .support-modal-form .contact-info-section:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .support-modal-form .contact-form-section:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .support-modal-form .form-square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .support-modal-form .big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%;
    }

    .support-modal-form .info-text {
        margin: 1rem 0 1.5rem 0;
    }

    .support-modal-form .social-media-section {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 576px) {
    .support-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }

    .support-modal-form .contact-info-section:before {
        display: none;
    }

    .support-modal-form .form-square,
    .support-modal-form .big-circle {
        display: none;
    }

    .support-modal-form .support-form,
    .support-modal-form .contact-info-section {
        padding: 1.7rem 1.6rem;
    }

    .support-modal-form .info-text,
    .support-modal-form .information-item,
    .support-modal-form .social-media-section p {
        font-size: 0.8rem;
    }

    .support-modal-form .form-title {
        font-size: 1.15rem;
    }

    .support-modal-form .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .support-modal-form .info-icon {
        width: 23px;
    }

    .support-modal-form .form-input {
        padding: 0.45rem 1.2rem;
    }

    .support-modal-form .form-btn {
        padding: 0.45rem 1.2rem;
    }
}

/* reCAPTCHA styling for support modal */
.support-modal-form .g-recaptcha {
    transform: scale(0.95);
    transform-origin: 0 0;
}

@media (max-width: 576px) {
    .support-modal-form .g-recaptcha {
        transform: scale(0.85);
    }
}

/* Schedule Consultation Button Styling */
.schedule-consultation-btn {
    background: #0B084D !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid #0B084D !important;
}

.schedule-consultation-btn:hover {
    background: #08D336 !important;
    border-color: #08D336 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 211, 54, 0.3);
}

.schedule-consultation-btn i {
    font-size: 24px;
}

.schedule-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.schedule-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-subtitle {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .schedule-consultation-btn {
        padding: 8px 15px !important;
        gap: 8px !important;
    }

    .schedule-consultation-btn i {
        font-size: 20px;
    }

    .schedule-title {
        font-size: 14px;
    }

    .schedule-subtitle {
        font-size: 9px;
    }
}
/* ============================================
   Password Modal Styling - CaseStudyWithPassword
   ============================================ */

/* Modal Backdrop with Blur Effect */
#passwordModal {
    background: rgba(11, 8, 77, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInBackdrop 0.4s ease;
}

@keyframes fadeInBackdrop {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Dialog - Centered and Animated */
#passwordModal .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0 auto;
    max-width: 500px;
    animation: slideInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Content - Modern Card Design */
#passwordModal .modal-content {
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

/* Decorative Background Elements */
#passwordModal .modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(8, 211, 54, 0.1) 0%, transparent 70%);
    animation: rotateGradient 15s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Modal Header */
#passwordModal .modal-header {
    border-bottom: 2px solid rgba(8, 211, 54, 0.1);
    padding: 30px 35px 20px;
    background: linear-gradient(135deg, rgba(8, 211, 54, 0.05) 0%, transparent 100%);
    position: relative;
    z-index: 1;
}

#passwordModal .modal-title {
    font-family: 'Exo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0B084D;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

#passwordModal .modal-title::before {
    content: '\f023';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #08D336;
    font-size: 24px;
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Modal Body */
#passwordModal .modal-body {
    padding: 35px;
    position: relative;
    z-index: 1;
}

/* Password Input Container */
#passwordModal .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#passwordModal .form-control:focus {
    border-color: #08D336;
    outline: none;
    box-shadow: 0 0 0 4px rgba(8, 211, 54, 0.1),
                0 4px 12px rgba(8, 211, 54, 0.15);
    transform: translateY(-2px);
}

#passwordModal .form-control::placeholder {
    color: #9e9e9e;
    font-weight: 400;
}

/* Modal Footer */
#passwordModal .modal-footer {
    border-top: none;
    padding: 0 35px 35px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Submit Button - Premium Design */
#passwordModal .btn-primary {
    background: linear-gradient(135deg, #08D336 0%, #06b02c 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 40px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(8, 211, 54, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

#passwordModal .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#passwordModal .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

#passwordModal .btn-primary:hover {
    background: linear-gradient(135deg, #06b02c 0%, #059926 100%);
    box-shadow: 0 6px 25px rgba(8, 211, 54, 0.4);
    transform: translateY(-2px);
}

#passwordModal .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(8, 211, 54, 0.3);
}

/* Loading State */
#passwordModal .btn-primary:disabled {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 576px) {
    #passwordModal .modal-dialog {
        max-width: 90%;
        margin: 0 auto;
    }

    #passwordModal .modal-header {
        padding: 25px 20px 15px;
    }

    #passwordModal .modal-title {
        font-size: 24px;
    }

    #passwordModal .modal-body {
        padding: 25px 20px;
    }

    #passwordModal .modal-footer {
        padding: 0 20px 25px;
    }

    #passwordModal .form-control {
        padding: 14px 16px;
        font-size: 15px;
    }

    #passwordModal .btn-primary {
        padding: 12px 30px;
        font-size: 15px;
        min-width: 150px;
    }
}

/* Focus Visible for Accessibility */
#passwordModal .form-control:focus-visible,
#passwordModal .btn-primary:focus-visible {
    outline: 3px solid rgba(8, 211, 54, 0.5);
    outline-offset: 2px;
}

/* Error State (Optional - for future enhancement) */
#passwordModal .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

#passwordModal .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15),
                0 4px 12px rgba(220, 53, 69, 0.2);
}

/* Success State (Optional - for future enhancement) */
#passwordModal .form-control.is-valid {
    border-color: #08D336;
    box-shadow: 0 0 0 4px rgba(8, 211, 54, 0.1);
}

/* ============================================
   Auto-Expand Textarea Styling
   ============================================ */

/* Smooth transition for textarea height changes */
textarea {
    transition: height 0.2s ease;
    overflow-y: hidden; /* Hide scrollbar during auto-expand */
}

/* Mobile-specific textarea behavior */
@media (max-width: 768px) {
    textarea {
        min-height: 80px;
        resize: vertical; /* Allow manual resize on mobile */
    }
}

.contact-service-options {
    --contact-service-accent: #08D336;
    --contact-service-ink: #0B084D;
    --contact-service-muted: #E7E6ED;
    row-gap: 12px;
    padding-left: 0 !important;
    margin-bottom: 18px !important;
}

.contact-service-options .contact-service-option {
    position: relative;
    display: block;
    align-items: stretch;
    padding: 0 6px;
}

.contact-service-options .form-check-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-service-options .form-check-label {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    width: 100%;
    padding: 12px 14px 12px 48px;
    border: 1px solid var(--contact-service-muted);
    border-radius: 12px;
    background: #FFFFFF;
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(11, 8, 77, 0.06);
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-service-options .form-check-label::before {
    content: "";
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    border: 2px solid #C9C8D6;
    border-radius: 6px;
    background: #FFFFFF;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

    .contact-service-options .form-check-label::after {
        content: "";
        position: absolute;
        left: 22px;
        top: 18px;
        width: 6px;
        height: 11px;
        border: solid #FFFFFF;
        border-width: 0 2px 2px 0;
        opacity: 0;
        transform: rotate(45deg) scale(0.7);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

.contact-service-options .form-check-label:hover {
    border-color: rgba(8, 211, 54, 0.55);
    box-shadow: 0 10px 28px rgba(8, 211, 54, 0.12);
    transform: translateY(-1px);
}

.contact-service-options .form-check-input:checked + .form-check-label {
    border-color: var(--contact-service-accent);
    background: linear-gradient(135deg, rgba(8, 211, 54, 0.12), rgba(11, 8, 77, 0.04));
    color: var(--contact-service-ink);
    box-shadow: 0 12px 30px rgba(8, 211, 54, 0.18);
}

.contact-service-options .form-check-input:checked + .form-check-label::before {
    border-color: var(--contact-service-accent);
    background: var(--contact-service-accent);
    box-shadow: 0 0 0 4px rgba(8, 211, 54, 0.14);
}

.contact-service-options .form-check-input:checked + .form-check-label::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.contact-service-options .form-check-input:focus-visible + .form-check-label {
    outline: 3px solid rgba(8, 211, 54, 0.32);
    outline-offset: 2px;
}

.blog-list-section {
    position: relative;
}

.blog-card {
    position: relative;
    border: 1px solid rgba(11, 8, 77, 0.08);
    border-radius: 18px;
    background: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(11, 8, 77, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    justify-content: space-between;
}

.blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid #08D336;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.blog-card:hover {
    border-color: rgba(8, 211, 54, 0.38);
    box-shadow: 0 24px 60px rgba(11, 8, 77, 0.15);
    transform: translateY(-6px);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
}

.blog-card-image {
    min-height: 215px;
    border-radius: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card .card-body {
    padding: 24px 22px 22px;
}

.blog-card-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(8, 211, 54, 0.1);
    color: #0B084D;
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
}

.blog-card-date::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #08D336;
    box-shadow: 0 0 0 4px rgba(8, 211, 54, 0.16);
}

.blog-card-title {
    margin: 14px 0 10px;
    color: #0B084D;
    font-family: Exo, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.blog-card-description {
    /*min-height: 78px;*/
    color: #5C5A88;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 10px;
}

.blog-card .learn-more {
    color: #08D336;
    text-decoration: none;
    text-align: left;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 14px;
    line-height: 24px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 12px;
    border: 1px solid rgba(8, 211, 54, 0.35);
    border-radius: 999px;
    background: rgba(8, 211, 54, 0.08);
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    margin-top: 8px;
}

.blog-card .learn-more i {
    transition: transform 0.25s ease;
}

.blog-card .learn-more:hover {
    color: #FFFFFF;
    background-color: #08D336;
    border-color: #08D336;
    transform: translateY(-1px);
}

.blog-card .learn-more:hover i {
    transform: translateX(4px);
}

/* Rich content produced by the blog content editor (Quill) */
.blog-details-content {
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #333333;
}

.blog-details-content > *:first-child {
    margin-top: 0;
}

.blog-details-content > *:last-child {
    margin-bottom: 0;
}

.blog-details-content h1,
.blog-details-content h2,
.blog-details-content h3,
.blog-details-content h4,
.blog-details-content h5,
.blog-details-content h6 {
    font-family: Exo, sans-serif !important;
    color: #0B084D !important;
    letter-spacing: -0.01em;
    scroll-margin-top: 100px;
}

.blog-details-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 1.4em 0 0.6em;
}

.blog-details-content h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 1.6em 0 0.75em;
    padding-bottom: 14px;
    position: relative;
}

.blog-details-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #08D336, #0B084D);
}

.blog-details-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 1.4em 0 0.6em;
    padding-left: 16px;
    border-left: 4px solid #08D336;
}

.blog-details-content h4 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 1.2em 0 0.5em;
}

.blog-details-content h5,
.blog-details-content h6 {
    font-weight: 800;
    line-height: 1.4;
    margin: 1.4em 0 0.6em;
    color: #08D336 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em !important;
}

.blog-details-content h5 {
    font-size: 0.95rem;
}

.blog-details-content h6 {
    font-size: 0.8rem;
}

.blog-details-content p {
    margin: 0 0 1.25em;
}

.blog-details-content strong,
.blog-details-content b {
    font-weight: 700;
    color: #212121 !important;
}

.blog-details-content small {
    color: #6c757d !important;
    font-size: 0.85em;
}

.blog-details-content a {
    color: #08D336;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.blog-details-content a:hover {
    color: #009624;
}

.blog-details-content ul,
.blog-details-content ol {
    margin: 0 0 1.25em;
    padding-left: 1.4em;
}

.blog-details-content li {
    margin-bottom: 0.5em;
}

.blog-details-content li::marker {
    color: #08D336;
    font-weight: 600;
}

/* Content is sometimes authored as a bold "run-in" heading followed
   immediately by regular text inside the same <li> (no <p>/<br> between
   them), which otherwise renders as one glued-together inline line. */
.blog-details-content li > strong:first-child,
.blog-details-content li > b:first-child {
    display: block;
    margin-bottom: 0.35em;
}

.blog-details-content blockquote {
    margin: 1.75em 0;
    padding: 1em 1.5em;
    border-left: 4px solid #08D336;
    background-color: #FAFAFD;
    border-radius: 0 12px 12px 0;
    font-size: 1.1em;
    font-style: italic;
    color: #444444;
}

.blog-details-content blockquote p:last-child {
    margin-bottom: 0;
}

.blog-details-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5em 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(11, 8, 77, 0.08);
}

.blog-details-content iframe.ql-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 1.5em 0;
    border: none;
    border-radius: 12px;
}

.blog-details-content .ql-align-center {
    text-align: center;
}

.blog-details-content .ql-align-right {
    text-align: right;
}

.blog-details-content .ql-align-justify {
    text-align: justify;
}

.blog-details-content .table-scroll-wrapper {
    overflow-x: auto;
    margin: 1.75em 0;
    border-radius: 12px;
}

.blog-details-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    border: 1px solid rgba(11, 8, 77, 0.1);
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.95em;
}

.blog-details-content thead th {
    background: #0B084D;
    color: #fff !important;
    font-family: Exo, sans-serif;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
}

.blog-details-content th,
.blog-details-content td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(11, 8, 77, 0.08);
}

.blog-details-content tbody tr:last-child td {
    border-bottom: none;
}

.blog-details-content tbody tr:nth-child(even) {
    background: #FAFAFD;
}

.blog-details-content code {
    font-family: Consolas, "Liberation Mono", Menlo, monospace;
    background: rgba(8, 211, 54, 0.1);
    color: #0B084D !important;
    padding: 0.2em 0.45em;
    border-radius: 6px;
    font-size: 0.9em;
}

.blog-details-content pre {
    background: #0B084D;
    color: #E8E8F5;
    padding: 20px 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.75em 0;
    line-height: 1.6;
}

.blog-details-content pre code {
    background: none;
    color: inherit !important;
    padding: 0;
    font-size: 0.9em;
}

.blog-details-content hr {
    border: none;
    height: 2px;
    margin: 2.5em 0;
    background: linear-gradient(90deg, #08D336, rgba(8, 211, 54, 0));
}

.blog-details-content mark {
    background: rgba(8, 211, 54, 0.25);
    color: #0B084D !important;
    padding: 0.05em 0.3em;
    border-radius: 4px;
}

.blog-details-content sup,
.blog-details-content sub {
    font-size: 0.75em;
}
.hover-color-change:hover{
    color:#08D336!important;
}