/* HERO */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background with zoom animation */
.slider-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.6s ease-in-out;
}

.slider-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* adjust opacity here */
}
.slider-bg.animate {
  animation: zoomEffect 6s ease;
}

@keyframes zoomEffect {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

/* Overlay */
.slider-content {
  position: absolute;
  bottom: 100px;
  left: 60px;
  color: #fff;
  max-width: 500px;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
}

.slider-content.show {
  opacity: 1;
  transform: translateY(0);
}

.slider-content h1 {
  font-size: 42px;
  font-weight: bold;
}

.slider-content p {
  font-size: 16px;
}

/* ðŸ”¥ SLIDER ARROWS (NO CONFLICT) */
.nav-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  pointer-events: all;
  background:
    radial-gradient(circle at left, rgba(212, 175, 55, 0.9), transparent 40%),
    radial-gradient(circle at right, rgba(212, 175, 55, 0.9), transparent 40%),
    radial-gradient(circle at bottom, rgba(212, 175, 55, 0.8), transparent 50%),
    radial-gradient(circle at left, rgba(0, 0, 0, 0.35), transparent 55%),
    radial-gradient(circle at right, rgba(0, 0, 0, 0.35), transparent 55%),
    radial-gradient(circle at bottom, rgba(0, 0, 0, 0.25), transparent 60%),
    #000000;
  border: none;
  color: #fff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background:
    radial-gradient(circle at left, rgba(212, 175, 55, 1), transparent 35%),
    radial-gradient(circle at right, rgba(212, 175, 55, 1), transparent 35%),
    radial-gradient(circle at bottom, rgba(212, 175, 55, 0.9), transparent 45%),
    #000000;
  transform: scale(1.1);
}

/* Positions */
.slider-prev {
  margin-left: 10px;
}

.slider-next {
  margin-right: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
/* Thumbnails */
.thumbs {
  position: absolute;
  right: 20px;
  bottom: 50px;
  display: flex;
  gap: 10px;
}

.thumb {
  width: 110px;
  height: 75px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.4s;
  border-radius: 6px;
}

.thumb:hover {
  transform: scale(1.05);
}

.thumb.active {
  opacity: 1;
  transform: scale(1.1);
  border: 2px solid white;
}

/* ðŸ”¥ MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .slider-content {
    left: 20px;
    bottom: 120px;
    max-width: 90%;
  }

  .slider-content h1 {
    font-size: 26px;
  }

  .slider-content p {
    font-size: 14px;
  }

  /* Move arrows center bottom */
  .nav-arrows {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-arrows span {
    font-size: 22px;
    padding: 8px;
  }

  /* Thumbnails horizontal scroll */
  .thumbs {
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    overflow-x: auto;
    width: 90%;
  }

  .thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
  }
}

/* ================= GLOBAL ================= */
body {
  font-family: "Outfit", sans-serif;
  margin: 0;
  background:#000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Staatliches", sans-serif;
}

/* Three Brand Section Start */

