:root {
    --primary-color: #ff6700;
    --secondary-color: #143b5e;
    --gry-text: #5c5c5c;
    --gry-line: #e3dfdf;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(224, 105, 8, 0.25);
}

body {
    background-color: #ffffff;
    font-size: 15px;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}




a,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
    outline: none;
    color: #000;
}


ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    line-height: 25px;
}

h4,
h5 {
    font-weight: 600;
}

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

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-end {
    justify-content: end;
}

.float-right {
    float: right;
}

.fw-bold {
    font-weight: 600 !important;
}

.border-right {
    border-right: 1px solid var(--gry-line);
}

/*======Section start ============*/

.section-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 26px;
}

.section-title-tag {
    font-weight: 600;
    text-transform: capitalize;
}

/*======Section end ============*/


/*======Back to top start ============*/
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;
}

/*======Back to top end============*/


/*======Header start ============*/
.sticky-header {
    padding: 0px 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
}

.navbar img {
    width: 30%;
}

@media (min-width: 1024px) {
    /* desktop/laptop width */

    .navbar img {
        width: 37.5%;
    }
}

.main-menu .navbar-nav a {
    font-size: 16px;
    margin-right: 10px;
}

/* .navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: var(--primary-color);
} */

.nav-link {
    color: #000;
}

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

.navbar-collapse {
    flex-basis: 100%;
    background-color: #fff;
    padding: 10px;
    flex-grow: 1;
    align-items: center;
}

/*======Header end ============*/

/*======Banner start ============*/

.banner-text {
    margin-top: 120px;
}

.banner-text h1 {
    font-weight: 600;
    font-size: 50px;
}

.banner-text h1 span {
    color: var(--primary-color);
}

.banner-text p {
    font-size: 18px;
    line-height: 30px;
}

/* .contact-btn {
    padding: 10px 30px;
    color: #fff;
    background-color: var(--primary-color);
    font-size: 16px;
    margin-top: 25px;
    font-weight: 500;
}

.contact-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;

} */

.action-btn {
    display: inline-block;
    position: relative;
    color: #ffffff;
    background: var(--primary-color);
    font-weight: 500;
    font-size: 17px;
    padding: 11px 14px;
    margin: 20px 0px 0px 0px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;
}

.action-btn:before {
    content: "";
    position: absolute;
    background: var(--secondary-color);
    height: 150px;
    width: 300px;
    border-radius: 50%;
    z-index: -1;
}

.action-btn:hover {
    color: #fff;
}

.action-btn::before {
    top: 100%;
    left: 100%;
    transition: 0.7s;
}

.action-btn:hover::before {
    top: -30px;
    left: -30px;
}

.action-btn:active::before {
    background: var(--secondary-color);
    transition: 0s;
}


/*======Banner end ============*/

/* ======== why us start ========= */
.why-us-section {
    padding: 50px 0px 0px 0px;
}

.why-us-section img {
    width: 80%;
}

/* .why-us-content {
    margin-top: 30px;
} */

.service-img-bg {
    animation: rotate 7s linear infinite;
}

