/* ================= THEME COLORS START HERE ================= */
:root {
    --theme-color1: #ff9122;
    --primary-gradient: linear-gradient(90deg, #d5732f 0%, #ffcd4d 100%);

    /* link color */
    --link-text: #ff9122;
    --link-text-hover :  #a8883f;

    /* --bg-color: #f8f9fa;
    --text-color: #212529;
    --border-color: #dee2e6; */
}
/* ================= THEME COLORS END HERE ================= */


/* ================= BREADCRUMB SECTION START HERE ================= */
.breadcrumb-section {
    --bc-brand-orange: #f99122;
    --bc-text-dark: #0f172a;
    --bc-text-muted: #64748b;
    
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    position: relative;
    z-index: 10;
}

/* Clean Bold Page Title */
.breadcrumb-section .hero-page-title {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--bc-text-dark);
    margin: 0;
    letter-spacing: -0.4px;
    font-size: 22px;
}

/* Clean Breadcrumb List Container */
.breadcrumb-section .custom-breadcrumb-list {
    margin: 0;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
}

/* Items Style */
.breadcrumb-section .breadcrumb-item {
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Normal Links (Home / Dashboard) */
.breadcrumb-section .breadcrumb-item a {
    color: var(--bc-text-muted);
    text-decoration: none;
    padding: 4px 6px;
    transition: all 0.2s ease;
    position: relative;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: var(--bc-brand-orange);
}
.breadcrumb-section .breadcrumb-item.active {
 background-color: transparent !important;
}
/* Active Page Item */
.breadcrumb-section .breadcrumb-item.active span {
    color: var(--bc-brand-orange);
    font-weight: 700;
    padding: 4px 6px;
}

/* Sleek Separator Arrow */
.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #cbd5e1;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 4px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 12px 0;
    }
    .breadcrumb-section .hero-page-title {
        font-size: 1.2rem;
    }
    .breadcrumb-section .breadcrumb-item {
        font-size: 0.8rem;
    }
}
/* ================= BREADCRUMB SECTION END HERE ================= */

/* ================= BUTTONS ================= */
.custom-btn-orange {
  background: var(--primary-gradient);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  padding: 8px 10px;
}

.custom-btn-orange:hover {
  background: var(--primary-gradient);
  color: #fff;
}
.custom-btn-orange:hover:not(:disabled) {
  background: linear-gradient(90deg, #d96b00, #ffa733) !important;
}

/* Disabled Button */
.custom-btn-orange:disabled,
.custom-btn-orange.disabled {
  background: linear-gradient(90deg, #f5a65b, #ffd39b);
  color: #fff;
  cursor: not-allowed;
  opacity: 0.8;
  box-shadow: none !important;
}
.custom-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--primary-gradient);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.custom-primary-button:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.custom-primary-button.full-width {
  display: flex;
  width: 100%;
}
.custom-outline-button {
  background: #fff;
  color: var(--theme-color1);
  border: 2px solid var(--theme-color1);
  border-radius: 5px;
  padding: 7px 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.custom-outline-button:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: var(--theme-color1);
}
/* ================= LINKS ================= */

.custom-page-link {
  display: inline-block;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--link-text);
  text-decoration: none;
  font-weight: 600;
}

.custom-page-link:hover {
  color: var(--link-text-hover);
}

.custom-page-link:hover::after {
  transform: translateX(5px);
}

/* ================= CARDS ================= */

.custom-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.custom-card-image {
  /* height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 20px; */
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 20px;
}
.custom-card-image img {
  /* width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px; */
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.custom-card-image-contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* .custom-card:hover img {
  transform: scale(1.08);
} */

.custom-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  color: var(--theme-color1);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.custom-card-body {
  padding: 20px;
  padding-top: 0px;
  flex: 1;
}

.custom-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e293b;
}

.custom-card-text {
  color: #64748b;
  line-height: 1.8;
}