.bg-gold-gradient {
  /*background:*/
  /*  radial-gradient(circle at left, rgba(212, 175, 55, 0.9), transparent 40%),*/
  /*  radial-gradient(circle at right, rgba(212, 175, 55, 0.9), transparent 40%),*/
  /*  radial-gradient(circle at bottom, rgba(212, 175, 55, 0.8), transparent 50%),*/
  /*  radial-gradient(circle at left, rgba(0, 0, 0, 0.35), transparent 55%),*/
  /*  radial-gradient(circle at right, rgba(0, 0, 0, 0.35), transparent 55%),*/
  /*  radial-gradient(circle at bottom, rgba(0, 0, 0, 0.25), transparent 60%),*/
  /*  #000000;*/
  
  background: linear-gradient(90deg, #bb904f, #f8e281);
}

/* CARD STYLE */
.card-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent !important;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.card-bg p {
  text-align: justify;
}
/* REMOVE WHITE */
.shadow-sm {
  background: transparent !important;
}

@media (min-width: 992px) {
  .w-lg-75 {
    width: 75% !important;
  }
}
/* TEXT VISIBILITY */
.dm-box-h1,.solar-box-h1,.sports-box-h1,.new-box-h1{
  color:#FFF;
}

.card-bg p,
.card-bg a {
  color: #FFF;
}

/* BUTTON */
.fly-btn {
  position: relative;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}



.fly-btn:hover {
  letter-spacing: 1.1px;
}

.fly-btn:hover::after {
  transform: translateX(5px);
}

/*Founder Section  */

.quote-section {
  background: #000;
}

.quote-image {
  background: url("../images/Sundaram_Founder.png") center/contain no-repeat;
  height: 520px;
}
.md-intro {
  font-size: 23px;
  color:#FFF;
}

.quote-content {
  padding: 60px;
}
@media (max-width: 768px) {
  .quote-content {
    padding: 20px;
  }
}

.quote-text {
  font-size: 22px;
  line-height: 1.7;
  color: #444;
}

.quote-line {
  width: 65%;
  height: 2px;
  background: #fff;
  margin: 30px 0;
  position: relative;
}

.quote-line::after {
  content: "";
  position: absolute;
  left: 60%;
  bottom: -10px;
  width: 18px;
  height: 18px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.designation {
  color: #c9a227;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
}

.profile-btn {
  background: linear-gradient(90deg, #bb904f, #f8e281);
    color:#000;
    padding:14px 28px;
    border-radius:8px;
    border:none;
    font-weight:500;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    transition:0.3s;
    text-decoration:none;
}
.profile-btn:hover {
    transform:translateY(-2px) scale(1.07);
    box-shadow:0 15px 40px rgba(0,0,0,0.4),0 0 20px rgba(212,175,55,0.6);
}
/* Bussiness */

.image-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* container */
.image-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* box */
.img-box {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

/* image */
.img-box img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* overlay text */
.img-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-weight: 600;
  font-size: 18px;

  background: rgba(0, 0, 0, 0.4);
  transition: 0.4s;
}
.img-overlay h4 a {
  color: #fff;
  text-decoration: none;
}

.img-overlay h4 a:hover {
  text-decoration: underline;
}
/* gradient layer */
.img-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.4s;
}

/* gradients */
.img-overlay.dm::before {
  background: linear-gradient(90deg, #8e2de2 0%, #ff5acd 100%);
}

.img-overlay.solar::before {
  background: linear-gradient(90deg, #2a813d, #6bb041);
}

.img-overlay.sports::before {
  background: linear-gradient(260deg, #f10089, #281464);
}
.img-overlay.spa::before {
  background: linear-gradient(135deg, #096b6a, #b44ca5);
}

/* TEXT ABOVE */
.img-overlay h4 {
  position: relative;
  z-index: 2;
}

/* hover â†’ show gradient ONLY */
.img-box:hover .img-overlay::before {
  opacity: 0.9;
}

.tab-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  border: 2px solid transparent;
}

.tab-img:hover {
  opacity: 1;
  transform: scale(1.02);
}

.tab-img.active {
  opacity: 1;
  border: 2px solid #ff5acd;
}

/* RIGHT SIDE */
.tab-content-box {
  background: #1a1a1a;
  border-radius: 15px;
  min-height: 250px;
}

/* base hidden state */
.tab-content {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  position: absolute;
  inset: 0;
}

/* active visible */
.tab-content.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

/* container must be relative */
.tab-content-box {
  position: relative;
  overflow: hidden;
}

.bg-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 380px;
}

/* Different BG per tab */
#tab-1 {
  background: url("/images/DM-Tab-Image.webp") center/cover no-repeat;
}

#tab-2 {
  background: url("/images/Solar-Tab-Image.webp") center/cover no-repeat;
}

#tab-3 {
  background: url("/images/Sports-Tab-Image.webp") center/cover no-repeat;
}
#tab-4 {
  background: url("/images/Spa-Tab-Image.png") center/cover no-repeat;
}

#tab-1,
#tab-2,
#tab-3,
#tab-4 {
  height: 100%;
  background-size: cover; /* FULL COVER */
  background-position: center;
  background-repeat: no-repeat;
}
/* Dark overlay */
.overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: flex-end;
}

