/* ----- Header CSS ----- */

.primary-header {
  position: fixed;
  top: 42px;
  left: 0;
  z-index: 999;
  width: 100%;
  transition:
    top 0.35s ease,
    backdrop-filter 0.35s ease,
    background-color 0.35s ease,
    padding 0.35s ease;
}

.primary-header.scrolled {
  top: 0px;
  padding: 10px 0px;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.25);
  transition: 0.35s ease all;
}

.primary-header.hide-header {
  top: -120px !important;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
}

.header-logo a {
  display: flex;
}

.primary-header.scrolled .header-logo img {
  width: 50px;
  transition: width 0.35s ease;
  display: flex;
}

.primary-header .header-logo img {
  transition: width 0.35s ease;
}

.nav-items {
  background-color: var(--yellow);
  height: 100%;
}

.nav-items > ul {
  display: flex;
  gap: 35px;
  list-style: none;
  padding: 12px 18px;
}

.nav-items > ul .nav-list a {
  text-transform: uppercase;
  font-size: 12px;
  color: var(--black);
  letter-spacing: 2px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--neue);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-items > ul .nav-list a::after {
  content: "";
  width: 8px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='9' viewBox='0 0 8 9'%3E%3Cpath d='M7.60488 5.42364L0 9.00009L0 7.72279L6.99571 4.50005L0 1.25766L0 0L7.60488 3.55681V5.42364Z' fill='%231A1A1A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Show on hover */

.nav-items > ul .nav-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* .nav-items>ul .nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: var(--black);
    transition: width 0.4s ease;
}

.nav-items>ul .nav-list a:hover::after {
    width: 100%;
} */

.mobile-header.hide-header {
  transform: translateY(-100%);
}

.mobile-header {
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.mobile-header {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  padding: 20px 0px;
}

.mobile-header .header-wrapper {
  align-items: center;
  justify-content: left;
  position: relative;
}

.mobile-header .header-logo {
  width: 59px;
}

.mobile-header .ham-burger-menu {
  position: absolute;
  right: 0;
  cursor: pointer;
}

.mobile-header-menu {
  height: 100vh;
  background-color: #fff;
  position: absolute;
  width: 100%;
  inset: 0;
  clip-path: inset(0 100% 0 0);
  transition: 0.6s ease all;
}

.mobile-header.active .mobile-header-menu {
  clip-path: inset(0 0 0 0);
}

.mobile-header-menu .header-wrapper {
  padding: 30px 20px;
}

.mobile-header-menu .header-wrapper .ham-burger-menu {
  right: 20px;
}

.mobile-nav-list-wrapper {
  padding: 20px;
}

.mobile-nav-list-wrapper ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 40px;
}

.mobile-nav-list-wrapper ul a {
  font-size: 22px;
  line-height: 91%;
  letter-spacing: 0em;
  font-weight: 400;
  font-family: var(--instrument);
  color: var(--black);
  display: flex;
  gap: 10px;
}

.mobile-nav-list-wrapper ul a span {
  display: flex;
  align-items: center;
}

.mobile-nav-logo {
  padding: 0px 20px;
  position: absolute;
  bottom: 30px;
  width: 100%;
}

.mobile-header {
  position: fixed;
  top: 42px;
  left: 0;
  z-index: 999;
  width: 100%;
  transition:
    top 0.35s ease,
    backdrop-filter 0.35s ease,
    background-color 0.35s ease,
    padding 0.35s ease;
  top: 0px;
}

.mobile-header.scrolled {
  top: 0px;
  padding: 10px 0px;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.25);
  transition: 0.35s ease all;
}

/* ----- Header CSS ----- */

/* --- Landing Banner --- */

.landing-banner-item {
  height: 100vh;
  width: 100%;
  filter: brightness(0.5);
}

.landing-banner-item img {
  filter: grayscale(1);
}

