/*home page styling*/
*{
    margin: 0%; 
    padding: 0%;
    box-sizing: border-box;
}

body{
    height: 50% vh;
    background-color: white;
    font-family: poppins;
    
}
/* header styling */
header {
    border-bottom: 2px solid brown;
    background-color: white;
}

.navbar-brand img {
    width: 100px;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
}

/* Remove default Bootstrap dropdown hover behavior for desktop */
.navbar .dropdown-menu {
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
    display: none;

}

/* Remove hover-based dropdown opening, JS will handle it */


/* Mega dropdown positioning */
.dropdown-mega {
    position: static;
}

/* --- Mega menu fix: keep gap and allow selection --- */


/* Show mega menu when parent has .show or menu has .show */
.nav-item.dropdown.show .dropdown-menu.megamenu,
.dropdown-menu.megamenu.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: block !important;
}

/* Also ensure all dropdown-menus are selectable when .show is present */
.dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.megamenu .col-md-3 {
    margin-bottom: 1rem;
}

.megamenu .icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: #b00;
}

.nav-link {
    font-weight: 500;
}

.dropdown-item.active, .dropdown-item:active {
    color:#722525 !important;
}

.dropdown-item:focus, .dropdown-item:hover {
    color:#722525 !important;
    background: transparent !important;
}

.megamenu a:hover {
  color: #b71c1c !important; 
}


.dropdown-mega:hover > .dropdown-menu {
  display: block;
  margin-top: 0; /* removes gap so it doesn’t disappear */
}

/* Make sure mega menu aligns properly */
.dropdown-menu.megamenu {
  left: 0;
  right: 0;
  top: 100%;
  border-radius: 0;
   background: #ddd;
 background: #ddd;
    border: 1px solid #ddd;
    box-shadow: none;

}

.newbutton {
    /* background-color: #722525; */
    border: none;
    color: white;
    border-radius: 7px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    background: linear-gradient(5deg, #722525, #9B3232, #E58383);
}

.enquirenow .text {
    line-height: 1.2;
}

@media (max-width: 991.98px) {
    #mainNavbar {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .dropdown-menu.dropdown-row {
        white-space: nowrap;
        padding: 10px 15px;
    }

    .dropdown-menu.dropdown-row li {
        display: inline-block;
        margin-right: 10px;
    }

    .dropdown-menu.dropdown-row .dropdown-item {
        display: inline-block;
        padding: 10px 15px;
        text-align: center;
    }
}

/* Remove hover-based dropdown for desktop, JS will handle it */
@media (min-width: 992px) {
    

    .navbar .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
}

/* MAINCONTENT STYLING */
.left-section {
  background: url('Ramaniyamimages/SENIOR LIVING 1.png') no-repeat center center;
  background-size: cover;
  color: #333;
}

/* Breadcrumb arrow */
.breadcrumb-item + .breadcrumb-item::before {
  content: " > ";
}
.Heading-content{
    background-color: rgba(236, 236, 221,0.7);
}
.Heading-content h1{
    color: rgb(131, 15, 15);
}
.Heading-content h4{
    font-family: IBM plex serif;
    font-weight: semibold;
}
.Body-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  
  
}