/* COMMON TAG STYLE */
.dm-tags span,
.solar-tags span,
.sports-tags span,
.spa-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: #000;

  backdrop-filter: blur(6px);
  transition: 0.3s;
}

/* DIGITAL MARKETING (Purple Pink) */
.dm-tags span {
 background: linear-gradient(90deg, #bb904f, #f8e281);
}

/* SPORTS (Dark Pink Purple) */
.sports-tags span {
 background: linear-gradient(90deg, #bb904f, #f8e281);
}

/* SOLAR (Green) */
.solar-tags span {
 background: linear-gradient(90deg, #bb904f, #f8e281);
}

/* HOVER EFFECT */
.dm-tags span:hover,
.solar-tags span:hover,
.sports-tags span:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.dm-tags,
.solar-tags,
.sports-tags,
.spa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Solar Slider */

/* LAYOUT */
.solar-wrapper {
  display: flex;
  height: 90vh;
  gap: 15px;
  padding: 10px 30px;
}

/* MAIN LEFT */
.solar-main {
  flex: 4;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: 0.5s ease;
}

/* OVERLAY */
.solar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* CONTENT */
.solar-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
  z-index: 2;
}

.solar-content h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.solar-content p {
  margin-bottom: 15px;
}

.solar-content button {
  padding: 10px 20px;
  border: none;
  background: #fff;
  color: #000;
  cursor: pointer;
  border-radius: 5px;
}

/* RIGHT SIDE */
.solar-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* THUMB */
.solar-thumb {
  flex: 1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
  opacity: 0.6;
  transition: 0.3s;
}

/* ACTIVE */
.solar-thumb.active {
  opacity: 1;
  border: 2px solid #fff;
}

/* IMAGE */
.solar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

/* BLACK GRADIENT */
.solar-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.2),
    transparent
  );
}

/* TEXT OVER IMAGE */
.solar-thumb-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  z-index: 2;
}

.solar-thumb-overlay h4 {
  margin: 0;
  font-size: 16px;
}

/* HOVER EFFECT */
.solar-thumb:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .solar-wrapper {
    flex-direction: column;
    height: auto;
  }

  /* ðŸ”¥ FIX MAIN IMAGE HEIGHT */
  .solar-main {
    width: 100%;
    height: 250px; /* IMPORTANT */
    min-height: 250px;
    display: block;
  }

  /* CONTENT FIX */
  .solar-content {
    left: 15px;
    bottom: 15px;
  }

  .solar-content h1 {
    font-size: 20px;
  }

  .solar-content p {
    font-size: 13px;
  }

  /* THUMBNAILS */
  .solar-side {
    flex-direction: row;
    margin-top: 10px;
    gap: 10px;
  }

  .solar-thumb {
    flex: 1;
    height: 90px;
  }
}

/* Digital marketing Case Study */

.dm-expand {
  padding: 60px;
}

.dm-expand-container {
  display: flex;
  gap: 20px;
  height: 600px;
}

.dm-expand-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition:
    flex 0.5s ease,
    transform 0.4s ease;
}

.dm-expand-card.active {
  flex: 4;
}

.dm-expand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dm-expand-card.active img {
  transform: scale(1.05);
}

.dm-expand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.dm-expand-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
}

.dm-expand-overlay h4 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
}

/* LINK STYLE */
.dm-expand-overlay a {
  color: #fff;
  text-decoration: none;
}

.dm-expand-overlay a:hover {
  text-decoration: underline;
}

.dm-expand-overlay p {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.5;
  max-width: 90%;
}

/* ================= HOVER ONLY DESKTOP ================= */
@media (min-width: 769px) {
  .dm-expand-card:hover {
    flex: 4;
  }
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
  .dm-expand {
    padding: 30px 15px;
  }

  .dm-expand-container {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .dm-expand-card {
    height: 260px;
    flex: unset;
  }

  .dm-expand-card.active {
    height: 300px;
  }

  /* STRONG OVERLAY FOR MOBILE */
  .dm-expand-card::after {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.5),
      transparent
    );
  }

  /* TEXT FIX */
  .dm-expand-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .dm-expand-overlay h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .dm-expand-overlay p {
    font-size: 13px;
    line-height: 1.4;

    /* TEXT CLAMP */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* SHOW FULL TEXT ON ACTIVE */
  .dm-expand-card.active .dm-expand-overlay p {
    -webkit-line-clamp: unset;
  }
}

