﻿::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-thumb {
    background-color: #1bb1dc;
    border-radius: 10px
}

::-webkit-scrollbar-track {
    background: #f1f1f1
}

::-moz-selection {
    background-color: #1bb1dc;
    color: #fff
}

::selection {
    background-color: #1bb1dc;
    color: #fff
}

* {
    scrollbar-color: #1bb1dc #f1f1f1
}

.text_primary {
    color: #1bb1dc
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999
}

.loader-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center
}

.loader-img {
    width: 90px;
    height: 90px;
    position: absolute;
    z-index: 2
}

.loader-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 6px solid #fff0;
    border-top-color: #1e78b5;
    border-right-color: #f3773f;
    border-bottom-color: #65b650;
    animation: rotate 1.5s linear infinite
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.custom-section {
    position: relative;
    background: rgba(27,177,220,50%);
    color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgb(0 0 0 / .2);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    overflow: hidden
}

    .custom-section:hover {
        transform: scale(1.05)
    }

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 10px;
    backdrop-filter: blur(10px) brightness(1.1)
}

.custom-icon, .custom-heading {
    position: relative;
    z-index: 1
}

.custom-icon {
    font-size: 50px;
    color: #fff;
    background: rgb(255 255 255 / .2);
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 15px;
    display: inline-block
}

.custom-heading h1 {
    font-size: 2.5rem;
    font-weight: 700
}

.custom-heading p {
    font-size: 1.2rem;
    opacity: .9
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / .5);
    z-index: 1
}

#header-carousel .carousel-control-prev, #header-carousel .carousel-control-next {
    width: 10%
}

#header-carousel .carousel-control-prev-icon, #header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFF;
    border-radius: 60px;
    overflow: hidden;
}

@media (max-width:768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px
    }

        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover
        }

    #header-carousel .carousel-control-prev, #header-carousel .carousel-control-next {
        display: none
    }
    #header-carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgb(0 0 0 / .5),rgb(0 0 0 / .5)),url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--secondary)
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--light)
}

.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s
}

.service-icon.hexagon {
    width: 50px;
    height: 50px;
    background: #1bb1dc;
    clip-path: polygon( 50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25% );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding:40px;
}

    .service-icon.hexagon i {
        font-size: 30px;
        color: white;
    }


    .service-item a.btn {
        position: absolute;
        width: 60px;
        bottom: -48px;
        left: 50%;
        margin-left: -30px;
        opacity: 0
    }

    .service-item:hover a.btn {
        bottom: -24px;
        opacity: 1
    }

.service-item {
    transition: all 0.3s ease-in-out;
    padding: 20px
}

    .service-item:hover {
        background-color: #007bff;
        color: #000;
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgb(0 0 0 / .2)
    }

    .service-item h4, .service-item p {
        transition: color 0.3s ease-in-out
    }

    .service-item:hover h4, .service-item:hover p {
        color: #000
    }

#Team {
    background: linear-gradient(135deg,#f8f9fa,#e9ecef);
    padding: 60px 0
}

.team-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgb(0 0 0 / .1);
    border: none
}

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgb(0 0 0 / .15)
    }

    .team-card img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #fff;
        box-shadow: 0 4px 10px rgb(0 0 0 / .1);
        margin-top: -60px;
        background: #fff
    }

    .team-card .card-body {
        padding: 15px
    }

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333
}

.card-text {
    font-size: 16px;
    color: #6c757d
}

.why-choose-us {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(0 0 0 / .1);
    transition: transform 0.3s ease-in-out,box-shadow 0.3s ease-in-out
}

    .why-choose-us:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgb(0 0 0 / .2)
    }

.index-number {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #1bb1dc;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgb(0 0 0 / .2);
    clip-path: polygon( 50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25% );
}

.counter-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .15);
    transition: transform 0.3s,box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 320px;
    margin: 0 auto
}

    .counter-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 10px 20px rgb(0 0 0 / .2)
    }

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1bb1dc
}

.counter-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1bb1dc
}

.counter-icon {
    font-size: 3rem;
    color: #1bb1dc;
    margin-bottom: 10px
}

@media (max-width:991px) {
    .counter-number {
        font-size: 2.5rem
    }

    .counter-text {
        font-size: 1.2rem
    }
}

@media (max-width:768px) {
    .counter-card {
        max-width: 100%;
        padding: 25px
    }

    .counter-number {
        font-size: 2.2rem
    }

    .counter-icon {
        font-size: 2.5rem
    }

    .counter-text {
        font-size: 1.1rem
    }
}