.landing-banner {
  position: relative;
  height: 100vh;
}
.landing-banner .owl-carousel {
  position: absolute;
  inset: 0;
}
.landing-banner-content {
  position: absolute;
  left: 60px;
  bottom: 75px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landing-banner-content h1 {
  color: var(--white);
  text-transform: uppercase;
}

.landing-banner-content p {
  color: var(--white);
  max-width: 34ch;
}

.lb-bottom-icon {
  position: absolute;
  width: 115px;
  bottom: 50px;
  z-index: 3;
  right: 60px;
}

/* .landing-banner a-waves {
    svg {
        path {
            stroke: #ffffff26;
            stroke-width: 4px;
        }
    }
} */

/* --- Landing Banner --- */

/* ----- Ticker CSS ---- */

.landing-ticker {
  margin: 80px 0px;
}

.bx-wrapper {
  max-width: 100% !important;
  box-shadow: none !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
}

.landing-ticker .lt-icon-items {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-ticker .bx-wrapper img {
  max-width: 160px;
  max-height: 52px;
  height: auto;
  width: auto;
}
/* Complete hide before load */
.landing-ticker-wrap {
  display: none !important;
}

.bx-viewport .landing-ticker-wrap,
.landing-ticker-wrap.slider-ready {
  display: block !important;
}

/* ----- Ticker CSS ---- */

/* Design that starts */

.dts {
  overflow: hidden;
}

.dts-in {
  display: flex;
  align-items: stretch;
}

.dts-main-left {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.dts-left-top {
  display: flex;
  height: calc(100% - 54px);
}

.dts-left-top-left {
  width: 10%;
  height: 100%;
}

.dts-left-top-right {
  width: 90%;
  height: 100%;
}

.dts-left-top-left > div {
/*   writing-mode: sideways-lr; */
	  writing-mode: vertical-rl; /* fallback for modern browsers */
  transform: rotate(180deg); /* makes it read correctly */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0px;
}

.dts-left-top-left > div h2 {
  white-space: nowrap;
  color: var(--white);
  font-size: clamp(16px, 5vw, 32px);
}

.dts-left-bottom {
  height: 10%;
}

.dts-left-bottom > div {
  height: 100%;
  width: 100%;
}

.dts-image {
  height: 100%;
}

.dts-main-right {
  width: 40%;
  background-color: var(--blue);
  display: flex;
  align-items: end;
  position: relative;
}

.dts-main-right::before {
  content: "";
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/bg-noise.png");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  background-size: cover;
}

.dts-main-right .yellow-block-bg > div {
  position: relative;
  z-index: 3;
}

.dts-main-right > div {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  height: calc(100% - 130px);
  position: relative;
  z-index: 3;
}

.dts-right-bottom-top h2 {
  font-size: clamp(24px, 7vw, 42px);
  color: var(--black);
}

.dts-right-bottom-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Design that starts */

/* Proof of Practice  */

.pp-counter p.head {
  font-size: clamp(64px, 7vw, 134px);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 102%;
  font-family: var(--neue);
}

.pp-counter p.text {
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 102%;
  font-family: var(--neue);
}

.proof-practice-sec-in {
  display: flex;
  gap: 40px;
}

.proof-practice-sec-in .left {
  width: 50%;
}

.proof-practice-sec-in .right {
  width: 50%;
}

.proof-practice-sec-in .pps-image {
  height: 650px;
  width: 100%;
  position: relative;
}

.proof-practice-sec-in .pps-image::before {
  content: "";
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/blue-noise.png");
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  opacity: 40%;
  inset: 0;
  background-size: cover;
}

.proof-practice-sec-in .pps-image::after {
  content: "";
  background-color: var(--blue);
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  inset: 0;
  opacity: 50%;
}

.proof-practice-sec-in .right {
  position: relative;
}
.proof-practice-sec-in .practise-bg {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.proof-practice-sec-in .practise-bg img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .proof-practice-sec-in .right::after {
    content: "";
    background-image: url('https://www.upkrama.com/wp-content/uploads/2025/12/wave-pp.svg');
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    mix-blend-mode: hard-light;
    inset: 0;
       background-size: cover;
} */

.proof-practice-sec-in .pps-content {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.pps-counter-wrap {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
}

.pps-counter-wrap > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pp-content-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px 44px 64px 44px;
}

.proof-practice-sec-in .brand-logo-img {
  width: 94px;
}

.proof-practice-sec-in .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-practice-sec-in .left p {
  margin-top: 20px;
  max-width: 46ch;
}

/* Proof of Practice  */

/* ---- Footer ---- */

.footer {
  background-color: var(--black);
  position: relative;
  padding-top: 60px;
  overflow: hidden;
}
.footer-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
}
.footer-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.footer-inner {
  z-index: 3;
  position: relative;
}

.footer-nav {
  padding-bottom: 40px;
}

.footer-nav ul {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
}

.footer-nav li a {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: var(--neue);
  line-height: 91%;
  font-size: 16px;
  display: inline-flex;
  vertical-align: middle;
  position: relative;
  gap: 8px;
}

.footer-nav li a::after {
  content: "";
  width: 11px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='13' viewBox='0 0 11 13'%3E%3Cpath d='M10.1913 7.26823L0 12.061L0 10.3493L9.37496 6.03052L0 1.68539L0 0L10.1913 4.76648V7.26823Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Show on hover */

.footer-nav li a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.copyright-info a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: var(--white);
  transition: width 0.4s ease;
}

.copyright-info a:hover::after {
  width: 100%;
}

.copyright-info {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #5f5f5f;
  padding: 30px 0px;
}

.copyright-info a,
.copyright-info p {
  color: var(--white);
  font-size: 12px;
  font-family: var(--instrument);
  letter-spacing: -0.01em;
  line-height: 150%;
  font-weight: 400;
}

.copyright-info .terms-links {
  display: flex;
  gap: 20px;
}

.copyright-info .simpleplan p {
  display: flex;
  gap: 8px;
  align-items: center;
}

.copyright-info a {
  position: relative;
}

.copyright-info a::after {
  bottom: -1px;
}

.address-info-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 80px 0px;
}

.address-info-left {
  display: flex;
  gap: 60px;
  width: 60%;
}

.address-info-left a,
.address-info-left p {
  font-size: 14px;
  color: var(--white);
  line-height: 150%;
  display: inline-block;
  letter-spacing: -0.1em;
  font-weight: 400;
  font-family: var(--instrument);
  transition: 0.3s ease all;
}

.address-info-left a:hover {
  color: var(--yellow);
}

.footer-inner .ft-address {
  display: flex;
  flex-direction: column;
}

.address-info-wrap .fta-number,
.address-info-wrap .fta-email {
  margin-bottom: 10px;
}

.footer-inner .footer-logo {
  padding-bottom: 20px;
}

.address-info-right {
  width: 40%;
}

.address-info-right .sub-form form {
  display: flex;
  width: 100%;
  margin-top: 10px;
}

.address-info-right .sub-form form input {
  border: none;
  outline: none;
  box-shadow: none;
  background: none;
}

.address-info-right .sub-form .sub-input-email {
  border: 1px solid #fff;
  padding: 12px 15px;
  width: 100%;
  color: var(--white);
  font-size: 12px;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.address-info-right .sub-form .sub-input-email::placeholder {
  font-size: 12px;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.footer-inner .subscribe-form p {
  font-size: 12px;
  letter-spacing: 0.01em;
  line-height: 150%;
  font-weight: 400;
  font-family: var(--instrument);
  display: flex;
}

.footer-inner .subscribe-form p.sub-head {
  color: var(--white);
}

.address-info-right .sub-form .sub-input-submit {
  border: 1px solid #fff;
  padding: 12px 15px;
  background-color: #fff;
  font-size: 12px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  font-family: var(--instrument);
  line-height: 100%;
  cursor: pointer;
  transition: 0.4s ease all;
}

.footer-inner .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
  padding: 20px 0px;
}
.footer-inner .social-icon.for-mobile{
    padding: 0;
}
.footer-inner .social-icon a {
  display: inline-block;
  transition: 0.4s ease all;
}

.footer-inner .fta-number a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-inner .social-icon a:hover {
  transform: translateY(-8px);
}

.footer-inner .sub-input-submit:hover {
  background: none;
  color: var(--white);
}

footer .sub-form {
  margin-bottom: 40px;
  position: relative;
}

/* ---- Footer ---- */

/* Collab with Upkrama */

.collab-with-upkrama-in {
  position: relative;
}

.collab-with-upkrama-in .cwu-img {
  height: 554px;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
  z-index: 1;
  filter: brightness(0.4);
}

.collab-with-upkrama-in .cwu-img::before {
  content: "";
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/Topographic-Map.svg");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  background-size: cover;
}

.collab-with-upkrama-in .cwu-img::after {
  content: "";
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/line_box.svg");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  mix-blend-mode: plus-lighter;
  background-size: cover;
}

.collab-with-upkrama-in .cwu-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 20px;
  justify-content: end;
  padding-left: 115px;
  padding-bottom: 150px;
}

.collab-with-upkrama-in .cwu-content h2 {
  font-size: clamp(32px, 7vw, 72px);
  letter-spacing: -0.03em;
  line-height: 110%;
  font-weight: 400;
  color: var(--white);
}

.collab-with-upkrama-in .cwu-content h2 span {
  color: var(--yellow);
}

.collab-with-upkrama-in .cwu-content p {
  font-size: 24px;
  letter-spacing: 0em;
  line-height: 121%;
  font-weight: 400;
  color: var(--white);
  font-family: var(--instrument);
  max-width: 38ch;
}

/* Collab with Upkrama */

/* Snapshots from Studio  */

.snap-studio-in {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.snap-studio-in .insta-post-img {
  aspect-ratio: 4/5;
}

.snap-studio .heading {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

/* Snapshots from Studio  */

header {
  overflow: hidden;
}

/* Blogs Insights  */

.blogs-insights-in .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.blogs-slider-card .top {
  overflow: hidden;
}

.blogs-slider-card .bi-card-img {
  aspect-ratio: 4.2/4.6;
  transition: 0.4s ease all;
}

.blogs-slider-card .bi-card-img img {
  transition: 0.4s ease all;
}

.blogs-slider-card .bi-card-content {
  background-color: #e6e4e2;
  padding: 20px;
  transition: 0.4s ease all;
}

.blogs-slider-card:hover .bi-card-img img {
  transform: scale(1.1);
  transition: 0.4s ease all;
}

.blogs-slider-card:hover .bi-card-content {
  background-color: var(--yellow);
}

.blogs-slider-card .bi-card-content h3 {
  font-family: var(--neue);
  font-size: 26px;
  line-height: 102%;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.blogs-slider-card .bi-card-content p {
  font-family: var(--instrument);
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #535353;
  padding-top: 20px;
}

.blogs-slider-card .bi-card-content a.learn-more-btn {
  font-family: var(--neue);
  font-size: 10px;
  line-height: 88%;
  letter-spacing: 4px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: 0.3s ease all;
  padding-top: 40px;
  display: inline-block;
}

.blogs-slider-card .bi-card-content a.learn-more-btn:hover {
  color: #535353;
}

.custom-slider-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding-top: 34px;
}

.custom-slider-nav button {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

.blogs-insights-in .custom-slider-nav button {
  transition: 0.3s ease all;
}

.blogs-insights-in .custom-slider-nav button:hover {
  background-color: var(--gray);
}

/* Blogs Insights */

/* What Upkrama offers */

.what-upkrama {
  background-color: var(--black);
  padding-top: 95px;
  position: relative;
}

.what-upkrama::before {
  content: "";
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/pattern-white.svg");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
}

.what-upkrama-in {
  position: relative;
  z-index: 3;
}

.what-upkrama-in .owl-carousel .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}

.what-upkrama-in .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.what-upkrama-in .heading h2 {
  color: var(--white);
}

.what-upkrama-in .custom-slider-nav {
  padding: 0;
  justify-content: end;
}

.what-upkrama-in .custom-slider-nav button {
  background-color: var(--blue);
}

.wu-slider-card {
  background-color: #f5f5f5;
  padding: 10px 17.5px;
  position: relative;
  height: 100%;
}

.wu-slider-card::before {
  content: "";
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/small-box-bg.svg");
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: 100%;
}

.wu-slider-card h3 {
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0em;
  padding-top: 40px;
}

.wu-slider-card p {
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: #5d5d5d;
  padding-bottom: 30px;
  padding-top: 20px;
}

.wu-slider-card .wu-card-img {
  position: relative;
  z-index: 3;
  aspect-ratio: 2.8/2.4;
}

.what-upkrama-in .custom-slider-nav.for-desktop button {
  transition: 0.3s ease all;
}

.what-upkrama-in .custom-slider-nav.for-desktop button:hover {
  background-color: var(--yellow);
}

.what-upkrama-in .custom-slider-nav {
  display: none;
}

.what-upkrama button.disabled {
  background-color: var(--gray);
  pointer-events: none;
}

/* What Upkrama offers */

/* Explore More Upkrama */

.explore-more-in .em-card-wrapper {
  display: flex;
  padding-bottom: 10px;
  overflow: hidden;
}

.explore-more-in .em-card-wrapper > div {
  width: 25%;
  min-width: 330px;
}

.em-card1-outer {
  background-color: var(--black);
}

.em-card-wrapper p {
  font-size: 12px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--neue);
  line-height: 102%;
}

.em-card-wrapper h3 {
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0em;
  color: var(--white);
  padding-top: 10px;
}

.em-card-wrapper a {
  font-size: 12px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--neue);
  line-height: 88%;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: 0.3s ease all;
  display: inline-block;
}

.em-card-wrapper a:hover {
  color: var(--yellow);
}

.emcard1 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.emcard1 .top {
  display: flex;
}

.emcard1 .top .emcard1-img {
  width: calc(100% - 58.5px);
  aspect-ratio: 1/1;
  height: 100%;
}

.emcard1 .top .yellow-block-bg {
  width: 58.5px;
  height: 100%;
}

.emcard-bottom {
  padding: 30px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 60%);
  gap: 20px;
  overflow: hidden;
}

.emcard1 .blue-block-bg {
  height: 20px;
}

.em-card2-outer {
  background-color: #eeeeee;
  overflow: hidden;
}

.emcard2-img {
  aspect-ratio: 1/1;
  height: 100%;
  width: calc(100% - 58.5px);
}

.em-card2-outer .black-block-bg {
  height: 20px;
}

.emcard2 .top {
  display: flex;
}

.emcard2 .top .blue-block-bg {
  width: 58.5px;
  height: 100%;
}

.emcard2 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.emcard2 h3,
.emcard2 p,
.emcard2 a {
  color: var(--black);
}

.em-card-wrapper .top {
  height: 60%;
  overflow: hidden;
}

.em-card3-outer {
  background-color: var(--yellow);
}

.em-card3-outer .emcard2 {
  flex-direction: column-reverse;
}

.em-card3-outer .emcard-bottom {
  height: 60%;
}

.em-card3-outer .top {
  height: calc(40% + 20px);
  overflow: hidden;
}

.em-card3-outer a:hover {
  color: var(--blue);
}

.em-card4-outer {
  background-color: #eeeeee;
}

.em-card4-outer .white-block {
  background-color: #eeeeee;
}

/* Explore More Upkrama */

/* Project Inner Banner */

.project-inner-banner {
  position: relative;
}

.project-inner-banner::before {
  content: "";
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/pi-bg.svg");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  background-size: cover;
}

.pi-banner-in {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 3;
  background-color: var(--black);
  height: 100vh;
}

.pi-banner-in::before {
  content: "";
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/blue-overlay-bg.png");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  z-index: 4;
  opacity: 60%;
  mix-blend-mode: overlay;
  background-size: cover;
}

.pi-banner-in .top,
.pi-banner-in .middle,
.pi-banner-in .bottom {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
}

.pi-banner-in .top {
  max-height: 200px;
  overflow: hidden;
  height: 100%;
}

.pi-banner-in .middle {
  max-height: 420px;
  height: 100%;
  overflow: hidden;
}

.pi-banner-in .bottom {
  max-height: 200px;
  height: 100%;
  overflow: hidden;
}

.pi-banner-in .top .center,
.pi-banner-in .top .right,
.pi-banner-in .middle .right,
.pi-banner-in .bottom .center {
  position: relative;
  z-index: 5;
}

.pi-banner-content {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 7;
  inset: 0;
  overflow: hidden;
}

.pi-banner-content .center-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pi-banner-content .center-text h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 52px);
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 102%;
  padding: 0px 20px;
  max-width: 28ch;
  margin: 0 auto;
}