.Body-content {
  background-color: rgba(236, 236, 221, 0.7);
  width: auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.Body-content p{
    line-height: 50px;
}
.Body-content li{
    line-height: 40px;
}
.Flat{
    margin-bottom: -2px;
    border-left: 2px solid rgb(145, 26, 26) ;
    object-fit: cover;
}
/* --- Responsive Hiding for Small & Medium Screens --- */
@media (max-width: 991.98px) {
  .left-section {
    width: 100%;
  }

  .Flat {
    display: none !important;
  }
}
/* footer styling */
footer {
    padding: 10px;
    border-top: solid 1px white;
    /* font-weight: 300; */
    font-size: 14px;
    background-color: #722525;
}


@media (max-width: 450px) {
    .Footer-elements {
        margin-top: 10px;
    }
}


.social-circle {
  width: 38px;
  height: 38px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-circle i {
  color: #ffffff;
  font-size: 18px;
  transition: 0.3s ease;
}

.Footer-elements {
  
  gap: 14px;
}

/* Hover Effect */
.social-circle:hover {
  border-color: #722525;
}






@media (min-width:100px) and (max-width:768px) {
  
  .social-circle{
  width: 38px;
  height: 38px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}
.location-circle {
  width: 45px;
  height: 45px;
  
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-circle i,
.location-circle i {
  color: #ffffff;
  font-size: 18px;
  transition: 0.3s ease;
}

/* Hover */
.social-circle:hover,
.location-circle:hover {
  border-color: #722525;
}

.social-circle:hover i,
.location-circle:hover i {
  color: #722525;
}

/* Small alignment fix for location icon */
.location-circle i {
  font-size: 20px;
  margin-top: 2px; 
}

}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main content should take remaining space */
main {
  flex: 1 0 auto;
}

/* Footer stays at bottom on lg screens */
footer {
  flex-shrink: 0;
}

/* Optional: small padding for mobile stacked layout */
@media (max-width: 991.98px) {
  footer {
    position: relative;
  }
}



#scrollToggle {
  position: fixed;
  bottom: 30px;
  right: 20px;

  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;

  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
  animation: bounce 2.2s infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#scrollToggle:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}

/* Arrow direction */
.arrow {
  transition: transform 0.3s ease;
}

.arrow.down {
  transform: rotate(0deg);
}

.arrow.up {
  transform: rotate(180deg);
}

/* Elegant bounce */
@keyframes bounce {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(0); }
  40%  { transform: translateY(-7px); }
  60%  { transform: translateY(-3px); }
  80%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}



/* Section */
.usb-blog-carousel-wrap {
  max-width: 1280px;
  margin: auto;
  padding: 50px 40px;
}

/* Header */
.usb-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.usb-carousel-title {
  font-size: 26px;
  font-weight: 500;
  margin: 0;
}

/* Nav buttons */
.usb-carousel-nav {
  display: flex;
  gap: 12px;
}

.usb-nav {
  background: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.usb-nav:hover {
  background: #722525;
  color: #fff;
}

/* Carousel */
.usb-carousel-box {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.usb-carousel-box::-webkit-scrollbar {
  display: none;
}

.usb-carousel-track {
  display: flex;
  gap: 32px;
  padding-bottom: 10px;
}

/* Cards */
.usb-blog-card {
  flex: 0 0 calc(33.333% - 22px);
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .usb-blog-card {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (max-width: 640px) {
  .usb-blog-card {
    flex: 0 0 100%;
  }

  .usb-carousel-title {
    font-size: 17px;
  }

  .usb-nav {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* Card content */
.usb-blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.usb-blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.usb-blog-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.usb-blog-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

.usb-blog-link {
  margin-top: auto;
  color: #722525;
  font-weight: 600;
  text-decoration: none;

}

.usb-blog-link:hover{
  text-decoration: underline;
}

/* ===============================
   ABOUT US LUXURY SECTION
=============================== */

.about-luxury-section {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #faf7f5 52%, #ffffff 100%);
  overflow: hidden;
 
}

.about-bg-text {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 130px;
  font-weight: 800;
  letter-spacing: 12px;
  color: rgba(114, 37, 37, 0.060);
  white-space: nowrap;
  pointer-events: none;
}

/* Laptop */
@media (max-width: 1200px) {
  .about-bg-text {
    font-size: 120px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .about-bg-text {
    font-size: 115px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-bg-text {
    font-size: 50px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-bg-text {
    font-size: 40px;
  }
}

.about-header {
  position: relative;
  max-width: 900px;
  margin: 0 auto 60px;
  z-index: 1;
}

.about-eyebrow {
  display: inline-block;
  color: #722525;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-header h1 {
  /* font-family: "Aboreto", serif; */
  /* font-size: clamp(34px, 5vw, 66px); */
  line-height: 1.15;
  color: #1d1d1d;
  margin-bottom: 20px;
}

.about-header h1 span {
  color: #722525;
  display: block;
}

.about-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}

/* Experience Card */
.about-exp-card {
  background: #722525;
  color: #fff;
  border-radius: 28px;
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  box-shadow: 0 25px 70px rgba(114, 37, 37, 0.28);
  position: relative;
  overflow: hidden;
}

.about-exp-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.about-exp-card h2 {
  font-size: clamp(80px, 9vw, 125px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}

.about-exp-card p {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-exp-card span {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

/* Image */
.about-main-image {
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.18);
}

.about-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-main-image:hover img {
  transform: scale(1.08);
}

/* Story Card */
.about-story-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 34px 40px 46px;
  min-height: 420px;
  border: 1px solid rgba(114, 37, 37, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Left top line */
.about-story-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  width: 5px;
  height: 92px;
  background: #722525;
  border-radius: 0 8px 8px 0;
}

.card-label {
  display: inline-block;
  color: #722525;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-story-card p {
  color: #555;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* Feature Cards */
.about-feature-card {
  height: 100%;
  padding: 32px 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
  border-radius: 24px;
  border: 1px solid rgba(114, 37, 37, 0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.about-feature-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  background: rgba(114, 37, 37, 0.06);
  border-radius: 50%;
  transition: all 0.35s ease;
}

.about-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(114, 37, 37, 0.15);
}

.about-feature-card:hover::before {
  transform: scale(1.25);
  background: rgba(114, 37, 37, 0.1);
}

.about-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: #722525;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 32px rgba(114, 37, 37, 0.22);
}

.about-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.about-feature-card h4 {
  color: #1f1f1f;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.about-feature-card p {
  color: #666;
  line-height: 1.75;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
/* Dark Block */
.about-dark-block {
  background:
    linear-gradient(135deg, #1f1f1f, #3b1515);
  color: #fff;
  border-radius: 30px;
  padding: 45px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.about-dark-block span {
  color: #e6c7c7;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-dark-block h3 {
  
  margin-top: 12px;
}

.about-dark-block p {
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  margin-bottom: 0;
}

/* Journey */
.about-journey h2 {
  
  
  color: #1f1f1f;
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.journey-line::before {
  content: "";
  position: absolute;
  top: 75px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: rgba(114,37,37,0.18);
}

.journey-item {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 42px 28px 30px;
  text-align: center;
  border: 1px solid rgba(114, 37, 37, 0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.journey-dot {
  width: 36px;
  height: 36px;
  background: #722525;
  border: 7px solid #fff;
  border-radius: 50%;
  margin: -60px auto 20px;
  box-shadow: 0 0 0 1px rgba(114,37,37,0.2);
  position: relative;
  z-index: 2;
}

.journey-item h5 {
  color: #722525;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.journey-item p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .about-luxury-section {
    padding: 75px 0;
  }

  .about-exp-card,
  .about-main-image,
  .about-story-card {
    min-height: auto;
  }

  .about-main-image {
    height: 420px;
  }

  .about-dark-block {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }

  .journey-line {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .journey-line::before {
    top: 0;
    bottom: 0;
    left: 18px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .journey-item {
    text-align: left;
    padding: 30px 26px 30px 58px;
  }

  .journey-dot {
    position: absolute;
    left: 0;
    top: 34px;
    margin: 0;
  }
}

@media (max-width: 576px) {
  .about-header {
    margin-bottom: 38px;
  }

  .about-main-image {
    height: 320px;
  }

  .about-exp-card {
    padding: 34px 26px;
    border-radius: 22px;
  }

  .about-story-card,
  .about-feature-card {
    border-radius: 20px;
  }

  .about-dark-block {
    border-radius: 22px;
  }
}



/* Awards Section */
/* ===============================
   MODERN AWARDS SECTION
=============================== */

.awards-section {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(114,37,37,0.08), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #faf7f4 100%);
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.awards-bg-title {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(70px, 13vw, 130px);
  font-weight: 800;
  letter-spacing: 12px;
  color: rgba(114,37,37,0.060);
  white-space: nowrap;
  pointer-events: none;
}

.awards-header {
  position: relative;
  max-width: 760px;
  margin: 0 auto 55px;
  z-index: 2;
}

.awards-header span {
  display: inline-block;
  color: #722525;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.awards-header h2 {
  /* font-family: "Aboreto", serif; */
  font-size: clamp(34px, 5vw, 58px);
  color: #1f1f1f;
  margin-bottom: 16px;
}

.awards-header h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  background: #722525;
  margin: 18px auto 0;
  border-radius: 20px;
}

.awards-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

/* Award Card */
.award-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(114,37,37,0.12);
  box-shadow: 0 25px 70px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 85px rgba(114,37,37,0.18);
}

.award-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(114,37,37,0.08), transparent 45%);
  pointer-events: none;
}

.award-image {
  position: relative;
  height: 390px;
  border-radius: 22px;
  overflow: hidden;
  background: #f4f0ed;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}

.award-card:hover .award-image img {
  transform: scale(1.06);
}

.award-content {
  position: relative;
  text-align: center;
  padding: 28px 15px 10px;
}

.award-icon {
  width: 62px;
  height: 62px;
  background: #722525;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 20px;
  font-size: 26px;
  border: 5px solid #ffffff;
  box-shadow: 0 14px 35px rgba(114,37,37,0.25);
}

.award-content h4 {
  color: #1f1f1f;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.award-content p {
  color: #722525;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .awards-section {
    padding: 75px 0;
  }

  .award-image {
    height: 340px;
  }

  .award-card {
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .award-image {
    height: 300px;
  }

  .awards-header {
    margin-bottom: 38px;
  }
}


/* our team css */
/* ===============================
   TEAM ZIGZAG SECTION - FULL CSS
=============================== */

.team-zigzag-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* Header */
.team-zigzag-header {
  max-width: 760px;
  margin: 0 auto 45px;
}

.team-zigzag-header span {
  display: inline-block;
  color: #722525;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-zigzag-header h2 {
  font-size: clamp(34px, 5vw, 58px);
  color: #111;
  margin-bottom: 14px;
}

.team-zigzag-header h2::after {
  content: "";
  display: block;
  width: 82px;
  height: 3px;
  background: #722525;
  margin: 18px auto 0;
  border-radius: 30px;
}

.team-zigzag-header p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Row */
.team-zigzag-row {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 45px;
}

.team-zigzag-row.reverse {
  grid-template-columns: 1.12fr 0.88fr;
}

.team-zigzag-row.reverse .team-zigzag-image {
  order: 2;
}

.team-zigzag-row.reverse .team-zigzag-content {
  order: 1;
}

/* Square Profile Image */
.team-zigzag-image {
  width: 360px;
  height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: #222;
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.14);
  margin: 0 auto;
  border: 8px solid #ffffff;
  outline: 1px solid rgba(114, 37, 37, 0.12);
}

.team-zigzag-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transition: all 0.7s ease;
}

.team-zigzag-row:hover .team-zigzag-image img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* Content Card */
.team-zigzag-content {
  position: relative;
  padding: 34px 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 35%),
    linear-gradient(145deg, #722525, #351313);
  color: #fff;
  box-shadow: 0 24px 70px rgba(114, 37, 37, 0.26);
  overflow: hidden;
  min-height: 310px;
}

.team-zigzag-content::before {
  content: "";
  position: absolute;
  top: -95px;
  right: -85px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.team-zigzag-content::after {
  content: "RAMANIYAM";
  position: absolute;
  right: 13px;
  bottom: 10px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.045);
  pointer-events: none;
}

/* Role */
.team-role {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  letter-spacing: 2.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Name */
.team-zigzag-content h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 18px;
}

.team-zigzag-content h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  background: #fff;
  margin-top: 12px;
  border-radius: 20px;
}

/* Paragraph */
.team-zigzag-content p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.88);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}

/* Date Box */
.team-date-box {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 17px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
}

.team-date-box i {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #722525;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.team-date-box span {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.team-date-box strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

/* Large Laptop */
@media (min-width: 1400px) {
  .team-zigzag-image {
    width: 390px;
    height: 390px;
  }

  .team-zigzag-row {
    gap: 42px;
  }
}

/* Small Laptop */
@media (max-width: 1199px) {
  .team-zigzag-row {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
  }

  .team-zigzag-row.reverse {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .team-zigzag-image {
    width: 320px;
    height: 320px;
  }

  .team-zigzag-content {
    padding: 30px 30px;
  }
}

/* Tablet + Mobile */
@media (max-width: 991px) {
  .team-zigzag-section {
    padding: 70px 0;
  }

  .team-zigzag-header {
    margin-bottom: 42px;
  }

  .team-zigzag-row,
  .team-zigzag-row.reverse {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 45px;
  }

  .team-zigzag-row.reverse .team-zigzag-image,
  .team-zigzag-row.reverse .team-zigzag-content {
    order: initial;
  }

  .team-zigzag-image {
    width: 100%;
    height: 430px;
    border-radius: 26px 26px 0 0;
    border: 0;
    outline: none;
    margin: 0;
  }

  .team-zigzag-content {
    border-radius: 0 0 26px 26px;
    padding: 34px 30px;
    min-height: auto;
  }

  .team-date-box {
    width: fit-content;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .team-zigzag-section {
    padding: 60px 0;
  }

  .team-zigzag-header {
    margin-bottom: 36px;
  }

  .team-zigzag-image {
    height: 380px;
  }

  .team-zigzag-content {
    padding: 30px 22px;
    border-radius: 0 0 22px 22px;
  }

  .team-zigzag-content::after {
    font-size: 32px;
    right: -10px;
  }

  .team-zigzag-content p {
    font-size: 14px;
    line-height: 1.75;
  }

  .team-date-box {
    width: 100%;
    padding: 14px;
  }

  .team-date-box strong {
    font-size: 13px;
  }
}



/* Testimonials */
/* =========================
   TESTIMONIAL SECTION
========================= */
.testimonialShowcaseSection{
    background:#f8f8f8;
    border-top:2px solid #722525;
    padding-top:90px;
    padding-bottom:80px;
    position:relative;
    overflow:hidden;
}

/* =========================
   BACKGROUND WORD
========================= */
.testimonialBgWord{
    position:absolute;
    top:15px;
    left:50%;
    transform:translateX(-50%);

    font-size:clamp(48px, 9vw, 140px);
    font-weight:800;

    letter-spacing:clamp(2px, 0.5vw, 8px);

    color:rgba(114,37,37,0.05);

    line-height:0.9;
    white-space:nowrap;

    pointer-events:none;
    user-select:none;

    z-index:1;
}

/* =========================
   HEADER WRAPPER
========================= */
.testimonialHeaderWrap{
    position:relative;
    z-index:2;
    margin-bottom:55px;
}

/* =========================
   MINI TAG
========================= */
.testimonialMiniTag{
    display:block;

    color:#722525;

    font-size:13px;
    font-weight:700;

    letter-spacing:4px;
    text-transform:uppercase;

    margin-bottom:14px;
}

/* =========================
   MAIN TITLE
========================= */
.testimonialHeaderWrap h2{
    font-size:clamp(30px, 4vw, 36px);
    color:#1f1f1f;

    margin-bottom:18px;

    line-height:1.08;
    font-weight:500;

    letter-spacing:-1px;
}

/* =========================
   CENTER LINE
========================= */
.testimonialCenterLine{
    width:90px;
    height:4px;

    background:#722525;

    border-radius:50px;

    margin:0 auto 28px;
}

/* =========================
   DESCRIPTION
========================= */
.testimonialHeaderWrap p{
    max-width:760px;

    margin:auto;

    color:#555;

    font-size:clamp(15px, 1.2vw, 19px);

    line-height:1.8;

    padding-inline:12px;
}

/* =========================
   VIDEO OUTER
========================= */
.testimonialVideoOuter{
    position:relative;
    z-index:2;
}

/* =========================
   VIDEO CARD
========================= */
.testimonialVideoCard{
    width:100%;
    max-width:760px;

    overflow:hidden;

    border-radius:24px;
    border:3px solid #722525;

    background:#000;

    position:relative;

    box-shadow:
      0 20px 50px rgba(114,37,37,0.18),
      0 10px 20px rgba(0,0,0,0.08);

    transition:all .45s ease;
}

/* =========================
   HOVER EFFECT
========================= */
.testimonialVideoCard:hover{
    transform:translateY(-6px);

    box-shadow:
      0 30px 70px rgba(114,37,37,0.28),
      0 15px 35px rgba(0,0,0,0.12);
}

/* =========================
   TOP GLOW LINE
========================= */
.testimonialVideoCard::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:linear-gradient(
      90deg,
      transparent,
      #722525,
      transparent
    );

    z-index:2;
}

/* =========================
   IFRAME
========================= */
.testimonialVideoCard iframe{
    width:100%;
    height:100%;
    border:0;
}

/* =========================
   EXTRA LARGE DESKTOP
========================= */
@media (min-width:1400px){

    .testimonialBgWord{
        font-size:111px;
        top:20;
    }

}

/* =========================
   LAPTOP
========================= */
@media (max-width:1199px){

    .testimonialShowcaseSection{
        padding-top:80px;
        padding-bottom:70px;
    }

    .testimonialBgWord{
        font-size:62px;
        top:18px;
        letter-spacing:4px;
    }

    .testimonialHeaderWrap h2{
        font-size:48px;
    }

}

/* =========================
   TABLET
========================= */
@media (max-width:991px){

    .testimonialShowcaseSection{
        padding-top:75px;
        padding-bottom:65px;
    }

    .testimonialBgWord{
        font-size:58px;
        top:28px;
        letter-spacing:3px;
    }

    .testimonialHeaderWrap{
        margin-bottom:40px;
    }

    .testimonialHeaderWrap h2{
        font-size:40px;
    }

    .testimonialCenterLine{
        width:75px;
        margin-bottom:22px;
    }

    .testimonialVideoCard{
        border-radius:20px;
    }

}

/* =========================
   MOBILE
========================= */
@media (max-width:767px){

    .testimonialShowcaseSection{
        padding-top:65px;
        padding-bottom:55px;
    }

    .testimonialBgWord{
        font-size:38px;
        top:30px;
        letter-spacing:2px;
    }

    .testimonialMiniTag{
        font-size:11px;
        letter-spacing:3px;
        margin-bottom:10px;
    }

    .testimonialHeaderWrap{
        margin-bottom:30px;
    }

    .testimonialHeaderWrap h2{
        font-size:30px;
        line-height:1.15;
        margin-bottom:14px;
        padding-inline:8px;
    }

    .testimonialHeaderWrap p{
        font-size:15px;
        line-height:1.7;
    }

    .testimonialCenterLine{
        width:60px;
        height:3px;
        margin-bottom:18px;
    }

    .testimonialVideoCard{
        border-radius:16px;
        border-width:2px;
    }

}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width:480px){

    .testimonialShowcaseSection{
        padding-top:58px;
    }

    .testimonialBgWord{
        font-size:30px;
        top:35px;
        letter-spacing:1px;
    }

    .testimonialHeaderWrap h2{
        font-size:26px;
    }

    .testimonialHeaderWrap p{
        font-size:14px;
    }

}



/* Reviews */


/* =========================
   SECTION
========================= */
.miniLuxTestimonials{
    background:#f8f8f8;
    overflow:hidden;
    position:relative;
}

/* =========================
   CAROUSEL
========================= */
#miniLuxCarousel{
    padding-bottom:90px;
}

#miniLuxCarousel .carousel-inner{
    overflow:visible;
}

#miniLuxCarousel .carousel-item{
    padding:10px 0;
    transition:transform .7s ease-in-out;
}

/* =========================
   HEADER
========================= */
.miniLuxHead{
    margin-bottom:34px;
}

.miniLuxHead span{
    display:block;
    color:#722525;

    font-size:11px;
    font-weight:700;

    letter-spacing:4px;

    margin-bottom:10px;
}

.miniLuxHead h2{
    font-size:clamp(28px,4vw,46px);

    color:#1f1f1f;

    font-weight:600;

    line-height:1.1;
}

/* =========================
   CARD
========================= */
.miniLuxCard{
    position:relative;

    max-width:620px;
    min-height:260px;

    margin:auto;

    display:flex;
    flex-direction:column;

    background:
      linear-gradient(
        135deg,
        #722525 0%,
        #5a1717 45%,
        #431010 100%
      );

    border-radius:22px;

    padding:
      28px
      28px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
      0 16px 40px rgba(114,37,37,0.14);

    color:#fff;

    transition:all .35s ease;
}

/* HOVER */
.miniLuxCard:hover{
    transform:translateY(-5px);

    box-shadow:
      0 24px 55px rgba(114,37,37,0.18);
}

/* LIGHT */
.miniLuxCard::before{
    content:"";

    position:absolute;

    top:-60px;
    right:-60px;

    width:150px;
    height:150px;

    border-radius:50%;

    background:
      radial-gradient(
        circle,
        rgba(255,255,255,0.14),
        transparent 72%
      );
}

/* QUOTE */
.miniLuxCard::after{
    content:"❝";

    position:absolute;

    top:14px;
    right:24px;

    font-size:58px;

    color:rgba(255,255,255,0.05);

    font-family:serif;
}

/* =========================
   STARS
========================= */
.miniLuxStars{
    position:relative;
    z-index:2;

    color:#FFD95A;

    font-size:16px;

    letter-spacing:3px;

    margin-bottom:14px;
}

/* =========================
   REVIEW WRAP
========================= */
.miniLuxReviewText{
    position:relative;
    z-index:2;
}

/* TEXT */
.miniLuxText{
    font-size:15px;

    line-height:1.85;

    color:rgba(255,255,255,0.92);

    margin-bottom:8px;

    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;

    overflow:hidden;
}

/* EXPANDED */
.miniLuxText.showFull{
    display:block;
}

/* BUTTON */
.miniLuxReadBtn{
    border:none;
    background:none;

    padding:0;

    color:#FFD95A;

    font-size:13px;
    font-weight:600;

    cursor:pointer;
}

/* =========================
   USER
========================= */
.miniLuxUser{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;

    gap:12px;

    margin-top:22px;
}

.miniLuxAvatar{
    width:44px;
    height:44px;

    border-radius:50%;

    background:rgba(255,255,255,0.12);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:13px;
    font-weight:700;

    border:1px solid rgba(255,255,255,0.08);
}

.miniLuxUser h5{
    margin:0;

    font-size:15px;
    font-weight:600;

    color:#fff;
}

/* =========================
   NAVIGATION
========================= */
.miniLuxNav{
    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    background:#722525;

    color:#fff;

    font-size:16px;

    z-index:5;

    transition:all .3s ease;
}

.miniLuxNav:hover{
    background:#5a1717;

    transform:
      translateY(-50%)
      scale(1.06);
}

.miniLuxPrev{
    left:8%;
}

.miniLuxNext{
    right:8%;
}

@media(min-width:1440px){

    .miniLuxPrev{
    left:18%;
}

.miniLuxNext{
    right:18%;
}

}

/* =========================
   TABLET
========================= */
@media(max-width:991px){

    #miniLuxCarousel{
        padding-bottom:95px;
    }

    .miniLuxCard{
        max-width:100%;
    }

    .miniLuxNav{
        top:auto;
        bottom:10px;

        transform:none;
    }

    .miniLuxNav:hover{
        transform:scale(1.05);
    }

    .miniLuxPrev{
        left:calc(50% - 55px);
    }

    .miniLuxNext{
        right:calc(50% - 55px);
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:767px){

    .miniLuxTestimonials{
        padding-top:60px !important;
        padding-bottom:70px !important;
    }

    .miniLuxCard{
        padding:
          22px
          20px;
    }

    .miniLuxText{
        font-size:14px;
    }

}



/* Affilates section */
/* ===============================
   AFFILIATES SECTION
================================ */

.affiliates-section {
  position: relative;
  padding: 90px 0 1px;
  background:
    radial-gradient(circle at top left, rgba(126, 32, 32, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f6 100%);
  overflow: hidden;
}

.affiliates-bg-title {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(80px, 13vw, 130px);
  font-weight: 800;
  line-height: 1;
  color: rgba(126, 32, 32, 0.055);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.affiliates-header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 54px;
}

.affiliates-header span {
  display: inline-block;
  margin-bottom: 12px;
  color: #7e2020;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.affiliates-header h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.12;
}

.affiliates-header h2::after {
  content: "";
  display: block;
  width: 82px;
  height: 3px;
  margin: 24px auto 0;
  background: #7e2020;
  border-radius: 20px;
}

.affiliates-header p {
  margin: 22px auto 0;
  color: #555555;
  font-size: 18px;
  line-height: 1.8;
}

/* Card */
.affiliate-card {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(126, 32, 32, 0.12);
  box-shadow: 0 28px 70px rgba(60, 20, 20, 0.12);
  transition: all 0.35s ease;
  overflow: hidden;
}

.affiliate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(126, 32, 32, 0.12), transparent 36%),
    radial-gradient(circle at bottom right, rgba(183, 143, 67, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.affiliate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 85px rgba(60, 20, 20, 0.18);
}

.affiliate-card:hover::before {
  opacity: 1;
}

.affiliate-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 22px;
  background: #f4eee9;
}

.affiliate-image img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.affiliate-card:hover .affiliate-image img {
  transform: scale(1.05);
}

.affiliate-content {
  position: relative;
  z-index: 2;
  padding: 26px 10px 8px;
  text-align: center;
}

.affiliate-icon {
  width: 52px;
  height: 52px;
  margin: -54px auto 16px;
  border-radius: 50%;
  background: #7e2020;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  box-shadow: 0 12px 30px rgba(126, 32, 32, 0.28);
  border: 4px solid #ffffff;
}

.affiliate-content h4 {
  margin: 0 0 10px;
  color: #171717;
  font-size: 22px;
  font-weight: 700;
}

.affiliate-content p {
  margin: 0 auto;
  max-width: 330px;
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
  .affiliates-section {
    padding: 75px 0 5px;
  }

  .affiliate-image img {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .affiliates-section {
    padding: 65px 0 0px;
  }

  .affiliates-bg-title {
    top: 12px;
    font-size: 72px;
  }

  .affiliates-header {
    margin-bottom: 38px;
    padding: 0 12px;
  }

  .affiliates-header span {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .affiliates-header h2 {
    font-size: 36px;
  }

  .affiliates-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .affiliate-card {
    border-radius: 22px;
    padding: 12px;
  }

  .affiliate-image {
    border-radius: 18px;
  }

  .affiliate-image img {
    height: 270px;
  }

  .affiliate-content {
    padding: 24px 8px 8px;
  }

  .affiliate-content h4 {
    font-size: 20px;
  }

  .affiliate-content p {
    font-size: 14px;
  }
}



/* Enablers section */
/* =========================================
   ENABLERS SCROLL SECTION
========================================= */

.enablers-scroll-section {
  position: relative;
  width: 100%;
  padding: 90px 20px 130px;
  overflow: visible;
  background:
    radial-gradient(circle at 12% 18%, rgba(147, 34, 35, 0.06), transparent 32%),
    radial-gradient(circle at 90% 86%, rgba(147, 34, 35, 0.05), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fff8f5 100%);
}

.enablers-scroll-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 485px minmax(0, 720px);
  gap: 58px;
  align-items: flex-start;
  justify-content: center;
}

/* =========================================
   LEFT STICKY IMAGE BOX
   Image original size ratio: 485 x 415
========================================= */

.enablers-left-wrap {
  position: sticky;
  top: 105px;
  height: fit-content;
  width: 100%;
}

/* IMPORTANT:
   This box now follows 485/415 ratio,
   so image will cover correctly without odd crop/stretch.
*/
.enablers-sticky-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 485 / 415;
  height: auto;

  border-radius: 34px;
  overflow: hidden;
  background: #4b1717;
  border: 1px solid rgba(147, 34, 35, 0.16);
  box-shadow: 0 14px 34px rgba(38, 20, 18, 0.075);
}

.enablers-sticky-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.24) 46%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(135deg, rgba(147, 34, 35, 0.16), transparent 58%);
  z-index: 2;
}

.enablers-sticky-image-box::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
  z-index: 3;
}

/* IMAGE FULL COVER FIX */
.enablers-sticky-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
  margin: 0;
  display: block;
  transform: scale(1) !important;
  transition: opacity 0.35s ease, transform 0.65s ease;
}

.enablers-sticky-image-box.changing img {
  opacity: 0;
  transform: scale(1.02) !important;
}

.enablers-image-content {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 34px;
  z-index: 4;
}

.enablers-image-content span {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.enablers-image-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -1.4px;
  text-transform: uppercase;
}

.enablers-image-content h3::after {
  content: "";
  display: block;
  width: 68px;
  height: 3px;
  margin-top: 22px;
  border-radius: 999px;
  background: #ffffff;
}

/* =========================================
   RIGHT CARD WRAPPER
========================================= */

.enablers-right-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
  width: 100%;
  max-width: 720px;
}

/* =========================================
   SCROLL CARD
========================================= */

.enabler-scroll-card {
  position: sticky;
  top: 105px;

  width: 100%;
  max-width: 720px;
  min-height: 190px;

  padding: 30px 34px;
  margin-bottom: 135px;

  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,248,244,0.90));
  border: 1px solid rgba(147, 34, 35, 0.13);
  box-shadow: 0 12px 30px rgba(38, 20, 18, 0.055);

  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 34px;
  overflow: hidden;

  opacity: 1;
  visibility: visible;
  will-change: transform, opacity;

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.enabler-scroll-card:last-of-type {
  margin-bottom: 135px;
}

.enablers-scroll-end-space {
  width: 100%;
  height: 220px;
  flex: 0 0 auto;
}

/* stack order */
.enabler-scroll-card:nth-of-type(1) {
  z-index: 1;
}

.enabler-scroll-card:nth-of-type(2) {
  z-index: 2;
}

.enabler-scroll-card:nth-of-type(3) {
  z-index: 3;
}

.enabler-scroll-card:nth-of-type(4) {
  z-index: 4;
}

.enabler-scroll-card:nth-of-type(5) {
  z-index: 5;
}

/* hide previous completed cards */
.enabler-scroll-card.is-past {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px) scale(0.985);
  box-shadow: none !important;
}

/* current visible card */
.enabler-scroll-card.is-current {
  opacity: 1;
  visibility: visible;
  z-index: 20 !important;
  transform: translateY(0) scale(1);
}

/* upcoming cards */
.enabler-scroll-card.is-next {
  opacity: 1;
  visibility: visible;
}

/* decorative circle */
.enabler-scroll-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -105px;
  top: -105px;
  border-radius: 50%;
  background: rgba(147, 34, 35, 0.045);
  transition: all 0.4s ease;
}

.enabler-scroll-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #932223, rgba(147, 34, 35, 0.12));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.enabler-scroll-card.active {
  border-color: rgba(147, 34, 35, 0.24);
  box-shadow: 0 12px 28px rgba(38, 20, 18, 0.055) !important;
}

.enabler-scroll-card.active::after {
  opacity: 1;
}

.enabler-scroll-card.active::before {
  transform: scale(1.12);
  background: rgba(147, 34, 35, 0.055);
}

.enabler-scroll-card.is-past::before,
.enabler-scroll-card.is-past::after {
  opacity: 0 !important;
}

/* =========================================
   LOGO
========================================= */

.enabler-scroll-logo {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 88px;
  padding: 16px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(147, 34, 35, 0.11);
  box-shadow: 0 8px 22px rgba(24, 18, 16, 0.045);
  display: flex;
  align-items: center;
  justify-content: center;
}

.enabler-scroll-logo img {
  width: auto;
  max-width: 122px;
  max-height: 48px;
  object-fit: contain;
}

/* =========================================
   CONTENT
========================================= */

.enabler-scroll-content {
  position: relative;
  z-index: 2;
}

.enabler-scroll-content span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #932223;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.enabler-scroll-content h3 {
  margin: 0 0 10px;
  color: #141414;
  font-size: 29px;
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.enabler-scroll-content p {
  margin: 0;
  max-width: 390px;
  color: #555555;
  font-size: 14.5px;
  line-height: 1.65;
}

/* Hover */
.enabler-scroll-card:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 34, 35, 0.22);
  box-shadow: 0 14px 32px rgba(38, 20, 18, 0.06) !important;
}