.custom-card-footer {
  text-align: center;
  margin-top: auto;
  padding: 20px 0px;
  border-top: 1px solid #d9dce0;
}
/* ================= DOWNLOAD / ICON CARDS START HERE ================= */
.custom-icon-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 35px 25px;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  transition: all 0.35s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.custom-icon-card:hover {
  transform: translateY(-8px);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* Icon Box */

.custom-icon-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff4e8, #ffe7c2);
  margin-bottom: 25px;
  transition: 0.35s;
}

.custom-icon-card:hover .custom-icon-card-icon {
  background: linear-gradient(135deg, #ff9122, #ffb347);
  transform: rotate(-8deg) scale(1.08);
}

.custom-icon-card-icon i {
  font-size: 32px;
  color: var(--theme-color1);
  transition: 0.35s;
}

.custom-icon-card:hover .custom-icon-card-icon i {
  color: #fff;
}

/* Title */

.custom-icon-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.4;
  margin: 0;
  transition: 0.3s;
}

.custom-icon-card:hover .custom-icon-card-title {
  color: var(--theme-color1);
}

.custom-icon-card-link {
  text-decoration: none;
  color: inherit;
}

.custom-icon-card-link:hover {
  text-decoration: none;
  color: inherit;
}
.download-details-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    height:100%;
    display:flex;
    flex-direction:column;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    width:100%;
}

.download-details-image{
    width:100%;
    height:250px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    padding:20px;
}

.download-details-image img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

.download-details-body{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    padding-top:0;
}

.download-details-title{
    margin:0;
    min-height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.download-details-footer{
    padding:20px;
    text-align:center;
    margin-top:auto;
}
/* ================= DOWNLOAD / ICON CARDS END HERE ================= */

/* ================= THIS CSS FOR LANDING PAGE HERO SECTION VIDEO START HERE ================= */
/* Hero Main Wrapper */
.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 92vh; /* Expanded height for bottom floating stats */
  overflow: hidden;
  background-color: #0f172a;
}

/* Background Video */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Rich Dark Multi-Layer Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgb(15 23 42 / 20%) 0%, rgb(15 23 42 / 44%) 100%), 
  linear-gradient(180deg, rgb(15 23 42 / 32%) 0%, rgb(15 23 42 / 60%) 100%);
  z-index: 2;
}

/* Content Container Over Video */
.hero-text-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10 !important;
}

/* Pulsing Badge Styling */
.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f8fafc;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.badge-dot-pulsing {
  width: 9px;
  height: 9px;
  background-color: var(--theme-color1);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(255, 145, 34, 0.7);
  animation: pulse-orange 1.8s infinite;
}

@keyframes pulse-orange {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 145, 34, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 145, 34, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 145, 34, 0);
  }
}

/* Typography & Gradient */
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.8px;
  font-weight: 800;
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  font-weight: 300;
  color: #cbd5e1 !important;
}


/* Bottom Floating Glass Stats Bar */
.hero-bottom-stats {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  max-width: 850px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-mini-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--theme-color1)
}

.stat-mini-label {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.15);
}
/* ================= THIS CSS FOR LANDING PAGE HERO SECTION VIDEO END HERE ================= */

/* ================= THIS CSS FOR LANDING PAGE ABOUT US SECTION  START HERE ================= */
/* Light Background Theme */
.about-light-section {
  background-color: #f8fafc; /* Very soft light gray-blue background */
  position: relative;
}

