@import url(layout.min.css);


@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('/assets/fonts/Poppins-Light.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/Poppins-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('/assets/fonts/Poppins-Medium.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('/assets/fonts/Poppins-SemiBold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('/assets/fonts/Poppins-Bold.woff2') format('woff2');
    font-display: swap;
}


:root {
    --white: #ffffff;
    --black: #000;
    --theme-color: #D85500;
    --primary: #000000;
    --dark-blue: #000000;
    --yellow: #D85500;
    --light-blue: #e78a3b;
}

/** {*/
/*    font-family: 'Poppins', sans-serif;*/
/*}*/

html {
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow-x: hidden;
    /* background-color: #FBF1DB; */
    background: url("/assets/images/bg/bg.webp") no-repeat top center;
    background-size: cover;
    /* background-image: radial-gradient(at top left, rgba(207, 61, 87, 0.25), transparent 60%), radial-gradient(at top right, rgba(227, 153, 50, 0.25), transparent 60%), radial-gradient(at center left, rgba(207, 61, 87, 0.18), transparent 55%), radial-gradient(at center right, rgba(227, 153, 50, 0.18), transparent 55%), radial-gradient(at bottom center, rgba(251, 241, 219, 0.9), transparent 70%); */
}

section {
    background: transparent;
    padding: 6rem 4rem;
    position: relative;
}

header {
    border-bottom: 1px solid #00000014;
    padding: 0 3rem;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.67;
    margin-bottom: 2rem;
    color: #777777;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

h1 {
    color: #000;
    font-size: 5rem;
    font-weight: 400;
}

h2 {
    font-size: 3.55rem;
}

h3 {
    font-size: 2.4rem;
    line-height: normal;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 18px;
}

h2 span {
    font-weight: 600;
}

h1 span {
    font-weight: 800;
}

h3 span {
    font-weight: 600;
}

h4 span {
    font-weight: 600;
}

h1 div {
    display: inline-block;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* =========================
   HEADER / NAV
========================= */

.navbar-brand img {
    width: 16rem;
}

.headerNav {
    display: block;
}

.dropLinks li {
    flex: 0 0 48%;
}

.dropLinks li a {
    font-size: 14px !important;
}


/* ====== MEGA MENU BASE ====== */

.mega-dropdown {
    position: relative;
}


/* hover bridge to prevent gap issue */

.mega-dropdown::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 18px;
}

.mega-menu {
    position: absolute;
    top: 3.6rem;
    left: 0;
    width: 100vw;
    /* background: #fff; */
    /* background-color: #FBF1DB;
    background-image: radial-gradient(at top left, rgba(207, 61, 87, 0.25), transparent 60%), radial-gradient(at top right, rgba(227, 153, 50, 0.25), transparent 60%), radial-gradient(at center left, rgba(207, 61, 87, 0.18), transparent 55%), radial-gradient(at center right, rgba(227, 153, 50, 0.18), transparent 55%), radial-gradient(at bottom center, rgba(251, 241, 219, 0.9), transparent 70%); */
    z-index: 999;
    /* box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    border-radius: 20px;
}

.mega-menu li i {
    transform: rotate(-35deg);
    transition: transform 0.4s ease;
    color: var(--theme-color);
}

.list-unstyled li a:hover i.fal.fa-arrow-right {
    transform: rotate(0deg);
}

.dropLinks li a i {
    transform: rotate(-35deg);
    transition: transform 0.4s ease;
    color: var(--theme-color);
}

.dropLinks li a:hover i {
    transform: rotate(0deg);
}

.nav-link.dropdown-toggle i {
    padding-left: 4px;
}


/* SHOW ON HOVER */

.mega-dropdown:hover .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}


/* Background image */


/* .mega-menu::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url("../images/mix/34.png") no-repeat right bottom;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
} */


/* Bottom marquee */


/* .mega-menu.shadow {
    box-shadow: 0 1rem 2rem 2rem rgba(0, 0, 0, 0.15) !important;
} */

.mega-menu .container {
    box-shadow: 0 1rem 2rem 2rem rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.mega-menu .container {
    background-color: #FBF1DB;
    background-image: radial-gradient(at top left, rgba(207, 61, 87, 0.25), transparent 60%), radial-gradient(at top right, rgba(227, 153, 50, 0.25), transparent 60%), radial-gradient(at center left, rgba(207, 61, 87, 0.18), transparent 55%), radial-gradient(at center right, rgba(227, 153, 50, 0.18), transparent 55%), radial-gradient(at bottom center, rgba(251, 241, 219, 0.9), transparent 70%);
}

.mega-menu .container .row {
    border-radius: 57px;
}


/* .mega-menu::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 4px;
    background: var(--primary);
    color: #fff;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
} */


/* MENU LINKS */

.menu li a {
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: 400;
    text-transform: capitalize;
    padding: 8px 15px;
    /* height: 48px; */
    display: inline-flex;
    align-items: center;
}


/* ====== POSITION ADJUSTMENTS (SAFE) ====== */

.mega-dropdown:hover .mega-menu {
    left: -40.5rem;
}

.menu>li.mega-dropdown:nth-child(2):hover .mega-menu {
    left: -42rem;
}

.menu>li.mega-dropdown:nth-child(3):hover .mega-menu {
    left: -51.5rem;
}

.menu>li.mega-dropdown:nth-child(4):hover .mega-menu {
    left: -65.5rem;
}

.menu>li.mega-dropdown:nth-child(5):hover .mega-menu {
    left: -71rem;
}

.menu.navbar-nav>li:nth-child(5) .menu-under-line::before {
    width: 8.4rem;
}

.menu.navbar-nav>li:nth-child(5) .mega-menu .about-intro h4::after {
    width: 84.4%;
}


/* ====== ABOUT INTRO ====== */

.mega-menu .about-intro h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    position: relative;
}

.mega-menu .about-intro h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 93.4%;
    height: 1px;
    background: var(--theme-color);
}

.about-intro img {
    width: 20rem;
    border-radius: 20px;
}

.about-intro .imageOverlay {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background: rgb(255 255 255 / 22%);
    padding: 20px;
    border-radius: 20px;
    color: #ffffff;
    width: 80%;
    left: 1rem;
    backdrop-filter: blur(6px);
}

.about-intro img::before {
    filter: blur(2px);
}

.about-intro .imageOverlay h3 {
    font-size: 1rem;
    font-weight: 600;
}

.about-intro .imageOverlay h3 {
    color: #ffffff;
}

.mega-menu .about-intro p {
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
    margin: 1rem 0 0;
    color: #ffffff;
}

.about-intro {
    position: relative;
}

.about-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/beforeSec/1.png) no-repeat bottom center;
    background-size: cover;
    /* opacity: 0.5; */
}

