:root {
  --bg-light: #efefef;
  --blue: #0d97d4;
  --blue-dark: #0878ab;
  --orange: #f2a12a;
  --text-dark: #374047;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
}

.portfolio-header {
  background: var(--bg-light);
}

.top-strip {
  height: 14px;
  background: var(--blue);
}

.hero-intro {
  background: var(--blue);
  padding: 34px 0 30px;
}

.profile-image-wrap {
  max-width: 210px;
}

.profile-image {
  width: 100%;
  display: block;
  border: 6px solid #f4f4f4;
  box-shadow: 8px 0 0 var(--orange), -8px 0 0 var(--orange);
}

.hero-content {
  color: var(--white);
}

.hero-name {
  margin: 0 0 10px;
  font-size: 3.4rem;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-role {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.hero-focus {
  margin: 0 0 14px;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 800;
  color: rgba(28, 57, 87, 0.95);
}

.hero-summary {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 900px;
}

.portfolio-nav {
  padding: 38px 0 18px;
}

.nav-pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

.nav-pill-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 155px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
}

.nav-pill-list li a:hover,
.nav-pill-list li a.active {
  background: var(--blue-dark);
}

@media (max-width: 991.98px) {
  .hero-name {
    font-size: 2.6rem;
  }

  .hero-focus {
    font-size: 1.35rem;
  }

  .profile-image-wrap {
    max-width: 180px;
  }

  .nav-pill-list {
    gap: 14px;
  }

  .nav-pill-list li a {
    min-width: 130px;
    font-size: 1rem;
    padding: 12px 20px;
  }
}

@media (max-width: 767.98px) {
  .hero-intro {
    padding: 28px 0 24px;
  }

  .profile-image-wrap {
    max-width: 150px;
  }

  .hero-name {
    font-size: 2rem;
  }

  .hero-role {
    font-size: 1rem;
  }

  .hero-focus {
    font-size: 1.1rem;
  }

  .hero-summary {
    font-size: 0.98rem;
  }

  .portfolio-nav {
    padding: 28px 0 14px;
  }

  .nav-pill-list {
    gap: 10px;
  }

  .nav-pill-list li a {
    min-width: 118px;
    font-size: 0.95rem;
    padding: 11px 16px;
  }
}

.design-capabilities {
  padding: 70px 0 80px;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 50px;
}

.capability-card {
  height: 500px;
  border-radius: 0 0 30px 30px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Backgrounds */
.capability-card.orange {
  background: linear-gradient(rgba(233, 153, 34, 0.85), rgba(233, 153, 34, 0.85)),
    url("../images/img-1.png") center/cover;
}

.capability-card.green {
  background: linear-gradient(rgba(20, 140, 50, 0.85), rgba(20, 140, 50, 0.85)),
    url("../images/img-2.png") center/cover;
}

.capability-card.blue {
  background: linear-gradient(rgba(13, 151, 212, 0.85), rgba(13, 151, 212, 0.85)),
    url("../images/img-3.png") center/cover;
}

.card-content {
  text-align: center;
  width: 100%;
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.card-content p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 140px;
}

.card-link {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 991px) {
  .capability-card {
    height: 400px;
  }

  .card-content p {
    margin-bottom: 80px;
  }
}

.cta-section {
  padding: 60px 0 100px;
}

.asset-card {
  position: relative;
  display: block;
  height: 240px;
  background: #f7f7f7;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;

}

.cta-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  background: rgba(255, 255, 255, 0.35);
  /* balanced */
}

.cta-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
}

.left-layout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 100px;
  padding: 38px 34px;
}

.center-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
}

.right-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 38px 34px;
}

.cta-text h3,
.resume-title {
  margin: 0;
  color: var(--orange);
  font-weight: 700;
  line-height: 1.1;
}

.cta-text h3 {
  font-size: 1.55rem;
}

.resume-title {
  font-size: 1.45rem;
  letter-spacing: 0.5px;
}

.cta-icon-img img {
  display: block;
  width: 84px;
  height: auto;
}

.center-download-icon img {
  width: 90px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.left-card .cta-text {
  margin-left: 6px;
}

.right-card .cta-text {
  margin-left: 6px;
}

@media (max-width: 991.98px) {
  .asset-card {
    height: 220px;
  }

  .left-layout,
  .right-layout {
    padding: 30px 24px;
  }

  .cta-text h3 {
    font-size: 1.35rem;
  }

  .resume-title {
    font-size: 1.3rem;
  }

  .cta-icon-img img {
    width: 72px;
  }

  .center-download-icon img {
    width: 78px;
  }
}

@media (max-width: 767.98px) {
  .cta-section {
    padding: 50px 0 70px;
  }

  .asset-card {
    height: 200px;
  }

  .left-layout,
  .right-layout {
    gap: 100px;
    padding: 24px 20px;
  }

  .cta-text h3 {
    font-size: 1.2rem;
  }

  .resume-title {
    font-size: 1.2rem;
  }

  .download-btn {
    min-width: 122px;
    font-size: 0.95rem;
    padding: 9px 18px;
  }

  .cta-icon-img img {
    width: 64px;
  }

  .center-download-icon img {
    width: 70px;
  }
}

.asset-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  /* adjust this */
  z-index: 1;
}

.capability-card,
.asset-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover,
.asset-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.capability-card,
.asset-card {
  cursor: pointer;
}

.download-btn:hover {
  background: #e28f1a;
}

.site-footer {
  background: #cfcfcf;
  padding: 26px 0;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 1rem;
  color: #374047;
  font-weight: 500;
}

/* About Me CSS */
.about-intro-section {
  padding: 55px 0 70px;
}

.about-intro-content {
  max-width: 760px;
}

.about-page-title {
  margin: 0 0 16px;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--orange);
}

.about-highlight {
  margin: 0 0 28px;
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--blue);
}

.about-intro-content p {
  margin: 0 0 24px;
  font-size: 1.08rem;
  line-height: 1.95;
  color: #4a545c;
}

.about-illustration-wrap {
  padding-left: 20px;
}

.about-illustration {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .about-intro-section {
    padding: 45px 0 55px;
  }

  .about-page-title {
    font-size: 2.6rem;
  }

  .about-highlight {
    font-size: 1.2rem;
  }

  .about-intro-content p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-illustration-wrap {
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .about-page-title {
    font-size: 2.2rem;
  }

  .about-highlight {
    font-size: 1.08rem;
    margin-bottom: 22px;
  }

  .about-intro-content p {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.75;
  }
}

.about-three-column {
  padding: 40px 0 70px;
}

.about-col-block {
  max-width: 360px;
}

.about-col-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 18px;
}

