:root {
      --primary: #F7941C;
      --dark: #423B38;
      --light: #F3EEEA;
      --theme-red: #6B1E1B;

/*       --font-title: 'Unna', serif; */
	--font-title: 'Cabin', serif;
	--font-body: 'Cabin', sans-serif;
    }

body {
  font-family: var(--font-body);
  background-color: var(--light);
  color: var(--dark);
}
input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border-color: rgba(255, 255, 255, 0.7);
}
.section-tag {
    border: 1px solid var(--primary);
    padding: 5px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 15px;
}
.section-title {
    margin-top: 20px;
    font-family: var(--font-title);
    font-size: 40px;
    line-height: 1.0;
}
/* Navbar */
.navbar {
  background-color: var(--light);
	padding: 0;
}
.menu-border {
    border: 1px solid var(--dark);
    border-radius: 20px;
    padding: 11px;
}
.navbar-brand {
    font-weight: 600;
    color: var(--dark);
    background-color: #f98c17;
    border-radius: 0px 0px 10px 10px;
}
.nav-link {
  color: var(--dark);
  font-weight: 500;
}
.nav-link:hover {
  color: var(--primary);
}
.logo-light{
	width:140px;
}
.connect-menu-box .phone{
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
}
.connect-menu-box .email{
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
}
.mobile-contact .phone{
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
}
.mobile-contact .email{
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
}

/*add wordpress class submenu style*/
.parent-sub-menu {
  position: relative;
}
.parent-sub-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 200px;
  background-color: var(--light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);

  animation: submenuOut 0.3s ease forwards;
  pointer-events: none;
  z-index: 999;
}
.parent-sub-menu:hover .sub-menu {
  visibility: visible;
  pointer-events: auto;
  animation: submenuIn 0.4s ease forwards;
}
/* Keyframes */
@keyframes submenuIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes submenuOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(15px);
  }
}

/* Submenu items */
.sub-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}

.sub-menu li a:hover {
  background: #f3eeea;
}
/*End wordpress class submenu style*/

.connect-menu-box{
    display: flex;
    align-items: center;
    gap: 20px;
}
.btn-cta {
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  width: 190px;
  padding: 12px 20px;
  border: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  position: relative;
  overflow: hidden;

  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* shine effect */
.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transition: 0.5s;
}

/* hover */
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-cta:hover::before {
  left: 100%;
}

/* active (click) */
.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.btn-theme-white {
  background: #fff;
  color: var(--dark);
  font-size: 14px;
  width: 190px;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  position: relative;
  overflow: hidden;

  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

/* shine effect */
.btn-theme-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,0,0,0.08),
    transparent
  );
  transition: 0.5s;
}

/* hover */
.btn-theme-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  background-color: #f9f9f9;
}

.btn-theme-white:hover::before {
  left: 100%;
}

/* active */
.btn-theme-white:active {
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.custom-logo-link{
    margin-right:100px;
}
/* Offcanvas */
.offcanvas {
  background-color: var(--light);
}
/* Hero */
.hero {
  padding: 120px 0;
}
.hero h1 {
  font-family: var(--font-title);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.0;
}
.hero h1 span {
  color: var(--primary);
/*   font-weight: 300; */
}
.hero p {
  margin-top: 20px;
  max-width: 520px;
}
.hero-img {
    border-radius: 40px;
    max-width: 100%;
    height: auto;
}
/* 2nd secttion */

/* Trust Section */
.trust-section {
  background-color: var(--primary);
  padding: 24px 0;
  margin-top: 40px;
  border-radius: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 500;
  color: var(--theme-red);
}
.trust-item i {
  font-size: 16px;
}

/* =========================== 
Services Section 
=========================== */
.services-section {
  padding: 60px 0 0 0;
  background-color: var(--light);
  position: relative;
}

.services-swiper {
  padding-bottom: 20px;
}
.section-description{
	width: 75%;
    max-width: 100%;
    margin: auto;
	padding-bottom: 30px;
}
.single-lch_our_services .section-description{
	padding: 30px 0px;
}
/* Card */
.service-card {
  background: transparent;
}
.shape1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: auto;
}
.service-img {
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
}
.services-template .service-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 24px;
}
.service-click-box {
  background-color: var(--light);
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  border-radius: 0 0 0 30px;
}