.menu-under-line {
    position: relative;
}

.menu-under-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/beforeSec/1.png) no-repeat bottom center;
    background-size: cover;
    /* opacity: 0.5; */
}


/* ====== UNDER LINE ====== */

.menu-under-line {
    position: relative;
    padding: 3rem 0;
    margin-top: 0;
}


/* .menu-under-line::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--theme-color), transparent);
}

.menu-under-line::before {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 2px;
  width: 72px;
  height: 1px;
  background: var(--theme-color);
  transform: rotate(230deg);
  transform-origin: left bottom;
} */

.about-intro {
    /* background: #fbfbfb; */
    padding: 0;
    border-radius: 10px;
}

.headerBtn .themeBtn {
    padding: 6px 10px 6px 12px;
}


/* ====== LIST LINKS ====== */

.mega-menu ul {
    /* margin: 2rem 0 0; */
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mega-menu.inlinemenus ul {
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: row;
}

.mega-menu ul li {
    list-style: none;
}

.mega-menu ul li a {
    font-size: 14px;
    color: #2a2a2a;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: normal;
}

.mega-menu ul li a:hover {
    color: var(--theme-color);
    text-decoration: underline;
}


/* .headerMenu .dropdown-menu {
  width: 300px;
} */


/* .menu li a {
    color: #000;
    font-weight: 400;
} */

.callBtn {
    color: #000;
}

.dropdown i {
    padding-left: 6px;
}

.dropdown-toggle::after {
    display: none;
}

.headerMenu .dropdown-menu {
    background-color: #FBF1DB;
    background-image: radial-gradient(at top left, rgba(207, 61, 87, 0.25), transparent 60%), radial-gradient(at top right, rgba(227, 153, 50, 0.25), transparent 60%), radial-gradient(at center left, rgba(207, 61, 87, 0.18), transparent 55%), radial-gradient(at center right, rgba(227, 153, 50, 0.18), transparent 55%), radial-gradient(at bottom center, rgba(251, 241, 219, 0.9), transparent 70%);
    padding: 10px 0;
}

.headerMenu .dropdown-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(/assets/images/beforeSec/1.png) no-repeat bottom center;
    background-size: cover;
}


