/* ========== Spinner ========== */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
  position: fixed;
  inset: 0;
  background: #ffffff; /* ✅ Pure white background retained */
  display: flex;
  align-items: center;
  justify-content: center;
}

#spinner.show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
}

#spinner .spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.4em;
  color: #891652; /* ✅ Stylish plum color from your palette */
}


.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #891652; /* Your plum shade */
  color: #fff !important;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.4s ease-in-out;
  z-index: 99;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  text-decoration: none;
}

.back-to-top:hover {
  background-color: #e2b054;  /* Your gold shade */
  color: #891652 !important;
  transform: translateY(-6px) scale(1.05);
}

.back-to-top i {
  color: inherit !important;
}

/* Responsive */
@media (max-width: 768px) {
  .back-to-top {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
/* =============================
   Base Button Styling
============================= */
/* =============================
   Universal Button Base
============================= */
.btn {
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  border: none;
  padding: 0.5rem 1.5rem;
  font-size: clamp(0.85rem, 1vw, 1rem);
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* =============================
   Responsive Square Buttons
============================= */
.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn-square {
  width: clamp(30px, 8vw, 32px);
  height: clamp(30px, 8vw, 32px);
}

.btn-sm-square {
  width: clamp(34px, 9vw, 36px);
  height: clamp(34px, 9vw, 36px);
}

.btn-md-square {
  width: clamp(44px, 10vw, 48px);
  height: clamp(44px, 10vw, 48px);
}

.btn-lg-square {
  width: clamp(56px, 12vw, 60px);
  height: clamp(56px, 12vw, 60px);
}

/* =============================
   MAGIC SHIMMER EFFECT
============================= */
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #891652 0%, #e2b054 100%);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  opacity: 0.8;
}

.btn:hover::before {
  transform: scaleX(1);
}

/* =============================
   Primary Button Style
============================= */
.btn.btn-primary {
  background-color: #891652;
  color: #fff;
  box-shadow: 0 4px 12px rgba(137, 22, 82, 0.4);
}

.btn.btn-primary:hover {
  color: #fff;
  background-color: transparent;
  box-shadow: 0 4px 25px rgba(137, 22, 82, 0.5);
}

/* =============================
   Light Button Style
============================= */
.btn.btn-light {
  background-color: #ffedd8;
  color: #891652;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn.btn-light:hover {
  background-color: transparent;
  color: #e2b054;
  box-shadow: 0 4px 20px rgba(226, 176, 84, 0.3);
}

/* =============================
   Hover Color Accent (U L T I M A T E)
============================= */
.btn-hover {
  transition: 0.4s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #891652, #e2b054);
  z-index: -1;
  transition: 0.5s ease-in-out;
}

@media (hover: hover) {
  .btn-hover:hover {
    color: #fff !important;
    transform: scale(1.03);
  }

  .btn-hover:hover::before {
    left: 0;
  }
}

/* =============================
   Responsive Font Scaling (LIKE A BOSS)
============================= */
@media (max-width: 768px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    border-radius: 0.45rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.45rem 0.9rem;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
    border-radius: 0.4rem;
    letter-spacing: 0.4px;
  }
}

/*** 🚀 GOD-TIER SECTION TITLE ***/

/* Main wrapper */
.section-title {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.2rem;
  text-align: center;
  position: relative;
}

/* Subheading style */
.section-title .sub-style,
.sub-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.1rem;
  color: #891652;
  letter-spacing: 1.5px;
  gap: 0.75rem;
  background: linear-gradient(to right, #891652, #e2b054);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

/* Decorative lines (before & after) */
.section-title .sub-style::before,
.section-title .sub-style::after,
.sub-title::before,
.sub-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #e2b054, #891652);
  border-radius: 2px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* Vary line sizes */
.section-title .sub-style::before,
.sub-title::before {
  max-width: 100px;
}
.section-title .sub-style::after,
.sub-title::after {
  max-width: 60px;
}

/* Heading (optional) */
.section-title h2 {
  font-size: 2.6rem;
  font-weight: 900;
  margin: 18px 0;
  color: #891652;
  letter-spacing: 1px;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Glowing underline below main heading */
.section-title h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 10px auto 0;
  background: linear-gradient(to right, #e2b054, #ffedd8, #891652);
  border-radius: 50px;
  animation: glowMove 3s linear infinite;
}

@keyframes glowMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .section-title .sub-style,
  .sub-title {
    font-size: 0.95rem;
    gap: 0.5rem;
  }

  .section-title .sub-style::before,
  .sub-title::before {
    max-width: 60px;
  }

  .section-title .sub-style::after,
  .sub-title::after {
    max-width: 40px;
  }
}

@media (max-width: 425px) {
  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title .sub-style,
  .sub-title {
    font-size: 0.85rem;
    flex-direction: column;
    gap: 0.3rem;
  }

  .section-title .sub-style::before,
  .sub-title::before,
  .section-title .sub-style::after,
  .sub-title::after {
    display: none;
  }

  .section-title h2::after {
    width: 80px;
    height: 3px;
  }
}

@media (max-width: 375px) {
  .section-title h2 {
    font-size: 1.6rem;
  }

  .section-title .sub-style,
  .sub-title {
    font-size: 0.8rem;
  }
}

@media (max-width: 320px) {
  .section-title h2 {
    font-size: 1.5rem;
  }

  .section-title .sub-style,
  .sub-title {
    font-size: 0.75rem;
  }
}

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
/* === Base Styling === */
.navbar-light .navbar-nav .nav-link {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  margin-right: 25px;
  padding: 30px 0;
  color: var(--bs-dark) !important;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s ease;
  overflow: hidden;
}

.navbar-light .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #891652, #e2b054);
  border-radius: 50px;
  transition: 0.4s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #891652 !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
  width: 80%;
}

/* === Sticky Navbar === */
.sticky-top.navbar-light {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease-in-out;
}

/* === Logo Sizing === */
.navbar-light .navbar-brand img {
  max-height: 48px;
  transition: 0.3s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 42px;
}

/* === Hover Lift for Links === */
.navbar-light .navbar-nav .nav-link:hover {
  transform: translateY(-2px);
}

/* === Mobile Dropdown Menu === */
@media (max-width: 991.98px) {
  .navbar-toggler {
    padding: 8px 12px;
    border: 1px solid var(--bs-primary);
    border-radius: 6px;
    background: #fff;
  }

  .navbar-collapse {
    margin-top: 10px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }

  .navbar-nav .nav-link {
    margin-right: 0;
    padding: 12px 0;
    font-size: 15px;
  }
}

/* === Desktop Hover Dropdown === */
@media (min-width: 1200px) {
  .navbar .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    padding: 0.75rem 1rem;
  }

  .navbar .nav-item:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
  }

  .dropdown-menu a:hover {
    background: linear-gradient(to right, #e2b054, #891652);
    color: #fff !important;
    border-radius: 6px;
  }
}