.service-arrow {
  background-color: var(--primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
/*   rotate: 310deg; */
  text-decoration: none;
}

.service-content {
  margin-top: -60px;
  background-color: var(--light);
  position: relative;
  border-radius: 0 15px 15px 15px;
  width: 80%;
  padding: 25px;
}

.service-content h4 {
  font-family: var(--font-title);
  font-size: 22px;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 14px;
  color: var(--dark);
  
}
.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  margin-top: 12px;
  padding: 10px 20px;
  min-width: 150px;

  border: 1px solid var(--dark);
  border-radius: 24px;
  font-size: 16px;
  text-decoration: none;
  color: var(--dark);
  background: transparent;
  cursor: pointer;

  position: relative;
  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* shine animation */
.service-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,0,0,0.15),
    transparent
  );
  transition: 0.5s;
}

/* hover */
.service-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-color: var(--primary);
  color: var(--primary);
}
.service-link:hover::before {
  left: 100%;
}

/* active */
.service-link:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.services-swiper .swiper-button-prev,
.services-swiper .swiper-button-next {
  display: none !important;
}
.services-nav {
  display: none;
}
.gp-list-wrapper ul, .gp-desc ul{
    list-style:none;
    padding-left: 0;
}
.gp-list-wrapper ul>li, .gp-desc ul>li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.gp-list-wrapper ul>li img, .gp-desc ul>li img {
    width: 30px;
    margin-right: 15px;
}
.post-type-archive-lch_our_services .services-template .service-content {
    margin-top: 0;
    background-color: #f3eeea00;
    position: relative;
    border-radius: 0 15px 15px 15px;
    width: 100%;
    padding: 25px 0;
    text-align: center;
}
.post-type-archive-lch_our_services .services-template .service-content h4, 
.post-type-archive-lch_our_services .services-template .service-content p{
    color:#ffffff;
}
/* =========================== 
Counter Section 
=========================== */
.counter-section {
  padding: 50px 0 100px;
  background-color: var(--light);
}
.counter-box {
  max-width: 220px;
  margin: 0 auto;
}
.counter-shape {
  position: relative;
  width: 150px;
  height: 130px;
  margin: 0 auto 20px;
}
.counter-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 40% 60% 50%;
}
.counter-shape h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.counter-shape h3 span {
  font-size: 18px;
  margin-left: 2px;
}
.counter-box p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5;
}
/* =========================== 
GP Expertise Section
=========================== */
.gp-section {
  padding: 60px 0;
  background-color: var(--light);
}
.gp-image-wrap {
  position: relative;
}
.gp-main-img {
    width: 100%;
	height: auto;
    border-radius: 24px;
    z-index: 1;
    position: relative;
}
.gp-overlay-card {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: var(--primary);
    background: linear-gradient(90deg, rgba(247, 148, 28, 1) 0%, rgba(249, 175, 85, 1) 70%);
    padding: 20px;
    border-radius: 16px 0px 16px 0px;
    width: 220px;
    color: #fff;
    font-family: var(--font-body);
    z-index: 2;
    border-top: 10px solid var(--light);
    border-left: 10px solid var(--light);
}
.gp-overlay-card>img{
  border-radius: 50px;
  margin-bottom: 20px;
}
.gp-overlay-card h6 {
  margin: 0;
  font-weight: 600;
}
.gp-overlay-card span {
  font-size: 12px;
  opacity: 0.9;
}
.gp-overlay-card p {
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.4;
}
.gp-title {
  font-family: var(--font-title);
  font-size: 40px;
  margin: 20px 0;
  line-height: 1.0;
}
.gp-title span {
  color: var(--primary);
}
.gp-desc {
/*   font-size: 14px; */
  max-width: 520px;
  margin-bottom: 30px;
}
.gp-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gp-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.gp-list li>img {
    height: 48px;
}
.gp-list i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 4px;
}
.gp-list h4 {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 6px;
    font-family: var(--font-title);
}
.gp-list p {
  font-size: 16px;
}
.gp-logos {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    background-color: #D9D9D9;
    border-radius: 15px;
    padding: 10px;
    justify-content: space-between;
}
.gp-logos img {
  height: 96px;
}
.gp-shape {
    position: absolute;
    left: -43px;
    bottom: -78px;
}