/* Home Page CSS Start  */

.main-Banner {
    height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.homeBanner {
    padding: 2rem;
    align-items: start;
}

.homeBanner .bannertext {
    text-align: center;
}

.main-Banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/images/beforeSec/1.png") no-repeat bottom center;
    background-size: cover;
    z-index: 1;
}

.main-Banner>* {
    position: relative;
    z-index: 2;
}

.topBar {
    padding: 10px 3rem;
}

.twoBtns {
    display: flex;
    gap: 12px;
}

.homeBanner .twoBtns {
    justify-content: center;
}


/* .topBar ul {
    display: flex;
    justify-content: space-between;
}

.topBar ul li {
    display: inline-flex;
    gap: 20px;
} */

.topBar ul {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}

.topBar ul li:first-child {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topBar ul li:last-child {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto;
}


/* .topBar ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
} */

.topBar ul li a {
    color: #444444;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}


/* .topBar ul li a i {
    color: var(--yellow);
} */

.topBar ul li:first-child a i {
    color: var(--yellow);
}

.topBar ul li:nth-child(2) a i {
    color: grey;
    font-weight: 400;
    font-size: 20px;
}

.topBar ul li a {
    display: inline-flex;
    gap: 8px;
}

.tagLine {
    font-size: 14px;
    color: var(--yellow);
    background: var(--yellow)1f;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid var(--yellow);
    font-style: italic;
}

.bannertext {
    /* text-align: center; */
}

.bannertext h1 {
    /* font-size: 4rem; */
    /* text-transform: uppercase; */
    /* font-weight: 700;
  color: var(--white); */
    padding: 0 10rem;
}

.bannertext p {
    color: #444444;
}


/* Home Page CSS End */


/* Inner Pages CSS Start */

.innerBanner {
    height: 60vh;
    padding-top: 12rem;
}

.btnMain {
    padding: 20px;
    box-shadow: 0 0 30px #0000001c;
    border-radius: 40px;
    transition: all 0.3s ease;
}


/* .btnMain {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    text-decoration: none;
}

.btnMain i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    background: #fff;
    color: #000000;
}

.btnPink {
    background-color: var(--theme-color);
    color: #ffffff !important;
}

.btnYellow {
    background-color: var(--yellow);
    color: #000000;
} */

.headerElemSec {
    position: relative;
    /* height: 28rem; */
}

.elemBody {
    position: absolute;
}

.elemBody .textArea {
    padding: 6px;
    border-radius: 40px;
    margin-top: 10px;
}

.elemBody .textArea p {
    padding: 0 10px;
    margin: 0;
}

.elemBody .icon {
    display: flex;
    background-color: #ffffff;
    padding: 6px;
    border-radius: 10px;
    /* margin-left: 8rem; */
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
}


/* .elemBody .icon::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
} */

.elemOne .textArea {
    background: var(--theme-color);
}

.elemOne .textArea p {
    color: #ffffff;
}


/* .elemOne .icon::before {
    left: 100%;
    top: 50%;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 20px solid var(--theme-color);
    transform: translateY(-200%) rotate(310deg);
} */

.elemTwo .textArea {
    background: var(--light-blue);
}

.elemTwo .textArea p {
    color: #ffffff;
}


/* .elemTwo .icon::before {
    right: 100%;
    top: 50%;
    transform: translateY(-150%) rotate(30deg);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 20px solid var(--light-blue);
} */

.elemThree .textArea {
    background: var(--dark-blue);
}

.elemThree .textArea p {
    color: #ffffff;
}


/* .elemThree .icon::before {
    right: 100%;
    top: 20%;
    transform: translateY(-180%) rotate(54deg);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 20px solid var(--dark-blue);
} */

.elemFour .textArea {
    background: #FBF1DB;
}

.elemFour .textArea p {
    color: #000000;
}


/* 
.elemFour .icon::before {
    left: 100%;
    top: 50%;
    transform: translateY(-200%) rotate(310deg);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 20px solid #FBF1DB;
} */

.elemFive .textArea {
    background: var(--yellow);
}

.elemFive .textArea p {
    color: #ffffff;
}


/* .elemFive .icon::before {
    right: 100%;
    top: 50%;
    transform: translateY(-150%) rotate(30deg);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 20px solid var(--yellow);
} */

.elemSix .textArea {
    background: #FBF1DB;
}

.elemSix .textArea p {
    color: #000000;
}


/* .elemSix .icon::before {
    right: 100%;
    top: 50%;
    transform: translateY(-150%) rotate(30deg);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 20px solid #FBF1DB;
} */

.elemBody.elemTwo .icon {
    /* left: 16rem; */
    /* position: relative; */
    /* top: -1rem; */
}

.elemSix {
    left: auto;
    right: 8rem;
    top: 8rem;
}

.elemFive {
    left: auto;
    right: 24rem;
    top: 16rem;
}

.elemFour {
    right: auto;
    left: 26rem;
    top: 12rem;
}

.elemThree {
    right: auto;
    left: 54rem;
    top: 4rem;
}

.elemTwo {
    left: auto;
    right: 2rem;
    top: -10rem;
}

.elemOne {
    right: auto;
    left: 10rem;
    top: 0rem;
}

.elemBody .icon::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    clip-path: polygon(50% 0%, 100% 100%, 100% 100%, 50% 78%, 0 100%);
    z-index: 2;
}

.elemOne .icon::before,
.elemFour .icon::before {
    left: 30%;
    top: 84%;
    transform: translateY(0) rotate(40deg);
}

.elemTwo .icon::before,
.elemThree .icon::before,
.elemFive .icon::before,
.elemSix .icon::before {
    left: auto;
    top: 82%;
    right: 0rem;
    transform: translateY(0%) rotate(310deg);
}

.elemOne .icon::before {
    background-color: var(--theme-color);
}

.elemTwo .icon::before {
    background-color: var(--light-blue);
}

.elemThree .icon::before {
    background-color: var(--dark-blue);
}

.elemFour .icon::before {
    background-color: #FBF1DB;
}

.elemFive .icon::before {
    background-color: var(--yellow);
}

.elemSix .icon::before {
    background-color: #FBF1DB;
}

.elemOne .icon,
.elemFour .icon {
    position: relative;
    left: 12rem;
}

.elemTwo .icon,
.elemThree .icon,
.elemFive .icon,
.elemSix .icon {
    position: relative;
    left: -4rem;
}

.marqueBG {
    padding: 1rem 0;
}

.marqueBG .infinite {
    display: flex;
    overflow: hidden;
    gap: 2rem;
}

.infinite div {
    display: flex;
    gap: 2rem;
    animation: marquee 20s linear infinite;
}

.animatedHead {
    font-size: 4rem;
    font-weight: 400;
    color: #2D2D2D;
    white-space: nowrap;
    position: relative;
    margin: 0;
    padding-left: 4rem;
}

.animatedHead::before {
    content: attr(data-label);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
    background-color: #FCB017;
}

.animatedHead[data-label="TM"]::before {
    content: "TM";
    background-color: var(--theme-color);
}

.animatedHead[data-label="CR"]::before {
    content: "©";
    background-color: var(--dark-blue);
}

.animatedHead[data-label="TS"]::before {
    content: "TS";
    background-color: var(--light-blue);
}

@keyframes infini {
    0% {
        transform: translateX(-10%);
    }
    50% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.aboutStorySec {
    border-radius: 40px;
    position: relative;
}

.aboutStorySec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/images/beforeSec/1.png") no-repeat bottom center;
    background-size: cover;
    z-index: 1;
}

.aboutStorySec>* {
    position: relative;
    z-index: 2;
}

.cmnSecOne::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/images/beforeSec/2.png") no-repeat bottom center;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
}

