@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Mona Sans", sans-serif;
    font-variation-settings:
        "wdth" 100;
    font-size: 18px;
}

:root {
    --primary-color: #FF4684;
    --secondary-color: #FFB800;
    --dark-text: #262626;
    --light-text: #fff;
    --secondary-bg: #525252;
    --Tertiary-bg: #F6F6F6;
    --border: #D7CECB;
}

ul,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    text-decoration: none;

}

p {
    color: #262626;
    opacity: 90%;
}

ul {
    list-style: none;
    padding: 0;
}

h1 {
    font-size: 62px;
    font-weight: 700;
}

h2 {
    font-size: 52px;
    font-weight: 600;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

img {
    width: 100%;
}




/* Lenis Css */

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* =====Utilities===== */

.section-gap {
    padding: 150px 0;
}

/* =====Header Start===== */
.header {
    padding: 20px 50px;

    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.5s ease-in-out;
}

/*Hide header on scroll down*/
.header.sticky {
    background-color: var(--light-text);
    box-shadow: rgba(33, 35, 38, 0.07) 0px 10px 10px -10px;
}

.header.sticky {
    -webkit-transform: translateY(0%);
    -khtml-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    visibility: visible;
}

.header.top-up {
    -webkit-transform: translateY(-100%);
    -khtml-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: 0.6s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: 0.6s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: 0.6s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: 0.6s cubic-bezier(.24, .74, .58, 1);
    -o-transition: 0.6s cubic-bezier(.24, .74, .58, 1);
    transition: 0.6s cubic-bezier(.24, .74, .58, 1);
    visibility: hidden;
}


.header .container-wrape {

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile_menu_icon {
    display: none;
}

.nav_wrapper {
    display: flex;
    align-items: center;
    gap: 150px;
}

.nav ul {
    display: flex;
    /* align-items: center; */
    gap: 25px;
    padding: 0;
}

.nav ul .link {
    color: var(--dark-text);
    position: relative;
    font-size: 18px;
}

.nav ul .active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 20px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.btn {
    padding: 6px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 100px;
}

.default_btn {
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 100px;
    background-color: var(--primary-color);
    color: var(--light-text);
    transition: .3s;
    display: inline;
}

.default_btn:hover {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
}

.hire_btn {
    color: var(--primary-color);
}

.hire_btn:hover {
    color: var(--light-text);
    background-color: var(--primary-color);
}

.find_btn {
    color: var(--light-text);
    background-color: var(--primary-color);
}

.find_btn:hover {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

.dropdown-menu{
    margin-top: 20px;
    border-radius: 20px;
    border-color: #F6F6F6;
    right: 50px;
    background-color: var(--Tertiary-bg);
}

.dropdown-menu li:nth-child(1){
    padding: 10px 20px;
}

.dropdown-menu li:nth-child(2){
    padding: 10px 0px;
}

.dropdown-menu li:nth-child(3){
    padding: 10px 20px;
}

.dropdown-submenu li{
    padding: 0 !important;
}

.dropdown-submenu{
    display: flex;
    flex-direction: column;
    gap: 10px !important;
}

.other-drop{
    background-color: var(--primary-color);
    padding-bottom: 12px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}



.other-drop .dropdown-item{
    color: white;
}

.other-drop .dropdown-item:hover{
    color: var(--secondary-color);
}
.heading{
    padding: 12px 10px;
    font-size: 18px;
    font-weight: 500;
}

.heading:hover{
    color: var(--dark-text) !important;
}

.other-drop .heading{
    color: white;
}

.other-drop .heading:hover{
    color: white !important;
}

.dropdown-item:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.dropdown-item:focus{
    /* color: var(--dark-text); */
    background-color: transparent;
}

.hide-sub {
    display: none !important;
}

/* =====Banner Start===== */

.h_banner {
    position: relative;
    overflow-y: hidden;
    padding-top: 200px;
}

.h_banner::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff17;
    position: absolute;
    backdrop-filter: blur(200px);
    -webkit-backdrop-filter: blur(200px);
    z-index: -1;
}

.particles {
    position: absolute;
    top: 0;
}


.circle1 {
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    z-index: -2;
    top: 250px;
}


.circle2 {
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    z-index: -2;
    right: 0;
    top: 200px;
}

.banner_content_wrapper {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner_content_wrapper h1 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.banner_content_wrapper p {
    font-size: 18px;
    margin-bottom: 30px;
}

.b_mail-wrap {
    border: 1px solid #B9B9B9;
    display: inline-flex;
    gap: 10px;
    padding: 7px 7px 7px 30px;
    border-radius: 100px;
    background-color: var(--light-text);
    -webkit-box-shadow: 4px 4px 20px 0px rgba(255, 70, 132, 0.25);
    -moz-box-shadow: 4px 4px 20px 0px rgba(255, 70, 132, 0.25);
    box-shadow: 4px 4px 20px 0px rgba(255, 70, 132, 0.25);
}

.b_mail-wrap input {
    border: none;
    display: inline-block;
    width: 400px;
    background-color: transparent;
}

.b_mail-wrap input:focus-visible {
    outline: none;
}

.b_submit {
    padding: 13px 40px;
    border: none;
    border-radius: 100px;
    color: var(--light-text);
    background-color: var(--primary-color);
}

.banner_img {
    position: relative;
    z-index: 1;
    display: block;
    width: 80%;
    margin: auto;
    margin-bottom: -1px;
    margin-top: 30px;


}

.zig_vector {
    position: absolute;
    bottom: 12%;
}


/* ===== Marque ===== */
.marque_wrapper {
    background-color: var(--primary-color);
    overflow: hidden;
}

.marque {
    display: flex;
    padding: 30px 0;

}

.marque span {
    font-size: 52px;
    white-space: nowrap;
    font-weight: 600;
    color: var(--light-text);
    opacity: .6;
    transform: translateX(-50px);
}


.section_2 {
    height: 100vh;
}

/* =====home- Service_for ===== */

.service_for {
    overflow: hidden;
}

.title_wrapper {
    margin-bottom: 80px;
}

.abt-img{
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}

.title_wrapper h2 {
    margin-bottom: 15px;
}

.srvc-f-card {
    position: relative;
    height: 463px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.srvc-f-card h3 {
    color: var(--light-text);
    display: flex;
    align-items: end;
    gap: 7px;
    font-weight: 600;
}


.srvc-f-card p {
    width: 60%;
    color: var(--light-text);
}

.card-1 img {
    position: absolute;
    width: 70%;
    bottom: 0;
    right: -94px;
    z-index: 2;
}

.zig-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.card-1 {
    background-color: var(--primary-color);
}

.card-1 .time-zig{
    width: 100%;
    right: 0;
    top: 68px;
    z-index: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.card-button{
    margin-top: 20px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-button .card-btn-1{
    background-color: var(--light-text);
    color: var(--primary-color);
     border: 1px solid var(--light-text);
     transition: 0.3s;
}

.card-button .card-btn-1:hover{
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--light-text);
}

.card-button .card-btn-2{
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--light-text);
    transition: 0.3s;
}

.card-button .card-btn-2:hover{
    background-color: var(--light-text);
    color: var(--primary-color);
     border: 1px solid var(--light-text);
}

/* ==home-about== */

.about {
    background-color: var(--dark-text);
    overflow: hidden;
}

.about h2,
.about p {
    color: var(--light-text);
}

.h-about-content {
    margin-top: 80px;
}

.h-about-content p {
    color: rgb(157, 157, 157);
    font-weight: 400;
}

.h-about-content p span {
    color: var(--light-text);
}

.stat {
    display: flex;
    color: var(--light-text);
    gap: 25px;
    justify-content: space-between;
    margin-top: 30px;
}

.s-box {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 2px;
    text-align: center;
}

.s-box span {
    font-size: 12px;
    font-weight: 600;
}

.s-num {
    font-size: 32px;
    font-weight: 600;
    background-color: var(--dark-text);
    text-align: center;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 5px;
}

/* ==home-industry== */

.industries {
    position: relative;
}

.industries::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff17;
    position: absolute;
    backdrop-filter: blur(1200px);
    z-index: -1;
}

.circle4 {
    width: 250px;
    height: 250px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    z-index: -2;
    right: 40px;
    top: 20px;
}

.img-grid {
    display: flex;
    gap: 12px;
    overflow: hidden;
    position: sticky !important;
    top: 0;
    height: 100vh;
}

.img-grid::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.img-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}


.img-grid img {
    aspect-ratio: 3/4;
    object-fit: cover;
    transform: translateY(50px);
}

.i-grid {
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
}

.img-grid-2 {
    transform: translateY(-50%);
}

.card-wrapper .card {
    margin-top: 150px;
    border: transparent;
    background: transparent;
    padding: 0 70px 0 0;
}

.card-wrapper .card h4 {
    margin-bottom: 40px;
    display: flex;
    gap: 10px;
    font-weight: 600;
}

.card-wrapper .card i {
    font-size: 12px;
    color: var(--primary-color);
    position: relative;
    top: 8px;
}

.industries .section-gap {
    padding-left: 45px;
    padding-right: 35px;
}

.industries-title {
    width: 80%;
}

.industries-title p {
    margin-top: 40px !important;
}

/* ==home team */
.team{
    background-color: var(--dark-text);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.team .content{
    position: relative;
    z-index: 2;
}

.team::before{
    content: '';
    position: absolute;
    background: url("./../images/team-group.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
}

.content{
    color: var(--light-text);
    padding: 60px 0px;
}

.team p{  
    color: var(--light-text);
    font-size: 16px;
    width: 40%;
    margin: auto;
    margin-top: 35px;
    margin-bottom: 35px;
}
/* ==home-insights== */

.insights {
    background: var(--Tertiary-bg);
}

.insights h2 {
    margin-bottom: 80px;
    text-align: center;
}

.key-points {
    display: flex;
    gap: 15px;
    padding-top: 13px;
    padding-right: 6px;
}

.insights img {
    padding-right: 6px;
}

.key-points h5 {
    border: 1px solid rgba(40, 40, 40, 0.3);
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 30px;
    color: var(--dark-text);
}

.key-points i {
    position: relative;
    left: -4px;
    top: -1px;
    font-size: 9px;
    color: var(--primary-color);
}

.insights p {
    padding-top: 13px;
    font-size: 20px;
    font-weight: 500;
}

/* ==home-feedbacks== */

.feedbacks {
    position: relative;
}

.feedbacks::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff17;
    position: absolute;
    backdrop-filter: blur(200px);
    -webkit-backdrop-filter: blur(200px);
    z-index: -1;
}

.circle3 {
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    z-index: -2;
    right: 0;
    bottom: 0px;
}

.feedback-header {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 80px 20px 80px 40px;
}

.feedback-header h2 {
    font-size: 62px;
}

.feedback-header img {
    width: 110px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.mySwiper {
    margin-left: 80px;
}

.swiper-slide {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swiper-slide p {
    font-size: 24px;
    padding-right: 31px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-card {
    display: flex;
    padding-top: 30px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    margin-right: 10px;
    overflow: hidden;
}

.info {
    display: flex;
    flex-direction: column;
}

.rating-card .name {
    font-size: 18px !important;
    color: #282828;
    margin: 0;
    padding: 0;
}

.rating {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 2px;
}

.rating-number {
    margin-right: 5px;
    color: #282828;
}

.stars {
    color: gold;
}

.half-star {
    color: gold;
    display: inline-block;
    background: linear-gradient(to right, gold 50%, lightgray 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.swiper-pagination {
    text-align: left;
    bottom: 77px !important;
}

.swiper-pagination-bullet {
    height: 11px;
    width: 11px;
}


.swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
    border-radius: 30px;
    background: var(--primary-color);
}

.feedback-zig {
    position: absolute;
    top: 250px;
    width: 100%;
    z-index: -1;
    opacity: .1;
}

/* ==footer== */
.footer {
    background: var(--dark-text);
    position: relative;
    overflow: hidden;
}

.footer-logo {
    width: 50%;
}

.footer p {
    color: var(--light-text);
    font-size: 20px;
    padding-top: 30px;
}

.footer-header {
    color: #fff;
    opacity: 50%;
    font-size: 18px;
    margin-bottom: 34px;
    display: inline-block;
}

.footer li {
    color: var(--light-text);
    padding-bottom: 10px;
    font-size: 17px;
}

.footer ul li a {
    font-size: 17px;
    color: var(--light-text);
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.footer-bg {
    position: absolute;
    width: 50%;
    bottom: -50%;
    opacity: 0.05;
    right: 0;
    z-index: 0;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    color: var(--light-text);
    border-top: 0.5px solid var(--secondary-bg);
}

.footer-content {
    position: relative;
    z-index: 2;
}

/* ==========Pages========== */

/* =====About Page===== */

.about-banner {
    position: relative;
    overflow: hidden;
}

.about-banner::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff17;
    position: absolute;
    backdrop-filter: blur(200px);
    -webkit-backdrop-filter: blur(200px);
    z-index: -1;
}

.about-banner .about_zig_vector {
    position: absolute;
    bottom: 50px;
    transform: scale(1.2);
    left: 50px;
    opacity: .1;
    pointer-events: none;
}

.about_banner_title {
    margin: 25px 0;
}

.a-banner-content-wrapper {
    margin: 70px 0;
    width: 55%;
}

.a-commun {
    width: 28%;

}

.about-p-highlight .title_wrapper {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.highlight-content-wrapper {
    margin-top: 80px;
}

.highlight-para p {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.highlight-para p:last-child {
    margin-bottom: 0px;
}

.our_values {
    background-color: var(--Tertiary-bg);
}

.val-card {
    background-color: var(--light-text);
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    height: 100%;
    padding: 50px 25px;
    transition: .3s;
    overflow: hidden;
    position: relative;
}

.val-card img {
    position: absolute;
    top: 100px;
    transform: scale(2) rotate(10deg);
    opacity: .2;
    pointer-events: none;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}


.val-active {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: rotate(2deg);
}



.val-active p {
    color: var(--light-text);
}

.val-card span {
    font-size: 100px;
    line-height: 1;
    font-weight: 600;
    color: var(--Tertiary-bg);
    transition: .1s;
}



.val-active span {
    opacity: 0;
}

.mission{
    background-color: #ffeaf1;
}

.mission h3{
    display: inline-block;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 20px;
}

.mission .icons{
   width: 60px;
   margin-right: 20px;
}


/* =====Contact Page===== */

.contact_banner {
    padding: 170px 0 100px 0;
    position: relative;
}

.contact_banner::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff17;
    position: absolute;
    backdrop-filter: blur(200px);
    z-index: -1;
}

.c-top-content {
    margin-bottom: 150px;
}

.contact_banner h1 {
    margin-bottom: 35px;
}

.contact_banner h1 i {
    color: var(--light-text);
    background-color: var(--primary-color);
    padding: 0 10px;
    border-radius: 100px;
    font-size: 50px;
}

.contact_info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact_info ul li {
    display: flex;
    gap: 10px;
}

.contact_info ul li i {
    color: var(--primary-color);
}

.form_section h4 {
    margin-bottom: 70px;
}

#contactForm {
    padding: 0 30px;
}

.contact-form-label {
    color: var(--dark-text);
}

.form-input-field {
    border-style: none none solid;
    border-width: 1px 1px 1px;
    border-color: var(--border);
    color: var(--dark-text);
    background-color: #0000;
    border-radius: 0;
    height: 44px;
    margin-bottom: 5px;
    padding-left: 0;
    font-size: 14px;
    line-height: 32px;
    padding: 8px 0px;
    width: 100%;
}

.form-message-input-field {
    min-height: 80px;
    margin-bottom: 30px;
    padding-top: 0;
}

.form-group {
    margin-bottom: 20px;
}

.error-message {
    color: red;
    font-size: 12px;
}

.form-input-field:focus {
    border-color: var(--primary-color);
    outline: 0;
}


/* service web page */
.service-zag{
    position: relative;
    overflow: hidden;
    margin-top: 200px;
}

.service-zag .this-cover{
    aspect-ratio: 3/3;
    object-fit: cover;
}


.zig{
    position: absolute;
    bottom: 45px;
    left: 0;
    transform: scale(1.2);
}

.service-banner {
    position: relative;
    overflow: hidden;
}

.service-banner::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff17;
    position: absolute;
    backdrop-filter: blur(200px);
    z-index: -1;
}

.high-card{
    height: 100%;
    background-color: var(--Tertiary-bg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 70px;
    border: 1px solid #D9D9D9;
}


.glow{
    position: relative;
}
.glow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.srvc-i-cards .row>div{
    margin-bottom: 20px;
}

/* ---executive search page--- */
.exe-para{
    padding: 0px 120px;
    margin-top: 120px;
}

.exe-banner{
    overflow: hidden;
    position: relative;
}

.exe-banner .about_zig_vector {
    position: absolute;
    bottom: 120px;
    transform: scale(1.2);
    left: 0px;
    opacity: .1;
    pointer-events: none;
}

.highlights>div {
    display: flex;
    align-items: center; 
    justify-content: center; 
    margin-top: 80px;
    position: sticky;
    top: 50px;
    padding: 50px 0px;
    background-color: var(--Tertiary-bg);
}

.highlights>div:last-child {
    padding-bottom: 0px;
}

.highlights h3{
    color: var(--primary-color);
}

.highlights .right-img{
    padding-left: 40px;
}

.highlights .left-img{
    padding-right: 40px;
}

.hlt-section{
    background: var(--Tertiary-bg);
}


/* blog-pages */
.blog-details-title {
    font-size: 46px;
    width: 80%;
}

.blog-content-wrapper h2 {
    font-size: 38px;
    padding-bottom: 7px;
}


.blog-content-wrapper ul {
    list-style-type: disc;
}

.blog-content .last-p{
    margin-bottom: 60px;
}

.second-p{
    margin-bottom: 20px;
}
.blog-content .content-title{
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

.blog-content p{
    margin-bottom: 1rem;
}

.blog-content .subheading{
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;
  }

  .components{
    font-weight: 500;
  }

  /* insight page */
  .insight-blog{
    background-color: var(--light-text);
  }

  /* ==timline page */
.timeline{
    overflow: hidden;
}

.timeline-header{
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.timeline-header p{
    width: 30%;
    position: absolute;
    right: 85px;
    bottom: 0;
}
/* timeline animate */

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .timeline-line-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--Tertiary-bg);
    transform: translateX(-50%);
  }

  .timeline-line {
    position: absolute;
        top: 0;
        width: 100%;
        height: 50px;
        left: 0;
        background-color: var(--primary-color);
  }
  
  .timeline-point {
    position: absolute;
    left: 50%;
    top: 0px;
    width: 20px;
    height: 20px;
    background-color: #ff4081;
    border-radius: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-card {
    position: relative;
    margin: 50px 0;
    padding: 60px 40px;
    background-color:#F6F6F6;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    width: 70%;
    z-index: 1;
    overflow: hidden;
  }


.zigzag-wrapper{
    position: absolute;
    left: -15px;
    z-index: 2;
    width: 110%;
    scale: (1.2);
}
  
.zigzag-line {
    width: 100%; 
    opacity: 20%;
}


.timeline-card h3,
.timeline-card p {
    position: relative; /* Keeps text on top of the zigzag */
    z-index: 3;
}


.timeline-card p{
    margin-top: 90px;
}

.timeline-card:nth-child(odd) {
    left: calc(20% - 45%);
}
  
.timeline-card:nth-child(even) {
    left: calc(45% + 10%);
}

/* =====advisory and partners page team page===== */

.t-banner{
    position: relative;
    padding-top: 200px;
    overflow: hidden;
}

.t-banner .wave{
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    z-index: -1;
}


.t-content p{
    margin: 30px 0;
}

.word{
    width: 9%;
    margin-top: -16px;
    margin-left: 6px;
    margin-right: 6px;
}
  
.card-content{
    padding: 10px 0px;
    margin-bottom: 30px;
}

.team-members {
    padding-bottom: 120px;
}

.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: var(--dark-text);
    -webkit-backdrop-filter: blur(7.4px);
    padding: 30px 0;
}

.slider-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
    animation: scrolling 10s linear infinite;

}

@keyframes scrolling {

    0% {
        transform: translateX(40%);
    }

    100% {
        transform: translateX(-20%);
    }
}

.slider-items img {
    width: 100px;
    margin: 20px;

}

/* ==csr page */
.c-banner{
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.csr-banner h1{
    margin-bottom: 50px;
}

.c-images .images img{
    aspect-ratio: 16/10;
    object-fit: cover;
    height: 100%;
}


.c-banner p{
    margin: 40px 0;
}

.c-banner .about_zig_vector{
    position: absolute;
    bottom: 30px;
    transform: scale(1.2);
    left: 50px;
    opacity: .1;
    pointer-events: none;
}

.why-join {
    background: var(--dark-text);
    overflow: hidden;
}

.why-join-card {
    padding: 75px 50px;
    border: 1px solid var(--border);
    border-radius: 30px;
    height: 450px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 70px;
    justify-content: space-between;
    background: var(--Tertiary-bg);
}

.why-join-card h3 {
    color: var(--primary-color);
}

.why-join h2 {
    margin-bottom: 90px;
    color: var(--primary-color);
}

.j-card1 {
    transform: rotate(-25deg);
    /* translate: -100px; */
}

.j-card2 {
    transform: rotate(25deg);
    /* translate: 100px; */

}

.j-card3 {
    transform: rotate(-25deg);
    margin-bottom: 0;
    margin-bottom: 70px;
}

.j-card4 {
    transform: rotate(25deg);
    margin-bottom: 0;
}



/* =====Responsive===== */


/* ===Header=== */

@media (max-width: 1024px) {
    .header {
        padding: 20px 35px;
    }

    .mobile_menu_icon {
        display: block;
        position: relative;
        z-index: 2;
        border-radius: 100px;
        display: flex;
        align-items: center;
        gap: 7px;
        width: 30px;
    }

    .mobile_menu_icon span {
        transition: .3s;
        width: 100%;
        height: 2px;
        background-color: var(--primary-color);
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        transform-origin: center;
    }

    .mobile_menu_icon span:nth-child(2) {
        top: 6px;
    }

    .other-drop{
        background: white;
    }

    .other-drop .dropdown-item {
        color: var(--dark-text);
    }

    .dropdown-submenu {
        display: flex;
        flex-direction: column;
        gap: 0px !important;
    }

    .nav_wrapper {
        display: none;
        /* height: 450px; */
        /* Start hidden */
        flex-direction: column;
        position: absolute;
        top: 0px;
        right: 0px;
        width: 100%;
        overflow-y: auto;
        background-color: var(--primary-color);
        border-radius: 0px;
        padding: 70px 30px 50px;
        gap: 10px;
        align-items: start;
        justify-content: space-between;
        opacity: 0;
        /* Default opacity for animations */
        transition: opacity 0.3s ease-in-out;
        box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
    }

    .dropdown-menu li:nth-child(1){
        padding: 0px;
    }

    .dropdown-menu li:nth-child(2){
        padding: 0px;
    }

    .dropdown-menu li:nth-child(3){
        padding: 0px;
    }


    .nav ul {
        display: flex;
        align-items: start;
        flex-direction: column;
        list-style: none;
        padding: 0;
        margin: 0;
        transform: translateX(30px);
        /* Default hidden state */
        opacity: 0;
        gap: 5px;
    }

    .mobile_active {
        display: flex;
        opacity: 1;

    }

    .mobile_active .nav ul {
        transform: translateX(0px);
        transition-duration: 1s;
        opacity: 1;
        flex-direction: column;
        border-radius: 0px;
    }


    .dropdown-menu{
        position: unset;
    }

    .heading {
        padding: 6px 10px;
    }

    .dropdown-submenu {
        gap: 0px;
    } 

    .nav ul li .link {
        color: var(--light-text);
        font-weight: 500;
        font-size: 24px;
    }

    .btn-active span{
        background-color: var(--light-text);
    }

    .btn-active span:nth-child(1){
        transform: rotate(45deg);
        top: 0;
    }

    .btn-active span:nth-child(2){
        transform: rotate(-45deg);
        top: 0;
    }

    .btn-active i {
        transform: rotate(225deg);
    }

    .find_btn {
        color: var(--light-text);
        border: 1px solid var(--light-text);
    }

    .find_btn:hover {
        color: var(--primary-color);
        border: 1px solid var(--light-text);
        background-color: var(--light-text);
    }

    .hire_btn {
        background-color: var(--light-text);
    }

    .hire_btn:hover {
        background-color: transparent;
        border: 1px solid var(--light-text);
    }

    /* ==home-aboutus */

    .about img {
        margin-bottom: 80px;
    }

    .card-1 img {
        width: 85%;
    }

    /* ==home-insights */
    .insights-content {
        display: inline-block;
        margin-bottom: 30px;
    }

    /* ==home-industry */
    .card-wrapper .card {
        margin-top: 100px;
    }
    

    /* ==home-feedback */
    .feedback-header {
        margin-bottom: 60px;
    }

    .feedback-header h2 {
        font-size: 52px;
    }

    .mySwiper {
        margin-left: 0;
    }

    .swiper-pagination {
        text-align: left;
        bottom: 18px !important;
        left: unset !important;
        right: 0;
        width: unset !important;
        display: inline-block;
    }

    /* ==footer */


    .footer-bg {
        width: 70%;
        bottom: -32%;
    }

    .footer-text {
        margin-bottom: 80px;
    }

    .card-wrapper .card {
        padding: 20px;
    }

    .a-banner-content-wrapper {
        width: 80%;
    }
    
    .exe-banner {
        padding-top: 150px;
    }

.service-banner {
     padding-top: 150px;
}

/* ==timeline-page */
.timeline-header p{
    right: 0;
}

.timeline-card:nth-child(odd) {
    left: calc(34% - 45%);
}

.timeline-card:nth-child(even) {
    left: calc(43% + 10%);
}

.timeline-card{
    width: 58%;
}

.c-images{
    padding-top: 90px;
}

.word{
    width: 11%;
}

}

@media (max-width:992px) {
    .hide-sm {
        display: none;
    }

    .section-gap {
        padding: 70px 0;
    }

    .title_wrapper {
        margin-bottom: 60px;
    }

    .circle4 {
        bottom: 0;
        top: unset;
    }

    .contact_banner {
        padding: 150px 0;
    }

    .contact_banner h1 i {
        font-size: 36px;
        padding: 0 7px;
    }

    .contact_info {
        display: none;
    }

    .c-top-content {
        margin-bottom: 70px;
    }

    .contact_banner h4 {
        margin-bottom: 50px;
    }

    #contactForm {
        padding: 0;
    }
    
    /* service page */
    .service-zag {
        margin-top: 80px;
    }
    
    .exe-banner {
        padding-top: 150px;
    }
    
    .service-banner {
     padding-top: 150px;
}
.timeline-header p {
    display: none;
}

.images{
    display: flex;
    gap: 20px;
}
.word{
    width: 15%;
}



}

@media (max-width:768px) {
    .header {
        padding: 15px 20px;
    }

    .nav_wrapper {
        top: 0px;
        right: 0px;
        gap: 30px;
        width: 100%;
        /* height: 95vh; */
        overflow-y: auto;
        border-radius: 0px;
    }

  
    .link {
        display: block;
    }

    .nav ul .active::before {
        left: unset;
        right: -30px;
        bottom: 12px;
    }

    h1 {
        font-size: 42px;
    }

    p {
        font-size: 16px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 30px;
    }

    .b_mail-wrap input {
        width: 150px;
    }

    .banner_content_wrapper {
        width: 90%;
    }


    /* ==home-services */
    .card-1 {
        margin-bottom: 30px;
    }

    .h-about-content {
        margin-top: 60px;
    }

    .about img {
        margin-bottom: 30px;
    }

    .stat {
        flex-wrap: wrap;
        gap: 25px;
    }

    .s-box {
        width: 46%;
    }

    .b_submit {
        padding: 7px 30px;
    }

    .b_mail-wrap {
        padding: 7px 7px 7px 20px;
    }

    .feedback-header h2 {
        font-size: 42px;
    }

    /* ==home-about== */
    .s-num {
        font-size: 27px;
    }

    /* ==home-industry */
    .card-wrapper .card {
        margin-top: 70px;
    }

    .insights h2 {
        margin-bottom: 60px;
    }

    .insights .col-lg-4:last-child .insights-content {
        margin-bottom: 0;
    }

    .img-grid {
        height: 80vh;
    }

    .footer-bg {
        width: 70%;
        bottom: -15%;
    }

    .team p{  
        width: 70%;
    }

    /* About Page */

    .about-p-highlight {
        position: relative;
        padding-bottom: 120px;
    }

    .about-p-highlight .button {
        margin: 25px 0;
        position: absolute;
        bottom: 40px;
    }

    .highlight-para {
        margin: 30px 0;
    }

    .our_values .col-lg-3 {
        margin-bottom: 20px;
    }

    /* service page */
    .service-zag {
        margin-top: 80px;
    }

    /* executive-search-page */
    .exe-para{
        padding: 0px;
        margin-top: 30px;
    }

    .highlights .right-img{
        padding-left: 0px;
        margin-top: 20px;
    }
    
    .highlights .left-img{
        padding-right: 0px;
        margin-top: 20px;
    }

    .other-drop{
        background: white;
        border-radius: 0px;
    }

    .blog-details-title{
        font-size: 36px;
    }
    .mission .row{
        gap: 50px;
    }

    /* ===timeline-page */
    .timeline-card {
        width: 90%;
    }
    .timeline-card:nth-child(odd) {
        left: calc(42% - 45%);
    }
    .timeline-card:nth-child(even) {
        left: calc(-13% + 10%);
    }
    .timeline-line-wrapper {
        left: unset;
        right: 10px;
    }
    .timeline-point {
        left: unset;
        right: -8px; 
    }
   

    .word {
        width: 15%;
    }
    .t-content p {
        margin: 16px 0;
    }

    .card-1 img {
        display: none;
    }

    /*.srvc-f-card {*/
    /*    height: 390px;*/
    /*}*/

    .srvc-f-card p {
        width: 100%;
        margin: 10px 0;
    }

    .team-members {
        padding-bottom: 50px;
    }
    
    /*Footer*/
    
    .footer-header {
        margin-bottom: 10px;
    }
    
    .footer-content .row>div {
        margin-bottom: 20px;
    }
    
    .footer-content .footer-text {
        margin-bottom: 50px !important;
    }

    

}

@media (max-width:600px) {
    .nav {
        width: 100%;
    }

    .nav ul{
        width: 100%;
    }

    .nav li{
        width: 100%;
    }

    .dropdown-toggle::after{
        position: absolute;
        right: 0;
        top: 15px;
    }

   

    .feedbacks {
        padding-right: 16px;
        padding-left: 16px;
        overflow: hidden;
    }

    .industries .section-gap {
        padding-left: 0;
        padding-right: 0;
    }

    .banner_img {
        position: relative;
        z-index: 1;
        display: block;
        width: 100%;
        margin: auto;
        margin-bottom: 0px;
        /* margin-top: 70px; */
    }

    .marque {
        padding: 20px 0;
    }

    .marque span {
        font-size: 36px;
    }

    .circle1 {
        opacity: 15%;
    }

    .circle2 {
        opacity: 0%;
    }

    .circle4 {
        opacity: 5%;
    }

    .circle3 {
        opacity: 10%;
    }

    .industries-title {
        width: 100%;
    }

    .a-banner-content-wrapper {
        width: 100%;
    }

    .about-banner .about_zig_vector {
        left: 0;
    }

    .about_banner_title {
        margin: 15px 0;
    }

    .about-p-highlight .title_wrapper {
        width: 100%;
    }

    .highlight-content-wrapper {
        margin-top: 50px;
    }

    .slider-items {
        gap: 60px;
    } 
    .word {
        width: 20%;
    }
    
    .t-banner {
        padding-top: 125px;
    }

    .t-banner .wave {
        top: 60%;
        width: 126%;
    }
    
    .h_banner {
        padding-top: 150px;
    }
    
    .footer-bg {
        width: 100%;
        bottom: -6%;
    }
    
    .stat {
        gap: 15px;
    }
}