.why-us-titles {
    margin-bottom: 0px;
    font-weight: 600;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ======== why us end ========== */







/*======About us section start ============*/
.about-us-section {
    padding: 65px 0px 30px 0px;
}

.about-us-section img {
    width: 80%;
}

.about-us-content {
    margin-top: 10px;
}

.service-img-bg {
    animation: rotate 7s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*======About us section end ============*/



/*======Service section start ============*/

.section-title span::after {
    position: relative;
}

.services-tabs img {
    width: 80%;
}

.section-title span:before {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    left: -500px;
    right: 605px;
    margin: 10px auto;
}

.domain-section {
    padding: 65px 0px 30px 0px;
}

.domain-section-contain {
    margin-top: 50px;
}

.domains {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0 0 0;
}

.domain-text a {
    border-bottom: 0.5px solid var(--primary-color);
    padding-bottom: 2px;
}

.domain-text a:hover {
    border-bottom: 0.5px solid var(--primary-color);
    padding-bottom: 2px;
}

.domain-box {
    height: 100%;
    min-height: 280px;
    padding: 10px;
    display: flex;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    align-items: center;
    margin: 0 10px 50px 50px;
}

.domain-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    padding: 5px;
    margin: 5px;
    margin-right: 10px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.domain-icon svg {
    position: absolute;
    top: 30px;
    left: 28px;
    color: #fff;
}

.domain-text {
    padding: 10px;
    margin-left: 20px;
}

.domain-text h4 {
    font-weight: 600;
    font-size: 20px;
}

.domain-text span {
    color: var(--primary-color);
    font-size: 14px;
}

.domain-text span:hover {
    color: var(--secondary-color);
}

.domain-img-bg {
    margin-top: -550px;
}

.domain-shape {
    left: 0;
    top: 10px;
    z-index: -1;
    position: relative;
}




/*  */





.section-title span::after {
    position: relative;
}

.section-title span:before {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    left: -500px;
    right: 605px;
    margin: 10px auto;
}

.service-section {
    padding: 65px 0px 30px 0px;
}

.service-section-contain {
    margin-top: 50px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0 0 0;
}

.service-text a {
    border-bottom: 0.5px solid var(--primary-color);
    padding-bottom: 2px;
}

.service-text a:hover {
    border-bottom: 0.5px solid var(--primary-color);
    padding-bottom: 2px;
}

.service-box {
    height: 100%;
    min-height: 280px;
    padding: 10px;
    display: flex;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    align-items: center;
    margin: 0 10px 50px 50px;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    padding: 5px;
    margin: 5px;
    margin-right: 10px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-icon svg {
    position: absolute;
    top: 30px;
    left: 28px;
    color: #fff;
}

.service-text {
    padding: 10px;
    margin-left: 20px;
}

.service-text h4 {
    font-weight: 600;
    font-size: 20px;
}

.service-text span {
    color: var(--primary-color);
    font-size: 14px;
}

.service-text span:hover {
    color: var(--secondary-color);
}

.service-img-bg {
    margin-top: -500px;
}

.service-shape {
    left: 0;
    top: -20px;
    z-index: -1;
    position: relative;
}

.why-us-shape {
    left: 0;
    top: -10px;
    z-index: -1;
    position: relative;
}

/*======Service section end ============*/

/*======domain section Start ============*/
.services-tabs {
    padding: 80px 0 30px 0;
    overflow-x: hidden;
}

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

.services-tabs-content {
    margin-top: 20px;
}

/* .services-tabs-content-section {
    margin-top: 50px;
  } */

.services-tabs-card {
    padding: 15px;
    background: #ffffff;
    border: 0.5px solid var(--primary-color);
    border-radius: 4px;
    align-items: center;
    height: 100%;
    text-align: left;
}

.services-tabs-card h5 {
    font-size: 20px;
    font-weight: 700;
}

.services-tabs-card span {
    font-size: 14px;
    font-weight: 700;
}

.services-tabs-card img {
    width: 40px;
}

.industries-btn {
    color: var(--primary-color);
    font-size: 14px;
    border-bottom: 0.5px solid var(--primary-color);
    padding-bottom: 2px;
}

.industries h4 {
    font-size: 26px;
}

.industries-btn:hover {
    color: var(--secondary-color);
    font-size: 14px;
}

.industries-btn-text {
    font-size: 14px;
}

.section-title {
    font-size: 26px;
    color: var(--primary-color);
    font-weight: bold;
}

.section-title-tag {
    font-size: 28px;
    font-weight: 600;
    margin-top: 10px;
}

/* Mobile & Tablet Responsive Adjustments */
@media (max-width: 768px) {
    .services-tabs-content-section {
        margin-top: 30px;
    }
}







/* ========== about us start ========== */
.about-us-title::after {
    position: relative;
}



.about-us-section {
    padding: 65px 0px 30px 0px;
}

.about-us-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0 0 0;
}

.about-us-box {
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    min-height: 360px;
}


.about-us-text {
    padding: 10px;
    margin-left: 0px;
    text-align: justify;
}

.about-us-text h4 {
    font-weight: 600;
    font-size: 20px;
}

.about-us-text span {
    color: var(--primary-color);
    font-size: 14px;
}

.about-us-text span:hover {
    color: var(--secondary-color);
}

.about-us-text a {
    border-bottom: 0.5px solid var(--primary-color);
    padding-bottom: 2px;
}

.about-us-text img {
    height: 50px;
    width: auto;
}

.about-us-text a:hover {
    border-bottom: 0.5px solid var(--primary-color);
    padding-bottom: 2px;
}

.about-us-img-bg {
    margin-top: -550px;
}

.about-us-shape {
    left: 0;
    top: 10px;
    z-index: -1;
    position: relative;
}

/* ========== about us end ============= */


/* ========= our team start ============ */
.our-team .team-member {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: 0.3s;
}

.our-team .team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.our-team .team-member h5 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.our-team .team-member small {
    display: block;
    margin-bottom: 10px;
    color: #888;
}

.our-team .team-member p {
    font-size: 14px;
    color: #666;
}

.our-team .social-icons a {
    color: #666;
    margin: 0 5px;
    font-size: 18px;
    transition: color 0.3s;
}

.our-team .social-icons a:hover {
    color: #0d6efd;
}

/* ========= our team end ============== */

/* ========== certification start ====== */
.certifications-card {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certifications-card:hover {
    transform: scale(1.03);
}

.certifications-image {
    width: 100%;
    height: 250px;
    /* Set desired height */
    object-fit: cover;
    /* Maintains aspect ratio and covers the box */
    display: block;
    transition: 0.4s;
}

.certifications-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.certifications-card:hover .certifications-overlay {
    opacity: 1;
}

/* ======== certification end ========== */

/* ========== logo start =========== */
.key-project-slider {
    padding: 70px 0 80px 0;
    background-color: #fbfbfb;
}

.key-project-slider .container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h4 {
    font-size: 20px;
    color: #555;
    margin-bottom: 10px;
}

.section-title h1,
.section-title-tag {
    font-size: 32px;
    font-weight: bold;
    color: #222;
}

.slider {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.logos-track-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 50s linear infinite;
}

.logos-track-wrapper img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    padding: 0 20px;
    vertical-align: middle;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slider:hover .logos-track-wrapper {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .section-title-tag {
        font-size: 24px;
    }

    .logos-track-wrapper img {
        width: 120px;
        height: 60px;
        padding: 0 10px;
    }
}

/* ========== logo end ============ */



/*====== Clients section Start ============*/
.clients-section {
    /* background-image: url('/images/bg1.jpg'); */
    background-image: url(../images/bg1.jpg);
    background-size: cover;
    padding: 65px 0px 30px 0px;

}

/* .clients-section-box {
    padding: 110px 0 30px 0;
} */

.section-padding {
    padding: 60px 0;
}

.owl-dots {
    text-align: center;
    margin-top: 25px;
}

.owl-dot {
    display: inline-block;
    height: 15px !important;
    width: 15px !important;
    background-color: #7f7f7f !important;
    opacity: 0.8;
    border-radius: 50%;
    margin: 0 5px;
}

.owl-dot.active {
    background-color: var(--primary-color) !important;
}

.clients-section .item {
    height: 150px !important;
    width: 250px !important;
    background-color: #ffffff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    /* object-fit: cover; */
}

.clients-section-box .owl-nav {
    display: none;
}

.clients-section .item img {
    width: 71% !important;
}

.clients-section .owl-carousel {
    margin: 60px 0;
}

/*======Clients section end============*/


/*======Contact-us-section start============*/
.contact-us-section {
    padding: 65px 0px 30px 0px;
}

.contact-us-section .section-name {
    margin-bottom: 55px;
}

.get-in-touch ul li svg {
    background-color: #FDF2DB;
    width: 70px;
    height: 70px;
    padding: 20px;
    color: var(--primary-color);
}

.get-in-touch ul li {
    margin-bottom: 45px;
    display: flex;
    align-items: center;
}

.get-in-touch ul li .contact-content {
    margin-left: 35px;
}

.get-in-touch ul li .contact-content h5 {
    font-size: 18px;
    font-weight: 600;
}

.submit-btn {
    background-color: var(--primary-color);
    padding: 10px;
    color: #fff;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;

}

.register-form {
    border: 1px solid var(--gry-line);
    padding: 20px;
    border-radius: 5px;
}

/*======Contact-us-section end============*/

/*======Footer-section start===========*/
.fo-section {
    margin-top: 50px;
    background-color: var(--secondary-color);
    padding: 30px 0;
}

.copyright-text {
    color: #fff;
    text-align: center;
}

.social-info ul {
    padding-left: 0;
    margin-bottom: 0;
}

.social-info ul li {
    margin: 0 10px;
}

.social-info ul li a {
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    transition: 0.3s;
    width: 35px;
    display: flex;
    justify-content: center;
}

.social-info ul li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}


/*======Footer-section end===========*/

/*====service-detail-section start====*/
.breadcrumb {
    margin-top: 90px;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.service-detail-section {
    margin-top: 12px;
    margin-bottom: 20px;
}

/* .main-services {
    background-color: #143b5e;
    padding: 20px;
    height: 65%;

} */

.main-services span {
    font-size: 24px;
    color: #fff;
    padding-bottom: 20px;
}

.nav-shadow {
    box-shadow: 0 2px 15px rgb(0 0 0 / 5%) !important;
    background-color: #143b5e;
    padding: 20px;


}

.nav-border {
    border-right: 3px solid #fc4a1a;
}

.services-details-content .nav-pills .nav-link {
    padding: 7px;
    width: 300px;
    height: 100%;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s;
    margin: 10px 0 10px 0;
}

.services-details-content .nav-pills .nav-link.active {

    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
}

.services-details-content .nav-pills .nav-link {
    border-radius: 0px;
}

.services-details-content .nav-link .circle-icon {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    /* border: 2px solid #f7b733; */
    background: #fff;
    color: var(--primary-color);
    font-size: 22px;
}

.services-details-content .nav-link .circle-icon img {
    width: 70%;
}

.img-cont {
    max-width: 350px;
    width: 100%;
}

.services-details-content {
    display: flex;
}

.services-tab-content {
    margin-left: 50px;
}

.services-tab-content img {
    margin: 20px 0;
}

.service-benefits ul li img {
    width: 50px;
    color: var(--primary-color);
}

.service-benefits h4 {
    font-size: 26px;
}

/* .service-benefits ul li span {
    margin-left: 20px;
} */

.service-benefits ul li {
    display: flex;
}

.services-tab-content h4,
.services-tab-content h5 {
    font-weight: 600;
}

.services-tab-img {
    max-height: 400px;
    min-height: 400px;
}

.why-adeptsys {
    border: 0.5px solid var(--primary-color);
    border-radius: 10px;
    padding: 15px;
}

.Approach {
    border: 0.5px solid var(--primary-color);
    border-radius: 10px;
    padding: 15px;
}

.Approach h4 {
    font-size: 20px;
}

.client-Snapshot {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.3s;
}

.client-Snapshot:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.client-Snapshot-img-wrapper img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.client-Snapshot-flag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.2rem;
    background: #fff;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.client-Snapshot-img-wrapper {
    position: relative;
    height: 100%;
}

.client-Snapshot-content {
    padding: 1rem;
    border-bottom: 0.5px solid var(--primary-color);
    border-top: 0.5px solid var(--primary-color);
    border-right: 0.5px solid var(--primary-color);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media (max-width:768px) {
    .client-Snapshot-content {
        padding: 1rem;
        border-bottom: 0.5px solid var(--primary-color);
        border-right: 0.5px solid var(--primary-color);
        border-left: 0.5px solid var(--primary-color);
        border-top-right-radius: 0px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }
}



.client-Snapshot-btn {
    background-color: #28a745;
    color: #fff;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
}

.client-Snapshot-btn:hover {
    background-color: #218838;
    color: #fff;
}


/*====service-detail-section end====*/

/*====case-studies-section start====*/
.case-studies-section {
    margin: 80px 0;
}

.case-studies-box {
    padding: 10px;
    display: flex;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    align-items: center;
    margin: 0 7px;

}

.case-studies-box h4 {
    position: absolute;
    top: 40px;
    left: 72px;
    color: #fff;
}

.case-studies-btn {
    top: 62%;
    color: #fff;
    position: absolute;
    left: 79px;
    background: none;
    border: solid 1px #fff;
    font-size: 16px;
    border-radius: 5px;
}

.case-studies-btn a {
    color: #fff;

}

.case-studies-btn:hover {

    border: solid 1px var(--primary-color);

}

.case-studies-btn a:hover {
    color: var(--primary-color);

}

/*====case-studies-section end====*/


/*====case-studies-details-section start====*/

.case-studies-detail-sec {
    margin-top: 10px;
    margin-bottom: 80px;
}

.case-studies-detail-sec img {
    border-radius: 20px;
}

.about-client h4 {
    font-weight: 600;
}

.about-client p {
    margin-top: 15px;
}

.section-name {
    margin-bottom: 47px;
}

.adpt-accordion .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: #143b5e;
    background: rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.adpt-accordion .accordion-body {
    padding: 15px;
}

.adpt-accordion ul li svg {
    margin-right: 15px;
    color: var(--primary-color);
}

/* .adpt-accordion .accordion-button:focus {
    z-index: 3;
    border-color: #dc3545;
    outline: 0;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}  */
/*====case-studies-details-section end====*/


/* ===== case study one page start ==== */
.case-study-one {
    padding: 65px 0 30px;
}

.case-study-one-img {
    position: relative;
}

.case-study-one-shape {
    top: 0;
    left: 0;
    z-index: -1;
}

.case-study-one-img-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 67%;
    height: auto;
    z-index: -1;
    opacity: 0.8;
    animation: rotate 7s linear infinite;
}

/* Animation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Headings */
.section-head .section-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 1px;
}

.section-title-tag {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

/* Description Text */
.case-study-one-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.consultants-card {
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 10px;
}

/* ===== case study one page end ==== */

/* case study two start */
.case-study-two {
    padding: 65px 0 30px;
}

.case-studies-img img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 15px;
}

.case-studies-img {
    position: relative;
}

.case-studies-two-content {
    position: absolute;
    width: 40%;
    background-color: var(--secondary-color);
    border-radius: 10px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width:768px) {
    .case-studies-two-content {
        position: absolute;
        width: 90%;
        background-color: var(--secondary-color);
        border-radius: 10px;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

.case-study-step-card {
    display: flex;
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    align-items: stretch;
    margin: 40px 0 40px;
    position: relative;
    z-index: 1;
    min-height: 180px;
    box-shadow: -5px -5px 15px rgba(0, 0, 0, 0.05), 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.case-study-step-card::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--primary-color);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: -1;
}

.case-study-step-number {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.case-study-step-content {
    padding: 20px;
    flex-grow: 1;
    background-color: transparent;
    display: flex;
    align-items: center;
}

.case-study-step-content h5 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.case-study-step-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.case-study-step-text {
    flex-grow: 1;
}

.case-study-step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.case-study-step-icon img {
    width: 28px;
    height: 28px;
    filter: invert(1);
}

@media (max-width: 576px) {
    .case-study-step-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .case-study-step-content {
        align-items: flex-start;
    }

    .case-study-step-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .case-study-step-icon {
        align-self: flex-start;
        margin-top: 10px;
    }
}


/* case study two end */

.picture-credits {
    font-size: 10px;
    margin-bottom: 0px;
}


/*==== domain Detail -section- start===*/
.domian-detail-section {
    margin-top: 12px;
    margin-bottom: 20px;
}

.domain-details-content {
    display: flex;
}

.domain-tab-content {
    margin-left: 20px;
}

.main-domain span {
    font-size: 24px;
    color: #fff;
    padding-bottom: 20px;
}

#domain-pills-tab .nav-link .circle-icon img {
    width: 70%
}


.industries-tab-img {
    width: 50px;
    color: var(--primary-color);
}

/*==== domain Detail -section- end===*/



/*======domain section end ============*/

/* ===== it consultant page start ==== */
.it-consultant {
    padding: 65px 0 30px;
}

.it-consultant-img {
    position: relative;
}

.it-consultant-shape {
    top: 0;
    left: 0;
    z-index: -1;
}

.it-consultant-img-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 67%;
    height: auto;
    z-index: -1;
    opacity: 0.8;
    animation: rotate 7s linear infinite;
}

/* Animation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Headings */
.section-head .section-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 1px;
}