.pi-banner-content .brand-name {
  width: 50%;
  position: absolute;
  bottom: 44px;
  right: 60px;
}

/* Project Inner Banner */

body.project-inner-page {
  background-color: #f5f3f0;
}

/* Key Info */

.key-info-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.key-info-in p.head {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  color: #111111;
  font-family: var(--neue);
  line-height: 150%;
}

.key-info-details table {
  width: 80%;
}

.key-info-details th {
  text-align: left;
  font-weight: 400;
  font-size: 12px;
  font-family: var(--neue);
  color: #111111;
  line-height: 150%;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.key-info-details td {
  text-align: right;
  font-weight: 400;
  font-size: 14px;
  font-family: var(--instrument);
  color: #000000;
  line-height: 150%;
  letter-spacing: -0.01em;
  padding-bottom: 10px;
	padding-left: 20px;
}

.pi-social-icon .social-icon-wrap {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-top: 15px;
}

.pi-social-icon .social-icon-wrap {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-top: 15px;
}

.key-info-in .left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pi-social-icon .social-icon-wrap a {
  transition: 0.4s ease all;
}

.pi-social-icon .social-icon-wrap a:hover {
  transform: translateY(-5px);
}

.key-info-in .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Key Info */

/* Project Inner Drawing  */

.pi-drawing .heading {
  text-align: center;
}

.pi-drawing-in {
  display: flex;
  flex-direction: column;
}
.pi-drawing-in .top{
  transform: scale(85%);
}
.pi-drawing-in .bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  row-gap: 20px;
}
.pi-bottom-img{
    transform: scale(80%);
}