/* === Floating Effect on Hover (subtle) === */
.navbar-light .navbar-nav .nav-link:hover {
  box-shadow: 0 4px 10px rgba(137, 22, 82, 0.08);
}

/* === Glass Button for CTA === */
.navbar .btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(226, 176, 84, 0.4);
  color: #891652;
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar .btn-glass:hover {
  background: linear-gradient(to right, #891652, #e2b054);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/*** Carousel Hero Header Start ***/
/* ============================
/* ========== HEADER CAROUSEL BASE ========== */
.header-carousel {
  position: relative;
  overflow: hidden;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
  width: 100%;
  height: 700px;
  margin-top: 95px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease-in-out;
}

@media (max-width: 992px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
    height: 550px;
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
    height: 520px;
  }
}


/* ========== CAPTION STYLING ========== */
.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px 15px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  z-index: 2;
  box-sizing: border-box;
}

.carousel-caption-content {
  width: 90%;
  max-width: 900px;
  color: white;
}

.carousel-caption-content h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.carousel-caption-content p {
  font-size: 1.1rem;
  line-height: 1.5;
}

.carousel-caption-content .btn {
  background: #e2b054;
  color: #891652;
  border: 2px solid #ffedd8;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 30px;
  margin-top: 20px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.carousel-caption-content .btn:hover {
  background: #891652;
  color: #fff;
  border-color: #e2b054;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .carousel-caption-content h1 {
    font-size: 2.2rem;
  }

  .carousel-caption-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .carousel-caption-content h1 {
    font-size: 1.7rem;
  }

  .carousel-caption-content p {
    font-size: 0.95rem;
  }

  .carousel-caption-content .btn {
    font-size: 0.9rem;
    padding: 10px 24px;
  }
}


/* ========== SLIDE BUTTONS ========== */
.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  font-size: 18px;
  border-radius: 50%;
  background: rgba(137, 22, 82, 0.65); /* translucent plum */
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: rgba(255, 237, 216, 0.95); /* light peach */
  color: #891652;
  transform: scale(1.15);
}