.about-list {
  padding-left: 18px;
  margin: 0;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-col-block p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a545c;
}

@media (max-width: 991.98px) {
  .about-col-block {
    max-width: 100%;
  }

  .about-three-column {
    padding: 30px 0 50px;
  }
}

@media (max-width: 767.98px) {
  .about-col-title {
    font-size: 1.4rem;
  }

  .about-list li,
  .about-col-block p {
    font-size: 0.98rem;
  }
}

.about-highlight-section {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.about-highlight-bg {
  position: absolute;
  inset: 0;
  background: url("../images/about-bg.png") no-repeat center/cover;
  z-index: 0;
}

.about-highlight-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
  margin: 0 auto 60px;
}

.highlight-title {
  font-size: 2.6rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 16px;
}

.highlight-subtext {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.95;
}

.highlight-cards {
  position: relative;
  z-index: 2;
}

.highlight-card {
  background: #f5f7f8;
  padding: 26px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.highlight-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #374047;
}

.highlight-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-highlight-section {
    padding: 100px 0 80px;
  }

  .highlight-title {
    font-size: 2rem;
  }

  .highlight-subtext {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .about-highlight-section {
    padding: 80px 0 60px;
  }

  .highlight-title {
    font-size: 1.6rem;
  }
}

.about-highlight-section {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

/* CURVE */
.about-highlight-section::before {
  content: "";
  position: absolute;
  top: -95px;
  left: 0;
  width: 100%;
  height: 170px;
  background: #efefef;
  border-bottom-left-radius: 90% 140px;
  border-bottom-right-radius: 90% 120px;
  z-index: 1;
}

/* .about-color-strip {
  height: 6px;
  width: 100%;
  display: flex;
} */

.about-color-strip {
  width: 100%;
  height: 6px;
  display: flex;
  margin: 0 auto -6px;
  position: relative;
  z-index: 3;
}

.about-color-strip span {
  flex: 1;
}

/* colors */
.about-color-strip span:nth-child(1) {
  background: #0d97d4;
}

.about-color-strip span:nth-child(2) {
  background: #f2a12a;
}

.about-color-strip span:nth-child(3) {
  background: #2e9f4c;
}

.about-color-strip span:nth-child(4) {
  background: #7a4db5;
}

.about-color-strip span:nth-child(5) {
  background: #0c3d52;
}

.about-highlight-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 980px;
  margin: 0 auto 72px;
  text-align: left;
}

.highlight-title {
  font-size: 2.85rem;
  line-height: 1.22;
  font-weight: 800;
  margin-bottom: 18px;
}

.highlight-subtext {
  font-size: 1.15rem;
  font-weight: 500;
  opacity: 0.95;
  font-style: italic;
}

.highlight-cards {
  position: relative;
  z-index: 2;
  margin-top: 18px;
}

.highlight-card {
  background: rgba(245, 247, 248, 0.94);
  padding: 30px 24px 26px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.28), 0 10px 24px rgba(0, 0, 0, 0.08);
  min-height: 140px;
}

.highlight-card h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #374047;
}

.highlight-card p {
  font-size: 0.96rem;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

/* Work Experience CSS */
.work-section {
  padding: 60px 0 80px;
}

.work-heading {
  margin-bottom: 40px;
}

.work-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
}

.work-subtitle {
  font-size: 1.1rem;
  color: #4a545c;
}

.work-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.work-card img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 18px;
}

.work-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.work-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Hover */
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.work-showcase-section {
  position: relative;
  overflow: hidden;
  background: #efefef;
  padding: 54px 0 0;
}

.work-content-wrap {
  position: relative;
  z-index: 2;
}

.work-top-bg {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 860px;
  background: url("../images/work-bg-1.png") no-repeat center top/cover;
  opacity: 0.65;
  z-index: 0;
  pointer-events: none;
}

.work-bottom-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 760px;
  background: url("../images/work-bg.png") no-repeat center bottom/cover;
  z-index: 0;
  pointer-events: none;
}

.work-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 42px;
}

.work-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  margin: 0 0 10px;
  line-height: 1;
}

.work-subtitle {
  font-size: 1.15rem;
  color: var(--blue);
  font-weight: 700;
  max-width: 760px;
  margin: 0;
}

.work-grid {
  position: relative;
  z-index: 2;
}

.top-grid {
  margin-bottom: 52px;
}

.bottom-grid {
  margin-bottom: 110px;
}

.work-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  height: 100%;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.work-card-image {
  padding: 28px 28px 16px;
  text-align: center;
}

.work-card-image img {
  max-width: 100%;
  max-height: 210px;
  object-fit: contain;
  display: inline-block;
}

.work-card-image-large img {
  max-height: 250px;
}

.work-card-body {
  padding: 8px 26px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
}

.work-card-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #374047;
  margin: 0 0 10px;
}

.work-card-body p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #555;
  max-width: 280px;
  margin: 0 auto;
}

/* bottom accent lines */
.work-card-blue {
  border-bottom: 8px solid #0d97d4;
}

.work-card-orange {
  border-bottom: 8px solid #f2a12a;
}

.work-card-green {
  border-bottom: 8px solid #37b66b;
}

.work-card-purple {
  border-bottom: 8px solid #8a59c4;
}

.work-card-dark {
  border-bottom: 8px solid #16384a;
}

/* Statement section */

.work-statement-section {
  position: relative;
  z-index: 2;
  padding: 120px 0 130px;
}

.work-statement-content {
  max-width: 900px;
  color: #fff;
}

.work-statement-content h2 {
  font-size: 4rem;
  line-height: 1.18;
  font-weight: 800;
  margin: 0 0 22px;
}

.work-statement-content p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  opacity: 0.96;
}