/* Counter */

.counter {
  font-size: 40px;
  font-weight: bold;
background: linear-gradient(90deg, #cfa65f, #ffe89a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}
.counter-box h2 {
  color: #c9a227;
  font-size: 50px;
}
.counter-title {
  font-size: 20px;
  font-weight: 500;
  color:#FFF;
}
/* Image Scroll */

.scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  width: max-content;
}

.scroll-track img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin: 0 10px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .scroll-track img {
    width: 80px;
    height: 80px;
  }
}
/* Animation */
.scroll-left {
  animation: scrollLeft 25s linear infinite;
}

.scroll-right {
  animation: scrollRight 25s linear infinite;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Join us */

.dm-cta {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: #000;
}

.dm-cta-box {
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 60px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #bb904f, #f8e281);
}

.dm-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.dm-cta-box > * {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* ================= TAG ================= */
.dm-cta-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 1.5);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #000;
}

.dm-cta-title {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.dm-cta-title span {
  color: #000;
}
.form-cta-title {
  font-size: 42px;
  line-height: 1.3;
}

/* GRADIENT TEXT */
.form-cta-title span {
  background: #000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dm-cta-desc {
  color: #fff;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.dm-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.dm-btn-outline {
  background: linear-gradient(90deg, #bb904f, #f8e281);
    color:#000;
    padding:14px 28px;
    border-radius:50px;
    border:none;
    font-weight:500;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    transition:0.3s;
  text-decoration: none;
}

.dm-btn-outline:hover {
 transform:translateY(-2px) scale(1.07);
    box-shadow:0 15px 40px rgba(0,0,0,0.4),0 0 20px rgba(212,175,55,0.6);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .dm-cta-box {
    padding: 40px 20px;
  }

  .dm-cta-title {
    font-size: 26px;
  }

  .dm-cta-desc {
    font-size: 14px;
  }

  .dm-cta-buttons {
    flex-direction: column;
  }

  .dm-btn {
    width: 100%;
  }
}

/* FAQ */

/* Wrapper */
.faq-wrapper {
  max-width: 850px;
  margin: auto;
}

/* Card */
.faq-item {
  position: relative;
  margin-bottom: 18px;
  border-radius: 14px;
  padding: 1px; /* for border effect */
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.6), transparent);
  transition: 0.3s;
}

/* Inner glass */
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  z-index: 0;
}

/* Content layer */
.faq-item * {
  position: relative;
  z-index: 1;
}

/* Hover effect */
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.faq-section h2 {
  font-size: 32px;
}

.faq-section p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
}
/* Question */
.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Icon (custom +) */
.icon {
  width: 22px;
  height: 22px;
  position: relative;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: #d4af37;
  transition: 0.3s;
}

.icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
}

.icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
}

/* Answer */
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #000;
  font-size: 16px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  height: auto;
}

.faq-item.active .icon::after {
  transform: scaleY(0); /* minus */
}