/* =========================== 
Why Choose Us Section
=========================== */
.why-choose-figma {
  position: relative;
  padding: 110px 0;
  background-color: var(--light);
  overflow: hidden;
}
.why-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}
.why-row-center {
  justify-content: center;
  gap: 80px;
}
.why-card {
  display: flex;
  gap: 14px;
  max-width: 320px;
}
.why-check {
    width: 56px;
    height: 56px;
    background-color: var(--theme-red);
    color: #fff;
    border-radius: 50%;
    font-size: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}
.why-card h5 {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 6px;
    font-family: var(--font-title);
}
.why-card p {
  font-size: 16px;
  line-height: 1.55;
}
.why-blob {
  position: absolute;
  right: -80px;
  bottom: 40px;
}
/* =========================== 
4 Step Process Section
=========================== */
.process-section {
  padding: 60px 0;
  background-color: var(--light);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.process-col {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.process-item {
  display: flex;
  gap: 16px;
  max-width: 360px;
}
.step-num {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.process-item h5 {
    font-family: var(--font-title);
    font-size: 30px;
    margin-bottom: 6px;
}
.process-item p {
  font-size: 16px;
  line-height: 1.5;
}
.process-center {
  display: flex;
  justify-content: center;
}
.process-curve {
  max-height: 320px;
}
/* =========================== 
Our Experiance Section
=========================== */
.expertise-section {
  padding: 60px 0 140px;
  background-color: var(--light);
  position: relative;
}
.expertise-card {
  margin: 0 auto;
}
.expertise-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
}
.expertise-info {
    background-color: var(--light);
    border-radius: 16px;
    padding: 18px;
    margin-top: -60px;
    position: relative;
    width: 80%;
    margin-left: auto;
}
.expertise-info h6 {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 8px;
}
.expertise-info p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.expertise-link {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--dark);
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    color: var(--dark);
    width: 150px;
    text-align: center;
}
.expertise-link:hover {
  background-color: var(--dark);
  color: #fff;
}
.expertise-shape {
  display: flex;
  justify-content: center;
  margin-top: 60px;
	
	display:none;
}

/* =========================== 
Industries Section
=========================== */

.industries-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7941c 0%, #ffb85c 100%);
  text-align: center;
}
.section-tag-dark {
  border-color: #ffffff;
  color: var(--theme-red);
}
.industries-title {
  font-family: var(--font-title);
  font-size: 42px;
  color: var(--theme-red);
  margin-bottom: 12px;
}

.industries-subtitle {
  margin: 0 auto;
  font-size: 14px;
  color: var(--theme-red);
}
.industries-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 30px;
}
.industry-item img {
    margin-bottom: 12px;
    width: 40px;
}
.industry-item p {
    font-size: 21px;
    line-height: 1.1;
    color: var(--theme-red);
    font-family: var(--font-title);
}
.industries-footer {
  margin: 60px auto 0;
  font-size: 16px;
  color: var(--theme-red);
}