/* responsive */
@media (max-width: 1199.98px) {
  .work-top-bg {
    height: 760px;
    top: 140px;
  }

  .work-bottom-bg {
    height: 640px;
  }

  .work-statement-content h2 {
    font-size: 3.2rem;
  }

  .work-statement-content p {
    font-size: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .work-showcase-section {
    padding-top: 44px;
  }

  .work-title {
    font-size: 2.5rem;
  }

  .work-subtitle {
    font-size: 1.05rem;
  }

  .work-card {
    min-height: 390px;
  }

  .top-grid {
    margin-bottom: 36px;
  }

  .bottom-grid {
    margin-bottom: 80px;
  }

  .work-statement-section {
    padding: 90px 0 100px;
  }

  .work-statement-content h2 {
    font-size: 2.6rem;
  }

  .work-statement-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .work-top-bg {
    top: 170px;
    height: 620px;
    opacity: 0.5;
  }

  .work-bottom-bg {
    height: 520px;
  }

  .work-title {
    font-size: 2.2rem;
  }

  .work-subtitle {
    font-size: 1rem;
  }

  .work-card {
    min-height: 360px;
  }

  .work-card-image {
    padding: 24px 20px 14px;
  }

  .work-card-image img,
  .work-card-image-large img {
    max-height: 190px;
  }

  .work-card-body {
    padding: 4px 20px 24px;
  }

  .work-card-body h3 {
    font-size: 1.2rem;
  }

  .work-card-body p {
    font-size: 0.92rem;
  }

  .work-statement-section {
    padding: 70px 0 80px;
  }

  .work-statement-content h2 {
    font-size: 2rem;
  }

  .work-statement-content p {
    font-size: 1rem;
  }
}

/* design thinking */
.hero-keywords {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(24, 58, 89, 0.95);
  font-weight: 700;
}

.design-thinking-intro {
  padding: 48px 0 30px;
}

.design-thinking-heading {
  max-width: 920px;
  margin: 0 auto;
}

.design-thinking-heading h2 {
  margin: 0 0 12px;
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}

.design-thinking-heading p {
  margin: 0 auto;
  max-width: 860px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #5a636b;
}

.thinking-block-section {
  padding: 10px 0 30px;
}

.thinking-block {
  padding: 24px 0 18px;
}

.thinking-image-wrap {
  text-align: center;
}

.thinking-image-wrap img {
  max-width: 100%;
  width: 230px;
  height: auto;
  display: inline-block;
}

.thinking-content {
  max-width: 620px;
}

.thinking-content h3 {
  margin: 0 0 14px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.15;
}

.thinking-content p {
  margin: 0 0 16px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #555f67;
}

.thinking-content ul {
  margin: 0;
  padding-left: 22px;
}

.thinking-content ul li {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #555f67;
}

.thinking-divider {
  width: 100%;
  height: 1px;
  background: #cfcfcf;
  margin-top: 26px;
}

/* responsive */
@media (max-width: 991.98px) {
  .design-thinking-intro {
    padding: 40px 0 24px;
  }

  .design-thinking-heading h2 {
    font-size: 2.4rem;
  }

  .design-thinking-heading p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .thinking-content h3 {
    font-size: 1.7rem;
  }

  .thinking-content p,
  .thinking-content ul li {
    font-size: 0.98rem;
  }

  .thinking-image-wrap img {
    width: 210px;
  }
}

@media (max-width: 767.98px) {
  .hero-keywords {
    font-size: 0.92rem;
  }

  .design-thinking-heading h2 {
    font-size: 2rem;
  }

  .thinking-block {
    padding: 12px 0 10px;
  }

  .thinking-image-wrap img {
    width: 190px;
  }

  .thinking-content {
    text-align: left;
  }

  .thinking-content h3 {
    font-size: 1.5rem;
  }
}

.thinking-block-reverse .thinking-content {
  max-width: 620px;
}

.right-image {
  text-align: center;
}

.right-image img {
  max-width: 100%;
  width: 230px;
  height: auto;
  display: inline-block;
}

@media (max-width: 991.98px) {
  .right-image img {
    width: 210px;
  }
}

@media (max-width: 767.98px) {
  .right-image img {
    width: 190px;
  }
}

.thinking-block {
  padding: 18px 0 12px;
}

.thinking-block-section:last-child {
  padding-bottom: 80px;
}

/*case study page */

.case-study-intro-section {
  padding: 48px 0 0px;
}

.case-study-heading {
  max-width: 920px;
  margin: 0 auto 46px;
}

.case-study-heading h2 {
  margin: 0 0 12px;
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}

.case-study-heading p {
  margin: 0 auto;
  max-width: 860px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #5a636b;
}

.case-study-hero-block {
  padding: 12px 0 24px;
}

.case-study-image-wrap {
  text-align: center;
}

.case-study-image-wrap img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: inline-block;
}

.case-study-content {
  max-width: 700px;
}

.case-study-content h3 {
  margin: 0 0 16px;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.15;
}

.case-study-content>p {
  margin: 0 0 24px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #555f67;
}

.case-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 26px;
  margin-bottom: 24px;
}

.case-meta-item h4,
.case-text-block h4 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
}

.case-meta-item p,
.case-text-block p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #555f67;
}

.case-text-block {
  margin-bottom: 18px;
}

.case-text-block:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .case-study-intro-section {
    padding: 40px 0 56px;
  }

  .case-study-heading h2 {
    font-size: 2.4rem;
  }

  .case-study-heading p,
  .case-study-content>p,
  .case-meta-item p,
  .case-text-block p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .case-study-content h3 {
    font-size: 1.8rem;
  }

  .case-study-image-wrap img {
    width: 220px;
  }
}

@media (max-width: 767.98px) {
  .case-study-heading {
    margin-bottom: 34px;
  }

  .case-study-heading h2 {
    font-size: 2rem;
  }

  .case-study-content h3 {
    font-size: 1.55rem;
  }

  .case-study-image-wrap img {
    width: 190px;
  }

  .case-meta-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-meta-item h4,
  .case-text-block h4 {
    font-size: 1rem;
  }
}

.case-blue-strip-section {
  padding: 0;
}

.case-blue-strip {
  background: #0d97d4;
  width: 100%;
}

.case-blue-strip-inner {
  display: grid;
  grid-template-columns: 120px 1.2fr 1fr 1fr;
  align-items: stretch;
  min-height: 230px;
}

.case-blue-icon-col {
  background: rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}

.case-blue-icon-wrap img {
  width: 100%;
  max-width: 100%;
  opacity: .98;
}

.case-blue-content-col {
  padding: 34px 34px 30px;
  color: #fff;
}

.case-blue-content-col h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.case-blue-content-col p,
.case-blue-content-col li {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.97);
}

.case-blue-content-col p {
  margin: 0;
}

.case-blue-content-col ul {
  margin: 0;
  padding-left: 18px;
}

.case-blue-content-col ul li {
  margin-bottom: 8px;
}

.case-blue-content-col .small-label {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1199.98px) {
  .case-blue-strip-inner {
    grid-template-columns: 90px 1.2fr 1fr 1fr;
  }

  .case-blue-content-col {
    padding: 28px 24px;
  }

  .case-blue-content-col h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 991.98px) {
  .case-blue-strip-inner {
    grid-template-columns: 1fr;
  }

  .case-blue-icon-col {
    min-height: 90px;
  }

  .case-blue-content-col {
    padding: 24px 22px;
  }
}