/* Category Sub-Tag */
.sub-tag {
  color: var(--theme-color1);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sub-tag .dot {
  width: 8px;
  height: 8px;
  background-color: var(--theme-color1);
  border-radius: 50%;
  display: inline-block;
}

/* Heading Styling */
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.text-orange {
  color: var(--theme-color1) !important;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Light Feature Badges */
.feature-card-light {
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 0.95rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.feature-card-light:hover {
  border-color: var(--theme-color1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 145, 34, 0.12);
}

/* Pill Orange Button */
.btn-orange-pill {
   background: var(--primary-gradient);
  color: #ffffff;
  padding: 12px 36px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 8px 20px rgba(255, 145, 34, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-orange-pill:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Image Container & Floating Badge */
.about-image-card {
  position: relative;
  padding: 12px;
}

.img-wrapper {
  background: #ffffff;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.img-wrapper img {
  width: 100%;
  display: block;
}

/* Floating Badge Box */
.floating-badge-box {
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 12px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon {
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  background: #fff3e6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Tweak */
@media (max-width: 576px) {
  .floating-badge-box {
    position: static;
    margin-top: 15px;
  }
}
/* ================= THIS CSS FOR LANDING PAGE ABOUT US SECTION  START HERE ================= */


/* =================GLOBAL SECTION TITLE STYLES  START HERE===================== */
/* Main Block Wrapper */
.section-title-block {
  position: relative;
  z-index: 2;
}

/* 1. Small Top Badge / Tag */
.section-tag-badge {
  display: inline-block;
  background: rgba(255, 145, 34, 0.12); 
  color: var(--theme-color1);                        /
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 10px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 145, 34, 0.25);
  font-size: 16px !important;
}

/* 2. Main Heading (Auto-responsive) */
.section-title-block .main-title {
  padding-top: 10px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem); 
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

/* 3. Highlighted Gradient Text */
.section-title-block .highlight-text {
   background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* 4. Subtitle / Description Paragraph */
.section-subtext {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.65;
  font-weight: 400;
}

/* Dark Mode Variant (Jab dark section par use karna ho) */
.section-title-block.title-dark .main-title {
  color: #ffffff !important;
}

.section-title-block.title-dark .section-subtext {
  color: rgba(255, 255, 255, 0.75) !important;
}
/* =================GLOBAL SECTION TITLE STYLES  END HERE===================== */


/* ================= THIS CSS FOR LANDING PAGE COUNTER METRICS SECTION AND EDP SECION  START HERE ================= */
/* ==========================================
   1. MODERN STATS COUNTER STYLES
   ========================================== */
.modern-stats-section {
  position: relative;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.453) 0%, rgb(15 23 42 / 44%) 100%), linear-gradient(180deg, rgba(15, 23, 42, 0.53) 0%, rgb(15 23 42 / 60%) 100%), url('https://plus.unsplash.com/premium_photo-1661284836545-3a6ec65fcffc?w=600') center center / cover no-repeat;
  background-attachment: fixed;
  padding: 80px 0;
  overflow: hidden;
}

.modern-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.modern-stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-color1);
  box-shadow: 0 15px 30px rgba(255, 145, 34, 0.15);
}

.stat-icon-glow {
  width: 50px;
  height: 50px;
  background: rgba(255, 145, 34, 0.12);
  color: var(--theme-color1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.modern-stat-card:hover .stat-icon-glow {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(255, 145, 34, 0.35);
}

.stat-num {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.stat-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 4px;
}

/* ==========================================
   2. MODERN EDP SECTION STYLES
   ========================================== */
/* SECTION BASE SCOPE */
#edp-section {
  width: 100%;
  padding: 80px 0; 
  /* Image and Overlay applied directly to the section */
 background: linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.75)), 
                  url('../img/EDP_img.png') center/cover no-repeat fixed;
  border-radius: 0px; /* Optional: adds rounded section corners */
  background-attachment: fixed;
}
/* =========================================
    NEW HEADER / TITLE STYLING
    ========================================= */
#edp-section .edp-header-wrapper, .event-tree-section .event-header-wrapper{
  text-align: center;
  margin-bottom: 50px;
}

#edp-section .edp-top-pill,  .event-tree-section .event-top-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid var(--theme-color1);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.15);
}

#edp-section .edp-main-title, .event-tree-section .event-main-title{
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

#edp-section .edp-main-title span, .event-tree-section .event-main-title span{
     background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

#edp-section .edp-sub-title, .event-tree-section event-sub-title{
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Glass Container */
#edp-section .edp-outer-card-wrapper {
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  padding: 50px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* Left Image Frame - Full Cover Solution */
#edp-section .edp-left-img-col {
  display: flex;
  flex-direction: column;
}

#edp-section .edp-left-img-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: #0f172a;
}