/* Project Inner Drawing  */

/* Project Inner Concepts  */

.pi-concept .heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
}

.pi-concept .heading p {
  max-width: 62ch;
}

.pi-concept-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.pi-concept-in .left, .pi-concept-in .right{
  aspect-ratio: 2/1.5;
}

/* Project Inner Concepts  */

/* Project Outer Banner */

.po-banner {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.po-banner-in {
  height: 100%;
}
.po-banner .black-box {
  position: absolute;
  inset: 0;
  width: 184px;
  height: 130px;
  background-color: #222222;
  z-index: 9;
}
.po-banner-in .top {
  background-color: #0158f4;
  height: 40%;
  position: relative;
}

.po-banner-in .brand-logo-img {
  width: 38%;
  position: absolute;
  bottom: 48px;
  right: 60px;
  margin-top: auto;
}

/* .po-banner-in .top::before {
    content: "";
    background-image: url('https://www.upkrama.com/wp-content/uploads/2025/12/po-banner-bg.svg');
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    z-index: 4;
    opacity: 60%;
    mix-blend-mode: overlay;
       background-size: cover;
} */

.po-banner-in .bottom {
  display: flex;
  height: 60%;
}

.po-banner-in .bottom .left {
  width: 55%;
}

.po-banner-in .bottom .right {
  width: 45%;
  background-color: #222222;
  display: flex;
  justify-content: center;
  align-items: center;
}

.po-banner-in .bottom .right h1 {
  color: #fff;
  font-size: clamp(24px, 5vw, 42px);
  line-height: 102%;
  letter-spacing: -0.03em;
  font-weight: 400;
  font-family: var(--neue);
  text-transform: uppercase;
  padding-left: 70px;
  padding-right: 40px;
}

.pp-content-top .brand-logo-img {
  width: 94px;
}

/* .brand-logo-img {
    width: 40%;
    position: absolute;
    bottom: 40px;
    right: 60px;
} */

/* Project Outer Banner */

/* Behind the Blue */

.behind-the-blue-in {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  overflow: hidden;
}

.behind-the-blue-in img,
.behind-the-blue-in video {
  display: flex;
}

.div1 {
  grid-row: span 2 / span 2;
}

.div2 {
  aspect-ratio: 7.5/4;
}

.div3 {
  grid-column-start: 2;
  aspect-ratio: 7.5/4;
}

/* Behind the Blue */

/* Project Inner Gallary */

.pi-gallery {
  position: relative;
  padding: 40px 0;
  height: 100vh;
  overflow: hidden;
}

.pi-gallery .heading {
  padding-top: 50px;
}

.pi-gallery-in {
  position: relative;
  padding-top: 50px;
}

.pi-gallery-card-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  height: 100%;
}