@media (max-width: 576px) {
  .header-carousel .owl-nav {
    top: 50%; /* ✅ keep them on sides even in small screens */
    transform: translateY(-50%);
    padding: 0 6px;
  }

  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(21, 185, 217, .3);
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(21, 185, 217, .5);
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: rgba(21, 185, 217, .5);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

/*** Service End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: visible;
    height: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    animation: zoomIn 1.2s ease-in-out;
}

.about .about-img:hover {
    transform: scale(1.02) rotateZ(-1deg);
}

.about .about-img .main-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about .about-img .about-img-inner {
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 150px;
    height: 150px;
    border: 6px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    animation: floatY 3s ease-in-out infinite;
    z-index: 2;
}

.shadow-glow {
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.3), 0 0 15px rgba(0, 123, 255, 0.2);
    backdrop-filter: blur(4px);
}

.about .about-img .about-experience {
    position: absolute;
    top: 40%;
    left: -100px;
    transform: rotate(-90deg);
    background: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: var(--bs-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    opacity: 0.85;
}

@keyframes floatY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes zoomIn {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.tilt-hover:hover {
    transform: perspective(800px) rotateY(3deg) rotateX(2deg);
}

/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}
/*** Feature End ***/


/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(239, 162, 134, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Testimonial End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
}

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}



/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark) !important;
}
/*** copyright end ***/






:root {
  --primary: #1a0e17;
  --accent: #e2b054;
  --cream: #fffaf0;
  --gradient: linear-gradient(to left, #1a0e17, #5a1240 40%, #e2b054 100%);
}

/* Navbar */
.custom-navbar {
  background: var(--gradient);
  padding: 1.3rem 1.5rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  z-index: 999;
  min-height: 90px;
  display: flex;
  align-items: center;
}

/* Shrink + Translucent on Scroll */
.custom-navbar.navbar-scrolled {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(
    to left,
    rgba(26, 14, 23, 0.75),
    rgba(90, 18, 64, 0.65) 40%,
    rgba(226, 176, 84, 0.5) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* Logo */
.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
  transition: height 0.4s ease;
}

.custom-navbar.navbar-scrolled .logo-img {
  height: 50px;
}

/* Brand text */
.brand-subtext {
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0;
  text-shadow: 0 0 4px var(--accent);
  transition: font-size 0.3s ease;
}

.custom-navbar.navbar-scrolled .brand-subtext {
  font-size: 0.95rem;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: var(--cream) !important;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 12px;
  position: relative;
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* CTA Button */
.btn-appointment {
  background: var(--cream);
  color: var(--primary);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-appointment:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Hamburger Icon */
.navbar-toggler {
  border: none;
  padding: 0.4rem 0.6rem;
  font-size: 1.2rem;
  outline: none;
  box-shadow: none;
}

.navbar-toggler .fa-bars {
  font-size: 1.5rem;
  color: var(--cream);
  transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar-nav {
    background: transparent !important;
    padding: 0;
    margin-top: 1rem;
    border-radius: 0 !important;
  }

  .btn-appointment {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }

  .logo-img {
    height: 60px;
  }

  .brand-subtext {
    font-size: 1rem;
  }

  .custom-navbar {
    padding: 1rem 1.2rem;
    min-height: 75px;
  }

  .custom-navbar.navbar-scrolled {
    padding: 0.6rem 1.2rem;
  }

  /* 🔥 Fix for invisible hamburger */
  .navbar-toggler .fa-bars {
    color: #1a0e17 !important;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
  }
}

/* === Carousel Redesign === */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  position: relative;
}

.carousel-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(60%);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.carousel-text {
  max-width: 800px;
  text-align: center;
  color: #fff;
  animation: fadeInUp 1.2s ease-in-out both;
}

.carousel-text h5 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e2b054;
  margin-bottom: 1rem;
}

.carousel-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  color: #ffe1b4;
}

.carousel-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ffedd8;
}

.btn-book {
  background: #e2b054;
  color: #891652;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  display: inline-block;
  margin-top: 2rem; /* ✅ ensures spacing below paragraph */
}

.btn-book:hover {
  background: #891652;
  color: #fff;
  transform: translateY(-2px);
}

/* ✅ Carousel Arrows - Consistent Styling */
.owl-nav {
  position: absolute;
  bottom: 140px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
  pointer-events: none;
  z-index: 10;
}

.owl-nav button,
.owl-nav span {
  pointer-events: all;
  background: rgba(255, 237, 216, 0.3) !important;
  border: 2px solid #ffedd8 !important;
  color: #891652 !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  font-size: 1.2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(5px) !important;
}