#edp-section .edp-left-img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#edp-section .edp-left-img-container:hover img {
  transform: scale(1.06);
}

/* Floating Image Badge Overlay */
#edp-section .edp-img-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 16px 20px;
  color: #fff;
}

/* Vertical Stepper Container */
#edp-section .edp-vertical-stepper {
  position: relative;
  padding-left: 20px;
}

/* Gradient Connecting Line */
#edp-section .edp-vertical-stepper::before {
  content: '';
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 70px;
  width: 4px;
  background: linear-gradient(180deg, #ff9900 0%, #00b4d8 50%, #9d4edd 100%);
  opacity: 0.7;
  border-radius: 10px;
  z-index: 1;
}

/* Glowing Light Stream on Line */
#edp-section .edp-vertical-stepper::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 70px;
  width: 4px;
  height: 90px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff, rgba(255,255,255,0));
  animation: edpFlowStream 3.5s ease-in-out infinite;
  z-index: 1;
}

/* Step Item Wrapper */
#edp-section .edp-v-step-item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

#edp-section .edp-v-step-item:last-child {
  margin-bottom: 0;
}

/* Animated Circles */
#edp-section .edp-circle-master {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#edp-section .edp-outer-spin-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed #cbd5e1;
  animation: edpSpinRing 12s linear infinite;
}

#edp-section .edp-soft-pulse-aura {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  opacity: 0.25;
  animation: edpAuraPulse 2.5s ease-in-out infinite alternate;
}

#edp-section .edp-icon-ball {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: edpSoftFloat 3.5s ease-in-out infinite alternate;
}

#edp-section .edp-v-step-item:hover .edp-icon-ball {
  transform: scale(1.15) rotate(5deg);
}

/* Interactive Content Card */
#edp-section .edp-v-card-box {
  flex-grow: 1;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  padding: 20px 24px;
  transition: all 0.35s ease;
}

#edp-section .edp-v-step-item:hover .edp-v-card-box {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateX(10px);
  box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.08);
}

/* Color Variants */
/* Step 1 */
#edp-section .edp-step-1 .edp-outer-spin-ring { border-color: rgba(249, 115, 22, 0.5); }
#edp-section .edp-step-1 .edp-soft-pulse-aura { background: #f97316; }
#edp-section .edp-step-1 .edp-icon-ball { 
  background: linear-gradient(135deg, #fb923c, #ea580c); 
  box-shadow: 0 10px 20px -4px rgba(234, 88, 12, 0.4);
}
#edp-section .edp-step-1 .edp-v-badge { color: #ea580c; background: #fff7ed; border: 1px solid #ffedd5; }

/* Step 2 */
#edp-section .edp-step-2 .edp-outer-spin-ring { border-color: rgba(14, 165, 233, 0.5); animation-duration: 8s; animation-direction: reverse; }
#edp-section .edp-step-2 .edp-soft-pulse-aura { background: #0ea5e9; animation-delay: -0.8s; }
#edp-section .edp-step-2 .edp-icon-ball { 
  background: linear-gradient(135deg, #38bdf8, #0284c7); 
  box-shadow: 0 10px 20px -4px rgba(2, 132, 199, 0.4);
  animation-delay: -1.2s;
}
#edp-section .edp-step-2 .edp-v-badge { color: #0284c7; background: #f0f9ff; border: 1px solid #e0f2fe; }

/* Step 3 */
#edp-section .edp-step-3 .edp-outer-spin-ring { border-color: rgba(168, 85, 247, 0.5); animation-duration: 15s; }
#edp-section .edp-step-3 .edp-soft-pulse-aura { background: #a855f7; animation-delay: -1.6s; }
#edp-section .edp-step-3 .edp-icon-ball { 
  background: linear-gradient(135deg, #c084fc, #9333ea); 
  box-shadow: 0 10px 20px -4px rgba(147, 51, 234, 0.4);
  animation-delay: -2s;
}
#edp-section .edp-step-3 .edp-v-badge { color: #9333ea; background: #faf5ff; border: 1px solid #f3e8ff; }