.pi-gallery-card {
  flex: 0 0 350px;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 550px;
  transition: 0.3s ease-out;
}

.pi-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pi-gallery-secondary {
  position: relative;
  padding: 40px 0;
  height: 100vh;
  overflow: hidden;
}

.pi-gallery-secondary-in {
  position: relative;
  padding-top: 200px;
}

.pi-gallery-secondary-card-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  /* align-items: flex-start; */
  position: relative;
  height: 100%;
}

.pi-gallery-secondary-card {
  flex: 0 0 550px;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  transition: 0.3s ease-out;
  margin-top: 50px;
}

.pi-gallery-secondary-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Project Inner Gallary */

/* Tap to Expand  */

.cb-item.active .cbitem-head {
  display: none;
}

.cb-item .cbitem-head {
  position: relative;
}

.cb-item .cbitem-head::before {
  content: "";
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/wavy-project-pattern-head.svg");
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  opacity: 0.6;
  z-index: 4;
  background-size: cover;
}

.cb-wrap {
  display: flex;
  overflow: hidden;
}

.cb-wrap .cb-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cb-item .cbitem-head {
  padding: 45px 50px;
  height: 100%;
  display: flex;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cb-item .cbitem-head p {
  writing-mode: tb-rl;
  -webkit-writing-mode: tb-rl;
  font-weight: 400;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0em;
  text-transform: capitalize;
  transition: 0.3s ease all;
  transform: rotate(180deg);
  color: var(--white);
  font-family: var(--neue);
}

.cbitem-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  clip-path: inset(0 0 0 100%);
  overflow: hidden;
  transition: 0.9s ease all;
  visibility: hidden;
  width: 0;
/*   min-height: 80vh;
  max-height: 700px; */
  height: 100%;
  cursor: pointer;
}