.owl-nav button:hover,
.owl-nav span:hover {
  background: rgba(137, 22, 82, 0.7) !important;
  color: #fff !important;
  transform: scale(1.1) !important;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .carousel-text {
    padding: 0 1.5rem;
  }

  .carousel-text h1 {
    font-size: 2rem;
  }

  .carousel-text p {
    font-size: 1rem;
  }

  .btn-book {
    padding: 0.6rem 1.5rem;
    margin-top: 2rem;
  }

  .owl-nav {
    bottom: 60px;
    padding: 0 30px;
  }
}

@media (max-width: 425px) {
  .owl-nav {
    bottom: 160px;
    padding: 0 30px;
  }
}

/* Shared styles */
/* === ABOUT SECTION === */
.about-section-custom {
  background: transparent;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.main-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-right: 40px;
  animation: fadeInUp 1.2s ease both;
}

.main-img-wrapper img {
  border-radius: 1rem;
  width: 100%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.main-img-wrapper img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(226, 176, 84, 0.4), 0 0 80px rgba(137, 22, 82, 0.3);
}

/* Overlapping Circle Image */
.circle-img-custom {
  position: absolute;
  bottom: -30px;
  left: 40px;
  width: 220px;
  height: 220px;
  border: 6px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(226, 176, 84, 0.5), 0 0 60px rgba(137, 22, 82, 0.4);
  z-index: 5;
  animation: fadeInUp 1.6s ease both;
}

.circle-img-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Section */
.about-content-custom {
  padding-left: 3rem;
  padding-top: 1rem;
}

.about-content-custom .tagline-custom {
  font-size: 0.9rem;
  color: #e2b054;
  font-weight: 600;
  letter-spacing: 1.5px;
  animation: fadeInUp 1.4s ease both;
}

.about-content-custom .headline-custom {
  font-size: 2.5rem;
  font-weight: 800;
  color: #891652;
  margin-bottom: 20px;
  line-height: 1.3;
  animation: fadeInUp 1.6s ease both;
}

.about-content-custom .lead-custom {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  animation: fadeInUp 1.8s ease both;
  max-width: 700px;
}

.features-custom li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
  display: flex;
  align-items: center;
  animation: fadeInUp 2s ease both;
}

.btn.animate-bounce {
  animation: bounceIn 2s ease infinite;
}