@media (max-width: 767.98px) {
  .case-blue-content-col h3 {
    font-size: 1.4rem;
  }

  .case-blue-content-col p,
  .case-blue-content-col li {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

.case-platform-section {
  padding: 52px 0 72px;
  background: #efefef;
}

.case-platform-heading {
  margin-bottom: 34px;
}

.case-platform-heading h2 {
  margin: 0 0 12px;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--orange);
}

.case-platform-heading p {
  margin: 0;
  max-width: 980px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #5a636b;
}

.case-platform-card {
  text-align: center;
  height: 100%;
}

.case-platform-image {
  margin-bottom: 16px;
}

.case-platform-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.case-platform-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--blue);
}

.case-platform-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: #5a636b;
}

@media (max-width: 991.98px) {
  .case-platform-section {
    padding: 42px 0 58px;
  }

  .case-platform-heading h2 {
    font-size: 2.1rem;
  }

  .case-platform-image img {
    height: 180px;
  }
}

@media (max-width: 767.98px) {
  .case-platform-heading h2 {
    font-size: 1.8rem;
  }

  .case-platform-heading p,
  .case-platform-card p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .case-platform-card h3 {
    font-size: 1.05rem;
  }

  .case-platform-image img {
    height: 170px;
  }
}

.case-contribution-band {
  background: #36434a;
  padding: 54px 0 60px;
}

.case-contribution-graphic img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: inline-block;
}

.case-contribution-content {
  color: #fff;
  max-width: 760px;
}

.case-contribution-content h2 {
  margin: 0 0 22px;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 800;
  color: #fff;
}

.case-contribution-label {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.case-contribution-content ul {
  margin: 0;
  padding-left: 20px;
}

.case-contribution-content ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.96);
}

@media (max-width: 991.98px) {
  .case-contribution-band {
    padding: 44px 0 48px;
  }

  .case-contribution-content h2 {
    font-size: 1.65rem;
    line-height: 1.4;
  }

  .case-contribution-graphic img {
    width: 200px;
  }

  .case-contribution-content ul li {
    font-size: 0.96rem;
  }
}

@media (max-width: 767.98px) {
  .case-contribution-content h2 {
    font-size: 1.4rem;
  }

  .case-contribution-label,
  .case-contribution-content ul li {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .case-contribution-graphic img {
    width: 180px;
  }
}

.case-impact-section {
  padding: 70px 0 90px;
  background: #efefef;
}

.case-impact-content {
  max-width: 720px;
}

.case-impact-content h2 {
  margin: 0 0 18px;
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 800;
  color: #219c42;
}

.case-impact-content p {
  margin: 0 0 16px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #5a636b;
}

.case-impact-content .impact-label {
  margin-top: 20px;
  font-weight: 700;
  color: #5a636b;
}

.case-impact-content ul {
  margin: 0;
  padding-left: 20px;
}

.case-impact-content ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.75;
  color: #5a636b;
}

.case-impact-graphic img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: inline-block;
}

@media (max-width: 991.98px) {
  .case-impact-section {
    padding: 56px 0 70px;
  }

  .case-impact-content h2 {
    font-size: 2.2rem;
  }

  .case-impact-content p,
  .case-impact-content ul li {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .case-impact-graphic img {
    width: 220px;
  }
}

@media (max-width: 767.98px) {
  .case-impact-section {
    padding: 46px 0 56px;
  }

  .case-impact-content h2 {
    font-size: 1.9rem;
  }

  .case-impact-graphic img {
    width: 190px;
  }
}

/* Case study 2 */

.case2-hero-section {
  padding: 50px 0 70px;
  background: #efefef;
}

.case2-title h1 {
  margin: 0 0 40px;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--blue);
}

.case2-hero-image {
  display: flex;
  justify-content: center;
}

.case2-hero-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 50%;
  display: block;
}

.case2-hero-content {
  max-width: 620px;
}

.case2-highlight {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.case2-meta {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #5a636b;
}

.case2-hero-content h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
}

.case2-hero-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #5a636b;
}

@media (max-width: 991.98px) {
  .case2-title h1 {
    font-size: 2rem;
  }

  .case2-hero-image img {
    max-width: 280px;
  }
}

@media (max-width: 767.98px) {
  .case2-title h1 {
    font-size: 1.7rem;
  }

  .case2-highlight {
    font-size: 1rem;
  }
}

.case2-user-section {
  position: relative;
  background: #3d484e;
  padding: 80px 0 70px;
  overflow: hidden;
}

.case2-user-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #3d484e;
  transform: skewY(-2deg);
  transform-origin: top left;
}

.case2-user-section::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  height: 70px;
  background: #3d484e;
  transform: skewY(2deg);
  transform-origin: bottom left;
}

.case2-user-content,
.case2-user-illustration {
  position: relative;
  z-index: 2;
}

.case2-user-content h2 {
  margin: 0 0 18px;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.case2-user-content ul {
  margin: 0;
  padding-left: 20px;
}

.case2-user-content ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.96);
}

.case2-user-illustration {
  display: flex;
  justify-content: center;
}

.case2-user-illustration img {
  max-width: 100%;
  width: 320px;
  display: block;
}

@media (max-width: 991.98px) {
  .case2-user-section {
    padding: 64px 0 58px;
  }

  .case2-user-content h2 {
    font-size: 1.8rem;
  }

  .case2-user-content ul li {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .case2-user-illustration img {
    width: 270px;
  }
}

@media (max-width: 767.98px) {
  .case2-user-section {
    padding: 56px 0 50px;
  }

  .case2-user-content h2 {
    font-size: 1.55rem;
  }

  .case2-user-illustration img {
    width: 230px;
  }
}

.case2-workflow-section {
  background: var(--blue);
  padding: 60px 0 64px;
}

.case2-workflow-icon {
  display: flex;
  justify-content: center;
}

.case2-workflow-icon img {
  max-width: 100%;
  width: 170px;
  display: block;
}

.case2-workflow-content {
  color: #fff;
  max-width: 760px;
}

.case2-workflow-content h2 {
  margin: 0 0 16px;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.case2-workflow-content p {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.96);
}

.case2-workflow-content ul {
  margin: 0;
  padding-left: 20px;
}

.case2-workflow-content ul li {
  margin-bottom: 10px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.96);
}

@media (max-width: 991.98px) {
  .case2-workflow-section {
    padding: 50px 0 54px;
  }

  .case2-workflow-content h2 {
    font-size: 1.8rem;
  }

  .case2-workflow-icon img {
    width: 145px;
  }
}