.section-title-tag {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

/* Description Text */
.it-consultant-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.consultants-card {
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 10px;
}


/* ==== it consultant page end ===== */


/* ====== project management page start ========*/
.project-management {
    padding: 65px 0 30px;
}

.project-management-img {
    position: relative;
}

.project-management-shape {
    top: 0;
    left: 0;
    z-index: -1;
}

.project-management-img-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 70%;
    height: auto;
    z-index: -1;
    opacity: 0.8;
    animation: rotate 7s linear infinite;
}

/* Animation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Headings */
.section-head .section-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 1px;
}

.section-title-tag {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

/* Description */
.project-management-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Card styling */
.consultants-card {
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 10px;
}

/* ======== project management page end ========== */






/* ====== project management page start ========*/
.legacy-application {
    padding: 65px 0 30px;
}

.legacy-application-img {
    position: relative;
}

.legacy-application-shape {
    top: 0;
    left: 0;
    z-index: -1;
}

.legacy-application-img-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 69%;
    height: auto;
    z-index: -1;
    opacity: 0.8;
    animation: rotate 7s linear infinite;
}

/* Animation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Headings */
.section-head .section-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 1px;
}

.section-title-tag {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

/* Description */
.legacy-application-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Card styling */
.consultants-card {
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 10px;
}

/* ======== project management page end ========== */



/* ===== database-management page start ==== */
.database-management {
    padding: 65px 0 30px;
}

.database-management-img {
    position: relative;
}

.database-management-shape {
    top: 0;
    left: 0;
    z-index: -1;
}

.database-management-img-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 70%;
    height: auto;
    z-index: -1;
    opacity: 0.8;
    animation: rotate 7s linear infinite;
}

