
.ftco-bg-dark{
    background: rgb(33, 37, 41);
}

.ftco-heading-2{
    color: rgb(255 193 7);
    font-size: 1.25rem !important;
}

.uiBg{
     background-color: #105192; 
   /* background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); */
    
}

.ftco-heading-2 p{
    color: #fff !important;
}

.list-unstyled li a {
    color: #fff !important;
    text-decoration: none;
    line-height: 2;
}

.list-unstyled li a:hover {
    color: rgb(255 193 7) !important;
    text-decoration: underline!important;
}

.list-unstyled li{
    color: #fff;
}

hr{
    border-top: 1px;
    color: inherit;
    margin: 1rem 0;
    opacity: .25;
}

hr:not([size]) {
    height: 1px;
    color: #fff;
}

.carousel-item img{
    width: 100%;
    height:90vh;
}

.carousel-caption{
    top: 40%;
}

.carousel-caption h1{
    font-size: 50px;
}

/* Entrance Animation */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Hover Cards */
.hover-effect {
    transition: all 0.35s ease;
    cursor: pointer;
}

.hover-effect:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.display-4 {
    transition: transform 0.3s ease;
}

.hover-effect:hover .display-4 {
    transform: scale(1.25) rotate(-5deg);
}

/* Image Zoom */
.principal-img {
    transition: transform 0.6s ease;
}

.card:hover .principal-img {
    transform: scale(1.08);
}

/* Notice Board Pulse */
.notice-pulse {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(13,110,253,0.3); }
    50% { box-shadow: 0 0 30px rgba(13,110,253,0.35); }
    100% { box-shadow: 0 0 0 rgba(13,110,253,0.3); }
}

.about img{
    height: 50vh;
    width: 100;
}

.page-header {
    background: blue;
    border-radius: 0 0 50% 50% / 20px;
    color: #fff;
    margin-bottom: 3rem;
    padding: 4rem 0;

}

.uiBgs {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 30px 15px;
  height: 100%;
  color: #fff;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.stat-card i {
  font-size: 34px;
  margin-bottom: 10px;
  color: #ffd369;
}

.stat-card h2 {
  font-weight: 800;
  margin: 5px 0;
}

.stat-card p {
  margin: 0;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Hover Effect */
.stat-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(255, 255, 255, 0.18);
}

.special-moments-carousel-item > .special-moments-carousel-row {
  display: flex;
  gap: 1rem;
}

.special-moments-moment-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  flex: 1 0 calc(25% - 1rem);
  cursor: pointer;
  background: #000;
  transition: transform 0.3s ease;
}

.special-moments-moment-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  border-radius: 16px;
}

.special-moments-moment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.special-moments-moment-card:hover img {
  transform: scale(1.07);
}

.special-moments-moment-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 12px 15px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 16px 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.special-moments-moment-card:hover .special-moments-moment-overlay {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .special-moments-carousel-item > .special-moments-carousel-row {
    gap: 0.5rem;
  }
  .special-moments-moment-card {
    flex: 1 0 calc(50% - 0.5rem);
    height: auto;
  }
  .special-moments-moment-card img {
    height: 150px;
  }
}

@media (max-width: 576px) {
  .special-moments-moment-card {
    flex: 1 0 100%;
  }
  .special-moments-moment-card img {
    height: 200px;
  }
}

.lv-vp-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;

    /* animation base */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    transition: all 0.4s ease;
}

/* stagger animation FIX */
.col-md-4:nth-child(1) .lv-vp-card { animation-delay: 0.1s; }
.col-md-4:nth-child(2) .lv-vp-card { animation-delay: 0.3s; }
.col-md-4:nth-child(3) .lv-vp-card { animation-delay: 0.5s; }

.lv-vp-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.lv-vp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lv-vp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,70,140,0.9), rgba(0,70,140,0.3));
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease;
}

.lv-vp-overlay h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.lv-vp-overlay span {
    font-size: 14px;
    opacity: 0.9;
}

.lv-vp-content {
    padding: 20px;
    transition: transform 0.4s ease;
}

.lv-tag {
    display: inline-block;
    background: #fff3cd;
    color: #ff9800;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.lv-vp-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.lv-vp-link {
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* 🔥 Hover Effects */
.lv-vp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.lv-vp-card:hover img {
    transform: scale(1.1);
}

.lv-vp-card:hover .lv-vp-content {
    transform: translateY(-5px);
}

.lv-vp-card:hover .lv-vp-link {
    transform: translateX(6px);
}

/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aloft-section {
    background: #f4f6f9;
}

.aloft-hero-card {
    position: relative;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f')
                center / cover no-repeat;
}

.aloft-hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    padding: 30px;
    height: 100%;
}