@media (max-width: 767.98px) {
  .case2-workflow-section {
    padding: 44px 0 48px;
  }

  .case2-workflow-content h2 {
    font-size: 1.55rem;
  }

  .case2-workflow-content p,
  .case2-workflow-content ul li {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .case2-workflow-icon img {
    width: 130px;
  }
}

.case2-user-workflow-section {
  position: relative;
  background: #f2a12a;
  padding: 70px 0 85px;
  overflow: hidden;
}

.case2-user-workflow-section::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  height: 70px;
  background: #f2a12a;
  transform: skewY(2deg);
  transform-origin: bottom left;
}

.case2-user-workflow-content,
.case2-user-workflow-visual {
  position: relative;
  z-index: 2;
}

.case2-user-workflow-content h2 {
  margin: 0 0 22px;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.workflow-step {
  margin-bottom: 18px;
}

.workflow-step:last-child {
  margin-bottom: 0;
}

.workflow-step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.workflow-step p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.96);
}

.case2-user-workflow-visual {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .case2-dotted-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.22) 1px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.45;
  filter: blur(0.2px);
} */

@media (max-width: 991.98px) {
  .case2-user-workflow-section {
    padding: 56px 0 70px;
  }

  .case2-user-workflow-content h2 {
    font-size: 1.9rem;
  }

  .case2-user-workflow-visual {
    min-height: 260px;
  }

  .case2-dotted-circle {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 767.98px) {
  .case2-user-workflow-section {
    padding: 48px 0 58px;
  }

  .case2-user-workflow-content h2 {
    font-size: 1.6rem;
  }

  .workflow-step h3,
  .workflow-step p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .case2-user-workflow-visual {
    min-height: 180px;
  }

  .case2-dotted-circle {
    width: 180px;
    height: 180px;
    background-size: 12px 12px;
  }
}

.case2-user-workflow-section {
  position: relative;
  background: #f2a12a;
  padding: 70px 0 85px;
  overflow: hidden;
}

/* 🔥 Background image layer */
.case2-user-workflow-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url('../images/background-cs2.png') no-repeat right center;
  background-size: contain;
  opacity: 0.15;
  /* 👈 tweak this (0.25–0.5) */
  pointer-events: none;
}

/* bottom slant stays */
.case2-user-workflow-section::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  height: 70px;
  background: #f2a12a;
  transform: skewY(2deg);
  transform-origin: bottom left;
}


.case2-solution-section {
  background: #efefef;
  padding: 80px 0 90px;
}

.case2-solution-icon {
  display: flex;
  justify-content: center;
}

.case2-solution-icon img {
  max-width: 100%;
  width: 180px;
  display: block;
}

.case2-solution-content {
  max-width: 720px;
}

.case2-solution-content h2 {
  margin: 0 0 14px;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--orange);
}

.case2-solution-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: #5a636b;
}

@media (max-width: 991.98px) {
  .case2-solution-section {
    padding: 64px 0 70px;
  }

  .case2-solution-content h2 {
    font-size: 1.85rem;
  }

  .case2-solution-icon img {
    width: 150px;
  }
}

@media (max-width: 767.98px) {
  .case2-solution-section {
    padding: 52px 0 56px;
  }

  .case2-solution-content h2 {
    font-size: 1.55rem;
  }

  .case2-solution-content p {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .case2-solution-icon img {
    width: 130px;
  }
}

.case2-impact-section {
  position: relative;
  overflow: hidden;
  background: #1ea22a;
  padding: 70px 0 0;
}

.case2-impact-bg {
  position: absolute;
  inset: 0;
  background: url("../images/about-bg.png") no-repeat center/cover;
  opacity: 0.9;
  z-index: 0;
}

.case2-impact-section .container {
  position: relative;
  z-index: 2;
}

.case2-impact-block {
  color: #fff;
  max-width: 620px;
}

.case2-impact-block h2 {
  margin: 0 0 16px;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.case2-impact-block p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.96);
}

.case2-impact-icon img {
  max-width: 100%;
  display: inline-block;
}

.case2-impact-icon.top-icon img {
  width: 210px;
}

.case2-impact-icon.bottom-icon img {
  width: 190px;
}

.case2-learning-row {
  margin-top: 40px;
  padding-bottom: 70px;
}

.case2-closing-strip {
  background: #36434a;
  padding: 28px 0;
  position: relative;
  z-index: 2;
}

.case2-closing-strip p {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  line-height: 1.75;
}

@media (max-width: 991.98px) {
  .case2-impact-section {
    padding-top: 56px;
  }

  .case2-impact-block h2 {
    font-size: 1.85rem;
  }

  .case2-impact-block p,
  .case2-closing-strip p {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .case2-impact-icon.top-icon img {
    width: 180px;
  }

  .case2-impact-icon.bottom-icon img {
    width: 165px;
  }

  .case2-learning-row {
    margin-top: 20px;
    padding-bottom: 56px;
  }
}

@media (max-width: 767.98px) {
  .case2-impact-section {
    padding-top: 46px;
  }

  .case2-impact-block h2 {
    font-size: 1.6rem;
  }

  .case2-impact-block p,
  .case2-closing-strip p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .case2-impact-icon.top-icon img {
    width: 150px;
  }

  .case2-impact-icon.bottom-icon img {
    width: 140px;
  }

  .case2-learning-row {
    padding-bottom: 44px;
  }

  .case2-closing-strip {
    padding: 22px 0;
  }
}

.contact-section {
  padding: 70px 0 90px;
  background: #efefef;
}

.contact-heading {
  max-width: 720px;
  margin: 0 auto 40px;
}

.contact-heading h2 {
  margin: 0 0 12px;
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
}

.contact-heading p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a636b;
}

.contact-content {
  max-width: 680px;
  margin: 0 auto;
}

.contact-line {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 26px;
}

.contact-details p {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #374047;
}

.contact-details strong {
  color: var(--orange);
}

@media (max-width: 991.98px) {
  .contact-heading h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 767.98px) {
  .contact-heading h2 {
    font-size: 2rem;
  }

  .contact-line {
    font-size: 0.95rem;
  }
}

.contact-hero {
  position: relative;
  overflow: hidden;
}

/* ===== TOP SECTION ===== */
.contact-top {
  position: relative;
  padding: 80px 0 120px;
  background: #f5f5f5;
  z-index: 1;
}

.contact-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/contact-bg2.png") no-repeat center/cover;
  opacity: 0.25;
  z-index: 0;
}