/* === Keyframes === */
@keyframes bounceIn {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === 4K Enhancements === */
@media (min-width: 2560px) {
  .main-img-wrapper img {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .about-content-custom {
    padding-left: 5rem;
    padding-top: 5rem;
  }

  .headline-custom {
    font-size: 3.5rem !important;
  }

  .lead-custom {
    font-size: 1.5rem !important;
  }

  .features-custom li {
    font-size: 1.2rem;
  }
}

/* === Tablet & Mobile === */
@media (max-width: 1024px) {
  .circle-img-custom {
    width: 200px;
    height: 200px;
    left: 30px;
    bottom: -25px;
  }

  .about-content-custom {
    padding-left: 2rem;
  }
}

@media (max-width: 768px) {
  .main-img-wrapper {
    text-align: center;
    margin-right: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .main-img-wrapper img {
    max-width: 95%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .circle-img-custom {
    width: 130px;
    height: 130px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .about-content-custom {
    padding-left: 1rem;
    padding-top: 3rem;
  }
}

@media (max-width: 425px) {
  .main-img-wrapper img {
    max-width: 98%;
  }

  .circle-img-custom {
    width: 110px;
    height: 110px;
    bottom: -15px;
  }
}

@media (max-width: 375px) {
  .main-img-wrapper img {
    max-width: 100%;
  }

  .circle-img-custom {
    width: 100px;
    height: 100px;
    bottom: -12px;
  }
}

@media (max-width: 320px) {
  .main-img-wrapper img {
    max-width: 100%;
  }

  .circle-img-custom {
    width: 90px;
    height: 90px;
    bottom: -10px;
  }
}





/* Section Base */
.why-choose-us-section {
  background-color: #ffedd8;
  font-family: 'Poppins', sans-serif;
}

.badge-style {
  background: #891652;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #555;
}

/* Card Styles */
.choose-card {
  background: linear-gradient(135deg, #ffffff, #fff5ea);
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 100%;
}

.choose-card:hover {
  background: linear-gradient(135deg, #891652, #e2b054);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 18px 4px rgba(226, 176, 84, 0.6);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2b054, #891652);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  transition: background 0.4s, color 0.4s;
  box-shadow: 0 0 12px rgba(137, 22, 82, 0.3);
}

.choose-card:hover .icon-wrapper {
  background: #fff;
  color: #891652;
  box-shadow: 0 0 12px rgba(255, 237, 216, 0.8), 0 0 30px rgba(226, 176, 84, 0.7);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
  transition: color 0.4s;
}

.choose-card:hover .card-title {
  color: #fff;
}

.card-desc {
  font-size: 0.95rem;
  color: #555;
  transition: color 0.4s;
}

.choose-card:hover .card-desc {
  color: #fefefe;
}

/* Responsive Title */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}





/* === Blog Section === */
.blog-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

/* === Blog Card with ALIVE Glow === */
.blog-card {
  background-color: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  position: relative;
  animation: pulseGlow 3s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 16px rgba(137, 22, 82, 0.25), 0 0 32px rgba(226, 176, 84, 0.15);
}

/* Hover Effect with Different Gradient Shadow */
.blog-card:hover {
  transform: scale(1.02);
  animation: none; /* Stop pulsing on hover */
  box-shadow:
    0 0 20px rgba(33, 155, 157, 0.35),
    0 0 35px rgba(226, 176, 84, 0.25),
    0 0 50px rgba(137, 22, 82, 0.25);
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      0 0 12px rgba(137, 22, 82, 0.2),
      0 0 24px rgba(226, 176, 84, 0.1),
      0 0 36px rgba(255, 237, 216, 0.1);
  }
  50% {
    box-shadow:
      0 0 24px rgba(137, 22, 82, 0.35),
      0 0 40px rgba(226, 176, 84, 0.25),
      0 0 50px rgba(255, 237, 216, 0.2);
  }
}

/* Image Container */
.blog-img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem 1rem 0 0;
  flex-shrink: 0;
}

.blog-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.08);
}

/* Overlay */
.blog-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(137, 22, 82, 0.5);
  transition: bottom 0.5s ease;
  z-index: 2;
}

.blog-card:hover .blog-overlay {
  bottom: 0;
}

/* Content */
.blog-card-body {
  padding: 1.5rem;
  padding-bottom: 5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.blog-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Button */
.read-more-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(137, 22, 82, 0.3);
}

.read-more-btn:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px rgba(226, 176, 84, 0.6);
}


/* === PACS Highlight Section === */
/* === IVault Highlight Section Styling === */

.ivault-highlight-section {
  background-color: #fff;
}

.highlight-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.highlight-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2e1534;
}

.highlight-para {
  font-size: 1.125rem;
  color: #444;
  line-height: 1.7;
}

.highlight-content ul li {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  color: #333;
}

.highlight-content ul li i {
  font-size: 1.2rem;
  margin-right: 10px;
}

/* === Responsive: Mobile Image on Top === */
@media (max-width: 768px) {
  .ivault-highlight-section .row {
    flex-direction: column;
  }

  .ivault-highlight-section .col-lg-6:first-child {
    order: -1; /* Move image to top */
  }

  .highlight-img {
    max-height: 360px;
    object-fit: cover;
  }

  .highlight-heading,
  .highlight-para,
  .highlight-content ul li {
    text-align: center;
  }

  .highlight-content ul {
    padding-left: 0;
  }

  .highlight-content ul li {
    justify-content: center;
  }
}

/* === Wider Screens (1800px and above): Add Space === */
@media (min-width: 1800px) {
  .ivault-highlight-section .container {
    max-width: 1600px;
  }

  .highlight-content {
    padding-left: 4rem;
  }

  .highlight-img {
    max-height: 550px;
  }
}




/* === Feature Balanced Section === */
.ivault-feature-balanced-section {
  background-color: #ffffff;
}

.feature-balanced-image-wrapper {
  text-align: center;
}

.feature-balanced-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Content */
.feature-balanced-content {
  padding: 0 1rem;
}

.feature-balanced-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e1333;
}