#whatweareoffering {
    .service-card

{
    cursor: pointer
}

}

.info-box {
    background-color: #1bb1dc;
    color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease-in-out
}

    .info-box:hover {
        transform: translateY(-15px)
    }

    .info-box i {
        color: #fff;
        font-size: 50px
    }

    .info-box h5 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 15px
    }

    .info-box p {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 5px
    }

.popup-message {
    position: fixed;
    top: 80px;
    right: -400px;
    width: 350px;
    max-width: 90%;
    padding: 15px 20px;
    font-size: 16px;
    font-family: 'Poppins',sans-serif;
    font-weight: 500;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .2);
    backdrop-filter: blur(10px);
    transition: right 0.5s ease-in-out,opacity 0.5s ease-in-out;
    opacity: 0;
    z-index: 9999;
    overflow: hidden
}

    .popup-message.show {
        right: 20px;
        opacity: 1
    }

    .popup-message.success {
        background: linear-gradient(135deg,#5cd65c,#45b845)
    }

    .popup-message.error {
        background: linear-gradient(135deg,#dc3545,#c82333)
    }

    .popup-message .icon {
        font-size: 22px;
        font-weight: 700;
        background: rgb(255 255 255 / .2);
        padding: 8px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px
    }

    .popup-message p {
        margin: 0;
        font-weight: 600;
        letter-spacing: .5px;
        flex-grow: 1
    }

    .popup-message.success .icon, .popup-message.error .icon {
        color: #fff
    }

.popup-message {
    width: 22%;
    top: 80px;
    right: -100%;
    font-size: 16px;
    padding: 12px 15px;
    gap: 10px;
    backdrop-filter: none;
    background: rgb(0 0 0 / .9)
}

    .popup-message.show {
        right: 5%
    }

    .popup-message .icon {
        font-size: 18px;
        width: 30px;
        height: 30px;
        padding: 6px
    }

    .popup-message p {
        font-size: 14px
    }

.info-box p {
    font-size: 18px
}

}

.contact-us .inner {
    box-shadow: 0 0 10px #00000024;
    border-radius: 5px;
    overflow: hidden
}

.contact-us .contact-us-left {
    width: 100%;
    height: 100%
}

.contact-us .contact-us-form {
    padding: 50px 40px
}

    .contact-us .contact-us-form h2 {
        position: relative;
        font-size: 32px;
        color: #333;
        font-weight: 600;
        line-height: 27px;
        text-transform: capitalize;
        margin-bottom: 12px;
        padding-bottom: 20px;
        text-align: left
    }

        .contact-us .contact-us-form h2:before {
            position: absolute;
            content: "";
            left: 0;
            bottom: 0;
            height: 2px;
            width: 50px;
            background: #1A76D1
        }

    .contact-us .contact-us-form p {
        font-size: 14px;
        color: #333;
        font-weight: 400;
        text-align: left;
        margin-bottom: 50px
    }

.contact-us .form {
    margin-top: 30px
}

    .contact-us .form .form-group {
        margin-bottom: 22px
    }

        .contact-us .form .form-group input {
            width: 100%;
            height: 50px;
            border: 1px solid #eee;
            text-transform: capitalize;
            padding: 0 18px;
            color: #555;
            font-size: 14px;
            font-weight: 400;
            border-radius: 4px
        }

        .contact-us .form .form-group textarea {
            width: 100%;
            height: 100px;
            border: 1px solid #eee;
            text-transform: capitalize;
            padding: 18px;
            color: #555;
            font-size: 14px;
            font-weight: 400;
            border-radius: 4px
        }

        .contact-us .form .form-group.login-btn {
            margin: 0
        }

    .contact-us .form button {
        border: none
    }

    .contact-us .form .btn {
        display: inline-block;
        margin-right: 10px;
        color: #fff;
        line-height: 20px;
        width: 100%
    }

        .contact-us .form .btn:hover {
            background: #1A76D1;
            color: #fff
        }

.contact-us .contact-us-form .checkbox {
    text-align: left;
    margin: 0;
    margin-top: 20px;
    display: inline-block
}

    .contact-us .contact-us-form .checkbox label {
        font-size: 14px;
        font-weight: 400;
        color: #333;
        position: relative;
        padding-left: 20px
    }

        .contact-us .contact-us-form .checkbox label:hover {
            cursor: pointer
        }

        .contact-us .contact-us-form .checkbox label input {
            display: none
        }

        .contact-us .contact-us-form .checkbox label::before {
            position: absolute;
            content: "";
            left: 0;
            top: 5px;
            width: 15px;
            height: 15px;
            border: 1px solid #1A76D1;
            border-radius: 100%
        }

        .contact-us .contact-us-form .checkbox label::after {
            position: relative;
            content: "";
            width: 7px;
            height: 7px;
            left: -16px;
            top: -15px;
            opacity: 0;
            visibility: hidden;
            transform: scale(0);
            -webkit-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
            display: block;
            font-size: 9px;
            background: #1A76D1;
            border-radius: 100%
        }

        .contact-us .contact-us-form .checkbox label.checked::after {
            opacity: 1;
            visibility: visible;
            transform: scale(1)
        }

.contact-us .contact-info {
    margin-top: 50px
}

.contact-us .single-info {
    background: #1bb1dc;
    padding: 40px 48px;
    height: 150px;
    border-radius: 10px;
    position: relative;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

    .contact-us .single-info:before {
        position: absolute;
        z-index: -1;
        content: '';
        bottom: -10px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 80%;
        height: 90%;
        background: #1bb1dc;
        opacity: 0;
        filter: blur(10px);
        -webkit-transition: all .3s ease-out 0s;
        -moz-transition: all .3s ease-out 0s;
        -ms-transition: all .3s ease-out 0s;
        -o-transition: all .3s ease-out 0s;
        transition: all .3s ease-out 0s
    }

    .contact-us .single-info:hover:before {
        opacity: .8
    }

    .contact-us .single-info:hover {
        transform: translateY(-5px)
    }

    .contact-us .single-info i {
        font-size: 42px;
        color: #fff;
        position: absolute;
        left: 40px
    }

    .contact-us .single-info .content {
        margin-left: 45px
    }

        .contact-us .single-info .content h3 {
            color: #fff;
            font-size: 18px;
            font-weight: 600
        }

        .contact-us .single-info .content p {
            color: #fff;
            margin-top: 5px
        }

.contact-us #myMap {
    height: 100%;
    width: 100%
}

@media (max-width:768px) {
    .popup-message {
        width: 90%
    }
}

#clients {
    background: #f0f0f0
}