.aloft-hero-title {
    background: #2563eb;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
}

.aloft-hero-text {
    font-size: 15px;
    line-height: 1.6;
}

.aloft-hero-btn {
    margin-top: 10px;
}

.aloft-calendar-title {
    font-size: 32px;
    font-weight: 700;
}

.aloft-activity-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.aloft-activity-header {
    background: #2563eb;
    color: #ffffff;
    padding: 12px 15px;
    font-weight: 600;
}

.aloft-activity-list {
    margin: 0;
    padding: 0;
}

.aloft-activity-item {
    padding: 12px 15px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.aloft-activity-item:last-child {
    border-bottom: none;
}

.aloft-date {
    color: #f59e0b;
    font-weight: 600;
}

.aloft-view-all {
    border-radius: 8px;
}

/* CARD HOVER ANIMATION */
.aloft-activity-card {
    transition: transform 0.3s ease;
}

/* hover par animation trigger */
.aloft-activity-card:hover {
    animation: aloft-bounce 0.6s ease-in-out;
}

/* KEYFRAMES */
@keyframes aloft-bounce {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px); /* UP */
    }
    60% {
        transform: translateY(6px); /* DOWN */
    }
    100% {
        transform: translateY(0); /* BACK TO NORMAL */
    }
}


/* content upar rahe */
.aloft-section {
    position: relative;
    z-index: 2;
}

.card-title {
    margin-bottom: .5rem;
    border-bottom: 1px solid yellow;
    border-bottom-width: 4px;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title:after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: .25rem;
    width: 4rem;
    border-radius: 9999px;
    background-color: yellow;
    content: "";
}
.moment-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.08);*/
    transition: all 0.4s ease;
    height: 100%;
}

.moment-img {
    height: 220px;
    overflow: hidden;
}

.moment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.moment-content {
    padding: 18px;
}

.moment-content h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.moment-content p {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 0;
}

/* Hover Animation */
.moment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.moment-card:hover img {
    transform: scale(1.1);
}

/* Carousel spacing fix */
.carousel-item .row {
    margin: 0;
}

  .special-moment-img {
    height: 150px;       /* same height for all images */
    object-fit: cover;   /* crop images to fit height */
    width: 100%;         /* full width of column */
  }

  .special-moment-title {
    font-size: 0.85rem;
    font-weight: 500;
  }


.hero-slider{
  position:relative;
  height:480px;
  overflow:hidden;
}

.hero-slider img{
  width:100%;
  height:480px;
  object-fit:cover;
}

/* dark overlay */
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.25);
  z-index:1;
}

/* CURVED blue shape */
.hero-blue{
  position:absolute;
  top:-20%;
  right:-25%;
  width:70%;
  height:140%;
  background:linear-gradient(180deg,#2f65e8,#1f4fd8);
  border-radius:50%;
  z-index:2;
  opacity: 0.6;
}

/* breadcrumb */
.hero-breadcrumb{
  position:absolute;
  top:35px;
  right:140px;
  color:#fff;
  font-size:14px;
  z-index:3;
  opacity:.9;
}

/* content */
.hero-content{
  position:absolute;
  top:50%;
  right:150px;
  transform:translateY(-50%);
  color:#fff;
  z-index:3;
}

.hero-content h1{
  font-size:64px;
  font-weight:700;
  margin-bottom:10px;
}

.hero-content p{
  font-size:17px;
  max-width:420px;
  line-height:1.6;
}

/* arrows */
.carousel-control-prev,
.carousel-control-next{
  z-index:4;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
  background-size:55%;
  background-color:rgba(255,255,255,.8);
  border-radius:50%;
  width:44px;
  height:44px;
}
	
	/* left card */
.welcome-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  border-left: 5px solid #1f4fd8;
}

/* heading */
.welcome-title{
  color:#1f4fd8;
  font-weight:700;
  font-size:36px;
  line-height:1.3;
}

/* text */
.welcome-card p{
  color:#5f6b7a;
  font-size:16px;
  line-height:1.7;
}

/* image wrapper */
.image-wrap{
  display:inline-block;
}

/* image border */
.rounded-image{
  border-radius:20px;
  border:4px solid #1f4fd8;
}

.lvis-culture-wrap {
  padding: 80px 0;
  background: #ffffff;
}