/* Typography */
#edp-section .edp-v-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 6px;
}

#edp-section .edp-v-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

#edp-section .edp-v-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Keyframe Animations */
@keyframes edpSpinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes edpAuraPulse {
  0% { transform: scale(0.85); opacity: 0.15; }
  100% { transform: scale(1.25); opacity: 0.45; }
}

@keyframes edpSoftFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-6px); }
}

@keyframes edpFlowStream {
  0% { top: 50px; opacity: 0; }
  50% { opacity: 1; }
  100% { top: calc(100% - 140px); opacity: 0; }
}

/* Mobile Responsive */
@media (max-width: 991px) {
  body { background-attachment: scroll; }
  #edp-section .edp-outer-card-wrapper { padding: 24px; }
  #edp-section .edp-left-img-container { min-height: 320px; margin-bottom: 24px; }
  #edp-section .edp-vertical-stepper { padding-left: 0; }
  #edp-section .edp-vertical-stepper::before, 
  #edp-section .edp-vertical-stepper::after { display: none; }
  #edp-section .edp-v-step-item { flex-direction: column; align-items: flex-start; gap: 16px; }
  #edp-section .edp-v-step-item:hover .edp-v-card-box { transform: translateY(-4px); }
}
/* ================= THIS CSS FOR LANDING PAGE COUNTER METRICS SECTION AND EDP SECION END HERE ================= */



/* =====================THIS CSS FOR LANDING PAGE MEMBERSHIP / JOIN US SECTION  START HERE =========================== */
/* Main Background */
.mysba-membership-wrapper {
  background-color: #f8fafc;
  background-image: 
    radial-gradient(at 10% 10%, rgba(255, 145, 34, 0.08) 0px, transparent 50%),
    radial-gradient(at 90% 90%, rgba(255, 145, 34, 0.05) 0px, transparent 50%);
  position: relative;
  padding: 60px 0;
}

/* Split Card Base */
.mysba-membership-wrapper .split-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

/* Top Accent Highlight (Same for both) */
.mysba-membership-wrapper .split-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-gradient)
  transition: opacity 0.3s ease;
  opacity: 0;
}

.mysba-membership-wrapper .split-card:hover {
  transform: translateY(-6px);
  border-color: #ffd8b3;
  box-shadow: 0 20px 45px rgba(255, 145, 34, 0.12);
}

.mysba-membership-wrapper .split-card:hover::before {
  opacity: 1;
}

/* Unified Avatars & Badges */
.mysba-membership-wrapper .icon-avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: #fff5eb;
  color: var(--theme-color1);
}

.mysba-membership-wrapper .role-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #fff5eb;
  color: var(--theme-color1);
}

.mysba-membership-wrapper .card-head-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
}

/* Feature Roles List */
.mysba-membership-wrapper .roles-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mysba-membership-wrapper .role-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  transition: all 0.25s ease;
}

.mysba-membership-wrapper .split-card:hover .role-box:hover {
  background: #ffffff;
  border-color: #ffd8b3;
  box-shadow: 0 4px 12px rgba(255, 145, 34, 0.08);
}

