:root {
  --primary-gold: #b5916f;
  --dark-bg: #0b0f14;
  --overlay-dark: rgba(0, 0, 0, 0.75);
}
@font-face {
  font-family: "IvyPrestoText";
  src: url("../fonts/fonnts.com-Ivy-Presto-Text-.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "IvyPrestoText";
  src: url("../fonts/fonnts.com-Ivy-Presto-Text-Light.otf") format("opentype");
  font-weight: 300;
}

@font-face {
  font-family: "IvyPrestoText";
  src: url("../fonts/fonnts.com-Ivy-Presto-Text-Semi-Bold.otf")
    format("opentype");
  font-weight: 600;
}

@font-face {
  font-family: "IvyPrestoDisplay";
  src: url("../fonts/fonnts.com-Ivy-Presto-Display-Light.otf")
    format("opentype");
  font-weight: 300;
  font-style: italic;
}

body {
  font-family: "IvyJournal", serif;
}
body {
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-buttons {
  font-weight: 900;
} /* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 160px;
}

.hero-title {
  font-family: "IvyPrestoText", serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.3;
}

.gold {
  color: #b5916f;
  font-weight: 600;
}

.italic-text {
  font-family: "IvyPrestoDisplay", serif;
  font-weight: 200;
  color: #b5916f;
}

/* Subtext */
.hero-subtext {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 400;
  color: #e0e0e0;
  max-width: 440px;
  line-height: 1.7;
}

/* Buttons */
.btn-gold {
  background: var(--primary-gold);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.btn-gold:hover {
  background: #d8b882;
  color: #fff;
}

.btn-light-custom {
  background: #ffffff;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  border: none;
  font-weight: 600;
}

.btn-light-custom:hover {
  background: #eaeaea;
}

/* STATS CARD */
.stats-card {
  background: #f1f1f1;
  width: 220px;
  padding: 13px 26px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.stats-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.stats-card p {
  font-size: 17px;
  font-weight: 400;
  color: #282828;
  margin-bottom: 10px;
}

.stats-card p:last-child {
  margin-bottom: 0;
}

.stats-card .gold {
  color: #b4926c;
  background: none;
  -webkit-text-fill-color: #b4926c;
}

.stats-card .teal {
  color: #05948b;
}

.stats-card .purple {
  color: #a544e2;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.stats-floating {
  position: absolute;
  right: -20px;
  top: 60%;
  transform: translateY(-50%);
  z-index: 3;
}

.cta-arrow {
  color: #b5916f;
  transition: 0.3s ease;
  font-size: 16px;
  display: inline-block;
}

.nav-cta-btn:hover .cta-arrow {
  color: #000;
}

/* ================= RESPONSIVE STYLES ================= */

/* Large Desktop (1200px and up) */
@media (min-width: 1400px) {
  .hero-title {
    font-size: 56px;
  }

  .stats-floating {
    right: 5%;
  }
}

/* Desktop (992px to 1199px) - Keep original layout */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 44px;
    letter-spacing: 2px;
  }

  .hero-content {
    margin-top: 180px;
  }

  .stats-floating {
    right: -10px;
  }

  .stats-card {
    width: 200px;
    padding: 12px 22px;
  }

  .stats-card h3 {
    font-size: 24px;
  }

  .stats-card p {
    font-size: 16px;
  }
}

/* Tablet Landscape (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content {
    margin-top: 150px;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
    letter-spacing: 2px;
  }

  .hero-subtext {
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: 900;
  }

  .hero-buttons .btn-gold,
  .hero-buttons .btn-light-custom {
    padding: 10px 5px;
    font-weight: 900;
    font-size: 16px;
  }

  .stats-floating {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 50px;
    display: flex;
    justify-content: center;
  }

  .stats-card {
    width: 280px;
    margin: 0 auto;
  }
}

/* Mobile Styles - All screens below 768px */
@media (max-width: 767px) {
  .hero-content {
    margin-top: 130px;
    text-align: left !important;
    padding: 0 15px;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: 1.5px;
    line-height: 1.2;
  }

  .hero-subtext {
    font-size: 16px;
    max-width: 100%;
    margin-top: 20px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-weight: 900;
  }

  .hero-buttons .btn-gold,
  .hero-buttons .btn-light-custom {
    width: auto;
    min-width: 200px;
    text-align: center;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 900;
  }

  .stats-floating {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin-top: 35px;
    display: flex !important;
    justify-content: flex-start !important;
    left: 0;
  }

  .stats-card {
    width: 240px;
    padding: 12px 22px;
    margin: 0 !important;
    margin-left: 15px !important;
  }

  .stats-card h3 {
    font-size: 24px;
  }

  .stats-card p {
    font-size: 15px;
  }
}

/* Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .hero-buttons .btn-gold,
  .hero-buttons .btn-light-custom {
    min-width: 180px;
    padding: 10px 20px;
    font-weight: 900;
  }

  .stats-card {
    width: 220px;
    padding: 10px 18px;
    margin-left: 15px !important;
  }

  .stats-card h3 {
    font-size: 22px;
  }

  .stats-card p {
    font-size: 14px;
  }
}
/* ================= WHAT WE DO SECTION ================= */

.what-we-do {
  padding: 48px 0;
  background: #fff;
}

.what-we-do .container-fluid > h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.what-we-do .container-fluid > p {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.6;
}

.service-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  padding: 40px 30px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s ease;
}

.card-one {
  background: #e4e4e4;
}

.card-one .card-content h3 {
  color: #000;
}

.card-one .card-content p {
  color: #000;
}

.card-two,
.card-three,
.card-four {
  background: #b3926f;
}

.card-content {
  max-width: 100%;
  cursor: pointer;

  z-index: 2;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
}

.card-one .card-content h3 {
  color: #000;
}

.card-content p {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 40px;
  color: #fff;
  margin-bottom: 0px;
}

.card-one .card-content p {
  color: #000;
}

.card-one .card-content .know-more {
  color: #000;
}

.card-one .card-content .know-arrow {
  color: #b3926f;
}

.card-content .know-arrow {
  color: black;
}

.know-more {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  text-decoration: none;
  position: absolute;
  bottom: 40px;
  right: 30px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  border-bottom: 1px solid transparent;
}

.card-one .know-more {
  color: #000;
}

.know-more:hover {
  border-bottom-color: #000;
}

.card-image {
  position: absolute;
  top: 60%;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 1;
}

.card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.card-one:hover .card-image {
  transform: translateY(-50%) translateX(-100%);
}

.card-two:hover .card-image,
.card-four:hover .card-image {
  opacity: 0;
}

.card-three .card-image {
  transform: translateY(-50%);
  transition:
    transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.card-three:hover .card-image {
  transform: translateY(-50%) translate(100%, 100%);
  opacity: 0;
}

.service-card:hover .card-content p {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.2s;
}

.service-card:hover .know-more {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.service-card:not(:hover) .card-content p,
.service-card:not(:hover) .know-more {
  transition-delay: 0s;
}

@media (min-width: 1400px) {
  .service-card {
    height: 550px;
    padding: 50px 35px;
  }

  .card-content h3 {
    font-size: 24px;
  }

  .card-content p {
    font-size: 18px;
    margin-top: 50px;
  }

  .know-more {
    font-size: 18px;
    bottom: 50px;
    right: 35px;
  }
}

@media (max-width: 1399px) and (min-width: 1200px) {
  .service-card {
    height: 480px;
    padding: 35px 25px;
  }

  .card-content h3 {
    font-size: 20px;
  }

  .card-content p {
    font-size: 15px;
    margin-top: 35px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .service-card {
    height: 450px;
    padding: 30px 20px;
  }

  .card-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .card-content p {
    font-size: 14px;
    margin-top: 25px;
  }

  .know-more {
    font-size: 14px;
    bottom: 30px;
    right: 20px;
  }
}

@media (max-width: 767px) {
  .what-we-do {
    padding: 60px 0;
  }

  .what-we-do .container-fluid > h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .what-we-do .container-fluid > p {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .service-card {
    height: 380px;
    padding: 30px 25px;
  }

  .card-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .card-content p {
    font-size: 14px;
    margin-top: 25px;
  }

  .know-more {
    font-size: 14px;
    bottom: 30px;
    right: 25px;
  }

  .card-image {
    top: 75%;
  }
}

@media (max-width: 575px) {
  .service-card {
    height: 350px;
    padding: 25px 20px;
  }

  .card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .card-content p {
    font-size: 13px;
    margin-top: 20px;
  }

  .know-more {
    font-size: 13px;
    bottom: 25px;
    right: 20px;
  }

  .what-we-do .container-fluid > h2 {
    font-size: 28px;
  }

  .what-we-do .container-fluid > p {
    font-size: 14px;
  }

  .card-image {
    top: 80%;
  }
}
@media (max-width: 767px) {
  .what-we-do {
    padding: 60px 0;
  }

  .what-we-do .container-fluid > h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .what-we-do .container-fluid > p {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .service-card {
    height: 380px;
    padding: 30px 25px;
  }

  .card-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .card-content p {
    font-size: 14px;
    margin-top: 25px;
  }

  .know-more {
    font-size: 14px;
    bottom: 30px;
    right: 25px;
  }

  .card-image {
    top: 65%;
  }
}

@media (max-width: 575px) {
  .service-card {
    height: 350px;
    padding: 25px 20px;
  }

  .card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .card-content p {
    font-size: 13px;
    margin-top: 20px;
  }

  .know-more {
    font-size: 13px;
    bottom: 25px;
    right: 20px;
  }

  .what-we-do .container-fluid > h2 {
    font-size: 28px;
  }

  .what-we-do .container-fluid > p {
    font-size: 14px;
  }

  .card-image {
    top: 70%;
  }
}

/* ============== who we are=============== */
.who-we-are-section {
  background: #fff;
  padding-top: 0rem;
  padding-bottom: 48px;
}

@media (min-width: 1200px) {
  .who-we-are-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* VIDEO FIX */
.video-wrapper {
  position: relative;
  overflow: hidden;
  height: 480px;
}

.custom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Show controls only on hover */
.video-wrapper video {
  controls: false;
}

.video-wrapper:hover video {
  controls: true;
}

/* RIGHT SIDE */
.content-side {
  padding-left: 3rem;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 0;
}
.section-title-who {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 5px;
}

.title-underline {
  width: 70px;
  height: 3px;
  background-color: var(--primary-gold);
  margin: 0px 0 10px 0;
}

.section-text {
  font-size: 16px;
  line-height: 1.6;
  color: #2b2b2b;
  max-width: 520px;
}

/* BUTTON */
.learn-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border: 1px solid #ccc;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.3s ease;
}

.learn-arrow {
  color: var(--primary-gold);
  transition: 0.3s ease;
}
.learn-btn:hover .learn-arrow {
  color: #000;
}
.learn-btn:hover {
  background-color: var(--primary-gold);
  color: #fff;
  border-color: var(--primary-gold);
}

@media (max-width: 1199px) {
  .who-we-are-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  .content-side {
    padding-left: 0;
    padding-right: 0;
    margin-top: 30px;
    text-align: center;
  }

  .section-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .title-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .video-wrapper {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .content-side {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 25px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-text {
    font-size: 16px;
    padding: 0 5px;
  }

  .video-wrapper {
    height: 350px;
  }
}

@media (max-width: 575px) {
  .content-side {
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-text {
    font-size: 15px;
    padding: 0;
  }

  .video-wrapper {
    height: 280px;
  }

  .learn-btn {
    padding: 10px 24px;
    font-size: 15px;
  }
}

/* Small mobile devices */
@media (max-width: 375px) {
  .video-wrapper {
    height: 220px;
  }

  .section-title {
    font-size: 26px;
  }
}

/* ============why choose ============== */
.why-choose-section {
  background: #fff; /* screenshot background */
}

/* Small Title */
.small-title {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 24px;
}

/* Main Title */
.main-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f1f1f;
}

/* Cards */
.why-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

/* Icon Box */
.icon-box {
  width: 45px;
  height: 45px;
  background: var(--primary-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  color: #fff;
  font-size: 22px;
}

.icon-img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
/* Card Title */
.why-card h5 {
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 8px;
}

/* Card Text */
.why-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .main-title {
    font-size: 30px;
  }

  .why-card {
    padding: 25px;
  }
}

/* Clients SECTION */
.clients-section {
  background: #ffffff; /* screenshot background */
  padding: 48px 0; /* py-5 exact */
}

/* Desktop px-16 */
@media (min-width: 1200px) {
  .clients-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* Title */
.clients-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f1f1f;
}

/* Subtitle */
.clients-subtitle {
  font-size: 16px;
  color: #4d4d4d;
  max-width: 800px;
  margin: 8px auto 0;
}

/* SLIDER */
.clients-slider {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

/* Track */
.clients-track {
  display: flex;
  margin-top: 20px;
  align-items: center;
  gap: 80px;
  animation: scroll 5s linear infinite;
}

/* Logo */
.clients-track img {
  height: 90px;
  opacity: 1;
  transition: 0.3s ease;
}

.clients-track img:hover {
  opacity: 1;
  transform: scale(1.05);
  cursor: pointer;
}

/* Infinite Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .clients-title {
    font-size: 24px;
  }

  .clients-track {
    gap: 40px;
  }

  .clients-track img {
    height: 40px;
  }
}

/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section {
  background: #f2f1ef;
  padding: 48px 0;
}

@media (min-width: 1200px) {
  .testimonial-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* Badge */
.badge-pill {
  background: #b5916f;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.3px;
  display: inline-block;
}

/* Main Title */
.testimonial-title {
  font-size: 34px;
  font-weight: 700;
  color: #222222;
  line-height: 1.2;
  margin-top: 18px;
}

/* Quote icon */
.quote-icon {
  margin: 10px 0 10px 0;
}

.quote-icon img {
  width: 40px;
  height: auto;
}

/* Stars */
.stars {
  color: #ffde01; /* brighter gold */
  font-size: 30px;
  letter-spacing: 1px;
}

/* Testimonial Text */
.testimonial-text {
  max-width: 500px;
  margin: 5px auto 5px auto;
  font-size: 17px;
  line-height: 1.8;
  color: #000;
  font-weight: 400;
}

/* Client Name */
.client-name {
  font-weight: 700;
  font-size: 18px;
  margin-top: 22px;
  color: #111111;
}

/* Company */
.client-company {
  color: #8a8a8a;
  font-size: 16px;
  margin-top: 5px;
}

/* Carousel Inner */
.carousel-inner {
  min-height: 300px;
  display: flex;
  align-items: center;
}

/* Carousel Items */
.carousel-item {
  padding: 10px 0;
}

.carousel-item .quote-icon {
  margin-top: 10px;
  margin-bottom: 20px;
}

.carousel-item .stars {
  margin-bottom: 25px;
}

.carousel-item .testimonial-text {
  margin: 0 auto 30px auto;
}

.carousel-item .client-name {
  margin-top: 35px;
}

.carousel-item .client-company {
  margin-top: 8px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 40% !important;
  height: 60px;
  top: 30%;
  transform: translateY(-50%);
  opacity: 1;
  padding: 0;
}

/* Position arrows properly */
.carousel-control-prev {
  left: 40px; /* adjust spacing */
}

.carousel-control-next {
  right: 40px; /* adjust spacing */
}

/* Make arrow container small and centered */
.custom-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrow icon style */
.arrow-icon {
  font-size: 34px;
  color: #222;
  font-weight: 300;
}
/* Responsive */
@media (max-width: 1200px) {
  .carousel-control-prev {
    left: -10px;
  }

  .carousel-control-next {
    right: -10px;
  }
}

@media (max-width: 992px) {
  .testimonial-title {
    font-size: 32px;
  }

  .testimonial-text {
    font-size: 17px;
  }

  .badge-pill {
    font-size: 16px;
    padding: 10px 24px;
  }

  .arrow-icon {
    font-size: 28px;
  }

  .carousel-control-prev {
    left: -5px;
  }

  .carousel-control-next {
    right: -5px;
  }
}

@media (max-width: 768px) {
  .testimonial-title {
    font-size: 28px;
  }

  .carousel-inner {
    min-height: 350px;
  }

  .arrow-icon {
    font-size: 26px;
  }

  .carousel-control-prev {
    left: 0px;
  }

  .carousel-control-next {
    right: 0px;
  }

  .stars {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .carousel-control-prev,
  .carousel-control-next {
    padding: 5px; /* Even smaller padding on mobile */
  }

  .arrow-icon {
    font-size: 24px;
  }

  .testimonial-text {
    font-size: 16px;
    padding: 0 15px;
  }

  .badge-pill {
    font-size: 14px;
    padding: 8px 18px;
  }

  .client-name {
    font-size: 20px;
  }

  .client-company {
    font-size: 16px;
  }
}

/* ================= CTA SECTION ================= */

.cta-section {
  background: #fff; /* exact warm grey from screenshot */
  padding: 3rem 0; /* py-12 */
}

/* px-16 desktop */
@media (min-width: 1200px) {
  .cta-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* Title */
.cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #222222;
  line-height: 1.3;
  margin-bottom: 18px;
}

/* Subtitle */
.cta-subtitle {
  font-size: 16px;
  color: #000;
  max-width: 720px;
  margin: 0 auto 28px auto;
  line-height: 1.7;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-gold);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #a37e5d;
  color: #ffffff;
}

/* Arrow */
.cta-btn .arrow {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-title {
    font-size: 26px;
  }

  .cta-subtitle {
    font-size: 14px;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* ================= CONTACT PAGE ================= */

/* SECTION */
.contact-section {
  background: #fff;
  padding: 8px 0px;
}

@media (min-width: 1200px) {
  .contact-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* Main Heading */
.contact-main-title {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  max-width: 1200px;
}

/* Highlight with Background Image */
.highlight-text {
  position: relative;
  display: inline-block;
}

/* Alternative: Use an actual image file */
.highlight-bg {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 60px;
  background-image: url("/assets/images/contactus/bg-text.png");
  background-repeat: repeat-x;
  background-size: contain;
  background-position: bottom;
  z-index: -1;
  pointer-events: none;
}

/* Paragraph */
.contact-desc {
  font-size: 17px;
  color: #000;
  line-height: 1.8;
  max-width: 590px;
  margin-top: 12px;
}

.contact-desc a {
  color: var(--primary-gold);
  text-decoration: underline;
  font-weight: 500;
}
.contact-desc-team {
  font-size: 17px;
  color: #000;
  line-height: 1.8;
  max-width: 800px;
  margin-top: 12px;
}
.contact-desc-team a {
  color: var(--primary-gold);
  text-decoration: underline;
  font-weight: 500;
}

/* Contact Us Title */
.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

/* Cards */
.contact-card {
  background: #f4efe9;
  border-radius: 18px;
  padding: 10px 10px;
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 24px;
  color: #333;
}

.contact-label {
  margin-top: 10px;
  font-size: 17px;
  color: #000;
}

.contact-value {
  font-size: 17px;
  font-weight: 600;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-main-title {
    font-size: 24px;
  }

  .highlight-bg {
    height: 25px;
    background-size: 80px 25px;
  }

  .contact-title {
    font-size: 22px;
  }

  .contact-card {
    padding: 25px 15px;
  }
}

@media (max-width: 576px) {
  .highlight-bg {
    height: 20px;
    background-size: 60px 20px;
    bottom: 3px;
  }
}
.contact-card img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  /* Section side breathing space */
  .contact-section {
    padding: 48px 20px; /* keep py-5, add side padding */
  }

  /* Heading scale */
  .contact-main-title {
    font-size: 28px;
    line-height: 1.35;
    max-width: 100%;
  }

  /* Brush scale */
  .highlight-bg {
    height: 34px;
    bottom: -2px;
    background-size: 100% 100%;
  }

  /* Paragraph full width */
  .contact-desc,
  .contact-desc-team {
    font-size: 16px;
    max-width: 100%;
  }

  /* Contact title */
  .contact-title {
    font-size: 26px;
  }

  /* Cards spacing */
  .contact-card {
    padding: 22px 18px;
  }

  .contact-label {
    font-size: 16px;
  }

  .contact-value {
    font-size: 16px;
  }
}
/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .contact-section {
    padding: 40px 15px;
  }

  /* Heading compact */
  .contact-main-title {
    font-size: 22px;
    line-height: 1.4;
  }

  /* Brush adjust */
  .highlight-bg {
    height: 22px;
    bottom: -3px;
    background-size: 100% 100%;
  }

  /* Paragraph tighten */
  .contact-desc,
  .contact-desc-team {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Contact title */
  .contact-title {
    font-size: 22px;
    margin-top: 20px;
  }

  /* Cards stack clean */
  .contact-card {
    padding: 20px 15px;
    border-radius: 14px;
  }

  .contact-card img {
    width: 28px;
    height: 28px;
  }

  .contact-label {
    font-size: 15px;
  }

  .contact-value {
    font-size: 15px;
  }
}

/***========Second Section========***/
.contact-form-section {
  background: #fff;
}

/* Title */
.form-title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
}

.form-desc {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  max-width: 780px;
}

/* Labels */
.form-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Inputs */
.form-control,
.form-select {
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 14px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: var(--primary-gold);
}

/* Button */
.send-btn {
  background: var(--primary-gold);
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s ease;
}

.send-btn:hover {
  background: #a37e5d;
}

/* MAP */
.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.map-wrapper iframe {
  width: 100%;
  height: 80%;
  margin-bottom: 80px;
  border: 0;
}

/* Mobile */
@media (max-width: 992px) {
  .map-wrapper {
    height: 350px;
    margin-top: 20px;
  }
}

/****================== Sub Service Page ================= */
.service-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  margin-bottom: 18px;
}

.subservice-line {
  width: 100%;
  margin: 0px 0px;
  height: 2px;
  background-color: #e1d4c7;
}
/* SECTION */
.service-section {
  background: #ffffff;
  width: 100%;
}

/* Title */
.services-title {
  font-size: 32px;
  font-weight: 900;
  color: #222;
  margin-bottom: 18px;
}

/* Text */
.service-text {
  font-size: 19px;
  color: #4e4e4e;
  line-height: 1.7;
  max-width: 500px;
}

/* List */
.service-list {
  padding-left: 0;
  list-style-position: inside;
  color: #4e4e4e;
  font-size: 19px;
  line-height: 1.3;
  max-width: 500px;
}

.service-list li {
  margin-bottom: 6px;
}

/* IMAGE WRAPPER */
.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* Main Image */
.main-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Background Shape Image */
.bg-shape {
  position: absolute;
  width: 40%;
  height: 120%;
  z-index: 1;
  opacity: 0.5;
}

/* First Image (Top Left Exit) */
.left-offset .bg-shape {
  top: -30px;
  left: -0px;
}

/* Second Image (Bottom Right Exit) */
.right-offset .bg-shape {
  bottom: -30px;
  right: -0px;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
  .services-title {
    font-size: 28px;
  }

  .service-text,
  .service-list {
    font-size: 16px;
  }

  .image-wrapper {
    max-width: 400px;
  }

  .bg-shape {
    width: 25%;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .services-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .service-text,
  .service-list {
    font-size: 15px;
    text-align: center;
  }

  .service-list {
    padding-left: 0;
    list-style-type: none;
  }

  .service-list li {
    padding: 4px 0;
  }

  .image-wrapper {
    max-width: 350px;
    margin-bottom: 20px;
  }

  .bg-shape {
    display: none; /* Hide offset on mobile */
  }

  .row {
    --bs-gutter-y: 2rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .services-title {
    font-size: 22px;
  }

  .service-text,
  .service-list {
    font-size: 14px;
  }

  .image-wrapper {
    max-width: 280px;
  }
}

/* Desktop Large */
@media (min-width: 1400px) {
  .service-section .container {
    max-width: 1320px;
  }

  .services-title {
    font-size: 36px;
  }

  .service-text,
  .service-list {
    font-size: 18px;
    max-width: 600px;
  }

  .image-wrapper {
    max-width: 600px;
  }
}

/* ===== SERVICES HERO SECTION ===== */

.services-hero-section {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 3rem;
  color: #fff;
  display: flex;
  align-items: flex-start;
}

/* Desktop px-16 */
@media (min-width: 1200px) {
  .services-hero-section {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 8rem; /* More padding on larger screens */
  }
}

/* Background Video */
.services-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Content */
.services-hero-content {
  position: relative;
  z-index: 3;
  margin-top: 5vh; /* Added viewport-based margin */
}

/* Title */
.services-hero-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Divider */
.services-hero-divider {
  width: 80%;
  height: 1px;
  background: #b1b2b4;
  margin-bottom: 20px;
}

/* Text */
.services-hero-text {
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
}

/* Button */
.services-hero-btn {
  display: inline-block;
  background: #ffffff;
  color: #111;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.services-hero-btn:hover {
  background: var(--primary-gold);
  color: #fff;
}

/* Tablet */
@media (min-width: 992px) and (max-width: 1199px) {
  .services-hero-section {
    padding-top: 7rem;
  }

  .services-hero-title {
    font-size: 38px;
  }

  .services-hero-content {
    margin-top: 4vh;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .services-hero-section {
    min-height: 80vh;
    padding-top: 5rem;
    align-items: flex-start;
  }

  .services-hero-title {
    font-size: 30px;
  }

  .services-hero-text {
    font-size: 16px;
    max-width: 100%;
  }

  .services-hero-btn {
    padding: 12px 22px;
  }

  .services-hero-content {
    margin-top: 3vh;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .services-hero-section {
    padding-top: 4rem;
    min-height: 70vh;
  }

  .services-hero-title {
    font-size: 24px;
  }

  .services-hero-text {
    font-size: 14px;
  }

  .services-hero-content {
    margin-top: 2vh;
  }
}

/* Large Desktop */
@media (min-width: 1600px) {
  .services-hero-section {
    padding-top: 10rem;
  }

  .services-hero-title {
    font-size: 42px;
  }

  .services-hero-text {
    font-size: 20px;
    max-width: 900px;
  }

  .services-hero-btn {
    padding: 16px 32px;
    font-size: 18px;
  }

  .services-hero-content {
    margin-top: 8vh;
  }
}
.stagger-down .overlay-text {
  bottom: 100px;
}
/*==========What We Do Section===============*/
.what-we-do-section {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f3f3f3 55%,
    var(--primary-gold) 55%,
    var(--primary-gold) 100%
  );
  overflow: hidden;
  width: 100%;
  padding: 0;
}

.title-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.slider-full-width {
  width: 100%;
  overflow: hidden;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding-left: 4rem;
  padding-right: 4rem;
}

.slider-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 0px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
}

.stagger-down .service-overlay-content {
  bottom: 80px;
}

.service-slide {
  flex: 0 0 25%;
  max-width: 25%;
  box-sizing: border-box;
}

@media (min-width: 1201px) {
  .service-slide {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.service-slider-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  margin: 0;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.service-slider-item .image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.service-slider-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  margin: 0;
  padding: 0;
}

.service-slider-item:hover img {
  transform: scale(1.05);
}

.stagger-down .image-wrapper {
  transform: translateY(-60px);
}

.stagger-up .image-wrapper {
  transform: translateY(50px);
}

.service-overlay-content {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  width: 92%;
  margin: 0 auto;
  padding: 10px 4px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  border-radius: 4px;
  box-sizing: border-box;
  line-height: 1.3;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
  background: transparent;
}

.slider-controls {
  margin-top: 40px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 48px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover:not(:disabled) {
  background: #fff;
  color: var(--primary-gold);
}

.slider-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.progress-track {
  width: 500px;
  height: 8px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}

.progress-indicator {
  height: 100%;
  width: 13%;
  background: #8f755a;
  transition: 0.4s;
}

@media (max-width: 1400px) {
  .title-wrapper,
  .slider-container,
  .slider-controls {
    padding: 0 0px;
    padding-right: 35px;
  }

  .service-slider-item img {
    height: 380px;
  }

  .service-overlay-content {
    font-size: 18px;
    bottom: 20px;
  }
}

@media (max-width: 1200px) {
  .service-slide {
    flex: 0 0 calc(33.333% - 1.33px);
  }

  .service-overlay-content {
    font-size: 16px;
    bottom: 20px;
  }

  .service-slider-item img {
    height: 300px;
  }

  .title-wrapper,
  .slider-container,
  .slider-controls {
    padding: 0 32px;
  }
}

@media (max-width: 992px) {
  .service-slide {
    flex: 0 0 calc(50% - 1px);
  }

  .service-slider-item img {
    height: 300px;
  }

  .service-overlay-content {
    bottom: 35px;
  }

  .progress-track {
    width: 250px;
  }

  .title-wrapper,
  .slider-container,
  .slider-controls {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .service-overlay-content {
    font-size: 14px;
    bottom: 60px;
    width: 94%;
    -webkit-line-clamp: 2;
  }

  .service-slider-item img {
    height: 260px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .stagger-down .image-wrapper {
    transform: translateY(-40px);
  }

  .stagger-up .image-wrapper {
    transform: translateY(30px);
  }

  .progress-track {
    width: 200px;
  }

  .slider-controls {
    gap: 15px;
  }

  .title-wrapper,
  .slider-container,
  .slider-controls {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .service-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-slider-item img {
    height: 260px;
  }

  .service-overlay-content {
    bottom: 10px;
    padding: 10px 8px;
    font-size: 13px;
    width: 96%;
    -webkit-line-clamp: 2;
  }

  .stagger-down .image-wrapper {
    transform: translateY(-30px);
  }

  .stagger-up .image-wrapper {
    transform: translateY(20px);
  }

  .progress-track {
    width: 100%;
    max-width: 300px;
  }

  .slider-controls {
    flex-direction: row;
    gap: 15px;
  }

  .title-wrapper,
  .slider-container,
  .slider-controls {
    padding: 0 16px;
  }
}
/*================ Services Solutions Section ==================*/

.solutions-section {
  background: #ffffff;
}

@media (min-width: 992px) {
  .solutions-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* Image */
.solutions-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Content spacing */
.solutions-content {
  padding-left: 1rem;
}

/* Heading */
.solutions-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Paragraph */
.solutions-text {
  font-size: 18px;
  line-height: 1.7;
  color: #585858;
}

/* Tablet & Mobile */
@media (max-width: 991px) {
  .solutions-content {
    padding-left: 0;
    margin-top: 1rem;
  }

  .solutions-title {
    font-size: 24px;
  }

  .solutions-text {
    font-size: 14.5px;
  }
}

/*===============Toast Styles=================*/
/* Toast notification styles */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}
.toast-message {
  min-width: 300px;
  padding: 16px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease;
  margin-bottom: 10px;
}
.toast-message.success {
  background: #10b981;
}
.toast-message.error {
  background: #ef4444;
}
.toast-message.info {
  background: #3b82f6;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.btn-loading {
  pointer-events: none;
  opacity: 0.7;
}

.services-hero-subtitle {
  background-color: #e7ddd2;
  color: #000;
  padding: 2px 16px;
  border-radius: 18px;
  font-size: 14px;
}

/* ---------- Stats Section ---------- */

.stats-section {
  background: #b3926f;
  padding: 20px 3%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.stat {
  color: white;
  flex: 1;
  min-width: 180px;
  margin: 10px 0;
}

.stat h2 {
  font-size: 36px;
  margin: 0;
  font-weight: 700;
}

.stat p {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

/* ---------- Vision Mission Section ---------- */

.vm-section {
  padding: 70px 6%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.vm-card {
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.vm-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.vm-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
  color: #0f172a;
  font-weight: 600;
}

.vm-card p {
  font-size: 16px;
  color: #475569;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .vm-section {
    grid-template-columns: 1fr;
  }

  .stat h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .stats-section {
    flex-direction: column;
    gap: 20px;
  }

  .stat p {
    font-size: 16px;
  }

  .vm-card {
    padding: 30px;
  }

  .vm-card h3 {
    font-size: 24px;
  }

  .vm-card p {
    font-size: 16px;
  }
}

.expertise-section {
  padding: 0px 5%;
  text-align: center;
}

.expertise-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.expertise-section p {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Cards */
.expertise-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card {
  text-align: left;
  border: none;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 20px;
  color: #b3926f;
  margin-bottom: 12px;
  font-weight: 600;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

/* Responsive */

@media (max-width: 992px) {
  .expertise-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .expertise-section h2 {
    font-size: 28px;
  }

  .expertise-container {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 160px;
  }
}

.digital-section {
  background-image: url("/assets/images/aboutUs/digitalBg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 50px 4%;
  color: white;
}

/* Dark overlay on background */
.digital-section::before {
  content: "";
  position: absolute;
  inset: 0;
}

.digital-container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Content */

.digital-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.digital-content p {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 30px;
  font-weight: normal;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.feature-icon1 {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-top: 3px;
}

.feature h {
  display: block;
  font-size: 18px;
}

.feature span {
  font-size: 15px;
  color: #cbd5e1;
}

/* Image */

.digital-image {
  position: relative;
}

.digital-image img {
  width: 110%;
  min-height: 5% !important;
  border-radius: 12px;
  margin-right: 12px !important;
}
/* Responsive */

@media (max-width: 900px) {
  .digital-container {
    grid-template-columns: 1fr;
  }

  .digital-content h2 {
    font-size: 28px;
  }

  .cloud-badge {
    left: 10px;
  }
}

.methodology-section {
  padding: 80px 4%;
  text-align: center;
}

.industry-section {
  padding: 20px 5%;
  text-align: center;
}

.methodology-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.industry-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.subtitle {
  color: #222222;
  margin-bottom: 50px;
  font-size: 16px;
}

/* Grid */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* Card */

.method-card {
  padding: 15px 12px;
  border-radius: 10px;
  border: 1px solid #cfd8e3;
}

.method-card1 {
  padding: 20px 20px;
  border-radius: 10px;
  border: 1px solid #cfd8e3;
}

.method-icon {
  width: 30px;
  height: 26px;
  margin-bottom: 15px;
}

.method-card h3 {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 10px;
  font-weight: 600;
}

.method-card1 h3 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 10px;
  font-weight: 600;
}

.method-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .methodology-section h2 {
    font-size: 28px;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
  }
}

.trust-section {
  padding: 20px 5%;
}

.trust-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT CONTENT */
.trust-left h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.trust-left p {
  color: #000000;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* LIST */
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

.trust-item {
  font-size: 16px;
  color: #0f172a;
  font-weight: 800;
}

/* RIGHT IMAGE GRID */

.trust-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trust-images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #1e293b;
}

.check-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Different heights */
.img1 {
  margin-top: 24px;
  height: 220px;
}
.img2 {
  height: 260px;
}
.img3 {
  height: 260px;
}
.img4 {
  height: 220px;
}

@media (max-width: 992px) {
  .trust-container {
    grid-template-columns: 1fr;
  }

  .trust-images {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .trust-left h2 {
    font-size: 28px;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .trust-images {
    grid-template-columns: 1fr;
  }

  .trust-images img {
    height: 220px;
  }
}

.leadership-section {
  padding: 90px 8%;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 50px;
}

/* GRID */

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */

.leader-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

.leader-card h3 {
  margin-top: 15px;
  font-size: 18px;
  color: #1e293b;
}

.leader-card p {
  color: #b8946c;
  font-size: 14px;
  margin-top: 5px;
}

/* TABLET */

@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 28px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leader-card img {
    height: 280px;
  }
}

.cta-section {
  padding: 40px 4%;
  text-align: center;
}

.cta-container h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.cta-container p {
  color: #64748b;
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #b8946c;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline {
  border: 1px solid #d1d5db;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  transition: 0.3s;
}

@media (max-width: 600px) {
  .cta-container h2 {
    font-size: 26px;
  }

  .cta-container p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-outline {
    width: 220px;
  }
}

/* HERO SECTION */
.careers-culture-section {
  background: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.careers-culture-title {
  font-size: clamp(28px, 6vw, 35px);
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.careers-culture-desc {
  font-size: clamp(15px, 2.2vw, 17px);
  color: #333333;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  margin-bottom: 40px;
  padding: 0 12px;
}

.careers-culture-card {
  padding: 24px 16px 20px;
  border-radius: 24px;
  height: 100%;
  transition: box-shadow 0.2s ease;
}
/* ================= CAREERS HERO ================= */
@media (max-width: 768px) {
  .careers-hero {
    padding: 90px 0;
  }

  .careers-hero-title {
    font-size: 30px;
  }

  .careers-hero-text {
    font-size: 14px;
    padding: 0 10px;
  }
}
/* ================= CAREERS HERO ================= */

.careers-hero {
  position: relative;
  background-image: url("/assets/images/careers/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 460px;
  padding: 120px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENT */

.careers-hero-content {
  max-width: 720px;
  margin: auto;
}

/* TITLE */

.careers-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

/* TEXT */

.careers-hero-text {
  font-size: 16px;
  line-height: 1.7;
  color: #d7d7d7;
  margin-bottom: 30px;
}

/* BUTTON */

.careers-hero-btn {
  display: inline-block;
  background: #c4a27a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.careers-hero-btn:hover {
  background: #b28f68;
  color: #fff;
}
/* ================= TABLET ================= */

@media (max-width: 992px) {
  .careers-hero {
    padding: 100px 20px;
    min-height: 420px;
  }

  .careers-hero-title {
    font-size: 36px;
  }

  .careers-hero-text {
    font-size: 15px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .careers-hero {
    padding: 90px 20px;
    min-height: 380px;
  }

  .careers-hero-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .careers-hero-text {
    font-size: 14px;
  }

  .careers-hero-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .careers-hero {
    padding: 80px 16px;
    min-height: 340px;
  }

  .careers-hero-title {
    font-size: 26px;
  }

  .careers-hero-text {
    font-size: 13px;
  }
}
.careers-culture-card h5 {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.careers-culture-card p {
  font-size: clamp(13px, 2.2vw, 17px);
  color: #475569;
  line-height: 1.4;
  max-width: 280px;
}

/* ===== IMAGE CONTAINERS (for custom images) ===== */
.careers-culture-image {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 18px;
  background: #f2ebe3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.careers-culture-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== BENEFITS SECTION ===== */
.careers-benefits-title {
  font-size: clamp(22px, 5vw, 31px);
  font-weight: 700;
  color: #1f2937;
  margin-top: 0;
}

.careers-benefit-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.careers-benefit-item h6 {
  font-size: clamp(15px, 2.5vw, 21px);
  font-weight: 700;
  color: #333333;
  margin-bottom: 4px;
}

.careers-benefit-item p {
  font-size: clamp(13px, 2.2vw, 18px);
  color: #333333;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ===== CHECK ICONS (with custom images) ===== */
.careers-check-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  padding: 6px;
}

.careers-check-icon img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

/* ===== BENEFITS IMAGES GRID ===== */
.careers-benefits-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.careers-benefit-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  object-fit: cover;
  aspect-ratio: 3/3;
  background: #f0f0f0;
  transition: transform 0.3s ease;
}

.careers-benefit-img:hover {
  transform: scale(1.02);
}
.careers-benefit-img1 {
  position: relative;
  top: -30px;
}
/* ===== RESPONSIVE ADJUSTMENTS ===== */
/* Tablet */
@media (max-width: 992px) {
  .careers-benefits-images {
    gap: 16px;
  }

  .careers-culture-card {
    padding: 20px 12px;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .careers-benefits-images {
    gap: 12px;
    margin-bottom: 30px;
  }

  .careers-culture-image {
    width: 60px;
    height: 60px;
    padding: 10px;
  }

  .careers-benefits-content {
    padding: 0 15px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .careers-culture-card {
    padding: 20px 8px;
  }

  .careers-benefit-item {
    gap: 10px;
    margin-bottom: 20px;
  }

  .careers-culture-image {
    width: 55px;
    height: 55px;
    padding: 9px;
  }

  .careers-check-icon {
    width: 24px;
    height: 24px;
    padding: 5px;
  }

  .careers-check-icon img {
    width: 14px;
    height: 14px;
  }
}

/* Small mobile */
@media (max-width: 360px) {
  .careers-culture-card p {
    max-width: 100%;
  }

  .careers-benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .careers-check-icon {
    margin-bottom: 5px;
  }
}

.careers-newsletter-section {
  background: #f8f4f1;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.careers-newsletter-title {
  font-size: 33px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.careers-newsletter-desc {
  font-size: 17px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.careers-newsletter-form {
  gap: 15px;
  flex-wrap: wrap;
}

.careers-email-input {
  background: #b3926e;
  border: none;
  height: 44px;
  width: 260px;
  padding: 0 15px;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.careers-email-input::placeholder {
  color: #ffffffff;
}
.careers-join-btn {
  background: #b3926e;
  border: none;
  height: 44px;
  padding: 0 28px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.careers-join-btn:hover {
  background: #a78460;
}
@media (max-width: 576px) {
  .careers-email-input {
    width: 100%;
  }

  .careers-join-btn {
    width: 100%;
  }

  .careers-newsletter-form {
    flex-direction: column;
    align-items: center;
  }
}

.careers-job-meta img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  padding-right: 6px;
  padding-top: 4px;
}
.careers-job-meta {
  display: flex;
  padding-top: 6px;
  gap: 20px;
}
.careers-job-meta span {
  display: flex;
  font-size: 16px;
}

/* TITLE */

.careers-roles-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 5px;
}

.careers-roles-subtitle {
  font-size: 18px;
  color: #6b7280;
  padding-top: 10px;
}

/* FILTER BUTTONS */

.careers-role-filters {
  display: flex;
  gap: 10px;
}

.careers-filter-btn {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.careers-filter-btn.active {
  background: #fff;
  border-color: #cbd5e1;
}

/* JOB CARD */

.careers-job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 25px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

/* JOB TITLE */

.careers-job-info h5 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

.careers-job-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #6b7280;
}

/* APPLY BUTTON */

.careers-apply-btn {
  background: #b3926e;
  color: #fff;
  border: none;
  padding: 8px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.careers-apply-btn:hover {
  background: #a88460;
}

/* OPEN APPLICATION */

.careers-open-title {
  font-size: 26px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 10px;
}

.careers-open-link {
  color: #b3926f;
  font-weight: 700;
  font-size: 20px;
  text-decoration: underline;
}
/* ================= TABLET ================= */

@media (max-width: 992px) {
  .careers-roles-title {
    font-size: 30px;
  }

  .careers-roles-subtitle {
    font-size: 16px;
  }

  .careers-job-info h5 {
    font-size: 20px;
  }

  .careers-job-meta span {
    font-size: 14px;
  }

  .careers-apply-btn {
    padding: 7px 22px;
    font-size: 15px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .careers-roles-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .careers-role-filters {
    flex-wrap: wrap;
    gap: 8px;
  }

  .careers-filter-btn {
    font-size: 14px;
    padding: 5px 14px;
  }

  .careers-job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
  }

  .careers-job-meta {
    gap: 14px;
    flex-wrap: wrap;
  }

  .careers-job-info h5 {
    font-size: 18px;
  }

  .careers-apply-btn {
    width: 100%;
    text-align: center;
  }

  .careers-open-title {
    font-size: 22px;
  }

  .careers-open-link {
    font-size: 18px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .careers-roles-title {
    font-size: 26px;
  }

  .careers-roles-subtitle {
    font-size: 15px;
  }

  .careers-job-info h5 {
    font-size: 17px;
  }

  .careers-job-meta span {
    font-size: 13px;
  }

  .careers-job-meta img {
    width: 16px;
    height: 16px;
  }

  .careers-filter-btn {
    font-size: 13px;
    padding: 4px 12px;
  }
}
/* NEWSLETTER SECTION */

.careers-newsletter-section {
  background: #f8f4f1;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* TITLE */

.careers-newsletter-title {
  font-size: 28px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 10px;
}

/* DESCRIPTION */

.careers-newsletter-desc {
  font-size: 15px;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

/* FORM */

.careers-newsletter-form {
  gap: 15px;
  flex-wrap: wrap;
}

/* EMAIL INPUT */

.careers-email-input {
  background: #b3926e;
  border: none;
  height: 44px;
  width: 260px;
  padding: 0 15px;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.careers-email-input::placeholder {
  color: #ffffff;
}

/* BUTTON */

.careers-join-btn {
  background: #b3926e;
  border: none;
  height: 44px;
  padding: 0 28px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.careers-join-btn:hover {
  background: #a78460;
}

.sector-section {
  padding: 80px 4%;
}

.sector-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
}

.sector-underline {
  width: 60px;
  height: 3px;
  background: #b3926f;
  margin-top: 8px;
  margin-bottom: 40px;
}

.sector-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sector-icon {
  width: 42px;
  height: 42px;
  background: #f7f4f1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.sector-icon img {
  width: 20px;
}

.sector-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0f172a;
}

.sector-card p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 10px;
  min-height: 90px;
}

.sector-card hr {
  margin: 16px 0;
  border-top: 1px solid #95989e;
}

.sector-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sector-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #475569;
  margin-bottom: 10px;
}

.sector-list li img {
  width: 14px;
  height: 14px;
}

.approach-section {
  padding: 0px 4%;
  margin-bottom: 20px;
}

/* Image */
.approach-image img {
  width: 90%;
  height: 380px;
  object-fit: cover;
}

/* Title */
.approach-title {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

/* Paragraph */

.approach-text {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 400px;
}

/* Features */
.approach-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: #f7f4f1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 18px;
}

/* Feature text */

.approach-feature h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #0f172a;
}

.approach-feature p {
  font-size: 14px;
  color: #475569;
  margin: 0;
}

/* Button */

.approach-btn {
  display: inline-block;
  margin-top: 20px;
  background: #b3926f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.cta-section {
  padding: 70px 20px;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 8px;
}

.cta-text {
  font-size: 16px;
  color: #222222;
  max-width: 520px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.cta-btn1 {
  display: inline-block;
  background: #b3926f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.toast-container{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.toast-message{
  background:#16a34a;
  color:#fff;
  padding:12px 18px;
  margin-bottom:10px;
  border-radius:6px;
  font-size:14px;
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
  animation:slideIn 0.4s ease;
}

.toast-message.danger{
  background:#dc2626;
}

@keyframes slideIn{
  from{
    transform:translateX(100%);
    opacity:0;
  }
  to{
    transform:translateX(0);
    opacity:1;
  }
}