.feature-balanced-para {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Feature List Icons */
.feature-balanced-content ul li {
  font-size: 1.1rem;
  color: #333;
  display: flex;
  align-items: center;
}

.feature-balanced-content ul li i {
  font-size: 1.25rem;
  margin-right: 10px;
}

/* Responsive Fix for image above content */
@media (max-width: 768px) {
  .feature-balanced-img {
    max-height: 320px;
  }

  .feature-balanced-heading {
    font-size: 2rem;
    text-align: center;
  }

  .feature-balanced-para {
    text-align: center;
  }

  .feature-balanced-content ul {
    padding-left: 0;
  }

  .feature-balanced-content ul li {
    justify-content: center;
    text-align: center;
  }
}

/* Extra spacing for ultra-wide (2560px+) */
@media (min-width: 1800px) {
  .ivault-feature-balanced-section .container {
    max-width: 1600px;
  }

  .feature-balanced-content {
    padding-left: 4rem;
  }

  .feature-balanced-img {
    max-height: 540px;
  }
}













.ivault-card-section {
  background-color: #faf9f6;
}

.ivault-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

/* Hover Effects */
.ivault-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 12px 32px rgba(137, 22, 82, 0.3),
    0 6px 20px rgba(226, 176, 84, 0.25);
  background: linear-gradient(135deg, #fffaf0, #fef7eb);
}

/* Decorative Shine */
.ivault-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(226, 176, 84, 0.2), transparent 60%);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.ivault-card:hover::before {
  opacity: 1;
}

/* Icon */
.ivault-icon {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #891652, #e2b054);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease;
}

.ivault-card:hover .ivault-icon {
  transform: rotate(6deg) scale(1.1);
}

/* Title */
.ivault-card-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: #2e1534;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.ivault-card:hover .ivault-card-title {
  color: #891652;
}

/* Description */
.ivault-card-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.ivault-card:hover .ivault-card-desc {
  color: #333;
}

/* === Responsive Fix for 1024px === */
@media (max-width: 1024px) {
  .ivault-card {
    padding: 1.5rem 1rem;
  }

  .ivault-card-desc {
    font-size: 0.9rem;
    max-height: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ivault-card-title {
    font-size: 1.1rem;
  }
}

/* For tablets and below */
@media (max-width: 768px) {
  .ivault-card-desc {
    max-height: none;
  }
}






.modality-card {
  width: 100%;
  max-width: 260px;
  height: 340px;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid #eee;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Idle black shadow */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.modality-card:hover {
  background: #fff7f0; /* Soft peach cream background */
  transform: translateY(-8px) scale(1.02);
  border-color: #e2b054;
  animation: glow-pulse 2s ease-in-out infinite;
  box-shadow: 
    0 0 10px rgba(137, 22, 82, 0.5),
    0 0 20px rgba(226, 176, 84, 0.4),
    0 0 30px rgba(255, 237, 216, 0.5);
}

.modality-icon {
  font-size: 2.5rem;
  color: #e2b054;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.modality-card:hover .modality-icon {
  transform: scale(1.2) rotate(5deg);
  animation: icon-bounce 0.6s ease forwards;
}

.modality-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.modality-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  padding: 0 10px;
}

/* Glow animation on card */
@keyframes glow-pulse {
  0% {
    box-shadow: 
      0 0 10px rgba(137, 22, 82, 0.5),
      0 0 20px rgba(226, 176, 84, 0.4),
      0 0 30px rgba(255, 237, 216, 0.5);
  }
  50% {
    box-shadow: 
      0 0 14px rgba(137, 22, 82, 0.6),
      0 0 28px rgba(226, 176, 84, 0.5),
      0 0 36px rgba(255, 237, 216, 0.6);
  }
  100% {
    box-shadow: 
      0 0 10px rgba(137, 22, 82, 0.5),
      0 0 20px rgba(226, 176, 84, 0.4),
      0 0 30px rgba(255, 237, 216, 0.5);
  }
}