.mysba-membership-wrapper .role-icon {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--theme-color1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.mysba-membership-wrapper .role-box h6 {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e293b;
}

.mysba-membership-wrapper .role-box p {
  margin: 0;
  font-size: 0.78rem;
  color: #64748b;
}

/* Unified Action Buttons (Both Orange Gradient) */
.mysba-membership-wrapper .btn-split-action {
 background: var(--primary-gradient);
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(255, 145, 34, 0.28);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mysba-membership-wrapper .btn-split-action:hover {
   color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.mysba-membership-wrapper .video-link {
  color: var(--link-text);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

.mysba-membership-wrapper .video-link:hover {
  color: var(--link-text-hover);
  text-decoration: underline;
}
/* =====================THIS CSS FOR LANDING PAGE MEMBERSHIP / JOIN US SECTION  END HERE =========================== */

/* =====================THIS CSS FOR LANDING PAGE JOB & CAREER SECTION START HERE =========================== */
.job-career-section {
    background: radial-gradient(circle at top right, rgba(255, 145, 34, 0.08), transparent 50%),
                radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.03), transparent 50%);
}

/* Header Tag */
.job-career-section .category-tag {
    background: rgba(255, 145, 34, 0.1);
    color: var(--theme-color1);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 145, 34, 0.25);
}

/* Left Split Box */
.job-career-section .split-card-left {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.job-career-section .split-card-left:hover {
    box-shadow: 0 25px 50px -12px rgba(255, 145, 34, 0.18);
    border-color: rgba(255, 145, 34, 0.3);
}

.job-career-section .card-title {
    color: var(--dark-blue);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.job-career-section .card-desc {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Feature Bullet List */
.job-career-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.job-career-section .feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.job-career-section .feature-list li i {
    color: var(--theme-color1);
    background: rgba(255, 145, 34, 0.12);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Right Split Image Grid */
.job-career-section .image-grid-container {
    position: relative;
    height: 100%;
    min-height: 380px;
}

.job-career-section .grid-main-img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.1);
}

.job-career-section .grid-sub-img {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 55%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Floating Stat Badge */
.job-career-section .stat-overlay-badge {
    position: absolute;
    top: 12px;
    right: 20px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Single Gradient Button */
.job-career-section .btn-learn-more {
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(255, 145, 34, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.job-career-section .btn-learn-more:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.job-career-section .btn-learn-more i {
    transition: transform 0.3s ease;
}

.job-career-section .btn-learn-more:hover i {
    transform: translateX(6px);
}

/* Highlights Footer Bar */
.job-career-section .highlights-container {
    background: #fff3e7;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    margin-top: 40px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
}

.job-career-section .highlight-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.job-career-section .highlight-card i {
    color: var(--theme-color1);
    font-size: 1.3rem;
    background: rgba(255, 145, 34, 0.1);
    padding: 12px;
    border-radius: 14px;
}

.job-career-section .highlight-card span {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 0.95rem;
}

/* =====================THIS CSS FOR LANDING PAGE JOB & CAREER SECTION END HERE =========================== */

/* =====================THIS CSS FOR LANDING PAGE BANNER CARD SECTION START HERE =========================== */
.banner-card{
    border-radius: 20px;
    overflow: hidden;
}
/* =====================THIS CSS FOR LANDING PAGE BANNER CARD SECTION END HERE =========================== */

/* =====================THIS CSS FOR LANDING PAGE MINI FOOTER SECTION START HERE =========================== */
.clean-footer-bottom {
    background-color: #0f172a; /* Solid Deep Slate Navy */
    border-top: 2px solid var(--theme-color1); /* Subtle Top Accent Line */
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  }

  .clean-seal-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
  }

  .footer-brand-text {
    color: #f8fafc;
    font-size: 0.88rem;
    font-weight: 600;
  }

  .footer-brand-text span {
    color: var(--theme-color1); /* Accent Orange Color */
  }

  .footer-sub-text {
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 500;
  }

  .dev-text {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
  }

  .clean-dev-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
  }

  .clean-dev-logo:hover {
    opacity: 0.85;
  }

  /* Responsive adjustment for Mobile */
  @media (max-width: 767px) {
    .clean-footer-bottom .d-inline-flex {
      justify-content: center;
    }
  }
/* =====================THIS CSS FOR LANDING PAGE MINI FOOTER SECTION END HERE =========================== */



/* =====================THIS CSS FOR LANDING PAGE PHOTOS GALLEY SECTION START HERE =========================== */
.gallery-section {
  background: #fff;
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  overflow: hidden;
}

/* Asymmetric Gallery Cards */
.gallery-section .gallery-card-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: #1e293b;
  /* border: 1px solid rgba(255, 255, 255, 0.08); */
}

.gallery-section .card-tall { height: 420px; }
.gallery-section .card-standard { height: 260px; }

.gallery-section .gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Minimal Hover Overlay */
.gallery-section .gallery-glass-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

/* Floating Center Expand Icon */
.gallery-section .gallery-zoom-badge {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transform: scale(0.6);
  transition: all 0.4s ease;
}

/* Hover States */
.gallery-section .gallery-card-wrap:hover .gallery-card-img {
  transform: scale(1.08);
}

.gallery-section .gallery-card-wrap:hover .gallery-glass-overlay {
  opacity: 1;
}

.gallery-section .gallery-card-wrap:hover .gallery-zoom-badge {
  transform: scale(1);
}

/* Clean Modal Popup Styling */
.gallery-section .gallery-custom-modal {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  position: relative;
}

/* Prominent Modal Close Button Fix */
.gallery-section .modal-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1050;
  background: rgba(234, 88, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-section .modal-close-btn:hover {
  background: var(--theme-color1);
  transform: scale(1.1) rotate(90deg);
  color: #ffffff;
}

.gallery-section .gallery-modal-img-wrapper {
  max-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-section .gallery-modal-img {
  max-height: 75vh;
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* Responsive Heights */
@media (max-width: 767.98px) {
  .gallery-section .card-tall,
  .gallery-section .card-standard {
    height: 280px;
  }
  .gallery-section .gallery-main-heading {
    font-size: 1.8rem;
  }
}
/* =====================THIS CSS FOR LANDING PAGE PHOTOS GALLEY SECTION END HERE =========================== */

/* =====================THIS CSS FOR LANDING PAGE EVENTS SECTION START HERE =========================== */
.event-tree-section {
  /* High Quality Corporate Event Background Image */
  background-image: 
    linear-gradient(180deg, rgba(11, 15, 25, 0.92) 0%, rgba(11, 15, 25, 0.85) 50%, rgba(11, 15, 25, 0.95) 100%),
     url('../img/event-bg-img.avif');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* Parallax Fixed Effect */
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  overflow: hidden;
}


/* Tree Wrapper */
.tree-wrapper {
  position: relative;
  max-width: 940px;
  margin: 60px auto 0 auto;
}

/* Glowing Trunk Line */
.tree-trunk {
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 50%;
  width: 4px;
  background: rgba(255, 107, 0, 0.3);
  transform: translateX(-50%);
  border-radius: 4px;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.35);
}

/* Continuous Energy Beam Animation */
.tree-trunk::after {
  content: '';
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(180deg, transparent, #EA7500, #ffa000, transparent);
  animation: trunkGlow 2.5s infinite linear;
}

@keyframes trunkGlow {
  0% { top: -140px; }
  100% { top: 100%; }
}

/* Row Structure */
.tree-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.tree-branch-side {
  width: 43%;
}

/* Glassmorphic Card Design */
.node-box {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 22px 26px;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

/* Connector Branch Lines */
.left-side .node-box::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -16.2%;
  width: 16.2%;
  height: 2px;
  background: rgba(255, 107, 0, 0.4);
  transition: all 0.3s ease;
}

.right-side .node-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -16.2%;
  width: 16.2%;
  height: 2px;
  background: rgba(255, 107, 0, 0.4);
  transition: all 0.3s ease;
}

/* Center Junction Badge */
.trunk-icon-badge {
  width: 50px;
  height: 50px;
  background: #0b0f19;
  border: 2px solid var(--theme-color1);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color1);
  font-size: 1.15rem;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.45);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover State Effects */
.tree-row:hover .trunk-icon-badge {
  background: var(--primary-gradient);
  color: #ffffff;
  transform: translate(-50%, -50%) scale(1.22) rotate(12deg);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.85);
}

.tree-row:hover .node-box {
  border-color: rgba(255, 107, 0, 0.7);
  background: rgba(24, 33, 50, 0.92);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(255, 107, 0, 0.3);
}

.tree-row:hover .left-side .node-box::after,
.tree-row:hover .right-side .node-box::before {
  background: var(--theme-color1);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
}

/* Content Typography */
.node-header-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.left-side .node-header-flex {
  justify-content: flex-end;
}

.node-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--theme-color1);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(255, 107, 0, 0.15);
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 0, 0.35);
}

.node-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 4px 0;
}