.lvis-culture-title {
  font-weight: 700;
  color: #1f2937;
}

.lvis-culture-subtitle {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.lvis-culture-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.lvis-culture-card:hover {
  transform: translateY(-6px);
}

.lvis-icon-box {
  width: 56px;
  height: 56px;
  background: #fff6dc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.lvis-icon-box i {
  font-size: 24px;
  color: #f4b400;
}

.lvis-card-title {
  font-weight: 600;
  margin-bottom: 14px;
  color: #111827;
}

.lvis-card-text {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}

.lvisop-wrap {
  padding: 80px 0;
  background: #ffffff;
}

.lvisop-head {
  text-align: center;
  margin-bottom: 50px;
}

.lvisop-title {
  font-weight: 700;
  color: #1f2937;
}

.lvisop-subtitle {
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
}

.lvisop-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 42px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.lvisop-row {
  align-items: center;
}

.lvisop-role {
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.lvisop-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.lvisop-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef2f7;
  color: #475569;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
}

.lvisop-desc {
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.lvisop-right {
  text-align: right;
}

.lvisop-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffc107;
  color: #111827;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(255, 193, 7, 0.35);
  transition: all 0.3s ease;
}

.lvisop-btn:hover {
  background: #ffb703;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .lvisop-right {
    text-align: left;
    margin-top: 20px;
  }
}

/* ===== Card Entry Animation ===== */
@keyframes lvisopFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lvisop-card {
  animation: lvisopFadeUp 0.8s ease forwards;
}

/* ===== Card Hover Effect ===== */
.lvisop-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lvisop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* ===== Job Tag Hover ===== */
.lvisop-tag {
  transition: background 0.3s ease, transform 0.3s ease;
}

.lvisop-tag:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

/* ===== Button Hover Animation ===== */
.lvisop-btn {
  position: relative;
  overflow: hidden;
}

.lvisop-btn i {
  transition: transform 0.3s ease;
}

.lvisop-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-20deg);
}

.lvisop-btn:hover::before {
  left: 120%;
  transition: left 0.6s ease;
}

.lvisop-btn:hover i {
  transform: translateX(6px);
}

/* ===== Text Subtle Hover ===== */
.lvisop-role {
  transition: color 0.3s ease;
}

.lvisop-card:hover .lvisop-role {
  color: #f59e0b;
}

.lvisop-card:hover {
	border: 1px solid yellow;
}

.lvisps-wrap {
  padding: 80px 0;
  background: #ffffff;
}

.lvisps-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lvisps-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.lvisps-head {
  background: #fffaf0;
  padding: 24px 30px;
  border-bottom: 1px solid #f1e6c8;
}

.lvisps-title {
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lvisps-title i {
  color: #f4b400;
}

.lvisps-subtext {
  color: #6b7280;
  margin-top: 8px;
  font-size: 15px;
}

/* Table */
.lvisps-table-wrap {
  padding: 20px 30px;
}

.lvisps-table-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
}

.lvisps-table-head {
  font-weight: 600;
  color: #475569;
  background: #fafafa;
  padding: 12px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
}

.lvisps-highlight {
  color: #f4b400;
  font-weight: 700;
}

/* Contact */
.lvisps-contact-item {
  display: flex;
  gap: 16px;
  padding: 22px 30px;
}

.lvisps-contact-item h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.lvisps-contact-item p {
  color: #6b7280;
  margin: 0;
}

.lvisps-icon {
  width: 48px;
  height: 48px;
  background: #fff6dc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4b400;
  font-size: 18px;
  flex-shrink: 0;
}

.lvisps-email {
  color: #f4b400;
  font-weight: 600;
}

  /* ===== HERO SLIDER BASE ===== */
.lvis-hero-slider {
  position: relative;
}

.lvis-hero-slider .carousel-item {
  height: 85vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

/* Background image with zoom animation */
.lvis-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 6s ease;
}

/* Dark overlay */
.lvis-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15)
  );
}

/* Active zoom effect */
.carousel-item.active .lvis-slide-bg {
  transform: scale(1);
}

/* ===== CAPTION ===== */
.lvis-slider-caption {
  position: absolute;
  left: 8%;
  bottom: 28%;
  text-align: left;
  max-width: 650px;
}

/* Title animation */
.lvis-slide-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(40px);
  animation: lvisFadeUp 1s ease forwards;
  animation-delay: 0.5s;
}

/* Subtitle animation */
.lvis-slide-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #facc15;
  opacity: 0;
  transform: translateY(40px);
  animation: lvisFadeUp 1s ease forwards;
  animation-delay: 0.9s;
}