.contact-text {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.contact-text h2 {
  color: var(--orange);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-text p {
  color: #444;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* ===== BOTTOM SECTION ===== */
.contact-bottom {
  position: relative;
  background: #16a6a3;
  padding: 180px 0 90px;
  margin-top: -90px;
  color: #fff;
  overflow: hidden;
  z-index: 2;
}

.contact-bottom::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  background: #16a6a3;
  z-index: 1;
}

.contact-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/contact-bg1.png") no-repeat center/cover;
  opacity: 0.6;
  z-index: 0;

}

.contact-bottom .container {
  position: relative;
  z-index: 2;
}

.contact-bottom h3 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.contact-bottom p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-top {
    padding: 60px 0 100px;
  }

  .contact-bottom {
    padding: 140px 0 70px;
    margin-top: -70px;
  }

  .contact-bottom::before {
    top: -110px;
    height: 180px;
  }

  .contact-bottom h3 {
    font-size: 1.6rem;
  }

  .contact-bottom p {
    font-size: 1rem;
  }
}

.contact-info span {
  font-weight: 700;
  color: var(--orange);
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--blue);
}

.case-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.case-btn {
  padding: 8px 16px;
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #e28f1a;
}

.case-btn:hover {
  background: #a86200;
  color: #fff;
}

.case-btn.active {
  background: #a86200;
  color: #fff;
}

/* Section */
.raj-cs3-workflow {
  position: relative;
  background: #179c1f;
  padding: 90px 0 110px;
  overflow: hidden;
}

/* Curved bottom */
.raj-cs3-workflow::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -70px;
  height: 140px;
  background: #efefef;
  /* match your site bg */
  border-top-left-radius: 50% 60%;
  border-top-right-radius: 50% 350%;
}

/* Glow dots */
.raj-cs3-workflow::before {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 2px, transparent 3px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}

/* Grid */
.raj-cs3-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left Content */
.raj-cs3-content {
  flex: 1 1 520px;
  max-width: 620px;
}

.raj-cs3-content h2 {
  margin: 0 0 28px;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
}

.raj-cs3-content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  max-width: 600px;
}