/* Animation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Headings */
.section-head .section-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 1px;
}

.section-title-tag {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

/* Description Text */
.database-management-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.consultants-card {
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 10px;
}


/* ==== database management page end ===== */





/* ===== healthcare page start ==== */
.healthcare {
    padding: 65px 0 30px;
}

.healthcare-img {
    position: relative;
}

.healthcare-shape {
    top: 0;
    left: 0;
    z-index: -1;
}

.healthcare-img-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 70%;
    height: auto;
    z-index: -1;
    opacity: 0.8;
    animation: rotate 7s linear infinite;
}

/* Animation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Headings */
.section-head .section-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 1px;
}

.section-title-tag {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

/* Description Text */
.healthcare-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.consultants-card {
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 10px;
}


/* ==== healthcare page end ===== */




/* ===== special-education page start ==== */
.special-education {
    padding: 65px 0 30px;
}

.special-education-img {
    position: relative;
}

.special-education-shape {
    top: 0;
    left: 0;
    z-index: -1;
}

.special-education-img-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 70%;
    height: auto;
    z-index: -1;
    opacity: 0.8;
    animation: rotate 7s linear infinite;
}

/* Animation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Headings */
.section-head .section-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 1px;
}

.section-title-tag {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

/* Description Text */
.special-education-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.consultants-card {
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 10px;
}


/* ==== special education page end ===== */



/* ===== retail page start ==== */
.retail {
    padding: 65px 0 30px;
}

.retail-img {
    position: relative;
}

.retail-shape {
    top: 0;
    left: 0;
    z-index: -1;
}

.retail-img-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 65%;
    height: auto;
    z-index: -1;
    opacity: 0.8;
    animation: rotate 7s linear infinite;
}

