* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: "Arkibal Mono Rg";
  src: url("../fonts/ArkibalMono-Regular.eot");
  src: url("../fonts/ArkibalMono-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/ArkibalMono-Regular.woff2") format("woff2"),
    url("../fonts/ArkibalMono-Regular.woff") format("woff"),
    url("../fonts/ArkibalMono-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arkibal Mono Rg";
  src: url("../fonts/ArkibalMono-Medium.eot");
  src: url("../fonts/ArkibalMono-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/ArkibalMono-Medium.woff2") format("woff2"),
    url("../fonts/ArkibalMono-Medium.woff") format("woff"),
    url("../fonts/ArkibalMono-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arkibal Mono Rg";
  src: url("../fonts/ArkibalMono-Bold.eot");
  src: url("../fonts/ArkibalMono-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/ArkibalMono-Bold.woff2") format("woff2"),
    url("../fonts/ArkibalMono-Bold.woff") format("woff"),
    url("../fonts/ArkibalMono-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent-pink: #f2a5ec;
  --accent-yellow: #fcec4f;
  --accent-cyan: #5cc9fa;
  --accent-purple: #a776f7;
  --text-dark: #171717;
  --text-muted: #333333;
  --bg-light: #f3f5f7;
  --bg-grey: #e5e7eb;
  --footer-bg: #252525;
  --card-radius: 14px;
  --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.08);

  /* Font family */
  --ff-main: "Poppins", sans-serif;
  --ff-arkibal: "Arkibal Mono Rg";
  /* font weight */
  --fw-thin: 100;
  --fw-extraLight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semiBold: 600;
  --fw-bold: 700;
  --fw-extraBold: 800;
  --fw-black: 900;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-main);
  font-weight: var(--fw-regular);
  overflow-x: hidden;
}
ul,
ol {
  padding-left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: inherit;
}

/* a,
a:hover,
a:active {
  text-decoration: none;
  outline: none;
  display: inline-block;
} */

/* ===== HEADER ===== */

.site-header {
  position: fixed; /* stays at top while scroll */
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  z-index: 20;
  color: #ffffff;
  background: transparent;
  transition: background-color 0.25s ease, color 0.25s ease,
    box-shadow 0.25s ease;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  display: block;
  max-height: 40px;
}

/* Nav */

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list a {
  font-family: var(--ff-main);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: var(--fw-medium);
}

.nav-list a:hover {
  opacity: 0.8;
}

/* CONTACTS button */

.btn-contacts {
  padding: 10px 20px;
  border-radius: 999px;
  background-color: var(--accent-cyan);
  color: #ffffff;
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Hamburger */

.nav-toggle {
  display: none;
  width: 28px;
  height: 22px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
  border-radius: 4px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) {
  top: 0;
}
.nav-toggle span:nth-child(2) {
  top: 10px;
}
.nav-toggle span:nth-child(3) {
  top: 20px;
}

/* Toggle animation */
.site-header.nav-open .nav-toggle span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--text-muted);
  color: var(--text-white);
  padding: 14px 40px; /* a bit smaller when sticky if you like */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.site-header.is-sticky .btn-contacts {
  background-color: var(--accent-cyan);
  color: #ffffff;
}

/* ===== HERO ===== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #000000;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero-media {
  position: relative;
  width: 100%;
  height: calc(100vh - 8px); /* leave space for color line */
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play button */

.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  z-index: 5;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.hero-play-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(1.05);
}

.hero-play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid white;
}

/* Hide button while playing */

.hero-play-btn.is-playing {
  opacity: 0;
  pointer-events: none;
}

/* Caption */

.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  top: 28%;
  z-index: 3;
}

.hero-headline {
  font-family: var(--ff-arkibal);
  font-size: 37px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: var(--fw-bold);
}

/* Color line at bottom */

.hero-progress {
  display: flex;
  width: 100%;
  height: 8px;
  position: relative;
  z-index: 5;
}

.hero-progress .bar {
  flex: 1;
}

.hero-progress .bar-pink {
  background-color: var(--accent-pink);
}
.hero-progress .bar-yellow {
  background-color: var(--accent-yellow);
}
.hero-progress .bar-cyan {
  background-color: var(--accent-cyan);
}
.hero-progress .bar-purple {
  background-color: var(--accent-purple);
}

.guliwala {
    background-color: var(--accent-pink) !important;
}