/* Reset animation when slide inactive */
.carousel-item:not(.active) .lvis-slide-title,
.carousel-item:not(.active) .lvis-slide-subtitle {
  animation: none;
  opacity: 0;
}

/* ===== KEYFRAMES ===== */
@keyframes lvisFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== INDICATORS ===== */
.lvis-slider-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.5;
}

.lvis-slider-indicators .active {
  width: 28px;
  border-radius: 20px;
  background: #facc15;
  opacity: 1;
}

/* ===== CONTROLS ===== */
.lvis-slider-control {
  width: 60px;
}

.lvis-slider-control span {
  background-size: 70%;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .lvis-slider-caption {
    left: 6%;
    bottom: 22%;
  }

  .lvis-slide-subtitle {
    font-size: 1.05rem;
  }
}

  /* Modal size */
.image-modal .modal-dialog {
  max-width: 650px;
}

/* Glass + shadow card */
.image-modal .modal-content {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
  border-radius: 14px;
}

/* Header */
.image-modal .modal-header {
  background: linear-gradient(135deg, #003366, #0059b3);
  color: #fff;
  padding: 22px;
}

.image-modal .modal-title {
  font-size: 18px;
  font-weight: 600;
  animation: fadeDown 0.8s ease forwards;
}

.image-modal .modal-title span {
  display: inline-block;
  margin-top: 4px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fbb800;
}

/* Image box */
.image-box {
  position: relative;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  transform: scale(1.1);
  transition: transform 1.3s ease;
}

.image-modal.show .image-box img {
  transform: scale(1);
}

/* Shine effect */
.image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  animation: shine 2.5s ease forwards;
}

@keyframes shine {
  to { left: 130%; }
}

/* Modal entrance animation */
.image-modal.fade .modal-dialog {
  transform: scale(0.88) translateY(25px);
  opacity: 0;
  transition: all 0.5s ease;
}

.image-modal.fade.show .modal-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Text animation */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Wrapper */
.special-carousel .special-box {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* Image */
.special-carousel .special-box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Text overlay */
.special-carousel .special-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  padding: 25px;
  text-align: center;
}

.special-carousel .special-text h4 {
  font-weight: 700;
}
.special-carousel .special-text p {
  font-size: 1rem;
  opacity: 0.9;
}

/* FAST fade + zoom */
.special-carousel .carousel-item {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.special-carousel .carousel-item.active {
  opacity: 1;
  transform: scale(1);
}

/* Fast image zoom */
@keyframes fastZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.special-carousel .carousel-item.active img {
  animation: fastZoom 1.8s linear forwards;
}

/* Controls */
.special-carousel .carousel-control-prev-icon,
.special-carousel .carousel-control-next-icon {
  background-color: #667eea;
  border-radius: 50%;
  padding: 18px;
}

/* Mobile */
@media(max-width:768px){
  .special-carousel .special-box img {
    height: 240px;
  }
}

/* Main box */
.special-moment-box {

  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.6);
  box-shadow: 
      0 15px 40px rgba(0,0,0,0.15),
      0 0 0 4px rgba(0,123,255,0.08);
  background: #fff;
  transition: 0.4s ease;
}

.special-moment-box:hover {
  box-shadow: 
      0 20px 50px rgba(0,0,0,0.25),
      0 0 25px rgba(0,123,255,0.25);
}


/* Image container */
.special-moment-img {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.special-moment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4s linear;
}

/* Overlay text on image */
.special-moment-content {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,0.4); /* semi-transparent overlay for readability */
  padding: 15px 25px;
  border-radius: 10px;
}
.special-moment-content h4 {
  font-weight: 700;
  margin-bottom: 5px;
}
.special-moment-content p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Read More button */
.read-more-btn {
  display: inline-block;
  padding: 8px 18px;
  background-color: #667eea;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.read-more-btn:hover {
  background-color: #5561c9;
}

/* Fade + Zoom animation */
.carousel-item {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
}
.carousel-item.active {
  opacity: 1;
  transform: scale(1);
}

/* Slow image zoom (Ken Burns effect) */
.carousel-item.active img {
  transform: scale(1.08);
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #667eea;
  border-radius: 50%;
  padding: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .special-moment-img {
    height: 220px;
  }
  .special-moment-content {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  .read-more-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
}

/* @media (min-width: 600px) {
  .carousel-item img{
    width: 100%;
    height:50vh;
}
} */