.honeycomb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.honeycomb-row {
    display: flex;
    justify-content: center;
    gap: 20px
}

.honeycomb-cell {
    width: 120px;
    height: 138px;
    background: #fff;
    clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgb(0 0 0 / .15);
    transition: transform 0.3s,background 0.3s
}

    .honeycomb-cell:hover {
        transform: scale(1.1);
        background: #fff
    }

    .honeycomb-cell img {
        max-width: 90px;
        height: auto
    }

@media (max-width:768px) {
    .honeycomb {
        gap: 10px
    }

    .honeycomb-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px
    }

    .honeycomb-cell {
        width: 100px;
        height: 115px
    }

        .honeycomb-cell img {
            max-width: 75px
        }
}

.container-rt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
    background-color: #f0f0f0;
    padding: 20px
}

.category-buttons {
    margin-bottom: 20px;
    text-align: center
}

.category-button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    background-color: #fff0;
    border-bottom: 3px solid #fff0;
    font-size: 16px;
    transition: all 0.3s ease-in-out
}

    .category-button.active {
        border-bottom: 3px solid #1bb1dc;
        color: #1bb1dc
    }

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1200px
}

.tech-card {
    width: 140px;
    height: 170px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
    padding: 15px;
    text-align: center;
    box-shadow: 2px 2px 5px rgb(0 0 0 / .2);
    opacity: 0;
    transform: scale(.8);
    transition: opacity 0.5s ease-in-out,transform 0.5s ease-in-out
}

    .tech-card img {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
        margin-top: 10px
    }

    .tech-card.show {
        opacity: 1;
        transform: scale(1)
    }

@media (max-width:768px) {
    .tech-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px
    }

    .tech-card {
        width: calc(50% - 10px);
        height: 170px;
        max-width: 140px
    }
}

.services-details {
    background-color: #f8f9fa;
    padding: 50px 0
}

.services-details-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgb(0 0 0 / .15)
}

.services-details-info h2 {
    color: #007bff;
    font-weight: 700;
    text-transform: uppercase
}

.services-details-info ul li {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px
}

.services-details-image img {
    border-radius: 15px;
    transition: transform 0.4s ease-in-out
}

    .services-details-image img:hover {
        transform: scale(1.08)
    }

.services-details-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6
}

.servicesdetailstwo {
    background-color: #f8f9fa;
    padding: 50px 0
}

.servicesdetailstwo-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgb(0 0 0 / .1)
}