/* ===== END CUSTOM CSS ===== */
.aboutus-section {
  background-color: #ffffff;
  color: var(--text-dark);
  margin-top: 190px;
  position: relative;
}

/* ABOUT US Label */
.aboutus-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid var(--text-muted);
  font-family: var(--ff-arkibal);
  font-size: 22px;
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Main Title */
.aboutus-title {
  font-family: var(--ff-arkibal);
  font-size: 48px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.05;
}

/* Subtitle: WE SCALE COMPANIES… */
.aboutus-subtitle {
  font-family: var(--ff-arkibal);
  font-size: 24px;
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Paragraphs */
.aboutus-text {
  font-family: var(--ff-main); /* Poppins */
  font-size: 16px;
  color: #616161;
  line-height: 1.6;
}

/* IMAGE + PURPLE BACK CIRCLE */
.aboutus-image-wrapper {
  position: relative;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 0;
  right: 30px;
  /* top: 8%; */

  margin-top: 100px;
}

.torikodana {
  content: "";
  position: absolute;
  top: -50px;
  left: -20px;
  margin: auto;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background: var(--accent-purple);
  z-index: 1;
}

.aboutus-image {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
}

.kata {
  margin-top: 80px;
}

/* ===== BUSINESS AREAS SECTION ===== */
.businessareas-section {
  margin-top: 100px;
}

.businessareas-title {
  font-family: var(--ff-arkibal);
  font-size: 48px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.05;
}

.businessareas-intro {
  font-family: var(--ff-main);
  font-size: 16px;
  color: #616161;
  line-height: 1.6;
}

.businessareas-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.heyreko {
  padding-right: 70px;
}

.businessareas-card {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  overflow: hidden;
  padding: 0 26px 0 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.businessareas-card-image {
  flex: 0 0 40%;
  max-width: 40%;
  overflow: hidden;
  border-top-left-radius: var(--card-radius);
  border-bottom-left-radius: var(--card-radius);
}

.businessareas-card-image img {
  width: 100%;
  height: 100%;
  height: 140px;
  object-fit: cover;
}

.businessareas-card-divider {
  flex: 0 0 6px;
  align-self: stretch;
}

.businessareas-card--cyan .businessareas-card-divider {
  background-color: var(--accent-cyan);
}
.businessareas-card--pink .businessareas-card-divider {
  background-color: var(--accent-pink);
}
.businessareas-card--yellow .businessareas-card-divider {
  background-color: var(--accent-yellow);
}
.businessareas-card--purple .businessareas-card-divider {
  background-color: var(--accent-purple);
}

.businessareas-card-body {
  flex: 1;
  padding: 24px 24px 24px 32px;
}
.businessareas-card-body p {
  color: #616161;
}

.businessareas-card-title {
  margin: 0;
  font-family: var(--ff-arkibal);
  font-size: 25px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.businessareas-card-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.businessareas-card-icon i {
  color: #ffffff;
  font-size: 22px;
}

/* Blog */

/* ===== LATEST NEWS SECTION ===== */

.latestnews-section {
  background: #ffffff;
  margin-top: 100px;
}

.latestnews-title {
  font-family: var(--ff-arkibal);
  font-size: 42px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.1;
  margin-bottom: 20px;
}

.latestnews-readall {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  background-color: var(--accent-cyan);
  color: #ffffff;
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.aau_bhai {
  padding-left: 15%;
}

.latestnews-arrows {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

.latestnews-arrows .swiper-button-prev,
.latestnews-arrows .swiper-button-next {
  position: static !important;
  width: 32px;
  height: 32px;
  background: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.latestnews-arrows i {
  color: var(--text-muted);
  font-size: 30px;
}

/* ----- CARD ----- */

.news-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.2s ease;
  margin-bottom: 40px;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.news-body {
  padding: 20px;
}

.news-date {
  font-family: var(--ff-main);
  font-size: 14px;
  color: #616161;
  margin-bottom: 10px;
}

.janbasekoele {
  color: #333333;
/*  min-height: 80px; */
  text-transform: uppercase;
  font-family: var(--ff-arkibal);
  font-weight: 600;
	    margin-bottom: 10px;
}
.latestnews-section  .row {
  justify-content:space-between;
}
.latestnews-section  .swiper-slidee{
	width:47%
}
.news-text {
  font-family: var(--ff-main);
  font-size: 17px;
  color: #616161;
  margin-bottom: 18px;
  line-height: 1.5;
}

.news-link {
  font-family: var(--ff-arkibal);
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--text-muted);
}

.news-link i {
  font-size: 18px;
  color: var(--accent-purple);
  margin-left: 4px;
}
.yoKuno {
  background-color: var(--accent-purple);
  height: 35px;
  width: 35px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yoKuno i {
  color: white;
  font-size: 25px;
}
/* Swiper */
.latestnews-swiper .swiper-slide {
  width: 320px;
}

.puradun {
  background-color: #efefef;
  position: relative;
  border-radius: 50px;
  isolation: isolate;
}

.puradun::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  background: linear-gradient(to top, #efefef, white);
  z-index: -1;
}

/* ===== FOOTER ===== */

.site-footer {
  background-color: var(--text-muted);
  color: #ffffff;
  padding: 50px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fotbar {
  background-color: var(--text-muted);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-contact {
  text-align: right;
  font-family: var(--ff-arkibal);
  font-weight: var(--fw-bold);
  font-size: 19px;
  line-height: 1.6;
}

.footer-contact p {
  margin: 0;
}

.footer-separator {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-meta {
  color: white;
  padding: 20px 0;
  text-align: center;
  font-family: var(--ff-arkibal);
  font-weight: var(--fw-bold);
  font-size: 19px;
}

.footer-progress {
  display: flex;
  width: 100%;
  height: 8px;
}

.footer-progress .bar {
  flex: 1;
}

.footer-progress .bar-pink {
  background-color: var(--accent-pink);
}
.footer-progress .bar-yellow {
  background-color: var(--accent-yellow);
}
.footer-progress .bar-cyan {
  background-color: var(--accent-cyan);
}
.footer-progress .bar-purple {
  background-color: var(--accent-purple);
}

.jeta-origin-section {
  margin-top: 50px;
}

.jeta-origin-title {
  font-family: var(--ff-arkibal);
  font-size: 48px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.05;
  margin-bottom: 10px;
}

.jeta-origin-subtitle {
  font-family: var(--ff-arkibal);
  font-size: 24px;
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.jeta-origin-lead {
  font-family: var(--ff-main);
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: #616161;
  line-height: 1.6;
  margin-bottom: 20px;
}

.jeta-origin-text {
  font-family: var(--ff-main);
  font-size: 16px;
  font-weight: var(--fw-regular);
  color: #616161;
  line-height: 1.6;
  margin-bottom: 18px;
}

.jeta-origin-readmore {
  font-family: var(--ff-arkibal);
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--color-muted);
  display: inline-block;
  margin-top: 10px;
  transition: opacity 0.3s ease;
}
.jeta-origin-readmore:hover {
  opacity: 0.7;
}

.jeta-origin-image-wrapper img {
  border-radius: 18px;
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.yomadenu {
  padding-left: 50px;
}

/* ===== OUR PURPOSE SECTION ===== */

.jeta-purpose-section {
  background-color: #ffffff;
  color: var(--text-dark);
  margin-top: 80px;
}

.jeta-purpose-title {
  font-family: var(--ff-arkibal);
  font-size: 48px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.05;
}

.jeta-purpose-text {
  font-family: var(--ff-main);
  font-size: 16px;
  line-height: 1.7;
  color: #616161;
  margin-bottom: 12px;
}

.jeta-purpose-label {
  font-family: var(--ff-main);
  font-size: 16px;
  font-weight: var(--fw-semiBold);
  color: var(--text-muted);
  margin-top: 20px;
  margin-bottom: 14px;
}

.jeta-purpose-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jeta-purpose-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.jeta-purpose-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jeta-purpose-icon i {
  color: #ffffff;
  font-size: 18px;
}

.jeta-purpose-item--cyan .jeta-purpose-icon {
  background-color: var(--accent-cyan);
}
.jeta-purpose-item--pink .jeta-purpose-icon {
  background-color: var(--accent-pink);
}
.jeta-purpose-item--purple .jeta-purpose-icon {
  background-color: var(--accent-purple);
}

.jeta-purpose-item-text {
  font-family: var(--ff-main);
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

.jeta-purpose-readmore {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--ff-arkibal);
  font-weight: var(--fw-bold);
  font-size: 20px;
  color: var(--text-muted);
  text-transform: none;
}

.jeta-purpose-image-wrapper {
  border-radius: 40px;
  overflow: hidden;
}

.jeta-purpose-image {
  display: block;
  width: 100%;
  height: auto;
}

.leader-section {
  background-color: #efefef;
  padding-top: 80px;

  padding-bottom: 130px;
  margin-top: 80px;
  position: relative;
}

/* LEFT SIDE */

.leader-figure-wrapper {
  position: absolute;
  bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.leader-photo-circle {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--accent-pink);
  z-index: 1;
}

.leader-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}

/* RIGHT SIDE */

.leader-quote-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 28px 50px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 28px;
  margin-left: -100px;
}

.leader-quote-text {
  font-family: var(--ff-arkibal);
  font-size: 35px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--text-muted);
}

.leader-quote-author {
  margin: 0;
  font-family: var(--ff-arkibal); /* Poppins */
  font-size: 20px;
  font-weight: var(--fw-medium);

  text-transform: uppercase;
  color: var(--color-muted);
}

/* Bio text under the card */

.leader-bio p {
  font-family: var(--ff-main); /* Poppins */
  font-size: 16px;
  line-height: 1.7;
  color: #616161;
  margin-bottom: 10px;
}

/* ===== PORTFOLIO SECTION ===== */

.portfolio-section {
  background-color: #ffffff;
}

.mckaji {
  padding-inline: 50px;
  position: relative;
}

.mckaji::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 0;
  height: 130px;
  width: 100%;
  background-color: white;
  border-radius: 20px;
  z-index: 5;
}

.portfolio-left {
  max-width: 520px;
  position: relative;
  z-index: 10;
}

.portfolio-title {
  font-family: var(--ff-arkibal);
  font-size: 48px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.05;
  margin-bottom: 12px;
}

.portfolio-subtitle {
  font-family: var(--ff-main);
  font-size: 16px;
  line-height: 1.6;
  color: #616161;
  margin-bottom: 32px;
}

.portfolio-category {
  margin-bottom: 32px;
  padding-top: 8px;
}

.portfolio-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 999px;
  font-family: var(--ff-arkibal);
  font-size: 22px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}

.portfolio-tag--cyan {
  background-color: var(--accent-cyan);
}

.portfolio-tag--purple {
  background-color: var(--accent-purple);
}

.portfolio-item {
  border-top: 1px solid var(--bg-grey);
  padding: 14px 0;
}

.portfolio-item:last-child {
  border-bottom: 1px solid var(--bg-grey);
}

.portfolio-item-toggle {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.portfolio-item-title {
  font-family: var(--ff-main);
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--text-muted);
}

.portfolio-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.portfolio-toggle-icon i {
  font-size: 20px;
  color: var(--accent-purple);
}

.portfolio-toggle-icon .icon-minus {
  display: none;
}

.portfolio-item-toggle[aria-expanded="true"] .icon-plus {
  display: none;
}

.portfolio-item-toggle[aria-expanded="true"] .icon-minus {
  display: inline-block;
}

.portfolio-item-body {
  padding-top: 8px;
}

.portfolio-item-text {
  font-family: var(--ff-main);
  font-size: 16px;
  line-height: 1.6;
  color: #616161;
  margin-bottom: 6px;
}

.portfolio-item-highlight {
  font-family: var(--ff-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: var(--fw-medium);
  margin-bottom: 0;
}

.portfolio-readmore {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--ff-arkibal);
  font-weight: var(--fw-bold);
  font-size: 20px;
  color: var(--text-dark);
}

.portfolio-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.portfolio-card {
  display: flex;
  align-items: stretch;
  background-color: #ffffff;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  height: 130px;
}

.portfolio-card-media {
  flex: 0 0 60%;
  max-width: 60%;
  overflow: hidden;
}

.portfolio-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card-divider {
  flex: 0 0 6px;
}

.portfolio-card--cyan .portfolio-card-divider {
  background-color: var(--accent-pink);
}

.portfolio-card--yellow .portfolio-card-divider {
  background-color: var(--accent-yellow);
}

.portfolio-card--purple .portfolio-card-divider {
  background-color: var(--accent-cyan);
}

.portfolio-card-logo {
  flex: 1;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card-logo img {
  max-width: 100%;
  height: auto;
  width: 130px;
}

/* ===== STRATEGIC APPROACH SECTION ===== */

.strategic-section {
  background-color: #efefef;
  padding: 80px 0 90px;
}

/* MAIN CARD */

.strategic-main-card {
  background-color: #ffffff;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 70px;
}

/* left image */
.strategic-main-image {
  flex: 0 0 46%;
  max-width: 46%;
}

.strategic-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* right content */
.strategic-main-content {
  flex: 1;
  padding: 40px 50px;
}

.strategic-main-title {
  font-family: var(--ff-arkibal);
  font-size: 40px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.1;
  margin-bottom: 18px;
}

.strategic-main-subtitle {
  font-family: var(--ff-main);
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: #616161;
  margin-bottom: 18px;
}

.strategic-main-text {
  font-family: var(--ff-main);
  font-size: 16px;
  line-height: 1.7;
  color: #616161;
  margin-bottom: 12px;
}

/* BOTTOM GRID */

.strategic-grid {
  margin-top: 10px;
}

.strategic-col {
  padding-top: 40px;
  padding-bottom: 10px;
  border-right: 1px solid var(--text-dark);
  padding-left: 50px;
}
.strategic-col:last-child {
  border-right: none;
}

.strategic-col-title {
  font-family: var(--ff-arkibal);
  font-size: 18px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 18px;
}

.strategic-col-text {
  font-family: var(--ff-main);
  font-size: 15px;
  line-height: 1.7;
  color: #616161;
  margin-bottom: 18px;
}

.strategic-col-label {
  font-weight: var(--fw-bold);
  color: var(--text-muted);
}

.strategic-list {
  padding-left: 18px;
  margin: 0 0 18px;
  list-style-type: disc;
}

.strategic-list li {
  font-family: var(--ff-main);
  font-size: 15px;
  line-height: 1.7;
  color: #616161;
  margin-bottom: 6px;
}

.strategic-readmore {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--ff-arkibal);
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
}

/* ===== PARTNER SECTION ===== */
.partner-section {
  padding: 80px 0;
}

.partner-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  height: 60vh;
}

.partner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 30px;
  color: #ffffff;
}

.partner-label {
  background-color: var(--accent-purple);
  padding: 10px 30px;
  border-radius: 999px;
  font-family: var(--ff-arkibal);
  font-size: 22px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.partner-title {
  font-family: var(--ff-arkibal);
  font-size: 42px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.partner-text {
  font-family: var(--ff-main);
  font-size: 16px;
  line-height: 1.7;
  max-width: 650px;
  color: #ececec;
  margin-bottom: 30px;
}

.partner-btn {
  background-color: var(--accent-cyan);
  padding: 12px 32px;
  border-radius: 999px;
  font-family: var(--ff-arkibal);
  font-size: 18px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  transition: 0.2s ease;
}


.partner-purpal-btn {
 background-color:var(--accent-purple);
}

.partner-btn:hover {
  opacity: 0.9;
}

/* ===== KEY ADVANTAGES ===== */

.keyadv-section {
  background-color: #ffffff;
}

.keyadv-title {
  font-family: var(--ff-arkibal);
  font-size: 48px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.05;
}

.keyadv-content {
  max-width: 620px;
}

.keyadv-list {
  margin: 0 0 24px;
  padding-left: 18px;
  list-style-type: disc;
}

.keyadv-list li {
  font-family: var(--ff-main);
  font-size: 16px;
  line-height: 1.7;
  color: #616161;
  margin-bottom: 10px;
}

.keyadv-cta {
  font-family: var(--ff-main);
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 0;
}

/* ============ GOVERNANCE SECTION ============ */

.governance-section {
  background-color: #ffffff;
  position: relative;
  padding-bottom: 80px;
  padding-top: 80px;
}

.governance-progress {
  display: flex;
  width: 100%;
  height: 8px;
}

.governance-progress .bar {
  flex: 1;
}

.governance-progress .bar-pink {
  background-color: var(--accent-pink);
}
.governance-progress .bar-yellow {
  background-color: var(--accent-yellow);
}
.governance-progress .bar-cyan {
  background-color: var(--accent-cyan);
}
.governance-progress .bar-purple {
  background-color: var(--accent-purple);
}

.governance-hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.governance-container {
  position: relative;
  margin-top: -120px;
  z-index: 2;
}

.governance-card-main {
  background-color: #ffffff;
  border-radius: 28px;

  padding: 40px 50px;
  margin-bottom: 40px;
}

.governance-title {
  font-family: var(--ff-arkibal);
  font-size: 32px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.governance-kicker {
  font-family: var(--ff-main);
  font-size: 14px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.governance-text {
  font-family: var(--ff-main);
  font-size: 14px;
  line-height: 1.7;
  color: #616161;
  margin-bottom: 0;
}

.governance-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.governance-list li {
  font-family: var(--ff-main);
  font-size: 14px;
  line-height: 1.7;
  color: #616161;
  margin-bottom: 10px;
}

.governance-card-bottom {
  background-color: #ffffff;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 40px 50px;
}

.governance-column {
  padding: 0 24px;
  position: relative;
}
.oeutajs {
  padding-right: 50px;
}
.governance-column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: calc(100% - 20px);
  background-color: var(--text-dark);
}

.governance-column-title {
  font-family: var(--ff-main);
  font-size: 16px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.governance-column-text {
  font-family: var(--ff-main);
  font-size: 14px;
  line-height: 1.7;
  color: #616161;
  margin-bottom: 0;
}

/* New CSS */

.jeta-origin-more {
  display: none;
}

.jeta-origin-more.active {
  display: block;
}
.jeta-purpose-more {
  display: none;
}

.jeta-purpose-more.active {
  display: block;
}
.strategic-more {
  display: none;
}

.strategic-more.active {
  display: block;
}
.strategic-hidden-item {
  display: none;
}

.strategic-hidden-item.is-open {
  display: list-item;
}
.strategic2-hidden-item {
  display: none;
}

.strategic2-hidden-item.is-open {
  display: list-item;
}

.keyadv-section {
  padding-block: 50px;
}
.keyadv-cta {
  margin-bottom: 30px;
}
.strategic2-hidden-item {
  display: none;
}
.strategic2-hidden-item.is-open {
  display: list-item;
}


/* new site css */


/* ===== ADVANTAGE SECTION ===== */

.advantage-section {
  position: relative;
  padding: 120px 0;
  background: url("../images/deshgulako.jpg") center center / cover no-repeat;
  overflow: hidden;
}

/* Yellow overlay */
.advantage-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(180, 160, 0, 0.75); */
  backdrop-filter: blur(2px);
  z-index: 1;
}

.advantage-section .container {
  z-index: 2;
}

/* Glass card */
.adv-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 50px 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  height: 100%;
  transition: all 0.3s ease;
}

.adv-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
}

/* Icon */
.adv-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 30px;
}

/* Text */
.adv-card p {
  font-family: var(--ff-main);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}


.aganpat-chal-dar-la {
  padding-bottom: 80px;
}

.aganpat-chal-dar-la .partner-purpal-btn{
  margin-top: 40px;
 display: inline-flex;
}


.footer-logo img{
  width: 100%;
  max-width: 120px;
}


.footer-contact, .footer-meta  {
  font-size: 16px;
}




/* ===== Business Areas: show description only on hover ===== */

/* hide paragraph by default */
.businessareas-card-body p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

/* show paragraph on hover (and keyboard focus) */
.businessareas-card:hover .businessareas-card-body p,
.businessareas-card:focus-within .businessareas-card-body p {
  max-height: 120px; /* increase if your text is longer */
  opacity: 1;
  margin-top: 10px;
}

/* Optional: make the card feel interactive */
.businessareas-card:hover {
  transform: translateY(-4px);
}

/* On touch devices (no hover), keep paragraph visible */
@media (hover: none) {
  .businessareas-card-body p {
    max-height: none;
    opacity: 1;
    margin-top: 10px;
  }
}


/* Make the left image always full height of the card */
.businessareas-card {
  align-items: stretch; /* important: makes children stretch to card height */
}

/* Ensure image column stretches */
.businessareas-card-image {
  align-self: stretch;
  display: flex;          /* helps img fill properly */
}

/* Remove fixed height and force full height */
.businessareas-card-image img {
  height: 100% !important;   /* override your 140px */
  width: 100%;
  object-fit: cover;
  display: block;
}


/* ✅ Keep all cards the same height, crop images nicely */
.businessareas-card{
  height: 150px;          /* adjust: 140 / 160 as you like */
  align-items: stretch;
}

.businessareas-card-image{
  height: 100%;
  flex: 0 0 40%;
  max-width: 40%;
  overflow: hidden;
  display: block;
}

.businessareas-card-image img{
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}





.businessareas-card-body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  
}




