@font-face {
  font-family: "Figtree-Bold";
  src: url(../fonts/Figtree-Bold.ttf);
}
@font-face {
  font-family: "Figtree-Medium";
  src: url(../fonts/Figtree-Medium.ttf);
}
@font-face {
  font-family: "Figtree-Regular";
  src: url(../fonts/Figtree-Regular.ttf);
}
@font-face {
  font-family: "Figtree-Light";
  src: url(../fonts/Figtree-Light.ttf);
}
@font-face {
  font-family: "Figtree-SemiBold";
  src: url(../fonts/Figtree-SemiBold.ttf);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
title {
  text-transform: capitalize;
}
html {
  scroll-behavior: smooth;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none !important;
}
p {
  font-size: 17px;
  line-height: 23px;
}
.np {
  font-family: "Figtree-Medium";
}
body {
  font-family: "Figtree-Regular";
}
.video-wrapper {
  opacity: 0; /* hidden initially */
  transition: opacity 1s ease;
}

.video-wrapper.show {
  opacity: 1; /* fades in smoothly */
}

.video-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
  overflow: hidden;
}

.video-splash video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-splash.fade-out {
  opacity: 0;
  pointer-events: none;
}

.skip-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  padding: 10px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  z-index: 99; /* ensure above video */
}
.replay-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  padding: 10px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  z-index: 99; /* ensure above video */
}

.main-wrapper {
  width: 100%;
  background: url("../img/main-bg.png");
  background-position: center 75% !important;
  background-repeat: no-repeat !important;
  -webkit-background-size: cover !important; /* Safari/WebKit */
  -moz-background-size: cover !important; /* Firefox (older) */
  -o-background-size: cover !important; /* Opera (legacy) */
  background-size: cover !important; /* Standard */
}
.solve-banner {
  width: 100%;
  background: url("../img/solve-bg.png") center center no-repeat;
  background-size: cover;
}

.logo img {
  position: relative;
  top: 25px !important;
  left: 35px;
  z-index: 9;
  max-width: 175px;
}
.logo-video {
  position: fixed;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.logo-video img {
  position: relative;
  top: 25px !important;
  left: 35px;
  z-index: 9;
  max-width: 175px;
}
.banner {
  width: 100%;
  height: 100vh; /* full screen height */
  z-index: 1;
  position: relative;
}

.banner::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/banner.png");
  background-size: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
}
/* Hamburger container */
.hamburger-menu {
  position: fixed;
  top: 30px;
  right: 35px;
  width: 35px;
  height: 30px;
  display: block;
  z-index: 100;
  cursor: pointer;
}

.hamburger-menu span {
  display: block;
  position: absolute;
  height: 3px;
  background: #d3d8dc;
  border-radius: 5px;
  left: 0;
  transition: 0.3s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
  top: 0;
  width: 14px;
}
.hamburger-menu span:nth-child(2) {
  top: 10px;
  width: 22px;
}
.hamburger-menu span:nth-child(3) {
  top: 20px;
  width: 30px;
}

.hamburger-menu.open span {
  background: #fff;
}

.hamburger-menu.open span:nth-child(1) {
  width: 0;
  opacity: 0;
  left: 50%;
}
.hamburger-menu.open span:nth-child(2) {
  top: 12px;
  width: 30px;
  transform: rotate(45deg);
}
.hamburger-menu.open span:nth-child(3) {
  top: 12px;
  width: 30px;
  transform: rotate(-45deg);
}

header nav ul {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: #00353f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 99;
  gap: 30px;
}

header nav ul.show {
  opacity: 1;
  pointer-events: auto;
}

header nav ul li a {
  color: #fff;
  font-size: 24px;
  padding: 15px 0;
  text-decoration: none;
}
header nav ul li a:hover {
  color: #f2f2f2;
}

.practice {
  padding: 250px 0 75px 0;
}
.practice .container {
  max-width: 1200px;
  margin: 0 auto;
}

.practice .watermelon-heading small {
  display: block;
  font-size: 20px;
  line-height: 10px;
  color: #a8ff00; /* neon green */
  letter-spacing: 1px;
  font-family: "Figtree-Regular";
}

.practice .watermelon-heading h2 {
  font-size: 48px;
  margin: 0;
  line-height: 1.2;
  color: #fff;
  font-family: "Figtree-Regular";
}

@media (max-width: 768px) {
  .practice .watermelon-heading h2 {
    font-size: 32px;
  }
}

.what-we-solve {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 25px;

  color: #fff;
  border-radius: 8px;
}

/* Left Section */
.what-we-solve .intro-text {
  flex: 1 1 300px;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
}

.what-we-solve .intro-text p {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 30px;
  font-family: "Figtree-Light";
  max-width: 275px;
}

/* Right Section */
.what-we-solve .cards {
  flex: 2 1 700px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.what-we-solve .card {
  flex: 1 1 33%;
  max-width: calc(33.333% - 20px);
  background: rgba(0, 0, 0, 0.15);
  padding: 50px 20px;
  transition: all 0.3s ease;
}

.what-we-solve .card:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.35);
}

.what-we-solve .card h3 {
  font-size: 21px;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 200px;
}

.what-we-solve .underline {
  display: block;
  width: 30px;
  height: 3px;
  background: #6aff33;
  margin: 30px 0;
}

.what-we-solve .card p {
  font-size: 15px;
  line-height: 1.5;
  max-width: 160px;
  color: #d0dce1;
}

/* Expand Link */
.what-we-solve .expand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6aff33;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
  margin-top: 25px;
}

.what-we-solve .expand:hover {
  text-decoration: underline;
}
.what-we-solve .expand img {
  width: 10px;
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .what-we-solve .card {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
  }
  .what-we-solve .card p {
    max-width: 100%;
  }
  .what-we-solve .intro-text {
    flex: unset;
  }
  .what-we-solve {
    padding: 0 0 15px 0;
  }
  .what-we-solve .intro-text p {
    max-width: 100%;
  }
}
.watermelon-work {
  color: #fff;
  padding: 200px 20px 75px 20px;
  position: relative;
}

.work-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
}

/* Left Block */
.work-left {
  flex: 1;
  max-width: 260px;
}

.work-left img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
  display: block;
}

.work-left h5 {
  display: block;
  font-size: 20px;
  color: #a8ff00;
  line-height: 10px;
  letter-spacing: 1px;
  font-family: "Figtree-Regular";
}

.work-left h2 {
  font-size: 48px;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 2px;
  color: #fff;
  font-family: "Figtree-Regular";
}

/* Right Block (Two Columns) */
.work-right {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
}