.node-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.45;
}

.node-link {
  color: var(--theme-color1);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  transition: gap 0.3s ease;
}

.node-box:hover .node-link {
  color:var(--link-text);
  gap: 10px;
}

/* Alignments */
.left-side { text-align: right; }
.right-side { text-align: left; }

/* Mobile Responsive Rules */
@media (max-width: 767px) {
  .event-tree-section {
    background-attachment: scroll; /* Mobile scroll smoothness */
  }
  .tree-trunk { left: 20px; }
  .tree-row {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
    margin-bottom: 25px;
  }
  .tree-branch-side {
    width: 100% !important;
    text-align: left !important;
  }
  .left-side .node-header-flex { justify-content: flex-start; }
  .left-side .node-box::after, .right-side .node-box::before { display: none; }
  .trunk-icon-badge {
    left: 20px;
    top: 25px;
  }
}
/* =====================THIS CSS FOR LANDING PAGE EVENTS  SECTION END HERE =========================== */


/* =====================THIS CSS FOR LANDING PAGE SLIDER BANNER  SECTION START HERE =========================== */
/* SECTION WRAPPER CLASS SCOPING */
.slider-banner-section {
  position: relative;
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

/* OWL ITEM TRANSITION & OPACITY */
.slider-banner-section .owl-carousel .owl-item {
  transition: all 0.4s ease-in-out;
  opacity: 0.55;
  transform: scale(0.92); /* Side Banners Size */
}

/* CENTER ACTIVE BANNER */
.slider-banner-section .owl-carousel .owl-item.center {
  opacity: 1;
  transform: scale(1); /* Center Main Banner Size */
}

/* BANNER CARD DESIGN & ANY IMAGE RESOLUTION FIX */
.slider-banner-section .banner-card {
  width: 100%;
  height: 385px; /* Fixed height for all images */
  border-radius: 24px;
  overflow: hidden;
  background: var(--theme-color1); 
  /* border: 1.5px solid rgba(255, 255, 255, 0.12); */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-banner-section .banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
  display: block;
}

/* Active Banner Border Highlight */
/* .slider-banner-section .owl-item.center .banner-card {
  border-color: #ff6b00;
  box-shadow: 0 20px 45px rgba(255, 107, 0, 0.35);
} */
.slider-banner-section .owl-carousel .owl-item {
  background-color: #ff9122 !important;
  border-radius: 24px;
  transition: all 0.4s ease;
}

/* CUSTOM NAVIGATION BUTTONS */
.slider-banner-section .nav-btn {
  width: 52px;
  height: 52px;
  background: rgba(11, 15, 25, 0.85);
  border: 1.5px solid rgba(255, 107, 0, 0.7);
  border-radius: 50%;
  color: var(--theme-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.slider-banner-section .nav-btn.prev-btn { left: 5%; }
.slider-banner-section .nav-btn.next-btn { right: 5%; }

.slider-banner-section .nav-btn:hover {
  background: var(--theme-color1);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.8);
  transform: translateY(-50%) scale(1.08);
}

/* PAGINATION DOTS */
.slider-banner-section .owl-dots {
  text-align: center;
  margin-top: 25px;
}

.slider-banner-section .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  background: #8e6d6d !important;
  opacity: 0.35;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.slider-banner-section .owl-dot.active span {
  background: var(--theme-color1) !important;
  opacity: 1;
  width: 28px !important;
  border-radius: 10px !important;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  .slider-banner-section .banner-card { height: 320px; }
  .slider-banner-section .nav-btn.prev-btn { left: 2%; }
  .slider-banner-section .nav-btn.next-btn { right: 2%; }
}

@media (max-width: 576px) {
  .slider-banner-section .banner-card {
    height: 220px;
    border-radius: 16px;
  }
  .slider-banner-section .nav-btn { display: none; }
}
/* =====================THIS CSS FOR LANDING PAGE SLIDER BANNER  SECTION END HERE =========================== */
