.elementor-650 .elementor-element.elementor-element-9262700{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-650 .elementor-element.elementor-element-9798b18{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-650 .elementor-element.elementor-element-a905d3a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-eb0b750 */.timeline-section {
        padding: 80px 20px;
        background: #ffffff;
        min-height: 100vh;
    }

    .timeline-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
    }

    .section-title {
        text-align: center;
        margin-bottom: 80px;
        color: #333;
    }

    .section-title h2 {
        font-size: 3em;
        font-weight: 700;
        margin-bottom: 15px;
        color: #c3a36b;
        letter-spacing: 1px;
    }

    .section-title p {
        font-size: 1.2em;
        color: #666;
        font-weight: 300;
    }

    .timeline-line {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 90%;
        background: rgba(195, 163, 107, 0.2);
        top: 10%;
    }

    .timeline-items {
        position: relative;
        z-index: 1;
    }

    .timeline-item {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 150px;
        position: relative;
        opacity: 0;
        transition: opacity 0.8s ease;
        gap: 40px;
    }

    .timeline-item.left {
        transform: translateX(-150px);
    }

    .timeline-item.right {
        transform: translateX(150px);
    }

    .timeline-item.visible {
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .timeline-content-wrapper {
        display: flex;
        gap: 50px;
        align-items: center;
        max-width: 1200px;
        width: 100%;
        position: relative;
    }

    .timeline-content {
        flex: 1;
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(195, 163, 107, 0.15);
        position: relative;
        transform: rotate(-4deg);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        border: 3px solid #f5f5f5;
    }

    .timeline-content.after-content {
        transform: rotate(4deg);
    }

    .timeline-content:hover {
        transform: rotate(0deg) translateY(-15px) scale(1.05);
        box-shadow: 0 25px 60px rgba(195, 163, 107, 0.25);
        z-index: 10;
        border-color: #c3a36b;
    }

    .timeline-dot {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background: white;
        border: 4px solid #c3a36b;
        border-radius: 50%;
        z-index: 2;
        box-shadow: 0 0 0 8px rgba(195, 163, 107, 0.1);
        animation: pulse-timeline 2s infinite;
    }

    @keyframes pulse-timeline {
        0%, 100% {
            box-shadow: 0 0 0 8px rgba(195, 163, 107, 0.1);
        }
        50% {
            box-shadow: 0 0 0 15px rgba(195, 163, 107, 0);
        }
    }

    .image-container {
        position: relative;
        overflow: hidden;
        height: 450px;
        width: 100%;
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        /* Image will scale and move, but card rotation is separate */
    }

    /* On hover: image zooms, card straightens */
    .timeline-content:hover .image-container img {
        transform: scale(1.1) !important;
    }

    .badge {
        position: absolute;
        top: 25px;
        left: 25px;
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 0.95em;
        text-transform: uppercase;
        letter-spacing: 2px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        z-index: 1;
        backdrop-filter: blur(10px);
    }

    .badge.before {
        background: rgba(100, 100, 100, 0.85);
    }

    .badge.after {
        background: rgba(195, 163, 107, 0.9);
    }

    .case-name-divider {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        min-width: 180px;
        padding: 20px 30px;
        background: white;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #c3a36b;
        font-weight: 700;
        font-size: 1.1em;
        box-shadow: 0 10px 35px rgba(195, 163, 107, 0.25);
        z-index: 5;
        border: 3px solid #c3a36b;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        white-space: nowrap;
    }

    @media (max-width: 1024px) {
        .timeline-content-wrapper {
            gap: 30px;
        }

        .image-container {
            height: 350px;
        }

        .case-name-divider {
            min-width: 150px;
            padding: 15px 25px;
            font-size: 0.95em;
        }
    }

    @media (max-width: 768px) {
        .timeline-line {
            display: none;
        }

        .timeline-item.left,
        .timeline-item.right {
            transform: translateY(50px);
        }

        .timeline-item.visible {
            transform: translateY(0);
        }

        .timeline-content-wrapper {
            flex-direction: column;
            gap: 40px;
        }

        .timeline-content {
            width: 100%;
            transform: rotate(-3deg);
        }

        .timeline-content.after-content {
            transform: rotate(3deg);
        }

        .timeline-dot {
            display: none;
        }

        .case-name-divider {
            position: relative;
            left: auto;
            top: auto;
            transform: none;
            margin: -20px auto;
        }

        .section-title h2 {
            font-size: 2.2em;
        }

        .image-container {
            height: 300px;
        }
    }

    @media (max-width: 480px) {
        .timeline-section {
            padding: 50px 15px;
        }

        .section-title h2 {
            font-size: 1.8em;
        }

        .badge {
            padding: 10px 20px;
            font-size: 0.85em;
            top: 20px;
            left: 20px;
        }

        .case-name-divider {
            min-width: 130px;
            padding: 12px 20px;
            font-size: 0.85em;
            letter-spacing: 1px;
        }

        .image-container {
            height: 280px;
        }
    }
    .image-container {
    border-radius: 20px; /* Container is rounded */
}

.image-container img {
    border-radius: 20px; /* Image is rounded */
}

.timeline-content:hover .image-container img {
    border-radius: 20px; /* FORCED rounded on hover */
}



/* =========================
   SHOW MORE BUTTON
   ========================= */
.anchor-show-more {
  text-align: center;
  margin-top: 60px;
}

.ba-show-more a {
  background: linear-gradient(135deg, #8a6d3b 0%, #6f5730 100%);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(138,109,59,0.25);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.ba-show-more a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6f5730 0%, #5a4526 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ba-show-more a:hover::before {
  opacity: 0;
}

.ba-show-more a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(138,109,59,0.35);
}

.ba-show-more a:active {
  transform: translateY(-1px);
}

.btn-text,
.btn-icon {
  position: relative;
  z-index: 1;
}

.btn-icon {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ba-show-more button:hover .btn-icon {
  transform: translateY(3px);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c4db003 *//* =========================
   LUXURY AESTHETIC SECTION
   ========================= */
.lux-aesthetic {
  padding: 60px 0 ;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  position: relative;
  overflow: hidden;
}

.lux-aesthetic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(195,163,107,0.2) 50%, transparent);
}

.wrap {
      max-width: 1280px;
  margin: auto;
  padding: 0 24px;
}

/* =========================
   HEADER
   ========================= */
.lux-header {
  max-width: 820px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lux-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c3a36b;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  padding-left: 50px;
}

.lux-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #c3a36b, transparent);
}

.lux-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 20px 0 24px;
  color: #2a2520;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.lux-header p {
  font-size: 18px;
  line-height: 1.8;
  color: #7a736c;
  font-weight: 400;
}
/* ===== Full Image Reel Cards ===== */


/* Grid Layout */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.reel-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16; /* Reels / Shorts */
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.reel-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

/* Image */
.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play Icon */
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon::before {
  content: '';
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  backdrop-filter: blur(2px);
}

.play-icon::after {
  content: '';
  position: absolute;
  margin-left: 6px;
  border-left: 20px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}/* End custom CSS */