.brand-icon {
  max-height: 60px; /* Controls the maximum thickness of the slider on Laptop */
  width: auto;
  object-fit: contain;
  padding: 0 40px; /* Add spacing between logos */
}
.custom-marquee-section{
   padding: 0 25px;
}
.custom-radius {
  border-radius: 100px;
}

@media (max-width: 991.98px) {
  .custom-marquee-section{
   padding: 0 25px;
  }
}

@media (max-width: 767.98px) {
  .brand-icon {
    max-height: 30px; /* Mobile view */
    padding: 0;
  }

  .custom-marquee-section{
   padding: 15px 0px;
  }
}

.custom-navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  transition: padding 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.custom-navbar.is-scrolled {
  padding-top: 6px;
  padding-bottom: 6px;
  box-shadow: 0 10px 24px rgba(14, 38, 92, 0.12);
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
}

.custom-navbar .navbar-brand {
  margin-right: 24px;
}

.custom-navbar .navbar-logo {
  width: 220px;
  max-width: 220px;
  height: auto;
  display: block;
}

.custom-navbar .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: black;
  padding-left: 12px;
  padding-right: 12px;
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link.active {
  color: #0d6efd;
}

.custom-offcanvas {
  --bs-offcanvas-width: 50vw;
  background-color: #fff;
  z-index: 2030;
  color: black;
}

.custom-offcanvas .nav-link {
  font-weight: 600; /* Making it slightly bolder like the image */
}

.offcanvas-title {
  color: black;
  font-weight: 700;
  font-size: 24px;
}

.site-container {
  overflow: visible; /* MUST */
  padding-top: var(--navbar-height, 0px);
}

.navbar-nav .nav-link {
  display: flex;
  align-items: center;
}