/* Icon bounce animation */
@keyframes icon-bounce {
  0%   { transform: scale(1.2) rotate(5deg); }
  50%  { transform: scale(1.35) rotate(0deg); }
  100% { transform: scale(1.2) rotate(5deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
  .modality-desc {
    font-size: 0.9rem;
  }
  .modality-card {
    width: 100%;
    height: auto;
  }
}







/* === ABOUT SECTION SOLO === */
.about-section-solo {
  background: transparent;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.about-img-solo-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 600px; /* Default height for desktops */
  animation: fadeInUp 1.2s ease both;
  text-align: center;
}

.about-img-solo-wrapper img {
  border-radius: 1rem;
  width: 100%;
  height: 100%; /* Matches the wrapper's height */
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-img-solo-wrapper img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(226, 176, 84, 0.4), 0 0 80px rgba(137, 22, 82, 0.3);
}

/* === Content === */
.about-content-solo {
  padding-left: 3rem;
  padding-top: 1rem;
}

.about-content-solo .tagline-solo {
  font-size: 0.9rem;
  color: #e2b054;
  font-weight: 600;
  letter-spacing: 1.5px;
  animation: fadeInUp 1.4s ease both;
}

.about-content-solo .headline-solo {
  font-size: 2.5rem;
  font-weight: 800;
  color: #891652;
  margin-bottom: 20px;
  line-height: 1.3;
  animation: fadeInUp 1.6s ease both;
}

.about-content-solo .lead-solo {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  animation: fadeInUp 1.8s ease both;
  max-width: 700px;
}

.features-solo li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
  display: flex;
  align-items: center;
  animation: fadeInUp 2s ease both;
}

.btn.animate-bounce {
  animation: bounceIn 2s ease infinite;
}

/* === Keyframes === */
@keyframes bounceIn {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive Adjustments === */

/* 4K Screens */
@media (min-width: 2560px) {
  .about-img-solo-wrapper {
    height: 700px;
  }

  .about-content-solo {
    padding-left: 5rem;
    padding-top: 5rem;
  }

  .headline-solo {
    font-size: 3.5rem !important;
  }

  .lead-solo {
    font-size: 1.5rem !important;
  }

  .features-solo li {
    font-size: 1.2rem;
  }
}

/* 🔥 Boosted Height for 1024px */
@media (max-width: 1024px) {
  .about-img-solo-wrapper {
    height: 550px; /* 🔼 Increased */
  }

  .about-content-solo {
    padding-left: 2rem;
    padding-top: 2rem;
  }
}

/* Tablets & Medium Devices */
@media (max-width: 768px) {
  .about-img-solo-wrapper {
    height: 400px;
  }

  .about-content-solo {
    padding-left: 1rem;
    padding-top: 3rem;
  }
}

/* Small Mobiles */
@media (max-width: 425px) {
  .about-img-solo-wrapper {
    height: 300px;
  }
}

@media (max-width: 375px) {
  .about-img-solo-wrapper {
    height: 280px;
  }
}

@media (max-width: 320px) {
  .about-img-solo-wrapper {
    height: 260px;
  }
}









/* === PACS Feature Reversed Section === */
.ivault-feature-reverse {
  background: transparent;
  overflow: hidden;
}

.feature-reverse-content {
  padding-right: 1rem;
}

.feature-reverse-heading {
  font-size: 2.3rem;
  font-weight: 800;
  color: #891652;
}

.feature-reverse-para {
  font-size: 1.1rem;
  color: #333;
  max-width: 720px;
}

/* Image Styling */
.feature-reverse-image-wrapper {
  width: 100%;
  height: 100%;
  text-align: center;
}

.feature-reverse-img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.feature-reverse-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(226, 176, 84, 0.4), 0 0 80px rgba(137, 22, 82, 0.3);
}

/* === Responsive Tweaks === */
@media (max-width: 1440px) {
  .feature-reverse-img {
    max-height: 500px;
  }
}

@media (max-width: 1024px) {
  .feature-reverse-img {
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .feature-reverse-content {
    padding: 0;
    text-align: center;
  }

  .feature-reverse-img {
    max-height: 400px;
  }
}

@media (max-width: 425px) {
  .feature-reverse-img {
    max-height: 320px;
  }
}

@media (max-width: 375px) {
  .feature-reverse-img {
    max-height: 300px;
  }
}

@media (max-width: 320px) {
  .feature-reverse-img {
    max-height: 280px;
  }
}
















/* === Back to Top Button === */
.ivault-backtotop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #e2b054, #891652);
  color: #fff;
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(137, 22, 82, 0.3);
  transition: all 0.4s ease;
  animation: pulse-glow 2s infinite;
}

.ivault-backtotop:hover {
  background: linear-gradient(135deg, #891652, #e2b054);
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 0 15px rgba(226, 176, 84, 0.7), 0 0 40px rgba(137, 22, 82, 0.5);
}

/* Icon Pulse Glow Animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 rgba(226, 176, 84, 0.3);
  }
  50% {
    box-shadow: 0 0 12px rgba(226, 176, 84, 0.5), 0 0 25px rgba(137, 22, 82, 0.4);
  }
  100% {
    box-shadow: 0 0 0 rgba(226, 176, 84, 0.3);
  }
}

/* Smaller Screens */
@media (max-width: 768px) {
  .ivault-backtotop {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
  }
}



/* === Custom Footer === */
.custom-footer {
  background: linear-gradient(
    to left,
    rgba(20, 10, 25, 0.98),       /* Deep plum for contrast */
    rgba(72, 14, 54, 0.9) 50%,    /* Warm maroon */
    rgba(137, 22, 82, 0.7) 90%    /* Muted golden-magenta hue */
  );
  color: #ffedd8;
  font-size: 15px;
  padding-top: 60px;
}

/* Logo Style */
.footer-logo-img {
  max-width: 150px;
  height: auto;
}

/* Tagline/Slogan Text */
.footer-slogan {
  font-size: 14px;
  color: #ffedd8;
}

/* Section Headings */
.footer-heading {
  color: #e2b054;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Link Styles */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li a {
  display: inline-block;
  color: #ffedd8;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #e2b054;
}

/* Social Icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e2b054;
  color: #891652;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #ffedd8;
  color: #891652;
  box-shadow: 0 0 10px rgba(226, 176, 84, 0.6);
}
  




.header-section-custom {
  background: linear-gradient(
      to right,
      rgba(137, 22, 82, 0.9),
      rgba(26, 14, 23, 0.9)
    ),
    url('img/bg-header.jpg') center center / cover no-repeat;
  min-height: 60vh; /* Increased height */
  color: white;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.header-section-custom h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .header-section-custom h1 {
    font-size: 2.5rem;
  }

  .header-section-custom {
    min-height: 50vh;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-top: 10px;
}

.breadcrumb a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #e2b054; /* gold hover */
}
:root {
  --deep-maroon: #891652;
  --warm-gold: #e2b054;
  --light-peach: #ffedd8;
  --royal-purple: #4c1f7a;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}

/* Wrapper for spacing */
.demo-form-wrapper {
  padding: 5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 1s ease-out;
}

/* Card container */
.demo-form-card {
  position: relative;
  background: linear-gradient(135deg, var(--light-peach), var(--warm-gold));
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 600px;
  border-radius: 30px;
  box-shadow: 0 0 22px rgba(137, 22, 82, 0.4);
  overflow: hidden;
  z-index: 1;
  animation: slideUp 0.8s ease-out;
}

/* Neon animated shadow border */
.demo-form-card::before {
  content: "";
  position: absolute;
  top: -4px; left: -4px;
  right: -4px; bottom: -4px;
  z-index: -1;
  background: linear-gradient(135deg, var(--deep-maroon), var(--warm-gold), var(--light-peach), var(--deep-maroon));
  background-size: 300% 300%;
  border-radius: 40px;
  filter: blur(15px);
  opacity: 0.7;
  animation: neon-loop 6s ease infinite;
}

/* Form title + subtitle */
.form-org-name {
  text-align: center;
  color: var(--royal-purple);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.form-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

/* Inputs & Textarea */
.demo-form-card input,
.demo-form-card textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: none;
  border-radius: 14px;
  background: #fff;
  font-size: 1rem;
  margin-bottom: 1.1rem;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05),
              0 0 10px rgba(137, 22, 82, 0.1);
  transition: all 0.4s ease;
  transform: translateY(20px);
  opacity: 0;
  animation: fieldFadeIn 0.6s ease-out forwards;
}

.demo-form-card input:nth-child(1) { animation-delay: 0.2s; }
.demo-form-card input:nth-child(2) { animation-delay: 0.3s; }
.demo-form-card input:nth-child(3) { animation-delay: 0.4s; }
.demo-form-card input:nth-child(4) { animation-delay: 0.5s; }
.demo-form-card textarea         { animation-delay: 0.6s; }

.demo-form-card textarea {
  resize: none;
  height: 140px;
  border-radius: 18px;
  background: #fafafa;
  font-size: 1rem;
}

/* Field focus glow */
.demo-form-card input:focus,
.demo-form-card textarea:focus {
  outline: none;
  box-shadow: 0 0 12px var(--warm-gold), 0 0 4px var(--deep-maroon);
}

/* Submit button */
.demo-form-card button {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--deep-maroon), var(--warm-gold));
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 0 16px rgba(137, 22, 82, 0.4);
  animation: fieldFadeIn 0.8s ease-out forwards;
  animation-delay: 0.7s;
  transform: translateY(20px);
  opacity: 0;
}

.demo-form-card button:hover {
  background: linear-gradient(90deg, var(--royal-purple), var(--warm-gold));
  box-shadow: 0 0 24px var(--royal-purple);
}

/* Animations */
@keyframes neon-loop {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fieldFadeIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* === HEADER STYLES === */
#header {
  padding: 10px 0;
  height: 60px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 997;
  background: linear-gradient(to bottom, #219b9d, #b2fefa);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  animation: slideFadeDown 1s ease forwards;
  opacity: 0;
  transform: translateY(-40px);
}

@keyframes slideFadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}