.faq-item.active {
  background: linear-gradient(135deg, #d4af37, #f5e6b3);
}
.btn-gold {
  background: linear-gradient(90deg, #bb904f, #f8e281);
    color:#000;
    padding:10px 28px;
    border-radius:50px;
    border:none;
    font-weight:500;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    transition:0.3s;
    text-decoration:none;
}


.btn-gold:hover {
  transform:translateY(-2px) scale(1.07);
  box-shadow:0 15px 40px rgba(0,0,0,0.4),0 0 20px rgba(212,175,55,0.6);
}


/* About DM */

.hero-section {
  height: 50vh;
  position: relative;
  background: url("/images/DM-About-Image.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Dark overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

.keystone-study-hero-section {
  height: 50vh;
  position: relative;
  background: url("/images/DM-Case-Study-Inner-image.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Dark overlay */
.keystone-study-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

.sports-hero-section {
  height: 50vh;
  position: relative;
  background: url("/images/Sports-About-Image.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Dark overlay */
.sports-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}
.career-hero-section {
  height: 50vh;
  position: relative;
  background: url("/images/Career-About-Image.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Dark overlay */
.career-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}
.solar-hero-section {
  height: 50vh;
  position: relative;
  background: url("/images/Solar-About-Image.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Dark overlay */
.solar-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

.piller-hero-section {
  height: 50vh;
  position: relative;
  background: url("/images/Pillers-About-Image.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Dark overlay */
.piller-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

.case-study-hero-section {
  height: 50vh;
  position: relative;
  background: url("/images/Solar_Case_Study_Image_1.webp") center/cover
    no-repeat;
  display: flex;
  align-items: center;
}

/* Dark overlay */
.case-study-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}
.dm-expand-overlay h4 a:hover {
  color: #d4af37;
}
/* Content */
.hero-content {
  position: relative;
  color: #fff;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
}

.hero-links {
  font-size: 14px;
  color: #ccc;
}
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

/* Vission */
.vision-section {
  background: linear-gradient(90deg, #bb904f, #f8e281);
}

/* Title */
.vision-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #fff;
}

/* Text */
.vision-text {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  max-width: 450px;
}

/* Image Wrapper */
.vision-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

/* Image */
.vision-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}
/* Mission */
.mission-section {
  background: #000;
}

/* Title */
.mission-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #cfa65f, #ffe89a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Text */
.mission-text {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  max-width: 450px;
}

/* Image Wrapper */
.mission-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

/* Image */
.mission-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}
/* LEFT BOX */
/* ================= LEFT GLASS EFFECT ================= */
.dm-services-left {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* IMAGE */
.dm-ai-visual img {
  max-width: 350px;
}

/* ================= LEFT PILLS (GOLD BUTTON STYLE) ================= */
.dm-tag-pill {
  color: #000;

  background:
    radial-gradient(circle at left, rgba(212, 175, 55, 0.6), transparent 40%),
    radial-gradient(circle at right, rgba(212, 175, 55, 0.6), transparent 40%),
    radial-gradient(circle at left, rgba(0, 0, 0, 0.25), transparent 55%),
    radial-gradient(circle at right, rgba(0, 0, 0, 0.25), transparent 55%),
    #ffffff;

  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  border: none;
}

/* ================= RIGHT TAG ================= */
.dm-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 12px;
}

/* ================= TITLE ================= */
.dm-title {
  font-size: 40px;
  line-height: 1.3;
  color: #fff;
}

/* GOLD TEXT */
.dm-title span {
 color:#000;
}

/* ================= DESC ================= */
.dm-desc {
  color: #fff;
  text-align: justify;
}

/* ================= RIGHT PILLS (WHITE BG) ================= */
.dm-pill {
  background: #ffffff;
  color: #000;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #eee;
}



/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .dm-title {
    font-size: 26px;
  }
}
/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  /* SECTION */
  .dm-services {
    padding: 40px 10px;
  }

  /* CONTAINER */
  .dm-services .container {
    padding: 20px !important;
  }

  /* LEFT BOX FULL WIDTH */
  .dm-services-left {
    width: 100%;
    padding: 25px 15px;
    border-radius: 16px;
  }

  /* TITLE FIX */
  .dm-services-left h5 {
    font-size: 14px;
    line-height: 1.5;
  }

  /* IMAGE FIX */
  .dm-ai-visual img {
    max-width: 100%;
    height: auto;
  }

  /* TAGS LAYOUT FIX */
  .dm-ai-tags {
    justify-content: center;
  }

  /* GOLD PILLS FIX */
  .dm-tag-pill {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* RIGHT SIDE */
  .dm-services-right {
    text-align: center;
  }

  /* TITLE */
  .dm-title {
    font-size: 24px;
  }

  /* DESC */
  .dm-desc {
    font-size: 14px;
  }

  /* RIGHT PILLS STACK CLEAN */
  .dm-pills {
    justify-content: center;
  }

  .dm-pill {
    font-size: 13px;
    padding: 6px 12px;
  }

  /* BUTTON FULL WIDTH */
  .dm-btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* Our Pillers Page */
.team-card {
  background:
    radial-gradient(circle at left, rgba(187, 144, 79, 0.9), transparent 40%),
    radial-gradient(circle at right, rgba(248, 226, 129, 0.9), transparent 40%),
    radial-gradient(circle at bottom, rgba(187, 144, 79, 0.8), transparent 50%),
    linear-gradient(90deg, #bb904f, #f8e281);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px) scale(1.02);
  background:
    radial-gradient(circle at left, rgba(207, 166, 95, 1), transparent 35%),
    radial-gradient(circle at right, rgba(255, 232, 154, 1), transparent 35%),
    radial-gradient(circle at bottom, rgba(207, 166, 95, 0.9), transparent 45%),
    linear-gradient(90deg, #cfa65f, #ffe89a);
  box-shadow:
    0 20px 40px rgba(187, 144, 79, 0.25),
    0 0 30px rgba(248, 226, 129, 0.35);
}
.team-img {
  position: relative;
  padding: 12px;
}
.team-img-d {
  position: relative;
  padding: 12px;
}

.team-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  transition: all 0.4s ease;
  transition: all 0.4s ease;

  filter: grayscale(20%) brightness(0.9);
}

.team-img-d img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  transition: all 0.4s ease;
  transition: all 0.4s ease;

  filter: grayscale(20%) brightness(0.9);
}
.team-card:hover .team-img img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}
.pillers {
  /* position: absolute;
  bottom: 0;
  left: 20px;
  transform: translateY(50%); */
  display: none;
}

.pillers a {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.pillers a:hover {
  background: #d4af37;
  color: #fff;
}

/* CONTENT */
.team-content {
  padding: 30px 20px 20px;
}

.team-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.team-content p {
  color: #000;
  margin: 0;
}
.piller-contnet {
  font-size: 17px;
  color:#FFF;
}
.piller-contnet strong {
  color: #d4af37;
  font-weight: 600;
}

.case-study-wrapper {
  background: #000;
}
.case-study-info {
  padding: 25px;
  border-radius: 10px;
  border: 5px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(90deg, rgba(212, 175, 55, 1), rgba(0, 0, 0, 0.8));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.case-study-info h5 {
  margin-bottom: 15px;
  color:#000;
}

.case-study-info ul {
  list-style: none;
  padding: 0;
  color:#000;
}

.case-study-info li {
  margin-bottom: 10px;
  font-size: 16px;
  color:#000;
}

.case-study-help {
  background: linear-gradient(90deg, #bb904f, #f8e281);
  color: #fff;
  padding: 25px;
  border-radius: 10px;
}

.case-study-main-img img {
  width: 100%;
  border-radius: 10px;
}

/* Overview */
.case-study-overview h3 {
  margin-bottom: 15px;
  background: linear-gradient(90deg, #d4af37, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}
.case-study-overview p {
  text-align: justify;
  color:#FFF;
}
.gold-heading {
  background: linear-gradient(90deg, #bb904f, #f8e281);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}
/* Small Images */
.case-study-img {
  width: 100%;
  border-radius: 10px;
}

/* Problem Section */
.case-study-problem h3 {
  margin-bottom: 15px;
  background: linear-gradient(90deg, #d4af37, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}
.case-study-problem p{
    color:#FFF;
}
.case-study-problem ul {
  padding-left: 20px;
  color:#FFF;
}

.case-study-problem li {
  margin-bottom: 8px;
}

/* SECTION */
.group-career-why {
  position: relative;
 background: linear-gradient(90deg, #bb904f, #f8e281);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* PATTERN IMAGES */
.pattern {
  position: absolute;
  width: 250px;
  opacity: 0.6;
  pointer-events: none;
}

/* LEFT */
.pattern-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* RIGHT */
.pattern-right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* HEADING */
.group-career-why h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* CONTAINER */
.why-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* CARD */
.why-card {
  max-width: 280px;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: #000;
  border: 1px solid rgba(212, 175, 55, 0.2);

  transition: all 0.4s ease;
}
/* ICON */

.why-icon i {
  font-size: 40px;
  color: #fff;
  transition: 0.4s;
}

.why-card:hover .why-icon i {
  transform: scale(1.2);
}
/* TITLE */
.why-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

/* TEXT */
.why-card p {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-10px);
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: radial-gradient(
    circle at top,
    rgba(212, 175, 55, 0.2),
    transparent 60%
  );
  opacity: 0;
  transition: 0.4s;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover .why-icon {
  transform: scale(1.2);
}

/* ðŸ“± MOBILE */
@media (max-width: 768px) {
  .pattern {
    display: none;
  }

  .group-career-why h2 {
    font-size: 32px;
  }
}

/* SECTION */
.career-roles {
  background: #000;
}

/* CARD */
.role-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: #fff;
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
}

/* HEADER */
.role-header {
  background: linear-gradient(90deg, #bb904f, #f8e281);
  color: #000;
  font-weight: 600;
  padding: 18px;
  text-align: center;
  font-size: 18px;
}

/* BODY */
.role-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* LIST */
.role-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.role-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #000;
  font-size: 15px;
  line-height: 1.6;
}

/* BULLET */
.role-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 18px;
}

/* BUTTON */
.apply-btn {
    background: linear-gradient(90deg, #bb904f, #f8e281);
    color:#000;
    padding:10px 28px;
    border-radius:50px;
    border:none;
    font-weight:500;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    transition:0.3s;
}

/* BUTTON HOVER */
.apply-btn:hover {
  transform:translateY(-2px) scale(1.07);
    box-shadow:0 15px 40px rgba(0,0,0,0.4),0 0 20px rgba(212,175,55,0.6);
}

/* CARD HOVER */
.role-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.role-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: radial-gradient(
    circle at top,
    rgba(212, 175, 55, 0.2),
    transparent 60%
  );
  opacity: 0;
  transition: 0.4s;

  pointer-events: none;
}

.role-card:hover::before {
  opacity: 1;
}

/* FORM */
.career-form {
  background: #000; 
  padding: 50px 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* INPUT + TEXTAREA */
.career-form input,
.career-form textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 15px;
  background: #fff;
  color: #000;
}

/* TEXTAREA (Cover Letter) */
.career-form textarea {
  border-radius: 15px;
  min-height: 120px;
  resize: none;
}

/* PLACEHOLDER */
.career-form input::placeholder,
.career-form textarea::placeholder {
  color: #000;
}

/*  FOCUS EFFECT (premium feel) */
.career-form input:focus,
.career-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.4);
}



/*  FIX: Prevent overlay blocking clicks */
.career-form::before,
.career-form::after {
  pointer-events: none;
}

/* LEFT DESIGN */
.career-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 150px;
  height: 150px;
  background: url("/images/Left_Side_Bar_Image.png") no-repeat center/contain;
  opacity: 0.4;
  transform: translateY(-50%);
}

/* RIGHT DESIGN */
.career-form::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 150px;
  height: 150px;
  background: url("/images/Right_Side_Bar_Image.png") no-repeat center/contain;
  opacity: 0.4;
  transform: translateY(-50%);
}

/* ðŸ“± MOBILE */
@media (max-width: 768px) {
  .career-form {
    padding: 30px 15px;
  }

  .career-form::before,
  .career-form::after {
    display: none;
  }
}
.form-container {
  position: relative;
  background: linear-gradient(90deg, #bb904f, #f8e281);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* =========================
   WRAPPER
========================= */
.contact-page-wrapper {
  display: flex;
  align-items: center;
}

/* =========================
   MAIN CONTAINER
========================= */
.contact-page-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  border-radius: 12px;
  overflow: visible;
  background: #fff;
}

/* =========================
   LEFT SLIDER
========================= */
.contact-page-left {
  width: 50%;
  background: linear-gradient(90deg, #bb904f, #f8e281);
  color: #fff;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
}

/* SLIDER */
.contact-page-slider {
  width: 100%;
  overflow: hidden;
}

/* TRACK */
.contact-page-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

/* SLIDE */
.contact-page-slide {
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 40px;
  box-sizing: border-box;

  /* ðŸ”¥ TEXT FIX */
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* HEADING */
.contact-page-slide h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color:#000;
}

/* TEXT */
.contact-page-quote {
  font-size: 18px;
  margin: 20px 0;
  line-height: 1.6;

  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* AUTHOR */
.contact-page-author {
  font-weight: bold;
  margin-top: 10px;
}

/* DOTS */
.contact-page-dots {
  position: absolute;
  bottom: 20px;
  left: 40px;
}

.contact-page-dot {
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background: #ffffff70;
  border-radius: 50%;
  display: inline-block;
}

.contact-page-dot.active {
  background: #fff;
}

/* =========================
   RIGHT FORM
========================= */
.contact-page-right {
    width: 50%;
    padding: 40px;

    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);

    border-radius: 0 12px 12px 0;

    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.contact-page-right h2 {
  font-weight: 700;
}

/* FORM */
.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  margin-bottom: 15px;
}

.contact-page-submit {
  width: 100%;
  display: block;
  text-align: center;
}

.btn-gradient:hover::before {
  top: 0;
  left: 0;
}
/* LEFT SIDE */
.contact-page-left {
    border-radius: 12px 0 0 12px;
}

/* RIGHT SIDE */
.contact-page-right {
    border-radius: 0 12px 12px 0;
}
/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .contact-page-container {
    flex-direction: column;
    padding: 10px;
  }

  .contact-page-left,
  .contact-page-right {
    width: 100%;
  }

  .contact-page-dots {
    left: 20px;
  }
}
.contact-link {
    text-decoration: none;
    color: inherit;
}

.contact-link:hover {
    text-decoration: none;
    color: #d4af37; /* optional hover color */
}
.why-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.why-link:hover {
    color: inherit;
    transform: translateY(-5px);
    transition: 0.3s;
}
/* Desktop */
.header-logo {
    width: 75px;
}

/* Mobile */
@media (max-width: 768px) {
    .header-logo {
        width: 50px;
    }
}
/* Desktop */
.footer-logo {
    width: 200px;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-logo {
        width: 100px;
    }
}
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #FFF;
    font-size: 16px;
}

.social-item i {
    font-size: 18px;
}

.map-timeline-section {
  color: #d4af37;
  background: #000;
}

/* TITLE */
.map-timeline-title {
  font-size: 80px;
  font-weight: 700;
}

.map-timeline-subtitle {
  color: #c9a84d;
  margin-bottom: 60px;
}

/* TIMELINE WRAPPER */
.map-timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* CENTER LINE */
.map-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: #d4af37;
  transform: translateX(-50%);
}

/* ROW */
.map-timeline-row {
  display: flex;
  align-items: center;
  position: relative;
  margin: 60px 0;
}

/* LEFT & RIGHT FIXED HALF */
.map-left,
.map-right {
  width: 50%;
}

/* PUSH CONTENT CLOSE TO LINE */
.map-left {
  text-align: right;
  padding-right: 40px; /* adjust gap */
}

.map-right {
  text-align: left;
  padding-left: 40px; /* adjust gap */
}

/* DOT */
.map-timeline-dot {
  width: 14px;
  height: 14px;
  background: #d4af37;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* ICON */
.map-timeline-icon {
  width: 100px;
}

/* TEXT */
.map-timeline-col h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
}

.map-timeline-col p {
  color: #c9a84d;
  margin: 0;
  font-size:18px;
}

/* ✨ PERFECT ALIGNMENT TWEAK */
.map-left img {
  float: right;
}

.map-right img {
  float: left;
}

/* MOBILE */
@media (max-width: 768px) {
  .map-timeline-row {
    flex-direction: column;
    text-align: center;
  }

  .map-left,
  .map-right {
    width: 100%;
    padding: 0;
  }

  .map-left img,
  .map-right img {
    float: none;
  }

  .map-timeline-line,
  .map-timeline-dot {
    display: none;
  }
}