/* =========================== 
FAQ Section
=========================== */
.faq-section {
  padding: 60px 0;
  background-color: var(--light);
}
.faq-image-wrap {
  position: relative;
}
.faq-image {
  width: 100%;
  border-radius: 24px;
}
.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background-color: transparent;
}
.faq-accordion .accordion-button {
    background: none;
    box-shadow: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: bold;
    color: var(--bs-black);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-accordion .accordion-button::after {
  display: none;
}
.faq-accordion .accordion-button i {
  transition: transform 0.3s ease;
}
.faq-accordion .accordion-button:not(.collapsed) i {
  transform: rotate(180deg);
}
.faq-accordion .accordion-body {
  padding: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  
}

/* =========================== 
Contact CTA Section
=========================== */
.contact-cta-figma {
  padding: 60px 0;
  background-color: var(--light);
  position: relative;
}
.contact-frame {
  /* background: #fff; */
  border-radius: 32px;
  /* padding: 30px; */
}
.contact-image-wrap {
  position: relative;
  height: 100vh;
  border-radius: 28px;
  overflow: hidden;
}
.contact-bg-img {
  width: 100%;
  /* height: 520px; */
  object-fit: cover;
  border-radius: 28px;
}
.contact-deco {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}
.contact-overlay-form {
    position: absolute;
    bottom: 0;
    right: 0px;
    transform: translateY(0%);
    background-color: var(--primary);
    background: linear-gradient(90deg, rgb(235 129 0) 0%, rgb(255 165 55) 70%);
    width: 517px;
    min-height: 70%;
    padding: 28px;
    border-radius: 24px 0px 24px 0px;
    color: #fff;
    z-index: 3;
    border-top: 10px solid var(--light);
    border-left: 10px solid var(--light);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
	
}
.post-type-archive-lch_contact_us .contact-overlay-form {
    position: inherit;
    bottom: 0;
    right: 0px;
    transform: translateY(0%);
    background-color: var(--primary);
    background: linear-gradient(90deg, rgb(235 129 0) 0%, rgb(255 165 55) 70%);
    width: auto;
    min-height: 70%;
    padding: 28px;
    border-radius: 24px 0px 24px 0px;
    color: #fff;
    z-index: 3;
    border-top: 10px solid var(--light);
    border-left: 10px solid var(--light);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.post-type-archive-lch_contact_us .hero p{
    max-width: fit-content;
}
.contact-tag {
  display: inline-block;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.contact-overlay-form h2 {
    font-family: var(--font-title);
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.0;
}
.contact-overlay-form p {
    font-size: 16px;
    margin-bottom: 16px;
}
.overlay-form input, .overlay-form textarea {
    width: 100%;
    background: transparent;
    background: linear-gradient(90deg, rgb(235 129 0) 0%, rgb(255 165 55) 70%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 9px 10px;
    font-size: 12px;
    color: #fff;
}
.overlay-form  select {
    width: 100%;
    background: transparent;
    background: linear-gradient(90deg, rgb(235 129 0) 0%, rgb(255 165 55) 70%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 9px 10px;
    font-size: 12px;
    color: #fff;
}
.overlay-form select option, .overlay-form select option:hover {
    background: #fa9c2a;
}
.overlay-form input::placeholder,
.overlay-form textarea::placeholder {
  color: rgba(255,255,255,0.85);
}
.overlay-form textarea {
  resize: none;
}
.overlay-btn {
  margin-top: 14px;
  width: 100%;
  background: #fff;
  color: var(--dark);
  border: none;
  padding: 9px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
}
.message-form-control, .sd-textarea-form-control{
    height: 95px;
}
.wpcf7-response-output {
    margin: 0px !important;
}
.wpcf7-spinner {
    position: absolute !important;
    right: 12px !important;
    bottom: 35px !important;
    background-color: #00000021 !important;
}
.schedule {
    list-style: none;
    padding: 0;
    max-width: 300px;
}

.schedule li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}
/* =========================== 
Footer Section
=========================== */
.site-footer {
  background-color: #7b1e1e; /* Figma maroon */
  color: #fff;
  font-family: var(--font-title);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 80px 0;
}
.footer-logo {
  font-family: var(--font-title);
  font-size: 22px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 260px;
}
.footer-col h6 {
  font-size: 21px;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 16px;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-col ul li a:hover {
  opacity: 1;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact i {
  font-size: 14px;
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 16px 0;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

/* ************** =========================== 
SERVICES PAGE STYLE
=========================== ************** */
.page-template-services .gp-list li>img {
    height: 36px;
}
.page-template-services .gp-list p {
    margin-bottom: 0;
}
.page-template-services .gp-list li {
    align-items: center;
}
.page-template-services .industries-section .service-content {
    margin-top: auto;
    background-color: transparent;
    position: relative;
    border-radius: 0 15px 15px 15px;
    width: 100%;
    padding: 19px 0px;
    text-align: left;
}
.page-template-services .industries-section .service-content h4, .page-template-services .industries-section .service-content p{
    color:var(--light);
}
.page-template-services .industries-section .service-click-box{
        background-color: #F89C2E;
}

/* ************** =========================== 
CASE STUDY PAGE STYLE
=========================== ************** */
.page-template-case-study{
    
}
.cs-hero-main {
    position: relative;
    padding: 110px 0;
    background-color: var(--light);
    overflow: hidden;
}
.page-template-case-study .hero {
    position: relative;
}
.cs-hero {
    display: flex;
    gap: 15px;
	position:relative;
}

.cs-hero-set1 .cs-hero-img {
    width: calc(50% - 7.5px); /* gap এর অর্ধেক */
    object-fit: cover;
}
.page-template-case-study .hero h1{
    font-size:21px;
}
.cs-hero-img {
    width: 100%;
    border-radius: 20px;
	position:relative;
}
.cs-hero-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(280deg);
    max-width: 272px;
    animation: breathe 4s ease-in-out infinite;
	
	display:none;
}

@keyframes breathe {
    0% {
        transform: rotate(280deg) scale(1);
    }
    50% {
        transform: rotate(280deg) scale(1.08);
    }
    100% {
        transform: rotate(280deg) scale(1);
    }
}
/* ************** =========================== 
BLOG PAGE STYLE
=========================== ************** */
.border-curve {
    rotate: 90deg;
    height: 200px;
    margin-top: -80px;
}
.lch_learning-template-default .cs-hero-main{
	padding-bottom:0px;
}
.lch_learning-template-default  .why-choose-figma{
	padding-top:10px;
}
/* ************** =========================== 
Terms And Conditions PAGE STYLE
=========================== ************** */
.tc-border-curve {
    height: 80px;
    margin-top: -16px;
}

/* ************** =========================== 
Work Assessments PAGE STYLE
=========================== ************** */
.employer-expect-section {
    background-color: var(--light);
}
.expect-card {
    background-color: var(--theme-red);
    color: #fff;
    border-radius: 40px;
}
.employer-badge {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    font-family: var(--font-body);
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 15px;
}
.expect-text {
    font-family: var(--font-title);
    font-size: 0.95rem;
    color: #fff;
    max-width: 180px;
    margin: 0 auto;
}
.outcome-frame{
    position: relative;
    height: 100vh;
    border-radius: 28px;
    overflow: hidden;
    
}
.fitness-outcomes-section {
  background-color: var(--light);
}

.outcomes-card {
    background-color: var(--primary);
    background: linear-gradient(90deg, rgb(235 129 0) 0%, rgb(255 165 55) 70%);
    border-radius: 40px;
}

.outcomes-badge {
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.outcomes-title {
  font-family: var(--font-title);
  font-size: 2.6rem;
}

.outcomes-intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  max-width: 420px;
}

.outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.outcomes-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}
.outcomes-list span {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;

  background-color: #ffffff42;

  width: 34px;
  height: 34px;
  min-width: 34px;       
  min-height: 34px;       

  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  margin-top: 5px;
  box-sizing: border-box;
}

.outcomes-list h4 {
    display: block;
    font-family: var(--font-title);
    font-size: 21px;
}
.outcomes-list p {
    margin: 4px 0 0;
    font-size: 16px;
}
.outcomes-image {
  object-fit: cover;
}
.map{
	width:100%;
	height:450px;
	margin-bottom:50px;
	margin-top:50px;
	    border-radius: 20px;
	
}