.cmnSecOne>* {
    position: relative;
    z-index: 2;
}

.cmnSecTwo h2 {
    /* font-size: 4rem; */
    margin-bottom: 1rem;
}

.cmnSecTwo .innerLeft .left {
    background-color: var(--theme-color);
    display: inline-block;
    border-radius: 10px;
    padding: 8px;
}

.cmnSecTwo .innerLeft {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.4rem;
}

.cmnSecTwo .innerLeft .right h4 {
    font-size: 1.8rem;
    font-weight: 400;
}

.cmnSecTwo {
    border-radius: 60px;
}

.cmnSecTwo .innerLeft:nth-of-type(1) .left {
    background-color: var(--theme-color);
}

.cmnSecTwo .innerLeft:nth-of-type(2) .left {
    background-color: var(--yellow);
}

.cmnSecTwo .innerLeft:nth-of-type(3) .left {
}


/* .serviceSec .heads {
    margin-bottom: 4rem;
    text-align: center;
} */

.serviceSec .innerBox {
    background: rgb(255 255 255 / 3%);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgb(0 0 0 / 3%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.serviceSec .innerBox::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
    transform: rotate(25deg) translateX(-100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.serviceSec .innerBox:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.serviceSec .innerBox:hover::after {
    opacity: 1;
    animation: shine 1s forwards;
}

.serviceSec .innerBox h3 {
    padding: 1rem 0;
    line-height: 2.6rem;
}

.serviceSec .themeBtn {
    margin-top: auto;
    align-self: flex-start;
    width: auto;
}

.serviceSec .row .col-md-4:nth-child(2) {
    transform: translateY(-40px);
}

@keyframes shine {
    0% {
        transform: rotate(25deg) translateX(-100%);
    }
    100% {
        transform: rotate(25deg) translateX(100%);
    }
}

.reviewsSec {
    overflow: hidden;
    padding: 6rem 0;
}

.reviewsSec .container-fluid {
    padding: 0;
}

.reviewsSec h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.reviewHeader h4 {
    font-size: 1.2rem;
    font-weight: 500;
}

.reviewsSec p {
    margin: 0;
}

.reviewSlider {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reviewSwiper {
    width: 100%;
    overflow: hidden;
}

.reviewSwiper .swiper-wrapper {
    display: flex;
}

.reviewSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.reviewSwiper .reviewCard {
    background: #ffffff2e;
    border-radius: 15px;
    padding: 23px 18px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.reviewHeader {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.reviewHeader img {
    width: 45px;
    height: 45px;
    object-fit: cover;
}


/* accordion css */

.accordian {
    margin-left: 0;
}

.accordian li {
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 0 10px #00000024;
}

.accordian li h4 {
    background: #F5F6F8;
    color: #2f2f2f;
    font-size: 1.125rem;
    padding: 1.4rem;
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

.accordian h4::after,
.accordian h4::after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    position: absolute;
    top: 14px;
    right: 35px;
    line-height: normal;
    transition: all 0.3s ease-in-out;
    background: var(--yellow);
    text-align: center;
    padding: 8px 12px;
    border-radius: 40px;
    color: #ffffff;
}

.accordian p {
    margin: 0;
    color: #869289;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 1rem;
}

.accordian li>div {
    display: none;
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 1rem;
}

.accordian li.active h4::after {
    content: "\f068";
}

.accordian li.active {
    border-color: #F5F6F8;
    background: #F5F6F8;
}

.accordian li.active h4 {
    color: var(--theme-color);
    background: #F5F6F8;
    color: #000000;
    padding: 1.4rem;
    border: navajowhite;
}

.accordian li.active>div {
    background: #F5F6F8;
}

.accordian li.active>div p {
    color: #000000;
}

.accordianInner li {
    margin-bottom: 3rem;
}

.contactSec {
    border-radius: 60px;
}

.contactSec h2 {
    font-size: 3rem;
}

.contactSec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/images/beforeSec/3.png") no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
}

.contactSec>* {
    position: relative;
    z-index: 2;
}

.contactList {
    margin-top: 2rem;
}

.contactList .inner {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 1rem;
}

.contactList .inner .right a {
    font-size: 20px;
}

.contactList .inner .left i {
    width: 50px;
    height: 50px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    background: var(--dark-blue);
    color: #ffffff;
}

.contactForm {
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
    background-color: #ffffff42;
    backdrop-filter: blur(4px);
}

.contactForm label {
    display: block;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.contactForm .field {
    margin-bottom: 15px;
}

.contactForm input,
.contactForm textarea,
.contactForm select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
}

.contactForm input:focus,
.contactForm textarea:focus,
.contactForm select:focus {
    border-color: #e74c5b;
}

.contactForm textarea {
    resize: none;
    height: 110px;
}

.contactForm h4 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    padding-bottom: 1rem;
}


/* 
.contactForm .row {
    display: flex;
    gap: 12px;
}

.contactForm .row .field {
    flex: 1;
}

.contactForm .checkboxRow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
    margin-bottom: 15px;
    justify-content: flex-start;
} */

.contactForm .checkboxRow input {
    width: auto;
}

.checkboxRow label {
    margin: 0;
}

.contactForm .checkboxRow a {
    color: #e74c5b;
    text-decoration: none;
    font-weight: 600;
}

.footer-contact {
    border-top: 1px solid #77777714;
    border-bottom: 1px solid #77777714;
    padding: 22px 0;
}

.footer-newsletter {
    padding: 20px 0;
}

footer h5 {
    font-weight: 600;
    /* margin: 0; */
}

.footer-newsletter input,
.footer-newsletter textarea,
.footer-newsletter select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 31px;
    outline: none;
    font-size: 14px;
    margin-bottom: 10px;
}


/* .footer-newsletter .themeBtn {
    width: 100%;
} */

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social i {
    font-size: 28px;
    color: #98A2B3;
}

.footer-bottom {
    margin: 10px 0 0;
    padding: 20px 0;
    border-top: 1px solid #77777714;
}

.footer-bottom p {
    margin: 0;
}

.payment-icons {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.footer-payment {
    padding: 1rem 0;
}

footer ul li a,
footer ul li span {
    color: #444444;
    padding: 6px 0;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.footer-contact-list i {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    background: var(--dark-blue);
    color: #ffffff;
}

.footer-contact-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.vMSec .innerBoxMain {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.vMSec .innerBox {
    padding: 1.4rem;
    background: #ffffff3b;
    border-radius: 20px;
}

.vMSec .innerBox h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.vMSec .imageOverlay {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background: rgb(255 255 255 / 22%);
    padding: 20px;
    border-radius: 20px;
    color: #ffffff;
    width: 58%;
    left: 50px;
    filter: blur(0.2px);
}

.vMSec .imageOverlay h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.vMSec .progressBar {
    margin-bottom: 10px;
}

.vMSec .progressBar span {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.vMSec .progressOuter {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.vMSec .progressInner {
    width: 0%;
    height: 100%;
    border-radius: 4px;
    transition: width 1.5s ease;
}

.imageOverlay .progressBar:nth-of-type(1) .progressInner {
    background: var(--yellow);
}

.imageOverlay .progressBar:nth-of-type(2) .progressInner {
    background: var(--theme-color);
}

.ctaOne .container-fluid {
    border: 1px solid #ffffff24;
    padding: 0;
    background: #ffffff24;
    border-radius: 50px;
}

.ctaOne {
    margin-top: 6rem;
}

.ctaOne .imgAbsl {
    margin-top: -5rem;
}

.ctaOne .inner {
    padding-left: 6rem;
}

.faqSec.bgwht {
    padding: 4rem 4rem 3rem;
    border-radius: 50px;
}

.pricingBox {
    background: #ffffff24;
    border-radius: 20px;
    padding: 40px 30px;
    /* text-align: center; */
    position: relative;
    color: #fff;
    margin: 0 2rem;
    border: 1px solid #ffffff78;
}

.pricingBox h2 {
    border-bottom: 1px solid #ffffff78;
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-align: center;
    color: #000000;
    font-weight: 600;
    font-size: 3rem;
}

.pricingBox h2 span {
    font-size: 2rem;
    padding-right: 4px;
    font-weight: 400;
}

.pricingBox ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    height: 14rem;
    overflow: auto;
}

.pricingBox ul li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #000000;
}

.pricingBox .btn {
    display: inline-flex;
    padding: 10px 25px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.pricingBox .tag {
    position: absolute;
    left: -42px;
    top: 20px;
    padding: 12px 6px;
    border-radius: 0px 20px 20px 0px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    transform: scale(-1);
    writing-mode: vertical-lr;
}

.pricingBox.standard {
    /* transform: translateY(-30px); */
}

.pricingBox.gold .tag,
.pricingBox.gold .themeBtn {
    background: var(--theme-color);
}

.pricingBox.platinum .tag,
.pricingBox.platinum .themeBtn {
    background: #f1a51c;
}

.pricingBox.diamond .tag,
.pricingBox.diamond .themeBtn {
    background: var(--dark-blue);
}

.pricingBox.elite .tag,
.pricingBox.elite .themeBtn {
    background: var(--light-blue);
}

.pricingBox.global .tag,
.pricingBox.global .themeBtn {
    background: #384F8D;
}

.pricingBox.gold ul li::before {
    color: var(--theme-color);
}

.pricingBox.platinum ul li::before {
    color: #f1a51c;
}

.pricingBox.diamond ul li::before {
    color: var(--dark-blue);
}

.pricingBox.global ul li::before {
    color: #384F8D;
}

.pricingBox.elite ul li::before {
    color: var(--light-blue);
}


/* .pricingBox.basic ul li::before {
    background: var(--theme-color);
}

.pricingBox.standard ul li::before {
    background: #f1a51c;
}

.pricingBox.premium ul li::before {
    background: var(--dark-blue);
} */

.pricingBox .themeBtn {
    padding: 10px 20px;
    border-radius: 10px;
}


/* .pricingSec .heads {
    text-align: center;
} */

.bgWhiteTransparent {
    background: #ffffff70;
    border-radius: 40px;
}

.pricingBox ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
}

.pricingBox ul li::before {
    content: "\f14a";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 0;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    /* width: 18px; */
    /* height: 18px; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.mCSB_inside>.mCSB_container {
    margin: 0 10px;
}

.mCSB_scrollTools {
    right: 8px;
}

.cmnSecThree::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(/assets/images/beforeSec/5.png) no-repeat bottom center;
    background-size: cover;
    opacity: 0.5;
}

.cmnSecThree .imgOverlay {
    position: absolute;
    top: 52%;
    bottom: 0;
    right: 4%;
}

.processSec {
    padding: 100px 0;
    /* background: linear-gradient(90deg, #efe6e6, #e6efea); */
    overflow: hidden;
}


/* Layout */

.processSec .process-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    align-content: center;
    flex-wrap: nowrap;
}


/* LEFT SIDE */

.processSec .process-left {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
}

.processSec .main-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.processSec .main-circle::after {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 10px solid #F9F3F4;
}

.processSec .main-circle h2 {
    margin: 0;
    position: relative;
    z-index: 2;
}


/* RIGHT SIDE */

.processSec .process-right {
    flex: 0 0 65%;
    top: 2rem;
    position: relative;
}


/* PROCESS ITEM */

.processSec .process-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 120px;
}


/* Horizontal Bar */

.processSec .process-bar {
    position: absolute;
    height: 20px;
    width: 500px;
    border-radius: 20px;
    top: 50%;
    left: -22rem;
    /* circle ke edge se attach */
    transform: translateY(-50%);
}


/* Content Area */

.processSec .process-content {
    display: flex;
    align-items: center;
    gap: 25px;
}


/* Small Circle */

.processSec .icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.processSec .icon-circle img {
    width: 3.5rem;
    filter: brightness(0);
}

.processSec .text h4 {
    margin: 0 0 10px;
    /* font-weight: 600; */
    /* font-size: 20px; */
}

.processSec .text p {
    margin: 0;
    /* font-size: 14px; */
    /* color: #666; */
    max-width: 420px;
    line-height: 1.6;
}

.processSec .process-item:nth-child(2) {
    padding-left: 2px;
}

.processSec .process-item:nth-child(2) .process-bar {
    left: -26rem;
}

.processSec .process-item:nth-child(3) {
    padding-left: 120px;
}

.processSec .process-item:nth-child(3) .process-bar {
    left: -370px;
}

.processSec .pink .process-bar {
    background: #d7541a;
}

.processSec .blue .process-bar {
    background: #000000;
}

.processSec .orange .process-bar {
    background: #d65327;
}

.cmnSecThree .imgOverlay .bottom p {
    color: #000000;
    font-size: 20px;
}

.cmnSecThree .imgOverlay .bottom {
    width: 80%;
}

.cmnSecThree .imgOverlay .top h2 {
    font-weight: 600;
}

.cmnSecThree .imgOverlay .top h2 {
    font-size: 5.2rem;
}

.cmnSecThree .imgOverlay .top:nth-child(1) h2 {
    color: var(--light-blue);
}

.cmnSecThree .imgOverlay .top:nth-child(3) h2 {
    color: var(--theme-color);
}

.mCSB_scrollTools {
    right: 0;
}


/* .processSec .process-item:nth-child(2) .process-bar */

ul.lpHeaderNav {
    display: flex;
    justify-content: space-between;
    margin: 4rem 0 0;
}

ul.lpHeaderNav li {
    background: var(--theme-color);
    padding: 6px 20px;
    border-radius: 40px;
    color: #ffffff;
}


/* ul.lpHeaderNav li:hover {
    background-color: var(--theme-color);
    color: #fff;
} */

ul.lpHeaderNav li:nth-child(2) {
    background-color: #FBF1DB;
    color: #000000;
}

ul.lpHeaderNav li:nth-child(3) {
    background-color: var(--yellow);
    color: #ffffff;
}

ul.lpHeaderNav li:nth-child(4) {
    background-color: #ffc191;
    color: #000000;
}

ul.lpHeaderNav li:nth-child(6) {
    background-color: var(--light-blue);
    color: #ffffff;
}

.serviceSec.lpServices .heads {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.serviceSec.lpServices .heads img {
    width: 50px;
    height: 50px;
}

.serviceSec.lpServices h3 {
    font-size: 24px;
    line-height: normal;
}

.serviceSec.lpServices .innerBox {
    padding: 20px;
}

.main-footer.lpFooter .footer-about {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.main-footer.lpFooter .footer-bottom ul {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.elemBody .icon img {
    filter: brightness(0);
}

.attorneySec .innerBox h3 {
    padding-bottom: 0;
}

.attorneySec .innerBox h6 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #282828;
}

.pricingSlider {
    padding: 0 0 4rem;
}
.swiper-pagination-bullet-active {
    background: var(--theme-color);
}