/* =========================================
   MEDIUM LAPTOP
========================================= */

@media (max-width: 1199px) {
  .enablers-scroll-container {
    max-width: 1080px;
    grid-template-columns: 420px minmax(0, 650px);
    gap: 46px;
  }

  .enablers-image-content h3 {
    font-size: 38px;
  }

  .enabler-scroll-card {
    max-width: 650px;
    grid-template-columns: 145px 1fr;
    gap: 28px;
    padding: 28px 30px;
  }

  .enabler-scroll-logo {
    width: 145px;
    height: 82px;
  }

  .enabler-scroll-logo img {
    max-width: 112px;
    max-height: 44px;
  }

  .enabler-scroll-content h3 {
    font-size: 27px;
  }

  .enabler-scroll-content p {
    font-size: 14px;
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .enablers-scroll-section {
    padding: 50px 18px;
  }

  .enablers-scroll-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .enablers-left-wrap {
    display: none;
  }

  .enablers-right-wrap {
    max-width: 100%;
    gap: 22px;
  }

  .enabler-scroll-card {
    position: relative;
    top: auto;
    z-index: 1 !important;
    margin-bottom: 0 !important;
    max-width: 100%;
    grid-template-columns: 150px 1fr;
    gap: 24px;
    padding: 30px 28px;
    border-radius: 28px;
    box-shadow: 0 10px 26px rgba(38, 20, 18, 0.055);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .enabler-scroll-card.is-past,
  .enabler-scroll-card.is-current,
  .enabler-scroll-card.is-next {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .enablers-scroll-end-space {
    display: none;
  }

  .enabler-scroll-card:hover,
  .enabler-scroll-card.active {
    transform: none !important;
  }

  .enabler-scroll-logo {
    width: 150px;
    height: 84px;
  }

  .enabler-scroll-content h3 {
    font-size: 25px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .enablers-scroll-section {
    padding: 52px 15px;
    background: #fffaf7;
  }

  .enablers-right-wrap {
    gap: 18px;
  }

  .enabler-scroll-card {
    display: block;
    min-height: auto;
    padding: 24px 20px;
    border-radius: 24px;
    box-shadow: 0 8px 22px rgba(38, 20, 18, 0.055);
  }

  .enabler-scroll-card::after {
    top: 26px;
    bottom: 26px;
  }

  .enabler-scroll-logo {
    width: 145px;
    height: 74px;
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(24, 18, 16, 0.045);
  }

  .enabler-scroll-logo img {
    max-width: 112px;
    max-height: 44px;
  }

  .enabler-scroll-content span {
    font-size: 10px;
    letter-spacing: 1.3px;
  }

  .enabler-scroll-content h3 {
    font-size: 22px;
  }

  .enabler-scroll-content p {
    font-size: 13.8px;
    line-height: 1.7;
  }
}