/* Right Image */
.raj-cs3-image {
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.raj-cs3-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 28px;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .raj-cs3-content h2 {
    font-size: 44px;
  }

  .raj-cs3-content p {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .raj-cs3-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .raj-cs3-content h2 {
    font-size: 36px;
  }

  .raj-cs3-image {
    width: 100%;
    justify-content: center;
  }
}

.btn1 {
  border-radius: 30px;
  background: #F9A32C;
  border: solid 1px #efefef;
}

.btn1:hover {
  background: #a86200;
  color: #fff;
  border: solid 1px #efefef;
}

.btn2 {
  border-radius: 30px;
  background: #179c1f;
  border: solid 1px #efefef;
}

.btn2:hover {
  background: #127a18;
  color: #fff;
  border: solid 1px #efefef;
}

.btn3 {
  border-radius: 30px;
  background: #0095D6;
  border: solid 1px #efefef;
}

.btn3:hover {
  background: #00628c;
  color: #fff;
  border: solid 1px #efefef;
}

.capability-card,
.cta-card,
.asset-card {
  will-change: transform, opacity;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.capability-card:hover,
.cta-card:hover,
.asset-card:hover {
  transform: translateY(-6px);
}

.capability-card,
.cta-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hero-intro {
  position: relative;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
}

.hero-particles canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.95;
}

/* CTA CARD PREMIUM HOVER */

.cta-card {
  position: relative;
  overflow: hidden;
}

.cta-bg-image {
  transition: transform 0.6s ease;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  z-index: 1;
}

.cta-card-inner {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.cta-icon-img img {
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */

.cta-card:hover .cta-bg-image {
  transform: scale(1.08);
}

.cta-card:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

.cta-card:hover .cta-card-inner {
  transform: translateY(-6px);
}

.cta-card:hover .cta-icon-img img {
  transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 767.98px) {

  /* HERO SECTION */
  .hero-intro {
    padding: 44px 0 34px;
  }

  .hero-intro .container,
  .portfolio-nav .container,
  .design-capabilities .container,
  .cta-section .container,
  .site-footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .profile-image-wrap {
    margin-bottom: 22px;
  }

  .profile-image {
    max-width: 170px;
    width: 100%;
    height: auto;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-name {
    font-size: 2.0rem;
    line-height: 1.02;
    margin-bottom: 12px;
  }

  .hero-role {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .hero-focus {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 18px;
  }

  .hero-summary {
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 100%;
  }

  /* NAV SECTION */
  .portfolio-nav {
    padding: 26px 0 10px;
  }

  .nav-pill-list {
    gap: 12px 12px;
    justify-content: center;
  }

  .nav-pill-list li {
    margin: 0;
  }

  .nav-pill-list a {
    min-width: 138px;
    padding: 12px 18px;
    font-size: 1rem;
    line-height: 1.2;
    border-radius: 999px;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .work-statement-section {
    padding: 90px 0 80px;
  }

  .work-statement-content {
    padding: 0 6px;
    margin-bottom: 40px;
  }

  .work-statement-content h2 {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .work-statement-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 767.98px) {
  .work-statement-section {
    padding-top: 120px;
    /* pushes content below curve */
  }
}

@media (max-width: 767.98px) {
  .work-card-box {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .row.g-4 {
    margin-top: 10px;
  }
}

@media (max-width: 767.98px) {
  .profile-image-wrap {
    text-align: center;
    margin-bottom: 24px;
  }

  .profile-image {
    display: inline-block;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .hero-content {
    text-align: center;
  }

  .hero-role,
  .hero-focus,
  .hero-summary {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .hero-focus {
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media (max-width: 767.98px) {
  .hero-intro .row {
    text-align: center;
  }

  .profile-image-wrap {
    max-width: 180px;
    margin: 0 auto 24px;
    text-align: center;
  }

  .profile-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero-name {
    font-size: 1.65rem;
    line-height: 1.08;
    white-space: nowrap;
    margin-bottom: 12px;
  }

  .hero-role {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .hero-focus {
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 16px;
  }

  .hero-summary {
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .about-highlight-section {
    position: relative;
    padding: 120px 0 72px;
    overflow: hidden;
  }

  .about-highlight-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 58px;
    background: #efefef;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    z-index: 1;
  }

  .about-highlight-bg {
    z-index: 0;
  }

  .about-highlight-section .container {
    position: relative;
    z-index: 2;
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-highlight-content {
    max-width: 100%;
    margin: 0 auto 34px;
    padding-top: 14px;
    text-align: center;
  }

  .about-highlight-content h2 {
    font-size: 2.15rem;
    line-height: 1.18;
    font-weight: 800;
    margin: 0 0 16px;
  }

  .about-highlight-content p {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
  }

  .about-highlight-content {
    margin-top: 90px;
  }

  .contact-text {
    text-align: center;
  }

  .raj-cs3-content {
    flex: 1 1 0px;
  }

  .raj-cs3-image {
    flex: 1 1 0px;
  }

  .raj-cs3-workflow::after {
    left: unset;
  }

  @media (max-width: 767.98px) {

    /* Generic two-column case study sections */
    .case-study-section .row,
    .case-study-block .row,
    .impact-section .row,
    .challenge-section .row,
    .solution-section .row,
    .results-section .row {
      flex-direction: column !important;
    }

    /* If you used reverse rows for alternating layout */
    .flex-md-row-reverse,
    .flex-lg-row-reverse,
    .row.reverse-mobile-reset {
      flex-direction: column !important;
    }

    /* Text block first */
    .case-study-text,
    .impact-text,
    .challenge-text,
    .solution-text,
    .results-text {
      order: 1;
      width: 100%;
      padding-right: 0 !important;
      padding-left: 0 !important;
      margin-bottom: 28px;
      text-align: left;
    }

    /* Image / icon block second */
    .case-study-image,
    .impact-image,
    .challenge-image,
    .solution-image,
    .results-image,
    .case-study-visual,
    .impact-visual {
      order: 2;
      width: 100%;
      text-align: center;
      padding-left: 0 !important;
      padding-right: 0 !important;
      margin-top: 0;
    }

    /* Images / icons inside */
    .case-study-image img,
    .impact-image img,
    .challenge-image img,
    .solution-image img,
    .results-image img,
    .case-study-visual img,
    .impact-visual img {
      max-width: 220px;
      width: 100%;
      height: auto;
      margin: 0 auto;
      display: block;
    }
  }
}

.work-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.work-card-link:hover .work-card {
    transform: translateY(-6px);
    transition: all 0.3s ease;
}

.featured-work-section {
    background: #1196d4;
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
}

.featured-work-heading h2 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 50px;
}

.featured-work-collage {
    position: relative;
    min-height: 520px;
    max-width: 1100px;
    margin: 0 auto;
}

.featured-project {
    position: absolute;
    display: block;
    text-decoration: none;
    color: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.featured-project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-project-title {
    position: absolute;
    left: 28px;
    top: 22px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.22);
}

.featured-project-1 {
    width: 500px;
    height: 360px;
    left: 40px;
    top: 40px;
    z-index: 1;
}

.featured-project-2 {
    width: 390px;
    height: 310px;
    left: 355px;
    top: 130px;
    z-index: 2;
}

.featured-project-3 {
    width: 470px;
    height: 330px;
    right: 40px;
    top: 55px;
    z-index: 3;
}

.featured-project:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
}

@media (max-width: 991.98px) {
    .featured-work-heading h2 {
        font-size: 40px;
        margin-bottom: 35px;
    }

    .featured-work-collage {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .featured-project {
        position: relative;
        width: 100%;
        height: 280px;
        left: auto;
        right: auto;
        top: auto;
    }
}

@media (max-width: 575.98px) {
    .featured-work-section {
        padding: 70px 0 80px;
    }

    .featured-work-heading h2 {
        font-size: 32px;
    }

    .featured-project {
        height: 220px;
        border-radius: 20px;
    }

    .featured-project-title {
        font-size: 22px;
        left: 18px;
        top: 18px;
    }
}

.case-studies-cta-section {
    position: relative;
    background: #12c3bf;
    padding: 110px 0 120px;
    overflow: hidden;
}

.case-studies-top-slope {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 140px;
    background: #12c3bf;
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

.case-studies-bottom-slope {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #f3f3f3;
    clip-path: polygon(0 100%, 100% 65%, 100% 100%, 0 100%);
}

.case-studies-cta-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 55px;
}

.case-studies-cta-heading h2 {
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.case-study-circle-row {
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
}

.case-study-circle-card {
    text-decoration: none;
    display: block;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.case-study-circle-card:hover {
    transform: translateY(-6px);
    color: #ffffff;
}

.case-study-circle-image {
    width: 360px;
    margin: 0 auto 24px;
}

.case-study-circle-image img {
    width: 100%;
    height: auto;
    display: block;
}


.case-study-circle-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
}

.case-study-loadmore-wrap {
    position: relative;
    z-index: 2;
}

.case-study-loadmore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 52px;
    padding: 0 30px;
    border-radius: 999px;
    background: #0d8e97;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.case-study-loadmore-btn:hover {
    background: #0a7d86;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .case-studies-cta-section {
        padding: 90px 0 100px;
    }

    .case-studies-cta-heading h2 {
        font-size: 40px;
    }

    .case-study-circle-image {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .case-studies-cta-section {
        padding: 75px 0 90px;
    }

    .case-studies-cta-heading {
        margin-bottom: 40px;
    }

    .case-studies-cta-heading h2 {
        font-size: 30px;
    }

    .case-study-circle-image {
        width: 180px;
        height: 180px;
        margin-bottom: 18px;
    }

    .case-study-circle-card h3 {
        font-size: 20px;
    }

    .case-study-loadmore-btn {
        min-width: 150px;
        height: 46px;
        font-size: 16px;
    }
}

.section-curve {
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, #12c3bf, #1196d4);
}

.featured-work-collage {
    max-width: 1000px;
}


.case-study-loadmore-btn {
    background: #ffffff;
    color: #12c3bf;
    font-weight: 700;
}

.case-study-loadmore-btn:hover {
    background: #0d8e97;
    color: #fff;
}

.work-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.work-section h2 {
    margin-bottom: 10px;
}

.work-section p {
    margin-bottom: 30px;
}

/* interface Design */
.interface-design-page-section {
    position: relative;
    background: #f4f4f4;
    padding: 80px 0 100px;
    overflow: hidden;
}

.interface-top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #f59a2f 0%, #f4f4f4 100%);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 100%);
    opacity: 0.9;
}

.interface-page-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.interface-page-heading h1 {
    font-size: 52px;
    font-weight: 800;
    color: #f59a2f;
    margin-bottom: 14px;
    line-height: 1.1;
}

.interface-page-heading p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.7;
    color: #2f7da1;
    font-weight: 500;
}

.interface-featured-row {
    position: relative;
    z-index: 2;
}

.interface-featured-image {
    border-radius: 28px;
    overflow: hidden;
    background: #1e88b6;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interface-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.interface-featured-content {
    padding: 10px 10px 10px 30px;
}

.interface-featured-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1e88b6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.interface-featured-content h3 {
    font-size: 38px;
    font-weight: 800;
    color: #f59a2f;
    line-height: 1.15;
    margin-bottom: 18px;
}

.interface-featured-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4f4f4f;
    margin-bottom: 24px;
}

.interface-featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.interface-featured-tags span {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: #e9f5fb;
    color: #1e88b6;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.interface-featured-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #1e88b6;
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.interface-featured-btn:hover {
    background: #156b8e;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .interface-design-page-section {
        padding: 70px 0 80px;
    }

    .interface-page-heading {
        margin-bottom: 45px;
    }

    .interface-page-heading h1 {
        font-size: 42px;
    }

    .interface-page-heading p {
        font-size: 18px;
    }

    .interface-featured-content {
        padding: 10px 0 0;
    }

    .interface-featured-content h3 {
        font-size: 32px;
    }

    .interface-featured-image {
        min-height: 320px;
    }
}

@media (max-width: 575.98px) {
    .interface-design-page-section {
        padding: 60px 0 70px;
    }

    .interface-top-wave {
        height: 80px;
    }

    .interface-page-heading h1 {
        font-size: 34px;
    }

    .interface-page-heading p {
        font-size: 16px;
        line-height: 1.6;
    }

    .interface-featured-content h3 {
        font-size: 26px;
    }

    .interface-featured-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .interface-featured-image {
        min-height: 240px;
        border-radius: 20px;
    }

    .interface-featured-tags span {
        font-size: 13px;
        padding: 8px 14px;
    }

    .interface-featured-btn {
        padding: 12px 22px;
        font-size: 15px;
    }
}

.interface-selected-work-section {
    background: #1196d4;
    padding: 95px 0 110px;
    position: relative;
    overflow: hidden;
}

.interface-selected-heading {
    margin-bottom: 50px;
}

.interface-selected-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.1;
}

.interface-selected-heading p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.interface-work-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interface-work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.interface-work-card-image {
    height: 240px;
    overflow: hidden;
    background: #d9edf8;
}

.interface-work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.interface-work-card-body {
    padding: 24px 22px 26px;
}

.interface-work-card-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: #f59a2f;
    line-height: 1.25;
    margin-bottom: 12px;
}

.interface-work-card-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #4f4f4f;
    margin: 0;
}

@media (max-width: 991.98px) {
    .interface-selected-work-section {
        padding: 80px 0 90px;
    }

    .interface-selected-heading h2 {
        font-size: 40px;
    }

    .interface-selected-heading p {
        font-size: 17px;
    }

    .interface-work-card-image {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .interface-selected-work-section {
        padding: 70px 0 80px;
    }

    .interface-selected-heading {
        margin-bottom: 36px;
    }

    .interface-selected-heading h2 {
        font-size: 32px;
    }

    .interface-selected-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .interface-work-card {
        border-radius: 18px;
    }

    .interface-work-card-image {
        height: 200px;
    }

    .interface-work-card-body {
        padding: 20px 18px 22px;
    }

    .interface-work-card-body h3 {
        font-size: 20px;
    }

    .interface-work-card-body p {
        font-size: 15px;
        line-height: 1.6;
    }
}

.interface-explorations-section {
    background: #f4f4f4;
    padding: 90px 0 100px;
    position: relative;
}

.interface-explorations-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #f59a2f;
    margin-bottom: 40px;
}

.interface-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interface-carousel {
    overflow: hidden;
    width: 100%;
    max-width: 900px;
}

.interface-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.interface-slide {
    min-width: 100%;
    padding: 0 10px;
}

.interface-slide img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

/* arrows */

.interface-carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f59a2f;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    z-index: 2;
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.interface-carousel-btn:hover {
    background: #d97706;
}

.experience-selected-work-section {
    background: #1196d4;
    padding: 95px 0 110px;
    position: relative;
    overflow: hidden;
}

.experience-selected-heading {
    margin-bottom: 50px;
}

.experience-selected-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.1;
}

.experience-selected-heading p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.experience-work-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.experience-work-card-image {
    height: 240px;
    overflow: hidden;
    background: #d9edf8;
}

.experience-work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-work-card-body {
    padding: 24px 22px 26px;
}

.experience-work-card-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: #f59a2f;
    line-height: 1.25;
    margin-bottom: 12px;
}

.experience-work-card-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #4f4f4f;
    margin: 0;
}

@media (max-width: 991.98px) {
    .experience-selected-work-section {
        padding: 80px 0 90px;
    }

    .experience-selected-heading h2 {
        font-size: 40px;
    }

    .experience-selected-heading p {
        font-size: 17px;
    }

    .experience-work-card-image {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .experience-selected-work-section {
        padding: 70px 0 80px;
    }

    .experience-selected-heading {
        margin-bottom: 36px;
    }

    .experience-selected-heading h2 {
        font-size: 32px;
    }

    .experience-selected-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .experience-work-card {
        border-radius: 18px;
    }

    .experience-work-card-image {
        height: 200px;
    }

    .experience-work-card-body {
        padding: 20px 18px 22px;
    }

    .experience-work-card-body h3 {
        font-size: 20px;
    }

    .experience-work-card-body p {
        font-size: 15px;
        line-height: 1.6;
    }
}

.explore-more-section {
    padding: 60px 0;
    background: #f4f4f4;
    text-align: center;
}

.explore-more-section h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1e88b6;
    margin-bottom: 25px;
}

.explore-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.explore-links a {
    padding: 10px 20px;
    border-radius: 25px;
    background: #e9f5fb;
    color: #1e88b6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.explore-links a:hover {
    background: #1e88b6;
    color: #fff;
}

.explore-links a.active {
    background: #f59a2f;
    color: #fff;
}

.sub-nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.sub-nav-links a {
    padding: 6px 14px;
    border-radius: 20px;
    background: #e6eef3;
    color: #1e88b6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
}

/* active */
.sub-nav-links a.active {
    background: #f59a2f;
    color: #fff;
}

/* hover */
.sub-nav-links a:hover {
    background: #1e88b6;
    color: #fff;
}

.hero-intro::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 42px;
    background: #f4f4f4;
    clip-path: polygon(
        0% 58%, 2% 55%, 4% 57%, 6% 61%, 8% 60%,
        10% 63%, 12% 59%, 14% 57%, 16% 56%, 18% 58%,
        20% 61%, 22% 60%, 24% 58%, 26% 56%, 28% 57%,
        30% 55%, 32% 58%, 34% 62%, 36% 61%, 38% 59%,
        40% 57%, 42% 56%, 44% 58%, 46% 60%, 48% 59%,
        50% 61%, 52% 63%, 54% 60%, 56% 58%, 58% 57%,
        60% 55%, 62% 57%, 64% 60%, 66% 61%, 68% 59%,
        70% 58%, 72% 56%, 74% 57%, 76% 60%, 78% 62%,
        80% 61%, 82% 59%, 84% 58%, 86% 56%, 88% 57%,
        90% 60%, 92% 61%, 94% 59%, 96% 57%, 98% 56%,
        100% 58%,
        100% 100%, 0% 100%
    );
    z-index: 5;
}