.custom-btn {
  background: linear-gradient(90deg, #2d6cdf, #1e4ed8);
  color: #fff !important;
  border-radius: 50px;
  height: 44px;
  display: inline-flex;
  align-items: center;
}

.custom-btn-icon {
  background: #fff;
  color: #1e4ed8;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



.footer_img{
  width: 350px;
  height: 50px;
}



.hero-banner {
  min-height: calc(80vh - 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  background:
    radial-gradient(circle at 14% 5%, rgba(255, 255, 255, 0.35), transparent 26%),
    radial-gradient(circle at 20% 65%, rgba(52, 77, 255, 0.45), transparent 32%),
    linear-gradient(120deg, #0a1467 0%, #111a8c 45%, #626DFF 100%);
  font-family: "Manrope", sans-serif;
}

.custom-hero-content {
  max-width: 980px;
  width: min(980px, 100%);
}


.hero-title {
  margin: 0 0 10px;
  color: #f5f7ff;
  font-size: 55px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.hero-rolling-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: nowrap;
}

.hero-tomorrow {
  width: auto;
  flex: 0 0 auto;
  margin: 0;
  text-align: right;
  color: #ffffff;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.06;
  white-space: nowrap;
  white-space: normal;  
}

.hero-roll-wrap {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 320px;
}

.hero-roll-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(42px, 5.5vw, 84px);
  width: 100%;
  overflow: hidden;
  border: 0.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: linear-gradient(180deg, #2437b7 0%, #1e2ea0 100%);
}

.hero-roll-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes rollInOut {
  0%,
  8% {
    transform: translateY(45%);
    opacity: 0;
  }
  18%,
  32% {
    transform: translateY(0);
    opacity: 1;
  }
  42%,
  100% {
    transform: translateY(-45%);
    opacity: 0;
  }
}

.roll-text {
  color: #ffffff;
  font-size: clamp(24px, 3.8vw, 62px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  opacity: 0;
  animation-duration: 9s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.roll-text-1 {
  animation-name: rollInOut;
  animation-delay: 0s;
}

.roll-text-2 {
  animation-name: rollInOut;
  animation-delay: 3s;
}

.roll-text-3 {
  animation-name: rollInOut;
  animation-delay: 6s;
}

.hero-subtitle {
  margin: 22px 0 34px;
  color: rgba(237, 241, 255, 0.86);
  font-size: clamp(16px, 2.1vw, 24px);
  line-height: 1.6;
  font-weight: 500;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  background-color: #ffffff;
  color: #1b245f;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600;
  line-height: 1;
}

.hero-btn:hover {
  color: #111a8c;
  transform: translateY(-1px);
}

.hero-btn-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #4062ff 0%, #2f48d6 100%);
  color: #ffffff;
  font-size: 16px;
}

.why-choose-bg{
  background: radial-gradient(circle at 14% 5%, rgba(255, 255, 255, 0.35), transparent 26%),
    radial-gradient(circle at 20% 65%, rgba(52, 77, 255, 0.45), transparent 32%),
    linear-gradient(120deg, #0a1467 0%, #111a8c 45%, #626DFF 100%);
}

@media (max-width: 991.98px) {
  .custom-navbar .navbar-logo {
    width: 170px;
    max-width: 170px;
  }

  .custom-offcanvas {
    --bs-offcanvas-width: min(70vw, 320px);
  }

  .hero-banner {
    min-height: calc(100vh - 76px);
    padding: 56px 16px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-tomorrow {
    font-size: 40px;
  }
  
  .roll-text {
    font-size: 38px;
    letter-spacing: 0.5px;
  }

  .hero-roll-pill {
    height: clamp(36px, 9vw, 58px);
  }
  .hero-roll-wrap {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 220px;
  }
}

@media (max-width: 767.98px) {
  .hero-banner {
    min-height: calc(100vh - 70px);
    padding: 44px 12px;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.15;
  }

  .hero-rolling-row {
    gap: 8px;
  }

  .hero-tomorrow {
    font-size: clamp(24px, 7.4vw, 40px);
  }

  .hero-roll-pill {
    height: clamp(36px, 9vw, 58px);
  }

  .roll-text {
    font-size: 22px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 575.98px) {
  .hero-banner {
    min-height: calc(75vh - 70px);
    padding: 10px;
  }

  .hero-title {
    font-size: 25px;
  }

  .hero-rolling-row {
    gap: 6px;
  }

  .hero-tomorrow {
    font-size: 25px;
  }

  .hero-roll-pill {
    height: clamp(32px, 6vw, 40px);
  }

  .roll-text {
    font-size: 17px;
    letter-spacing: 0.3px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-btn {
    font-size: 15px;
    padding-left: 10px;
  }

  .hero-btn-icon {
    width: 20px;
    height: 20px;
  }

  .hero-roll-wrap {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 120px;
  }
  .footer_img{
    width: 200px;
    height: 40px;
  }
}

/* Custom Marquee CSS — gap between duplicate strips must match --partner-marquee-gap (loop math) */
.partner-slider-container {
  overflow: hidden;
  white-space: nowrap;
}

.partner-slider-track {
  --partner-marquee-gap: 2rem;
  display: flex;
  gap: var(--partner-marquee-gap);
  width: max-content;
  animation: scrollPartnerSlider 30s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}

.partner-slider-list {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  list-style: none;
  justify-content: flex-start;
  gap: var(--partner-marquee-gap);
}

.partner-slider-container:hover .partner-slider-track {
  animation-play-state: paused;
}

@keyframes scrollPartnerSlider {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    /* One full cycle = width(one ul) + gap; half of track = 50%—subtract gap/2 so loop resets flush */
    transform: translate3d(
      calc(-50% - (var(--partner-marquee-gap) / 2)),
      0,
      0
    );
  }
}

.m-item {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #1b1b1b;
  text-transform: uppercase;
}

.m-item .icon {
  margin-right: 12px;
  max-height: 24px;
}

/* Aesthetic Border Button */
.aesthetic-border-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  border: 1px solid #ffffff;
  text-decoration: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.aesthetic-border-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  /* transform: translateY(-3px); */
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

@media (max-width: 575.98px) {
  .aesthetic-border-btn {
    padding: 10px 14px;
    font-size: 12px;
  }
  .theme-btn {
    padding: 10px 42px 10px 18px !important; /* Space for the arrow */
    font-size: 12px !important;
    height: auto !important;
  }
  .theme-btn .arrow-all {
    width: 26px !important;
    height: 26px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 8px !important;
  }
}


/* ===== DROPDOWN BASE FIX ===== */
.navbar-nav,
.nav-item.dropdown {
  position: static !important;
}

/* IMPORTANT: Bootstrap override */
.nav-item.dropdown .dropdown-menu {
  display: block;  
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%) translateY(30px);

  width: max-content;
  max-width: 90vw;

  background: #fff;
  border-radius: 14px;
  padding: 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  z-index: 9999;

  transition: all 0.3s ease;
}

/* SHOW ON HOVER (DESKTOP ONLY) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* MOBILE DROPDOWN BASE (Hidden state for animation) */
.custom-offcanvas .dropdown-menu {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  
  /* Matches Image: No background, no borders, no shadows */
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  pointer-events: none;
  visibility: visible !important;
  transform: none !important;
  position: static !important;
}

/* MOBILE DROPDOWN SHOW (Slide-down state) */
.custom-offcanvas .dropdown-menu.show {
  max-height: 600px;
  opacity: 1;
  pointer-events: auto;
}

.custom-offcanvas .dropdown-item {
  font-size: 12px;
  font-weight: 500;
  width: 210px;
  color: black; /* Dark text for your white background */
  transition: all 0.2s ease;
  background: transparent !important;
}

.custom-offcanvas .dropdown-item:hover,
.custom-offcanvas .dropdown-item:active {
  background: rgba(0, 0, 0, 0.03) !important;
  color: #0d6efd !important; /* Highlights blue on hover */
}

/* ===== TITLE ===== */
.mega-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  color: #1b1b1b;
}

/* ABOUT CARD TEXT ALIGNMENT FIX */
.tv-about-section.style-5 .about-midle .about-card .about-details {
  left: 50% !important;
  width: 80% !important;
}

.custom-cta-banner  {
  width: 35%;
}
.user-img{
    width: 40px;
    height: 40px;
}
/*  */
.mega-links li {
  padding: 6px 0;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #a0a3b5;
}

.mega-links li:hover {
  color: #0d6efd;
  transform: translateX(5px);
}

/* ===== IMAGE CARD ===== */
.mega-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.mega-image-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* OVERLAY */
.mega-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

.mega-overlay h5 {
  margin: 0;
  font-size: 16px;
}

.mega-overlay p {
  font-size: 13px;
  margin: 5px 0;
}

/* Mega Menu Image Containment */
.mega-image-card {
  width: 100%;
  max-height: 350px; /* limits the maximum height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.mega-image-card img {
  width: 100%;
  height: 100%;
  /* max-height: 300px; */
  object-fit: cover; /* ensures image fits within bounds without stretching */
}




/*accordion animation*/