.servicesdetailstwo-info h2 {
    color: #007bff;
    font-weight: 700
}

.servicesdetailstwo-info ul li {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px
}

.servicesdetailstwo-image img {
    border-radius: 10px;
    transition: transform 0.3s ease
}

    .servicesdetailstwo-image img:hover {
        transform: scale(1.05)
    }

.servicesdetailstwo-description {
    font-size: 16px;
    color: #555
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(0 0 0 / .3);
    overflow: hidden;
    align-items: stretch;
    min-height: 360px
}

.testimonial-card {
    background-color: #f3f4f6;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgb(0 0 0 / .4);
    text-align: center;
    transition: transform 0.5s ease-in-out,background-color 0.5s,color 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%
}

    .testimonial-card img {
        display: block;
        margin: 0 auto;
        border-radius: 50%;
        width: 90px;
        height: 90px
    }

    .testimonial-card h3 {
        font-size: 18px;
        font-weight: 700;
        margin-top: 5px
    }

    .testimonial-card p {
        font-size: 14px;
        margin-top: 2px;
        flex-grow: 1;
        overflow: hidden;
        text-overflow: ellipsis
    }

.activee {
    background-color: #1bb1dc !important;
    color: white !important;
    transform: scale(1.2)
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 15px
}

    .button-container button {
        padding: 10px 15px;
        background-color: #1bb1dc;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease-in-out
    }

        .button-container button:hover {
            background-color: #0d90b6
        }

@media (max-width:768px) {
    .testimonial-container {
        grid-template-columns: 1fr
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out
}

    .service-card:hover {
        transform: scale(1.05)
    }

    .service-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
        border-radius: 8px;
        transition: opacity 0.3s ease-in-out
    }

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(27 177 220 / .8);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 20px;
    text-align: center
}

.service-card:hover .service-overlay {
    opacity: 1
}

.service-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-weight: 700;
    background: rgb(27 177 220 / .7);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s ease-in-out
}
/*career*/

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 25px 35px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.job-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #111827;
}

.job-exp {
    font-size: 1rem;
    color: white;
    margin-top: 4px;
    background: #1bb1dc;
    padding: 10px;
    border-radius: 10px;
}

.apply-hover {
    display: flex;
    align-items: center;
}

    .apply-hover a {
        font-size: 2rem;
        color: #2563eb;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color 0.3s ease;
    }

        .apply-hover a:hover {
            color: #1d4ed8;
        }

    .apply-hover i {
        font-size: 2.1rem;
        color: #1bb1dc;
    }

.apply-text {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #1bb1dc;
}

.job-card:hover .apply-text {
    opacity: 1;
}

@media (max-width:768px) {
    .job-card {
        padding: 20px 12px;
    }
    .job-title {
        font-size: 2rem;
    }
    .apply-hover {
        .apply-text
{
    display:none;
} margin-top:10px;
    }
    
}


/*-----------------------------*/

/* Responsive behavior */
@media (min-width: 768px) {
    .job-info {
        flex: 1 1 60%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .application-form {
        flex: 1 1 35%;
        position: sticky;
        top: 30px;
        height: fit-content;
    }

    .job-info, .application-form {
        width: auto;
    }

    .job-detail-container {
        flex-direction: row;
    }
}

@media (max-width: 767.98px) {
    .job-detail-container {
        flex-direction: column;
    }

    .job-info, .application-form {
        max-height: none;
        overflow: visible;
    }
}
/*--faq--*/
.faq-container {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s ease;
}

.faq-answer {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, height 0.5s ease-in-out;
}

    .faq-answer.active {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding-top: 5px;
    }

.toggle {
    transition: transform 0.3s ease;
}

.rotate {
    transform: rotate(180deg);
}

/*-----*/
/*---------our portfolio---------------*/

.portfolio-section {
   
    text-align: center;
   
}

.portfolio-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1bb1dc;
    position: relative;
    display: inline-block;
}

    .portfolio-heading::after {
        content: '';
        width: 60px;
        height: 4px;
        background: #1bb1dc;
        position: absolute;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
        border-radius: 2px;
    }

.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.portfolio-card {
    width: 320px;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out;
    background: #fff;
}

    .portfolio-card:hover {
        transform: translateY(-10px);
    }

    .portfolio-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease-in-out;
    }

    .portfolio-card:hover img {
        transform: scale(1.15);
    }

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 177, 220, 0.9), rgba(27, 177, 220, 0.2));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h5 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-overlay p {
    font-size: 16px;
    text-align: center;
}
/*-------------------------------------*/