/* Animation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Headings */
.section-head .section-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 1px;
}

.section-title-tag {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

/* Description Text */
.retail-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.consultants-card {
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 10px;
}


/* ==== retail page end ===== */


/*  */
.footer-section {
    background-color: var(--secondary-color);
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-info a {
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    transition: color 0.3s;
}

.social-info a:hover {
    color: var(--primary-color);
}

.footer-border {
    border-bottom: 0.5px solid #fff;
}


/* privacy policy start */
.privacy-policy {
    padding: 50px 20px;
}

.privacy-policy h2 {
    font-size: 26px;
    font-weight: 700;
}

.privacy-policy h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.privacy-policy p {
    margin-bottom: 1rem;
}

.privacy-policy ul {
    padding-left: 1rem;
}

.privacy-policy ul li {
    margin-bottom: 10px;
}

.contact-box {
    background-color: #fffbe9;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 6px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .privacy-policy {
        padding: 60px;
    }
}

/* privacy policy end */




/* terms start */
.terms {
    padding: 50px 20px;
}

.terms h2 {
    font-size: 26px;
    font-weight: 700;
}

.terms h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.terms p {
    margin-bottom: 1rem;
}

.terms ul {
    padding-left: 1rem;
}

.terms ul li {
    margin-bottom: 10px;
}

.contact-box {
    background-color: #fffbe9;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 6px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .terms {
        padding: 60px;
    }
}