.cb-item.active .cbitem-data {
  clip-path: inset(0 0% 0 0);
  visibility: visible;
  width: auto;
  transition: 0.9s ease all;
}

.cbd-image {
  position: relative;
  width: 100%;
  height: 584px;
}

.cbd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cbd-content {
  padding: 42px 29px;
  background-color: var(--black);
  position: relative;
}

.cbd-content::before {
  content: "";
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/wavy-project-pattern.svg");
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  opacity: 0.6;
  z-index: 1;
  background-size: cover;
}

.cbdcontent-in {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.cbdcontent-in p {
  color: #f5f5f5;
  letter-spacing: 0.02em;
  font-size: 18px;
  line-height: 125%;
}

.cbdcontent-in h2 {
  font-weight: 400;
  font-size: 42px;
  line-height: 110%;
  letter-spacing: 0em;
  font-family: var(--neue);
  color: var(--white);
}

/* Tap to Expand  */

/* New Project Inner Banner */

.pro-in-banner-in {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.pro-in-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.pro-in-slider-wrapper .pro-in-banner-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  clip-path: inset(0 0 0 0);
  will-change: clip-path, z-index;
}

.pro-in-banner-content {
  position: absolute;
  inset: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.pro-in-banner-content h1 {
  font-size: clamp(28px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 102%;
  text-transform: uppercase;
  color: var(--white);
  max-width: 20ch;
  margin: 0 auto;
  padding: 0px 20px;
}

.pro-in-banner-content .pro-in-logo {
  position: absolute;
  bottom: 44px;
  right: 60px;
  width: 52vw;
}

.pro-in-banner-in::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/pi-bg.svg");
  width: 100%;
  height: 100%;
  z-index: 9;
  mix-blend-mode: overlay;
  background-size: cover;
}

.pro-in-banner-in .black-box {
  position: absolute;
  inset: 0;
  width: 184px;
  height: 105px;
  background-color: #222222;
  z-index: 9;
}

/* New Project Inner Banner */

/* People Behind */

.people-behind .pb-tabs {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.people-behind .pb-tabs .pb-tablinks {
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 2px;
  font-weight: 400;
  font-family: var(--neue);
  color: #111111;
  text-transform: uppercase;
}

.people-behind .pb-tabs .pb-tablinks:hover {
  color: var(--blue);
}

.people-behind .pb-tabs .pb-tablinks.active {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.people-behind .pb-tabcontent {
  display: none;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

/* .pb-tabcontent .pb-tabcontent-inner:nth-child(odd) {
    flex-direction: row-reverse;
} */

.people-behind-in .pb-top-wrap {
  display: flex;
  gap: 40px;
}

.people-behind-in .pb-top-wrap .left {
  width: 33%;
  height: 100%;
}

.people-behind-in .pb-top-wrap .right {
  width: 67%;
  height: 100%;
}

.pb-box-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pb-box-wrap p.eye-header {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--neue);
  color: var(--black);
}

.pbb-left {
  aspect-ratio: 1/1;
}

.pbb-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 45px;
}

.pbb-right > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb-box-wrap h3 {
  font-size: 32px;
  letter-spacing: -0.03em;
}

.pb-box-wrap p {
  line-height: 130%;
  padding-top: 10px;
}

.pb-box-wrap.black-box .pbb-right {
  background-color: #1a1a1a;
}

.pb-box-wrap.black-box p.eye-header,
.pb-box-wrap.black-box h3,
.pb-box-wrap.black-box p {
  color: var(--white);
}

.pb-box-wrap.white-box {
  background-color: #eeeeee;
}

.pb-box-wrap.no-img-yellow {
  grid-template-columns: 1fr;
  background-color: var(--yellow);
}

.pb-tabcontent-inner {
  display: flex;
  gap: 1%;
  flex-wrap: wrap;
}

.pb-tabcontent-inner .pb-box-wrap.white-box {
  width: 59.5%;
  margin-bottom: 10px;
}

.pb-tabcontent-inner .pb-box-wrap.no-img-yellow {
  width: 39.5%;
  margin-bottom: 10px;
}
/* .pb-tabcontent-inner>div:nth-child(2n+3) {
      width: 39.5%;
          margin-bottom: 10px;
}

.pb-tabcontent-inner>div:nth-child(2n+4) {
       width: 59.5%;
           margin-bottom: 10px;
}
.pb-tabcontent-inner>div:nth-child(2n+5) {
       width: 59.5%;
           margin-bottom: 10px;
}
.pb-tabcontent-inner>div:nth-child(2n+6) {
            width: 39.5%;
           margin-bottom: 10px;
}
.pb-tabcontent-inner>div:nth-child(2n+7) {
           width: 39.5%;
           margin-bottom: 10px;
}
.pb-tabcontent-inner>div:nth-child(2n+8) {
       width: 59.5%;
           margin-bottom: 10px;
}
.pb-tabcontent-inner>div:nth-child(2n+9) {
       width: 59.5%;
           margin-bottom: 10px;
}
.pb-tabcontent-inner>div:nth-child(2n+10) {
            width: 39.5%;
           margin-bottom: 10px;
} */

.pb-tabcontent-inner .pb-tab-image {
  width: 100% !important;
}
.pb-tabcontent-inner .pb-box-wrap.white-box {
  grid-template-columns: 2fr 1fr;
}

.pb-tabcontent-inner .pb-box-wrap.white-box .pbb-left {
  aspect-ratio: unset;
  height: 90%;
  margin-top: auto;
}

.pb-tabcontent-inner .pb-box-wrap.white-box .pbb-left img {
  background-color: var(--blue);
  padding-top: 20px;
}

.pb-tabcontent-inner .pb-box-wrap h3 {
  font-size: 42px;
}

.pb-tabcontent-inner .pbb-right {
  gap: 120px;
  padding: 34px;
}

.people-behind-content {
  padding-top: 10px;
}

.pb-box-wrap p {
  color: var(--black);
}

/* People Behind */

/* Contact Form Section */

.contact-form-section-in {
  display: flex;
  overflow: hidden;
}

.contact-form-section-in .cfs-left {
  width: 58%;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-form-section-in .cfs-right {
  width: 42%;
}

.cfs-left-info {
  background-color: var(--yellow);
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 64px;
  gap: 100px;
}

.cfs-left-info .left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cfs-left-info .right {
  margin-top: auto;
}

.cfs-left-info p.cfs-info-head {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  font-family: var(--neue);
}

.cfs-left-info a {
  color: var(--black);
  max-width: 28ch;
  display: inline-block;
  padding-top: 10px;
}

.contact-form-section-in form {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form-section .heading h2 {
  font-size: clamp(52px, 10vw, 140px);
}

.contact-form-section .heading p {
  font-size: 18px;
  margin-top: 20px;
  max-width: 36ch;
}

.up-contact-form {
  background-color: #eeeeee;
  height: 100%;
  padding: 70px 50px 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.up-contact-form .form-head h3 {
  font-size: clamp(28px, 5vw, 62px);
}

/* .up-contact-form .form-item-wrap {
  
} */

.up-contact-form .form-item {
  display: flex;
  flex-direction: column;
  color: #868686;
}

.up-contact-form .form-item label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  font-family: var(--neue);
  display: inline-block;
  padding-bottom: 6px;
}

.up-contact-form .form-item input,
.up-contact-form .form-item select,
.up-contact-form .form-item textarea {
  border: none;
  outline: none;
  background: none;
}

.up-contact-form .form-item input::placeholder,
.up-contact-form .form-item textarea::placeholder {
  color: #868686;
}

.up-contact-form .form-item select {
  color: #868686;
  width: 100%;
}

.up-contact-form .moving-logo {
  width: 117px;
  margin-left: auto;
}

.form-item.phone div {
  display: flex;
  width: 100%;
  gap: 10px;
}

.form-item.phone div select {
  background: none;
  -webkit-appearance: none;
}

.form-item.phone div input {
  width: 100%;
}

.cfs-left-info .social-icon-wrap {
  padding-top: 10px;
}

.contact-form-section .for-mobile {
  display: none !important;
}

.contact-form-section .for-desktop {
  display: block !important;
}

/* Contact Form Section */

/* That Elevates */

.that-elevates .left-bottom {
  background-color: var(--black);
  position: relative;
  height: 100%;
}

.that-elevates .left-bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 40px;
  position: relative;
  z-index: 9;
  height: 100%;
  gap: 20px;
}

.that-elevates .left-bottom-content p {
  color: var(--white);
  font-size: 16px;
}

.that-elevates .left-bottom::before {
  content: "";
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/contact-black-bg.svg");
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  opacity: 0.7;
  background-size: cover;
}

.that-elevates-in {
  display: flex;
}

.that-elevates-in .left {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.that-elevates-in .right {
  width: 67%;
}

.that-elevates-in .right {
  display: grid;
  grid-template-columns: 8fr 5fr;
  gap: 15px;
  overflow: hidden;
}

.that-elevates-in .right .single-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  height: 100%;
}

.that-elevates-in .right .multiple-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.mult-i-top {
  aspect-ratio: 1/1;
  overflow: hidden;
  height: 100%;
}

.mult-i-bottom-left-t {
  height: 100%;
}

.that-elevates-in .right .mult-i-bottom {
  display: grid;
  grid-template-columns: 6fr 7fr;
  gap: 15px;
  overflow: hidden;
}

.mult-i-bottom-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  overflow: hidden;
}

.mult-i-bottom-left-t {
  aspect-ratio: 4/2;
  overflow: hidden;
  height: 100%;
}

.mult-i-bottom-left-b {
  aspect-ratio: 3/2;
  overflow: hidden;
  height: 100%;
}

.that-elevates-in .right .mult-i-bottom-right {
  aspect-ratio: 1/1.1;
  overflow: hidden;
  height: 100%;
}

/* That Elevates */

/* Join the minds */

.join-the-minds-in .title {
  display: flex;
  justify-content: space-between;
}

.join-the-minds-in .title .heading {
  width: 33%;
}
.bottom-blue-text p,
.bottom-blue-text a {
  font-size: 14px;
  color: var(--blue);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  padding-top: 40px;
}
.bottom-blue-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.join-the-minds-in .title p {
  max-width: 44ch;
}

.jobs-table-wrapper {
  position: relative;
  width: 100%;
}

.jobs-table {
  width: 100%;
  border-collapse: collapse;
}

.jobs-table thead th {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  text-align: left;
  font-family: var(--neue);
  color: #111111;
}

.jobs-table tbody tr {
  cursor: pointer;
  border-bottom: 1px solid #dcdcdc;
}

.jobs-table td {
  padding: 20px 0;
  font-size: 32px;
  letter-spacing: -0.03em;
  font-family: var(--neue);
  color: var(--black);
  min-width: 300px;
  width: 100%;
  padding-top: 50px;
}

.jobs-table tr td:last-child,
.jobs-table thead th:last-child {
  text-align: right;
}

.jobs-table td span {
  transition: 0.3s ease all;
  padding-left: 10px;
}

.jobs-table td:hover span {
  padding-left: 20px;
  transition: 0.3s ease all;
}

/* Floating Image */

.jobs-table-wrapper .hover-preview {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 260px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) scale(0.95);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.jobs-table-wrapper .hover-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}

.jobs-table-wrapper .hover-preview.active {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Join the minds */

/* Contact Us Banner */

.contact-us-banner {
  padding-top: 140px;
  overflow: hidden;
}

.contact-us-banner-in {
  display: flex;
  gap: 7px;
  align-items: stretch;
}

.contact-us-banner-in .left {
  width: 55%;
  aspect-ratio: 1/1;
  position: relative;
}

.contact-us-banner-in .left::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: #f4cd01;
  z-index: 3;
  opacity: 65%;
  mix-blend-mode: soft-light;
}

.contact-us-banner-in .left::before {
  content: "";
  background-image: url("https://www.upkrama.com/wp-content/uploads/2025/12/contact-topo-img.svg");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  opacity: 60%;
  background-size: cover;
}

.contact-us-banner-in .right {
  width: 45%;
  padding-top: 55px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}

.contact-us-banner-in .right-top {
  padding-left: 30px;
  padding-bottom: 10px;
}

.contact-us-banner-in .right-bottom {
  height: 80%;
  gap: 7px;
  display: flex;
}

.contact-us-banner-in h1 {
  font-size: clamp(24px, 4vw, 52px);
  text-transform: uppercase;
}

.contact-us-banner-in p {
  color: #5d5d5d;
  font-size: 18px;
  line-height: 130%;
  padding-left: 30px;
  max-width: 28ch;
}

.contact-us-banner-in .blue-block-bg {
  height: 300px;
}

.contact-us-banner-in .right-bottom-left {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  width: 67%;
}

.contact-us-banner-in .right-bottom-right {
  width: 33%;
  filter: grayscale(1);
}

/* Contact Us Banner */

.aw-tabcontent {
  display: none;
  opacity: 0;
  clip-path: inset(40% round 1rem);
  transform: translateY(30px) scale(0.96);
  transition:
    opacity 0.5s ease,
    clip-path 0.8s cubic-bezier(0.65, 0, 0.35, 1),
    transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: clip-path, transform, opacity;
}
.aw-tabcontent.active {
  display: block;
  opacity: 1;
  clip-path: inset(0% round 1rem);
  transform: translateY(0) scale(1);
}
.aw-tabcontent .left,
.aw-tabcontent .right-top,
.aw-tabcontent .right-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.aw-tabcontent.active .left {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.aw-tabcontent.active .right-top {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.aw-tabcontent.active .right-bottom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}
.aw-tabcontent .left img {
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

.aw-tabcontent.active .left img {
  transform: scale(1);
}
.up-contact-form .primary-button-div p {
  display: flex;
  gap: 3px;
}
.up-contact-form .primary-button-div .wpcf7-spinner {
  order: 3;
}
.pro-in-banner-in .black-box {
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.pro-in-banner-in .black-box.hide-black-box {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.primary-button-div .pb-right-block {
  background-color: var(--blue) !important;
}
.primary-button-div.gray-lined .pb-right-block,
.primary-button-div.yellow-lined .pb-right-block {
  background-color: transparent !important;
}
.primary-button-div.form-submit .pb-right-block {
  background-color: var(--black) !important;
}
.primary-button-div.black .pb-right-block {
  background-color: var(--black) !important;
}