.work-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #222;
}
.work-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* start full height */
  background: rgba(0, 0, 0, 0.5);
  transition: height 0.5s ease; /* animate height only */
}

.work-card:hover::after {
  height: 0; /* shrinks down to bottom */
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-card .overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #a8ff00;
  font-size: 25px;
}

.work-card .number {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #a8ff00;
  font-size: 25px;
}

/* Responsive */
@media (max-width: 992px) {
  .work-section {
    flex-direction: column;
    gap: 40px;
  }

  .work-left {
    max-width: none;
  }

  .work-right {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .work-card {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .watermelon-work {
    padding: 40px 15px;
  }

  .work-left h2 {
    font-size: 28px;
  }

  .work-right {
    gap: 15px;
  }

  .work-column {
    gap: 15px;
  }

  .work-card {
    height: 220px;
  }
}

/* Demo placeholder images */
.work-card img {
  background: linear-gradient(45deg, #333, #555);
}

.text-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 0;
  overflow: hidden;
}

/* Container */
.text-layout .container {
  position: relative;
  width: 100%;
  max-width: 1200px; /* Fixed max width */
  margin: 0 auto;
  aspect-ratio: 2 / 1; /* Keeps perfect proportions */
}

/* Image Holder */
.built-image {
  position: relative;
  inset: 0; /* Fill the container */
  display: flex;
  justify-content: center;
  align-items: center;
}

.built-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .text-layout .container {
    aspect-ratio: unset;
    height: auto;
  }

  .built-image img {
    width: 90%;
  }
}

.show-case {
  padding: 75px 0;
}
.show-case .container {
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-heading small {
  display: block;
  font-size: 20px;
  color: #a8ff00; /* neon green */
  line-height: 10px;
  letter-spacing: 1px;
  font-family: "Figtree-Regular";
}

.showcase-heading h2 {
  font-size: 48px;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 2px;
  color: #fff;
  font-family: "Figtree-Regular";
}

/* Showcase Carousel wrapper */
.showcase-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 10px; /* space for nav & dots */
  z-index: 0 !important;
}

/* Each carousel item */
.showcase-wrap .item {
  position: relative;
  overflow: hidden;
}

/* Block with background image hover zoom */
.showcase-wrap .block {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.6s ease; /* Smooth scaling */
}

.showcase-wrap .block:hover {
  transform: scale(1.05); /* Zoom effect */
}

/* Top content inside block */
.showcase-wrap .card-content {
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.showcase-wrap .card-content h5 {
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.showcase-wrap .card-content h2 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
  min-height: 95px;
}

.showcase-wrap .card-content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}
.showcase-wrap .card-content p.sub {
  font-size: 12px;
}
.owl-theme .owl-nav .disabled {
  opacity: 1 !important;
}

/* Expand button at bottom */ /* Expand button hover animation */
.showcase-wrap .expand {
  padding: 20px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.showcase-wrap .expand::after {
  content: " ↗";
  color: #0f0;
  font-size: 14px;
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.3s ease, color 0.3s ease;
}

.showcase-wrap .expand:hover {
  color: #7aff00;
}

.showcase-wrap .block:hover .expand::after {
  transform: translateX(5px) translateY(-5px); /* Smooth upward-right movement */
  color: #7aff00;
}

/* ==============================
   OWL DOTS - Updated
============================== */
.showcase-wrap .owl-dots {
  position: absolute;
  bottom: -50px !important;
  right: 140px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  z-index: 9999 !important;
}

.showcase-wrap .owl-dot {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.showcase-wrap .owl-dot span {
  display: block !important;
  width: 60px !important;
  height: 3px !important;
  background: #0076a8 !important;
  transition: all 0.3s ease !important;
}

.showcase-wrap .owl-dot.active span {
  background: #7aff00 !important;
  width: 55px !important;
}

.showcase-wrap .owl-nav {
  position: absolute !important;
  bottom: -55px !important;
  right: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 20px !important;
  z-index: 9999 !important;
}

.showcase-wrap .owl-nav button {
  border: none !important;
  outline: none !important;
  padding: 10px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.3s ease !important;
}

.showcase-wrap .owl-nav button:hover {
  background: transparent !important;
}

.showcase-wrap .owl-nav button img {
  filter: brightness(0) saturate(100%) invert(74%) sepia(92%) saturate(697%)
    hue-rotate(65deg) brightness(106%) contrast(106%) !important;
  width: 20px !important;
}

/* ==============================
       Responsive
    =============================== */
@media (max-width: 992px) {
  .showcase-wrap .block {
    height: 350px;
  }
  .showcase-wrap .card-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .showcase-wrap .card-content h2 {
    font-size: 21px !important;
  }
  .showcase-wrap .card-content h5 {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .showcase-wrap .owl-dot span {
    width: 25px;
  }
}
.contact {
  padding: 100px 0 75px 0;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* Two-column layout */
.contact .watermelon-contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 60px;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* ===== Left Side ===== */
.contact .left {
  flex: 1;
  padding-right: 20px;
}

.contact .connect {
  display: block;
  font-size: 20px;
  color: #a8ff00;
  line-height: 10px;
  letter-spacing: 1px;
  font-family: "Figtree-Regular";
}

.contact .title {
  font-size: 48px;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 2px;
  color: #fff;
  font-family: "Figtree-Regular";
}

.contact .subtitle {
  font-size: 30px;
  line-height: 37px;
  font-family: "Figtree-Regular";
}

.contact .contact-info p {
  display: flex;
  align-items: center;
  margin: 15px 0;
  font-size: 17px;
}
.watermelon-contact .map {
  padding: 50px 0 25px 0;
}
.contact .address {
  font-size: 17px;
  line-height: 23px;
  font-family: "Figtree-Regular";
}
.contact .address span {
  font-family: "Figtree-Medium";
}

.contact .contact-info img {
  width: 18px;
  margin-right: 12px;
}

.contact .socials {
  margin-top: 50px;
  display: flex;
}

.contact .socials p {
  margin-bottom: 15px;
  font-size: 17px;
  letter-spacing: 1px;
  margin-right: 15px;
}

.contact .socials a img {
  width: 18px;
  margin-right: 18px;
  transition: opacity 0.3s;
}

.contact .socials a img:hover {
  opacity: 0.7;
}

/* ===== Right Side ===== */
.contact .right {
  flex: 1;
  background: url("../img/contact-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 40px 60px 60px;
  min-width: 600px;
}

.contact .right h3 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 500;
}

.contact .right .form-section {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact .right input,
.contact .right textarea {
  padding: 10px;
  background: linear-gradient(135deg, #103d22, #103426);
  border: none;
  color: #fff;
  font-size: 14px;
}

.contact .right input::placeholder,
.contact .right textarea::placeholder {
  color: #889d91;
}

.contact input {
  width: 100%;
}
/* Description = 100% */
.contact .right textarea {
  width: 100%;
  min-height: 215px;
  resize: none;
}

.contact .right button {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 0;
  margin-top: 10px;
}

.contact .right button img {
  width: 11px;
  margin-left: 8px;
}
.send-btn {
  padding: 0 75px;
}
.captcha img {
  max-width: 100px;
}

.contact .hear-us {
  background: linear-gradient(180deg, #0c2a1a, #0f3b25);
  padding: 7px 10px;
  color: #889d91;
}

.contact .hear-us .question {
  margin-bottom: 15px;
  font-size: 14px;
}

.contact .hear-us .radio-option {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  cursor: pointer;
  color: #889d91;
}

.contact .hear-us .radio-option input[type="radio"] {
  display: none;
}

.contact .hear-us .custom-radio {
  height: 12px; /* reduced 25% */
  width: 12px; /* reduced 25% */
  border-radius: 50%;
  background: #66ff33; /* always green (new color) */
  margin-right: 10px;
  position: relative;
}

.contact .hear-us .custom-radio::after {
  content: "";
  width: 6px; /* reduced 25% */
  height: 6px; /* reduced 25% */
  background: black; /* inner black circle */
  border-radius: 50%;
  position: absolute; /* keep perfectly centered */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.contact
  .hear-us
  .radio-option
  input[type="radio"]:checked
  + .custom-radio::after {
  display: block; /* show inner circle when checked */
}

.footer-bottom {
  padding: 20px 0;
  color: #fff;
  font-family: Arial, sans-serif;
}
.contact .block {
  margin: 7px;
}
.footer-bottom .bottom-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom .footer-left p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-bottom .footer-right {
  display: flex;
}

.footer-bottom .footer-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom .footer-menu li a {
  color: #919191;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-bottom .footer-menu li a:hover,
.footer-bottom .footer-menu li a.active {
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-bottom .bottom-sec {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

.why-watermelon-banner {
  padding: 100px 20px 75px 20px;
  color: #fff;
}

.why-watermelon-banner .container {
  max-width: 1200px;
  margin: 0 auto;
}
.why-watermelon-banner .content-area {
  margin-left: 50px;
}
.why-watermelon-banner .sub-title {
  color: #33ff00;
  font-size: 25px;
  letter-spacing: 1px;
  margin-bottom: 0px; /* tighter */
  text-transform: uppercase;
}

.why-watermelon-banner .main-title {
  font-size: 45px;
  font-weight: 400;
  margin: 0 0 60px; /* ~20–25px space before Beneath */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-watermelon-banner .headline-block {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.why-watermelon-banner .headline-block .line {
  font-size: 50px;
  color: #33ff00;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 2px;
}

.why-watermelon-banner .headline-block .small-text {
  font-size: 22px;
  font-weight: 500;
  margin: 10px 0;
}

.why-watermelon-banner .headline-block .obvious {
  font-size: 65px;
  font-weight: 700;
}
.why-watermelon-banner .philosophy-content {
  margin-left: 0px;
  max-width: 450px;
}

.why-watermelon-banner .green {
  color: #7adf35;
}

.why-watermelon-banner .philosophy {
  font-size: 21px;
  margin: 0 0 4px; /* philosophy sits close to paragraph */
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.why-watermelon-banner .description {
  font-size: 19px;
  line-height: 1.7;
  color: #f2f2f2;
  margin: 0; /* no extra margin on paragraph */
}

.about-content {
  background: #fff; /* White background */
  padding: 25px 0; /* Top & bottom spacing */
}

.about-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content .content-heading h2 {
  font-size: 28px;
  font-weight: 400;
  color: #555; /* Medium gray like in your image */
  line-height: 1.4;
  margin: 0;
}

.about-content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0 100px 0;
  display: flex;
  align-items: flex-start;
  background: #fff;
  flex-wrap: wrap;
}

/* Left column */
.about-content-area .left {
  min-width: 365px;
  flex: 0 0 365px;
  display: flex;
  /* justify-content: flex-end; /* align right */
}

.about-content-area .left-label {
  color: #777;
  font-size: 33px;
  line-height: 1.1;
  margin-left: 38px;
}

.about-content-area .left-label .chev {
  font-weight: 700;
  margin-left: 6px;
}

/* Right column */
.about-content-area .right {
  position: relative;
  padding-left: 30px; /* spacing from left */
}

/* Red square bullets */
.about-content-area .key-points {
  list-style: none;
  margin: 2px 0 36px;
  padding: 0;
  color: #6b6b6b;
  font: 400 18px/1.6;
}

.about-content-area .key-points li {
  position: relative;
  padding-left: 28px;
  margin: 0 0 14px;
}

.about-content-area .key-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 12px;
  height: 12px;
  background: #e60012;
}

/* Main body copy */
.about-content-area .body-copy {
  color: #6b6b6b;
  font: 400 18px/1.5;
  max-width: 720px;
}
.about-content-area .body-copy p {
  padding-bottom: 20px;
  color: #555;
  max-width: 600px;
}

.red-square.bottom-square {
  display: inline-block;
  width: 30px;
  height: 17px;
  background: #e60012;
  margin-top: 10px;
}

.challenge {
  background: #fff;
  color: #555;
  max-width: 455px;
  margin: 0 auto;
  text-align: left;
  padding: 0;
}

.challenge .challenge-head {
  text-align: left;
  margin-bottom: 50px;
}
.challenge .challenge-head h3 {
  font-size: 21px;
  font-weight: 400;
  margin: 0 0 15px;
}
.challenge .challenge-head .subhead {
  color: #555;
}
.challenge .challenge-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* keep left aligned */
  gap: 30px; /* spacing between cards */
}

/* Card styling */
.challenge .card {
  position: relative;
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
  padding: 20px;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  text-align: left;
  border: 1px solid #999;
  color: #555;
  border-radius: 0;
  overflow: hidden; /* keep ::before inside */
  background-color: #fff; /* default */
  z-index: 1;
}

/* Overlay background */
.challenge .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/lb-bg.PNG") center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: -1; /* stays behind text */
}

/* On hover, fade in background */
.challenge .card:hover::before {
  opacity: 1;
}

.challenge .card:hover {
  color: #fff;
}

/* Typography */
.challenge .card h3 {
  font-size: 27px;
  margin: 0 0 16px;
}

.challenge .card p {
  font-size: 17px;
  line-height: 23px;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .challenge .card {
    flex: 1 1 100%; /* single card per row on tablet/mobile */
    max-width: 100%;
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .challenge .challenge-head h2 {
    font-size: 22px;
  }
  .challenge .challenge-head .subhead {
    font-size: 16px;
  }
}

.impact-approach {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* space top & bottom */
  box-sizing: border-box;
  color: #555;
  position: relative; /* for absolute red square option */
  padding: 0;
  margin: 0;
  min-width: 365px;
}

/* Top section */
.impact-approach .top {
  text-align: left;
  margin-left: auto;
  margin: 0;
}

.impact-approach .top h2 {
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 20px;
  line-height: 1.4;
  color: #555;
  max-width: 250px;
}

.impact-approach .top p {
  color: #555;
  font-weight: 900;
  max-width: 250px;
}

/* Bottom section */
.impact-approach .bottom {
  text-align: right;
  max-width: 500px;
  margin-left: auto; /* pushes whole block to the right */
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* ensures all children (p + red-square) align right */
}

.impact-approach .bottom p {
  margin: 16px 0;
  color: #555;
}

/* Red square pinned bottom-right */
.challenge .red-square {
  display: inline-block;
  width: 30px;
  height: 17px;
  background: #e60012;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .impact-approach .top h2 {
    font-size: 22px;
  }
  .impact-approach .top p,
  .impact-approach .bottom p {
    font-size: 14px;
  }
}

.about-impact-approach {
  display: flex;
  flex-wrap: wrap;
}

.about-clarity-area .left {
  min-width: 365px;
  flex: 0 0 365px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.about-clarity-area .right {
  padding-left: 30px;
}

.about-clarity-area {
  display: flex;
  padding: 100px 0;
}

.about-impact-approach .left {
  min-width: 365px;
  flex: 0 0 365px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.about-impact-approach .right {
  padding-left: 30px;
}

.clarity-left-area {
  max-width: 400px; /* controls overall block width */
  padding: 0;
  margin: 0;
  color: #333;
  text-align: left;
}

/* Big number */
.clarity-left-area .big-number {
  font-size: clamp(120px, 11vw, 200px);
  line-height: 140px;
  color: #837d7d;
  position: relative;
  left: -10px;
}

/* Small uppercase text */
.clarity-left-area .kicker {
  font-size: 17px;
  text-transform: uppercase;
  color: #837d7d;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Paragraph text */
.clarity-left-area p {
  font-size: 17px;
  line-height: 23px;
  margin: 0;
  font-weight: 600;
  color: #666;
}
.clarity-content {
  max-width: 600px; /* controls readable line length */
  margin: 0 auto;
  padding: 0;
  color: #333;
  text-align: left;
}

/* Paragraph styling */
.clarity-content p {
  padding-bottom: 20px;
  color: #555;
}

/* Red square at the bottom */
.clarity-content .red-square {
  display: inline-block;
  width: 30px;
  height: 17px;
  background: #e60012;
  margin-top: 10px;
}

.clients-tele {
  width: 100%;
  box-sizing: border-box;
  padding: 24px 12px;
  position: relative;
  z-index: 0;
}

/* Centering container */
.clients-tele .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Client list layout */
.client-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* allows multiple rows */
  justify-content: center;
  gap: 16px 0; /* vertical gap only */
}

/* Each logo box - exactly 4 per row */
.client-list .list {
  width: 25%; /* 4 logos per row */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

/* Images */
.client-list .list img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease, box-shadow 0.4s ease; /* smooth animation */
}
.client-list .list img:hover {
  transform: scale(1.03); /* zoom in slightly */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); /* subtle shadow */
}
/* Responsive for tablets */
@media (max-width: 768px) {
  .client-list .list {
    width: 33.33%; /* 3 logos per row */
  }
}

/* Responsive for mobile */
@media (max-width: 480px) {
  .client-list .list {
    width: 50%; /* 2 logos per row */
  }
}

.clients-tele {
  padding: 100px 0;
}
.clients-tele h2 {
  display: block;
  font-size: 28px;
  color: #a8ff00;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-family: "Figtree-Regular";
  text-transform: uppercase;
  padding-bottom: 100px;
}

.solve-header {
  padding: 100px 0;
}
.solve-header .container {
  max-width: 1200px;
}
.solve-header h3 {
  color: #33ff00;
  font-size: 25px;
  letter-spacing: 1px;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.solve-header h1 {
  font-size: 48px;
  margin: 0;
  line-height: 50px;
  text-transform: uppercase;

  color: #fff;
  font-family: "Figtree-Regular";
}
.solve-header-image {
  max-width: 550px;
}

.business-challenge {
  width: 100%;
  background: #fff;
  padding: 60px 20px 0 20px;
  box-sizing: border-box;
}

.business-challenge .container {
  width: 100%;
}

.business-challenge .challenge {
  max-width: 1200px; /* FIXED WIDTH */
  margin: 0 auto; /* CENTER IT */
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Left Side */
.business-challenge .left {
  flex: 1;
  color: #4d4d4d;
  margin-left: 75px;
}

.business-challenge .left h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #555;
  padding: 25px 0;
}

.business-challenge .left h3 .sub {
  display: block;
  font-weight: 400;
  color: #7a7a7a;
  font-size: 30px;
  margin-top: 4px;
}

.business-challenge .left .description {
  font-size: 27px;
  color: #7a7a7a;
  margin-bottom: 40px;
  max-width: 475px;
}

.business-challenge .left .description .highlight {
  color: #666;
  font-size: 27px;
  line-height: 35px;

  font-weight: 600;
}

.communication .footer-text {
  font-size: 30px;
  font-weight: 700;
  color: #555;
  padding-top: 25px;
  padding-bottom: 50px;
  text-align: center;
}

/* Right Side Image */
.business-challenge .right {
  flex: 1;
  text-align: right;
  position: relative;
}

.business-challenge .right img {
  max-width: 435px;
  height: auto;
  display: block;
  object-fit: contain;
  position: absolute;
  right: 175px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .business-challenge .challenge {
    flex-direction: column;
  }
}

.communication {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
}

.communication .container {
  max-width: 1080px;
  margin: 0 auto;
}

.communication .container-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}

.communication .list {
  flex: 0 0 47%; /* Two equal columns */
  display: flex;
  flex-direction: column;
  min-width: 280px;
}

/* ===== ITEM STYLING ===== */
.communication .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
}

/* Top border for first items (01 and 05) */
.communication .item.top-border {
  border-top: 1px solid #ccc;
}

.communication .number {
  font-size: 17px;
  color: #555;
  min-width: 30px;
  transition: color 0.3s ease;
}

.communication .title {
  flex: 1;
  margin-left: 15px;
  font-size: 17px;
  color: #333;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* Plus icon */
.communication .plus-icon {
  width: 16px;
  height: 16px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

/* ===== HOVER ANIMATION ===== */
.communication .item:hover {
  background-color: #f9f9f9;
  transform: translateY(-3px);
}

.communication .item:hover .plus-icon {
  transform: rotate(90deg);
}

.communication .item:hover .number,
.communication .item:hover .title {
  color: #b20000; /* Highlight color on hover */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .communication .list {
    flex: 0 0 100%;
  }
}

.expertise {
  background: #fff;
  box-sizing: border-box;
  padding-bottom: 75px;
}
.expertise-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  gap: 90px;
}

.expertise-box {
  flex: 1;
}

.expertise-box h3 {
  font-size: 21px;
  font-weight: bold;
  color: #4a4a4a;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.expertise-box p {
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .expertise-section {
    flex-direction: column;
  }
  .expertise {
    padding-bottom: 0;
  }
}
.we-solve-content {
  font-family: "Figtree-Regular", sans-serif;
  padding: 60px 20px;
  background: #fff;
}

nav ul li a {
  color: #000; /* default text color, change as needed */
  text-decoration: none;
  transition: color 0.3s ease; /* smooth effect */
}

nav ul li a:hover {
  color: #99ff00 !important;
}

.yearsimg {
  max-width: 175px;
  margin-bottom: 25px;
}

.real-txt img {
  max-width: 400px;
  margin: 35px 0 35px 0;
}

.what-solve-content {
  max-width: 700px;
  margin: 15px 0 0 0;
}

.what-solve-content p {
  color: #555;
  padding: 10px 0;
}

.what-solve-content p span {
  font-family: "Figtree-SemiBold";
  color: #555;
}

.what-solve-content .back-btn {
  position: relative; /* parent controls positioning */
  display: block;
  margin-top: 20px;
  margin-bottom: 75px;
  width: 75px;
  height: auto;
}

.what-solve-content .back-btn img {
  width: 55px;
  height: auto;
  display: block;
  transition: opacity 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.what-solve-content .back-btn img:nth-child(1) {
  opacity: 1; /* normal button visible */
  z-index: 1;
}

.what-solve-content .back-btn img:nth-child(2) {
  opacity: 0; /* hover button hidden */
  z-index: 2;
}

.what-solve-content .back-btn:hover img:nth-child(1) {
  opacity: 0; /* normal fades out */
}

.what-solve-content .back-btn:hover img:nth-child(2) {
  opacity: 1; /* hover fades in */
}

.what-solve-content .content-area-sec {
  margin-left: 145px;
  margin-top: 15px;
}

.solve-img img {
  max-width: 500px;
}

.what-solve-content .content-area-sec .line {
  width: 35px;
  height: 3px;
  background: #cf2037;
  margin: 25px 0px;
}
.we-solve-content .container {
  max-width: 1200px;
  margin: 0 auto;
}

.case-study-header {
  padding: 100px 0;
}

.case-study-header .container {
  max-width: 1200px;
  margin: 0 auto;
}

.case-study-header h3 {
  color: #33ff00;
  font-size: 25px;
  letter-spacing: 1px;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.case-study-header h1 {
  font-size: 48px;
  margin: 0;
  line-height: 1.2;
  color: #fff;
  font-family: "Figtree-Regular";
}

.casestudy-banner {
  background-position: center !important;
  background-repeat: no-repeat !important;
  -webkit-background-size: cover !important; /* Safari/WebKit */
  -moz-background-size: cover !important; /* Firefox (older) */
  -o-background-size: cover !important; /* Opera (legacy) */
  background-size: cover !important; /* Standard */
}

.casestudy-content {
  background-color: #fff;
  color: #333;
  padding-bottom: 25px;
}

.casestudy-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.casestudy-content .banner {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 4px;
}

.casestudy-content .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casestudy-content .banner .logo-text {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 15px;
  border-radius: 3px;
}

.casestudy-content .title {
  margin-top: 25px;
  font-size: 26px;
  color: #ec0000;
  margin-bottom: 5px;
}

.casestudy-content .industry {
  font-size: 14px;
  color: #131922;
  margin-bottom: 40px;
  font-family: "Figtree-SemiBold";
}

.casestudy-content .headline {
  font-size: 23px;
  font-family: "Figtree-SemiBold";
  color: #cc0000;
  line-height: 26px;
  margin-bottom: 20px;
}

.casestudy-content .body-text {
  color: #555;
  margin-bottom: 15px;
}

.casestudy-content .back-btn {
  position: relative; /* parent controls positioning */
  display: block;
  margin-top: 20px;
  margin-bottom: 90px;
  width: 75px;
  height: auto;
}

.casestudy-content .back-btn img {
  width: 55px;
  height: auto;
  display: block;
  transition: opacity 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.casestudy-content .back-btn img:nth-child(1) {
  opacity: 1; /* normal button visible */
  z-index: 1;
}

.casestudy-content .back-btn img:nth-child(2) {
  opacity: 0; /* hover button hidden */
  z-index: 2;
}

.casestudy-content .back-btn:hover img:nth-child(1) {
  opacity: 0; /* normal fades out */
}

.casestudy-content .back-btn:hover img:nth-child(2) {
  opacity: 1; /* hover fades in */
}

.case-banner {
  padding: 25px 0 0 0;
}
.casestudy-content .sub-content {
  margin-left: 50px;
  max-width: 675px;
}
.casestudy-detail {
  padding: 75px 0;
  background-color: #fff;
}
.casestudy-detail .container {
  max-width: 1225px;
  margin: 0 auto;
}

.casestudy-list .block {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.6s ease; /* Smooth scaling */
  margin: 15px;
}

.casestudy-list .block:hover {
  transform: scale(1.02); /* Zoom effect */
}

/* Top content inside block */
.casestudy-list .casestudy-sub-content {
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.casestudy-list .casestudy-sub-content h5 {
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.casestudy-list .casestudy-sub-content h2 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
  min-height: 95px;
}

.casestudy-list .casestudy-sub-content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}
.casestudy-list .casestudy-sub-content p.sub {
  font-size: 12px;
}

/* Expand button at bottom */ /* Expand button hover animation */
.casestudy-list .expand {
  padding: 20px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.casestudy-list .expand::after {
  content: " ↗";
  color: #0f0;
  font-size: 14px;
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.3s ease, color 0.3s ease;
}

.casestudy-list .expand:hover {
  color: #7aff00;
}

.casestudy-list .block:hover .expand::after {
  transform: translateX(5px) translateY(-5px); /* Smooth upward-right movement */
  color: #7aff00;
}

/* =========================
   CULTURE SECTION
   ========================= */
.culture {
  width: 100%;
  background: url("../img/lf1.PNG") center center no-repeat;
  background-size: cover;
  padding: 80px 20px;
  box-sizing: border-box;
  font-family: "Figtree-Regular", sans-serif;
  color: #fff;
}

.culture .container {
  width: 100%;
  max-width: 1200px; /* Center container with fixed max width */
  margin: 0 auto;
}

.culture .culture-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* ===== Left Section ===== */
.culture .left {
  width: 50%;
}

.culture .left .heading {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 60px;
}

.culture .left .sub-title {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 20px;
}

.culture .left .beliefs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.culture .left .beliefs li {
  font-size: 28px;
  margin-bottom: 18px;
  line-height: 1.4;
  font-weight: 400;
}

/* ===== Right Section ===== */
.culture .right {
  width: 50%;
}

.culture .right .content {
  max-width: 500px;
}

.culture .right p {
  font-size: 23px;
  line-height: 35px;
  margin-bottom: 20px;
}

/* =========================
   RESPONSIVE STYLES
   ========================= */

/* For medium screens (tablets and below) */
@media (max-width: 991px) {
  .culture .culture-content {
    flex-direction: column; /* Stack vertically */
    gap: 40px;
  }

  .culture .left,
  .culture .right {
    width: 100%; /* Full width for stacked layout */
  }

  .culture .left .heading {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .culture .left .beliefs li {
    font-size: 24px;
  }

  .culture .right p {
    font-size: 17px;
    line-height: 1.7;
  }
}

/* For very small screens (mobile) */
@media (max-width: 576px) {
  .culture {
    padding: 50px 15px 25px 15px;
  }

  .culture .left .heading {
    font-size: 28px;
  }

  .culture .left .beliefs li {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .culture .right p {
    font-size: 16px;
  }
}

/* =========================
   HOW WE WORK SECTION
   ========================= */
.how-work {
  background: #ffffff; /* White background */
  padding: 50px 20px; /* Top and bottom padding 75px */
  box-sizing: border-box;
  font-family: "Figtree-Regular", sans-serif;
}

.how-work .container {
  width: 100%;
  max-width: 1200px; /* Center container */
  margin: 0 auto;
}

.how-work .how-work-heading {
  text-align: left;
}

.how-work .how-work-heading .title {
  font-size: 42px;
  font-weight: 400;
  color: #666666;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.how-work .how-work-heading .subtitle {
  font-size: 21px;
  font-weight: 600;
  color: #666666;
  margin: 0;
  font-family: "Figtree-Bold";
}

/* =========================
   RESPONSIVE STYLES
   ========================= */
@media (max-width: 768px) {
  .how-work .how-work-heading .title {
    font-size: 32px;
  }

  .how-work .how-work-heading .subtitle {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .how-work {
    padding: 50px 15px;
  }

  .how-work .how-work-heading .title {
    font-size: 28px;
  }

  .how-work .how-work-heading .subtitle {
    font-size: 16px;
  }
}

/* =========================
   HOW WE WORK SECTION
   ========================= */
.how-we-work-sec {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap; /* Wraps on smaller screens */
  gap: 30px; /* Spacing between items */
  background: #ffffff;
  box-sizing: border-box;
}

.how-we-work-sec .list {
  flex: 1 1 calc(25% - 30px); /* Four equal boxes with spacing */
  min-width: 240px;
  max-width: 280px;
  padding: 40px;
  border: 1px solid #666;
  background: #fff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.how-we-work-sec .list:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.how-we-work-sec .list .icon {
  margin-bottom: 20px;
}

.how-we-work-sec .list .icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.how-we-work-sec .list h4 {
  font-size: 18px;
  font-weight: 600;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.4;
}

.how-we-work-sec .list p {
  color: #666666;
  margin: 0;
}

/* =========================
   RESPONSIVE STYLES
   ========================= */

/* Tablets - 2 items per row */
@media (max-width: 991px) {
  .how-we-work-sec {
    justify-content: center;
  }

  .how-we-work-sec .list {
    flex: 1 1 calc(50% - 20px); /* Two columns */
    max-width: none;
  }
}

/* Mobile - 1 item per row */
@media (max-width: 576px) {
  .how-we-work-sec .list {
    flex: 1 1 100%; /* Full width */
    max-width: none;
  }
}

/* =========================
   WE FAVOUR SECTION
   ========================= */
.we-favour {
  width: 100%;
  background: url("../img/lf2-bg.PNG") no-repeat center center / cover;
  padding: 25px 0 50px 0;
  box-sizing: border-box;
  color: #ffffff;
}

.we-favour .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.we-favour .favour-list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}

/* -------------------------
   Left Section
   ------------------------- */
.we-favour .favour-list .left {
  flex: 0 0 25%;
  display: flex;
  justify-content: flex-start;
  padding-right: 20px;
}

.we-favour .favour-list .left h3 {
  font-size: 22px;
  font-family: "Figtree-SemiBold";
  color: #ffffff;
  margin: 0;
}

/* -------------------------
   Right Section
   ------------------------- */
.we-favour .favour-list .right {
  flex: 0 0 75%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}

.we-favour .favour-list .right .item {
  flex: 1;
  text-align: left;
  font-size: 17px;
  line-height: 23px;
  padding: 0 20px;
  position: relative;
  box-sizing: border-box;
  display: flex;
  color: #ffffff;
}

/* Vertical Divider for ALL items */
.we-favour .favour-list .right .item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 93px;
  background-color: #ffffff;
  opacity: 0.8;
}

/* -------------------------
   RESPONSIVE STYLES
   ------------------------- */

/* Tablets */
@media (max-width: 991px) {
  .we-favour .favour-list {
    flex-direction: column;
    gap: 20px;
    margin: 15px;
  }

  .we-favour .favour-list .left {
    flex: 0 0 auto;
    margin-bottom: 20px;
    padding-right: 0;
  }

  .we-favour .favour-list .right {
    flex-wrap: wrap;
    gap: 15px;
  }

  .we-favour .favour-list .right .item {
    flex: 1 1 calc(50% - 15px);
    padding: 15px;
  }

  /* Hide dividers on smaller devices for clarity */
  .we-favour .favour-list .right .item:before {
    height: 90%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .we-favour .favour-list .right .item {
    flex: 1 1 100%;
  }
}

/* =========================
   CULTURE SIGNAL SECTION
   ========================= */
.culture-signal {
  width: 100%;
  background: #ffffff; /* White background */
  padding: 35px 0 0 0;
  box-sizing: border-box;
}

/* Container for Max Width */
.culture-signal .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.culture-signal .signal-box {
  display: flex;
  align-items: center;
  gap: 15px; /* Space between red box and text */
}

.culture-signal .signal-box .red-box {
  width: 30px;
  height: 20px;
  background-color: #ff0000; /* Red box */
  display: inline-block;
}

.culture-signal .signal-box p {
  font-size: 20px;
  color: #555555;
  margin: 0;
  line-height: 1.5;
}

.culture-signal .signal-box p strong {
  font-weight: 700; /* Bold text */
  color: #555555;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 576px) {
  .culture-signal .signal-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .culture-signal .signal-box p {
    font-size: 18px;
  }

  .culture-signal .signal-box .red-box {
    width: 25px;
    height: 18px;
  }
}
/* CSS */
.brand {
  padding: 100px 0;
  background-color: #fff;
}

.brand .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Flexbox layout */
.brand .brand-logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.brand .list {
  flex: 1 1 25%; /* 4 per row */
  min-width: 220px;
  height: 220px;

  background-size: cover;
  background-position: center;
  cursor: pointer;

  /* smooth performance */
  will-change: transform, box-shadow;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand .list:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 2; /* stays above neighbors */
}

/* Responsive */
@media (max-width: 991px) {
  .brand .list {
    flex: 1 1 25%; /* 2 per row */
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .brand .list {
    flex: 1 1 50%; /* 2 per row */
    min-width: auto;
  }
}

.content-area-sec.mr-sec {
  max-width: 450px;
  margin-left: 220px;
}

.content-area-sec.signal-cp {
  margin-left: 210px;
}

.content-area-sec.cr-cp {
  margin-left: 317px;
}

.content-area-sec.int-cp {
  margin-left: 220px;
  max-width: 425px;
}
.content-area-sec.clr-cp {
  margin-left: 235px;
}
.content-area-sec.rp-cp {
  margin-left: 315px;
}
.contact-banner {
  margin-bottom: 125px;
}
.contact-info p a {
  color: #fff;
}

.value-sec {
  padding: 80px 0;
  background: #fff;
}
.value-sec .container {
  max-width: 1200px;
}

.value-info {
  display: flex;
  width: 100%;
}

.value-grid {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* space between top & bottom */
  min-height: 400px;
  box-sizing: border-box;
}

.value-list {
  width: 70%;
  box-sizing: border-box;
  padding-left: 25px;
}

.value-grid .title {
  font-size: 40px;
  color: #666;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-align: left; /* top text left aligned */
}

.value-grid .subtitle {
  font-size: 21px;
  font-family: "Figtree-Bold";
  color: #666;
  line-height: 25px;
  text-align: left;
}

.value-grid .bottom-text {
  text-align: right;
}
.value-grid .bottom-text p {
  font-size: 19px;
  color: #666;
}

.value-grid .bottom-text strong {
  color: #666;
  font-family: "Figtree-Bold";
}

.value-grid .red-box {
  display: inline-block;
  width: 35px;
  height: 20px;
  background: red;
  margin-top: 5px;
}
.value-list .list-card {
  border: 1px solid #e0e0e0;
  padding: 40px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 310px;
  transition: all 0.3s ease;
  margin: 5px;
}

.value-list .list-card .small-title {
  font-size: 11px;
  color: #666;
  font-family: "Figtree-Bold";
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.value-list .list-card .main-title {
  font-size: 27px;
  font-weight: 400;
  color: #666;
  line-height: 27px;
  transition: color 0.3s ease;
  min-height: 75px;
}

.value-list .list-card .divider {
  width: 150px;
  border-top: 2px solid #e0e0e0;
  margin: 23px 0;
  transition: border-color 0.3s ease;
}

.value-list .list-card .practice-link {
  font-size: 12px;
  color: #ec0707;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: "Figtree-Bold";
}

.value-list .list-card .practice-hover {
  font-size: 16px;
  color: #fff;
  line-height: 23px;
  display: none; /* hidden by default */
  margin: 0;
}

/* Hover background red */
.value-list .list-card:hover {
  background: url(../img/context.jpg);
  background-size: 100%;
  background-position: center;
}

/* Change text and divider to white */
.value-list .list-card:hover .small-title,
.value-list .list-card:hover .main-title {
  color: #fff;
}

.value-list .list-card:hover .divider {
  border-color: #fff;
}

/* Show/hide texts */
.value-list .list-card:hover .practice-link {
  display: none; /* hide IN PRACTICE */
}

.value-list .list-card:hover .practice-hover {
  display: block; /* show hover text */
}

.rituals {
  padding: 50px 0 75px 0;
  background-color: #fff;
}
.rituals .container {
  max-width: 1200px;
}
.rituals-heading h2 {
  font-size: 42px;
  font-weight: 400;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.rituals-heading h3 {
  font-size: 21px;
  font-weight: 600;
  color: #666;
  font-family: Figtree-Bold;
  margin: 0px;
}
.think-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-right: 35px;
}

.think-carousel .think-time {
  height: 500px;
  background-image: url("../img/thinking-time.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 50px;
  color: #fff;
  padding-top: 150px;
}

.think-carousel .think-time .content {
  max-width: 600px;
}

.think-carousel .think-time h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.think-carousel .think-time p {
  font-size: 19px;
  line-height: 25px;
  max-width: 300px;
}

/* Divider */
.think-carousel .divider {
  width: 200px;
  height: 2px;
  background: #fff;
  /* margin-top: 120px; */
  position: absolute;
  bottom: 100px;
}

/* Owl Nav */
.think-carousel .owl-nav {
  position: absolute;
  bottom: 30px;
  left: 40px;
  display: flex;
  gap: 5px;
}

.think-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #b10000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.think-carousel .owl-nav img {
  width: 35px;
  height: 35px;
}

.ritual-content {
  height: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ritual-content p {
  font-size: 21px;

  color: #666;
}
.ritual-content p span {
  font-family: "Figtree-Bold";
}
.ritual-content .red-box {
  width: 35px;
  height: 20px;
  background: red;
  margin-top: 20px;
  margin-right: auto;
}

.life-team {
  width: 100%;
  background: #fff;
  padding: 15px 0 75px 0;
}

.life-team > .container {
  max-width: 1200px;
  margin: 0 auto;
}

.life-team h4 {
  font-size: 19px;
  color: #666;
  font-family: "Figtree-Bold";
}

.life-team h2 {
  font-size: 42px;
  font-weight: 400;
  color: #666;
  margin-bottom: 10px;
}

.life-team p {
  font-size: 19px;
  line-height: 25px;
  color: #666;
  margin-bottom: 20px;
}

.built-layout .built-video video {
  width: 100%;
  height: auto;
  display: block;
}

.intro-video {
  position: fixed; /* keep it covering whole screen */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999 !important;
  background: url(../img/video-bg.png) center/cover no-repeat;
  transition: transform 0.1s linear;
}

.intro-video.slide-up {
  transform: translateY(-100%);
}
.intro-video-sec video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.custom-nav .scroll-btn {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 20px;
  left: calc(50% - 30px); /* perfectly center */
  z-index: 99;
  cursor: pointer;
  overflow: hidden; /* prevent overlap flicker */
}

/* Stack both images */
.scroll-btn .scroll-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 75px;
  transition: opacity 0.3s ease-in-out; /* smooth fade */
}

/* Show default */
.scroll-btn .normal {
  opacity: 1;
}

/* Hide hover image */
.scroll-btn .hover {
  opacity: 0;
}

/* On hover → swap images */
.scroll-btn:hover .normal {
  opacity: 0;
}

.scroll-btn:hover .hover {
  opacity: 1;
}

/* @keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-10px);
  }
} */
.custom-nav .scroll-btn img {
  width: 100%;
  max-width: 75px; /* control size for scroll button */
  height: auto;
  display: block;
  margin: auto;
}

.intro-video .owl-animate-fadeOut,
.intro-video .owl-animate-fadeIn {
  animation: none !important;
}

/* ================================
   Footer Scoped Styles
   ================================ */
.watermelon-footer {
  color: #fff;
  padding: 60px 0 20px;
  background: linear-gradient(to top, #002c43, #000e1a);
}

.watermelon-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.watermelon-footer .footer-sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/* Left Side */
.watermelon-footer .footer-left {
  display: flex;
  gap: 60px;
}

.watermelon-footer .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.watermelon-footer .footer-menu li {
  margin-bottom: 12px;
}

.watermelon-footer .footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.watermelon-footer .footer-menu a:hover {
  color: #66ff33; /* hover effect */
}

/* Right Side */
.watermelon-footer .footer-right {
  text-align: right;
}

.watermelon-footer .signup-title {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 400;
}

.watermelon-footer .signup-form {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.watermelon-footer .signup-form input {
  padding: 12px 14px;
  border: none;
  outline: none;
  background: #123b2f; /* dark green input bg */
  color: #fff;
  font-size: 14px;
  width: 260px;
}

.watermelon-footer .signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.watermelon-footer .signup-form button {
  background: #000; /* button bg black */
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 0 15px;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watermelon-footer .signup-form button img {
  max-width: 10px;
}

.watermelon-footer .signup-form button:hover {
  background: #111;
}

.watermelon-footer .footer-copy {
  font-size: 13px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.client-gallery .owl-dots {
  position: absolute;
  bottom: -50px !important;
  right: 140px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  z-index: 9999 !important;
}

.client-gallery .owl-dot {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.client-gallery .owl-dot span {
  display: block !important;
  width: 60px !important;
  height: 3px !important;
  background: #0076a8 !important;
  transition: all 0.3s ease !important;
}

.client-gallery .owl-dot.active span {
  background: #7aff00 !important;
  width: 55px !important;
}

.client-gallery .owl-nav {
  position: absolute !important;
  bottom: -55px !important;
  right: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 20px !important;
  z-index: 9999 !important;
}

.client-gallery .owl-nav button {
  border: none !important;
  outline: none !important;
  padding: 10px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.3s ease !important;
}

.client-gallery .owl-nav button:hover {
  background: transparent !important;
}

.client-gallery .owl-nav button img {
  filter: brightness(0) saturate(100%) invert(74%) sepia(92%) saturate(697%)
    hue-rotate(65deg) brightness(106%) contrast(106%) !important;
  width: 20px !important;
}

.scroll-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.show-case .owl-nav .disabled,
.clients-tele .owl-nav .disabled {
  display: none !important;
  opacity: 0 !important;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; /* always full screen width */
  height: 100vh; /* always full screen height */
  background: url("../img/loader.gif") center center no-repeat;
  background-size: cover; /* stretch GIF to cover */
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* smooth fade-out */
  opacity: 1;
  visibility: visible;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden; /* hide only after fade */
  pointer-events: none; /* no click blocking */
}

#loader img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes GIF always fill area */
  display: block;
}

.loader-mobile {
  display: none !important;
}
.custom-nav .skip-intro-btn {
  position: absolute;
  bottom: 50px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}

.custom-nav .skip-intro-btn .skip-img {
  width: 100%;
  max-width: 100px; /* control size for skip button */
  height: auto;
  display: block;
}

/* Hide hover image by default */
.custom-nav .skip-intro-btn .hover {
  display: none;
}

/* On hover: show hover image, hide normal image */
.custom-nav .skip-intro-btn:hover .normal {
  display: none;
}

.custom-nav .skip-intro-btn:hover .hover {
  display: block;
}

.replay-intro-btn {
  position: absolute;
  bottom: 50px;
  right: 20px;
  z-index: 2;
  cursor: pointer;
}

.replay-intro-btn .replay-img {
  max-width: 125px;
  width: 100%;
  height: auto;
  display: block;
}

/* hide hover by default */
.replay-intro-btn .hover {
  display: none;
}

/* swap on hover */
.replay-intro-btn:hover .normal {
  display: none;
}
.replay-intro-btn:hover .hover {
  display: block;
}

.casestudy-detail .ideas {
  padding: 100px 0;
  font-size: 48px;
  margin: 0;
  line-height: 50px;
  letter-spacing: 2px;
  color: #666;
  font-family: "Figtree-Regular";
}

.casestudy-detail .ideas span {
  font-weight: 900;
  font-size: 30px;
}

/* lock page scroll while intro is active */
/* lock page scroll while intro is active */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

/* smooth exit animation for the intro block */
.intro-video {
  will-change: transform, opacity;
  transition: transform 600ms ease, opacity 600ms ease;
  transform: translateY(0);
  opacity: 1;
}

.intro-video .scroll-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}

.intro-video .scroll-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.24s ease, visibility 0s;
}