/* terms end */




/* career start */
.career {
    padding: 50px 20px;
}

.career h2 {
    font-size: 26px;
    font-weight: 700;
}

.career h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.career p {
    margin-bottom: 1rem;
}

.career ul {
    padding-left: 1rem;
}

.career ul li {
    margin-bottom: 10px;
}

.career-contact-box {
    background-color: #fffbe9;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 6px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .career {
        padding: 60px 40px 0px;
    }
}

/* career end */


/* career pop up form start */
.career-form-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.career-form-heading {
    font-size: 20px;
    font-weight: 700;
}

.career-form-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    position: relative;
}

.career-form-close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* career pop up form end */




/* Blog  Insights start */
.blog-insights {
    padding: 50px 20px;
}

.blog-insights h2 {
    font-size: 26px;
    font-weight: 700;
}

.blog-insights h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.blog-insights p {
    margin-bottom: 1rem;
}

.blog-insights ul {
    padding-left: 1rem;
}

.blog-insights ul li {
    margin-bottom: 10px;
}

.blog-insights-contact-box {
    background-color: #fffbe9;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 6px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .blog-insights {
        padding: 60px 40px 0px;
    }
}

/* Force 5 columns for desktop */
@media (min-width: 992px) {
    .col-lg-5th {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* blog-insights end */
